diff --git a/.gitattributes b/.gitattributes
index 4cab1f4d26..441bdfe1eb 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,2 +1,7 @@
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto
+
+# Shell scripts are run by Git Bash on Windows CI, which cannot read a script
+# with CRLF line endings: it fails on the first line. Windows checkouts default
+# to core.autocrlf=true, so keep these LF whatever the platform.
+*.sh text eol=lf
diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml
index 1c392e4bc6..3de2a9184b 100644
--- a/.github/workflows/build_all.yml
+++ b/.github/workflows/build_all.yml
@@ -14,6 +14,7 @@ on:
- 'localization/**'
- 'resources/**'
- ".github/workflows/build_*.yml"
+ - 'scripts/build_preset_cache.*'
- 'scripts/flatpak/**'
- 'scripts/msix/**'
- 'tests/**'
@@ -33,6 +34,7 @@ on:
- 'build_release_vs.bat'
- 'build_release_vs2022.bat'
- 'build_release_macos.sh'
+ - 'scripts/build_preset_cache.*'
- 'scripts/flatpak/**'
- 'scripts/msix/**'
- 'tests/**'
diff --git a/.github/workflows/build_orca.yml b/.github/workflows/build_orca.yml
index 62d3071a82..e8dcef0b05 100644
--- a/.github/workflows/build_orca.yml
+++ b/.github/workflows/build_orca.yml
@@ -162,6 +162,14 @@ jobs:
retention-days: 5
if-no-files-found: error
+ - name: Build system preset cache (macOS)
+ if: runner.os == 'macOS' && !inputs.macos-combine-only
+ working-directory: ${{ github.workspace }}
+ shell: bash
+ # The bundle was already packed from resources/, so the caches have to be
+ # installed into it here; the source tree keeps its JSONs for later jobs.
+ run: ./scripts/build_preset_cache.sh -b build/${{ inputs.arch }} build/${{ inputs.arch }}/OrcaSlicer/OrcaSlicer.app/Contents/Resources/profiles
+
- name: Pack macOS app bundle ${{ inputs.arch }}
if: runner.os == 'macOS' && !inputs.macos-combine-only
working-directory: ${{ github.workspace }}
@@ -397,6 +405,13 @@ jobs:
if ($arch -eq "arm64") { .\build_release_vs.bat slicer arm64 tests } else { .\build_release_vs.bat slicer tests }
shell: pwsh
+ - name: Build system preset cache (Windows)
+ if: runner.os == 'Windows'
+ shell: cmd
+ # Shipped into both the already-installed tree (portable zip, MSIX) and
+ # the checkout cpack re-installs from when it builds the NSIS installer.
+ run: scripts\build_preset_cache.bat --prune-source "%BUILD_DIR%" "resources\profiles" "%BUILD_DIR%\OrcaSlicer\resources\profiles"
+
- name: Pack unit tests Win
if: runner.os == 'Windows'
working-directory: ${{ github.workspace }}
@@ -546,6 +561,20 @@ jobs:
retention-days: 5
if-no-files-found: error
+ - name: Build system preset cache (Linux)
+ if: runner.os == 'Linux'
+ shell: bash
+ run: |
+ # Both were packed from resources/ before the caches existed, so the
+ # AppImage is unpacked first and the caches shipped into it and into
+ # the package tree; the source tree keeps its JSONs for later steps.
+ appimage=$(find build -maxdepth 1 -name "OrcaSlicer_Linux_AppImage*.AppImage" | head -1)
+ chmod +x "$appimage"
+ "$appimage" --appimage-extract
+ ./scripts/build_preset_cache.sh -b build build/package/resources/profiles squashfs-root/resources/profiles
+ appimagetool=$(find build -name "appimagetool.AppImage" | head -1)
+ ARCH=$(uname -m) "$appimagetool" --appimage-extract-and-run squashfs-root "$appimage"
+ rm -rf squashfs-root
# Ship the freshly-built validator so slice_check_linux (build_all.yml)
# can slice-sweep the shipped profiles with this PR's engine. Taken from
# the aarch64 leg so the sweep also exercises the arm build; x86_64 on
diff --git a/.github/workflows/check_profiles.yml b/.github/workflows/check_profiles.yml
index 59c92e3ec0..db3ae6c4e8 100644
--- a/.github/workflows/check_profiles.yml
+++ b/.github/workflows/check_profiles.yml
@@ -1,8 +1,12 @@
name: Check profiles
on:
pull_request:
+ # release/* is included because pr-merge-bot.yml lets delegates merge into
+ # it, and it gates on this workflow's result. Without it a delegated merge
+ # into a release branch would run no profile validation at all.
branches:
- main
+ - release/*
paths:
- 'resources/profiles/**'
- ".github/workflows/check_profiles.yml"
@@ -20,6 +24,8 @@ permissions:
jobs:
check_profiles:
+ # This job name is the check-run name pr-merge-bot.yml requires before a
+ # delegated merge. Renaming it silently disables that gate.
name: Check profiles
runs-on: ubuntu-24.04
steps:
diff --git a/.github/workflows/pr-merge-bot.yml b/.github/workflows/pr-merge-bot.yml
new file mode 100644
index 0000000000..9b5ff2dfaf
--- /dev/null
+++ b/.github/workflows/pr-merge-bot.yml
@@ -0,0 +1,510 @@
+name: PR Merge Bot
+
+# Merges a pull request on request from a delegated vendor profile maintainer.
+# The merge is performed by this workflow's GITHUB_TOKEN, so a delegate needs no
+# repository access.
+#
+# Commands, posted as a comment on the PR:
+# /bot merge squash-merge the PR
+# /bot merge --dry-run report the verdict without merging
+#
+# Merges only when the commenter holds a grant covering every changed path, the
+# PR targets main or release/*, and CI is green on the head commit. Otherwise it
+# comments naming the files that fell outside the grant.
+#
+# Grants come from the FOLDER_MERGERS variable in the `merge-delegation`
+# environment: one per line, `account: path`, `#` comments and blank lines
+# allowed. Paths may contain spaces. A vendor takes two grants, the folder and
+# its sibling bundle JSON:
+#
+# # Acme profiles
+# vendor-maintainer: resources/profiles/Acme/
+# vendor-maintainer: resources/profiles/Acme.json
+#
+# Edit the grant list (environment scope, so admin only):
+# gh variable set FOLDER_MERGERS --env merge-delegation --body "$(cat folder-mergers.txt)"
+# gh variable get FOLDER_MERGERS --env merge-delegation
+#
+# Stop all merging without touching this file:
+# gh variable set MERGE_BOT_DRY_RUN --body true
+
+on:
+ issue_comment:
+ types:
+ - created
+
+# One merge attempt per PR at a time, so two quick comments cannot race.
+concurrency:
+ group: ${{ github.workflow }}-${{ github.event.issue.number }}
+ cancel-in-progress: false
+
+jobs:
+ merge:
+ # Skips the job unless a PR comment mentions the command.
+ if: >-
+ github.repository == 'OrcaSlicer/OrcaSlicer'
+ && github.event.issue.pull_request != null
+ && contains(github.event.comment.body, '/bot merge')
+ permissions:
+ contents: write # pulls.merge
+ pull-requests: write # pulls.merge
+ issues: write # feedback comment + reactions
+ actions: write # re-dispatch build_all.yml after the merge
+ runs-on: ubuntu-latest
+ timeout-minutes: 10
+ # Supplies FOLDER_MERGERS. Must carry no protection rules, or every
+ # delegated merge would wait for a human reviewer.
+ environment: merge-delegation
+ steps:
+ - name: Merge PR on behalf of a folder delegate
+ uses: actions/github-script@v9
+ env:
+ # Read as env vars, never interpolated into the script body.
+ FOLDER_MERGERS: ${{ vars.FOLDER_MERGERS }}
+ MERGE_BOT_DRY_RUN: ${{ vars.MERGE_BOT_DRY_RUN }}
+ with:
+ script: |
+ function isPermissionDenied(error) {
+ return error && error.status === 403 && /Resource not accessible by integration/i.test(error.message || '');
+ }
+
+ const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
+
+ const MARKER = '';
+ // No grant may reach outside this root.
+ const DELEGATABLE_ROOT = 'resources/profiles/';
+ const ALLOWED_BASE_BRANCH = /^(?:main|release\/.+)$/;
+ const MERGE_METHOD = 'squash';
+ const REQUIRED_CHECK = 'Check profiles'; // job name in check_profiles.yml
+ const MAX_CHANGED_FILES = 500; // policy cap, well under listFiles' 3000
+ const LISTFILES_CAP = 3000;
+ const MAX_REPORTED_FILES = 12;
+ const MERGEABLE_ATTEMPTS = 5;
+ const MERGEABLE_DELAY_MS = 2000;
+ const OK_CONCLUSIONS = new Set(['success', 'neutral', 'skipped']);
+ const REGULAR_FILE_MODES = new Set(['100644', '100755']);
+
+ // Paths refused whatever the grants say. Checked before grants, so
+ // delegating a new root means removing it from this list too.
+ const DENIED_PATTERNS = [
+ /^\.github\//,
+ /(^|\/)\.git(attributes|modules|ignore|config)$/,
+ /^(?:src|deps|deps_src|tests|tools|cmake|sandboxes|scripts|docs?|localization|bbl)\//,
+ /(^|\/)cmakelists\.txt$/,
+ /\.cmake$/,
+ /^build_[^/]*\.(?:sh|bat)$/,
+ /^version\.inc$/,
+ // Executables, including those inside the delegatable root.
+ /\.(?:sh|bash|bat|cmd|ps1|py|js|mjs|cjs|ts|rb|pl|php)$/
+ ];
+
+ function parseGrants(raw) {
+ // GitHub login: 1-39 chars, alphanumerics with single interior hyphens.
+ const loginPattern = /^[A-Za-z0-9](?:[A-Za-z0-9]|-(?=[A-Za-z0-9])){0,38}$/;
+ const grantsByLogin = new Map();
+ const problems = [];
+
+ (raw || '').split(/\r?\n/).forEach((rawLine, index) => {
+ const line = rawLine.trim();
+ if (!line || line.startsWith('#')) {
+ return;
+ }
+
+ // Splits on the first colon only, so paths may contain ':' and spaces.
+ const separator = line.indexOf(':');
+ if (separator === -1) {
+ problems.push(`line ${index + 1}: expected \`account: path\``);
+ return;
+ }
+
+ const login = line.slice(0, separator).trim().replace(/^@/, '');
+ const path = line.slice(separator + 1).trim().replace(/\/+$/, '');
+
+ if (!loginPattern.test(login)) {
+ problems.push(`line ${index + 1}: \`${login}\` is not a valid GitHub account name`);
+ return;
+ }
+ if (/[\\*?\u0000-\u001f\u007f]/.test(path) || path.split('/').includes('..') || path.includes('//')) {
+ problems.push(`line ${index + 1}: invalid path (no globs, \`..\`, \`//\`, backslashes or control characters)`);
+ return;
+ }
+ // Rejects anything outside the root, and the bare root itself.
+ if (!path.startsWith(DELEGATABLE_ROOT) || path.length <= DELEGATABLE_ROOT.length) {
+ problems.push(`line ${index + 1}: \`${path}\` is not inside \`${DELEGATABLE_ROOT}\``);
+ return;
+ }
+
+ const key = login.toLowerCase();
+ grantsByLogin.set(key, (grantsByLogin.get(key) || []).concat(path));
+ });
+
+ return { grantsByLogin, problems };
+ }
+
+ function isDenied(path) {
+ if (/[\\\u0000-\u001f\u007f]/.test(path) || path.startsWith('/') || path.split('/').includes('..')) {
+ return true;
+ }
+
+ const normalized = path.normalize('NFKC').toLowerCase();
+ return DENIED_PATTERNS.some((pattern) => pattern.test(normalized));
+ }
+
+ // Byte-exact match on directory boundaries, so a grant of
+ // `.../Acme` covers neither `.../Acme Labs/x.json` nor `.../Acme.json`.
+ function isGranted(path, grants) {
+ return grants.some((grant) => path === grant || path.startsWith(`${grant}/`));
+ }
+
+ // Both endpoints of a rename; both must satisfy the grant.
+ function pathsFor(file) {
+ return [file.filename, file.previous_filename].filter(Boolean);
+ }
+
+ function formatList(items) {
+ const unique = [...new Set(items)];
+ const shown = unique.slice(0, MAX_REPORTED_FILES).map((item) => `- \`${item}\``);
+ if (unique.length > MAX_REPORTED_FILES) {
+ shown.push(`- …and ${unique.length - MAX_REPORTED_FILES} more`);
+ }
+ return shown.join('\n');
+ }
+
+ const { owner, repo } = context.repo;
+ const issue = context.payload.issue;
+ const comment = context.payload.comment;
+
+ if (!issue.pull_request) {
+ core.info('Ignoring comment that is not on a pull request.');
+ return;
+ }
+ // Ignores a comment whose sender is not its author.
+ if (context.payload.action !== 'created' || context.payload.sender.login !== comment.user.login) {
+ core.warning('Ignoring comment whose sender does not match its author.');
+ return;
+ }
+ if (comment.user.type !== 'User') {
+ core.info('Ignoring bot-authored command.');
+ return;
+ }
+
+ const commandLine = (comment.body || '')
+ .split('\n')
+ .map((line) => line.trim())
+ .find((line) => /^\/bot\s+merge\b/i.test(line));
+
+ if (!commandLine) {
+ core.info('No /bot merge command found.');
+ return;
+ }
+
+ const commenter = comment.user.login;
+ const { grantsByLogin, problems } = parseGrants(process.env.FOLDER_MERGERS);
+ const grants = grantsByLogin.get(commenter.toLowerCase()) || [];
+
+ for (const problem of problems) {
+ core.warning(`FOLDER_MERGERS ${problem}`);
+ }
+
+ // Says nothing to accounts with no grant, so it cannot be used to spam.
+ if (!grants.length) {
+ core.info(`Ignoring /bot merge from @${commenter}: not listed in FOLDER_MERGERS.`);
+ return;
+ }
+
+ // Warns instead of failing when the token cannot post feedback.
+ async function bestEffort(call, warning) {
+ try {
+ await call();
+ } catch (error) {
+ if (isPermissionDenied(error)) {
+ core.warning(warning);
+ return;
+ }
+
+ throw error;
+ }
+ }
+
+ const react = (content) => bestEffort(
+ () => github.rest.reactions.createForIssueComment({ owner, repo, comment_id: comment.id, content }),
+ `Cannot add the "${content}" reaction because the token cannot write.`);
+
+ const say = (body) => bestEffort(
+ () => github.rest.issues.createComment({ owner, repo, issue_number: issue.number, body: `${MARKER}\n${body}` }),
+ 'Cannot post a comment because the token cannot write comments.');
+
+ // Declines the command: warns in the log, reacts, explains on the PR.
+ async function refuse(reason) {
+ const configNote = problems.length
+ ? `\n\n\`FOLDER_MERGERS\` also has problems a maintainer needs to fix:\n${problems.map((problem) => `- ${problem}`).join('\n')}`
+ : '';
+ const grantsNote = `\n\nYour current grants
\n\n${formatList(grants)}\n\n `;
+
+ core.warning(`Refused /bot merge from @${commenter}: ${reason}`);
+ await react('-1');
+ await say(`@${commenter} I can't merge this PR: ${reason}${configNote}${grantsNote}`);
+ }
+
+ await react('eyes');
+
+ const args = (commandLine.match(/^\/bot\s+merge\s*(.*)$/i)[1] || '').trim().split(/\s+/).filter(Boolean);
+ const unknownArgs = args.filter((arg) => arg.toLowerCase() !== '--dry-run');
+ const dryRun = String(process.env.MERGE_BOT_DRY_RUN || '').toLowerCase() === 'true'
+ || unknownArgs.length !== args.length;
+
+ if (unknownArgs.length) {
+ return refuse(
+ `I don't understand ${unknownArgs.map((arg) => `\`${arg}\``).join(', ')}. ` +
+ 'Usage: `/bot merge` or `/bot merge --dry-run`.'
+ );
+ }
+
+ // Refuses everything while the grant list is malformed.
+ if (problems.length) {
+ return refuse(
+ 'the `FOLDER_MERGERS` grant list has malformed lines, so I refuse every merge until it is fixed.'
+ );
+ }
+
+ let { data: pr } = await github.rest.pulls.get({
+ owner,
+ repo,
+ pull_number: issue.number
+ });
+
+ if (pr.merged) {
+ return refuse('it is already merged.');
+ }
+ if (pr.state !== 'open') {
+ return refuse(`its state is \`${pr.state}\`, not \`open\`.`);
+ }
+ if (pr.draft) {
+ return refuse('it is still a draft. Mark it ready for review first.');
+ }
+ if (!ALLOWED_BASE_BRANCH.test(pr.base.ref)) {
+ return refuse(`it targets \`${pr.base.ref}\`. Delegated merges are only allowed into \`main\` and \`release/*\`.`);
+ }
+
+ // ---- folder scope ----
+ const files = await github.paginate(github.rest.pulls.listFiles, {
+ owner,
+ repo,
+ pull_number: pr.number,
+ per_page: 100
+ });
+
+ if (!files.length) {
+ return refuse('it changes no files, so there is nothing to verify or merge.');
+ }
+ // Refuses when the file list is truncated or disagrees with the PR.
+ if (files.length >= LISTFILES_CAP || files.length !== pr.changed_files) {
+ return refuse(
+ `it reports ${pr.changed_files} changed files but the API listed ${files.length}, ` +
+ 'so the file list is truncated and I cannot verify the folder scope. A maintainer must merge this one.'
+ );
+ }
+ if (pr.changed_files > MAX_CHANGED_FILES) {
+ return refuse(`it changes ${pr.changed_files} files; delegated merges are capped at ${MAX_CHANGED_FILES}.`);
+ }
+
+ const deniedFiles = [];
+ const outsideFiles = [];
+
+ for (const file of files) {
+ for (const path of pathsFor(file)) {
+ if (isDenied(path)) {
+ deniedFiles.push(path);
+ } else if (!isGranted(path, grants)) {
+ outsideFiles.push(path);
+ }
+ }
+ }
+
+ if (deniedFiles.length) {
+ core.error(`@${commenter} attempted a delegated merge touching protected paths: ${deniedFiles.join(', ')}`);
+ return refuse(
+ 'it touches paths that are never delegatable, whatever the grants say ' +
+ `(CI, build, scripts or executable files):\n\n${formatList(deniedFiles)}\n\nA maintainer should look at this before it goes any further.`
+ );
+ }
+ if (outsideFiles.length) {
+ return refuse(
+ `${outsideFiles.length} changed path(s) fall outside your grants:\n\n${formatList(outsideFiles)}\n\n` +
+ 'A vendor needs both grants: `resources/profiles//` **and** `resources/profiles/.json`.'
+ );
+ }
+
+ // ---- file modes: rejects symlinks and submodules ----
+ // Fetches the delegatable subtree only; listFiles does not report modes.
+ const headSha = pr.head.sha;
+ const { data: tree } = await github.rest.git.getTree({
+ owner,
+ repo,
+ tree_sha: `${headSha}:${DELEGATABLE_ROOT.replace(/\/$/, '')}`,
+ recursive: 'true'
+ });
+
+ if (tree.truncated) {
+ return refuse('the git tree is too large to verify file modes. A maintainer must merge this one.');
+ }
+
+ // Entry paths are subtree-relative.
+ const modesByPath = new Map(tree.tree.map((entry) => [`${DELEGATABLE_ROOT}${entry.path}`, entry.mode]));
+ const irregularFiles = files
+ .filter((file) => file.status !== 'removed')
+ .map((file) => [file.filename, modesByPath.get(file.filename)])
+ .filter(([, mode]) => !REGULAR_FILE_MODES.has(mode))
+ .map(([path, mode]) => `${path} (mode ${mode || 'missing'})`);
+
+ if (irregularFiles.length) {
+ core.error(`@${commenter} attempted a delegated merge with non-regular files: ${irregularFiles.join(', ')}`);
+ return refuse(
+ `it adds symlinks, submodules or files I cannot verify:\n\n${formatList(irregularFiles)}\n\nA maintainer should look at this before it goes any further.`
+ );
+ }
+
+ // ---- mergeability: waits for GitHub to compute it ----
+ for (let attempt = 0; pr.mergeable === null && attempt < MERGEABLE_ATTEMPTS; attempt += 1) {
+ core.info(`Mergeability not computed yet; retrying in ${MERGEABLE_DELAY_MS}ms.`);
+ await sleep(MERGEABLE_DELAY_MS);
+ ({ data: pr } = await github.rest.pulls.get({
+ owner,
+ repo,
+ pull_number: pr.number
+ }));
+ }
+
+ if (pr.mergeable === null) {
+ return refuse('GitHub is still working out whether it can be merged. Try `/bot merge` again in a minute.');
+ }
+ if (!pr.mergeable) {
+ return refuse(`it is not mergeable (\`${pr.mergeable_state}\`) - most likely a conflict with \`${pr.base.ref}\`.`);
+ }
+
+ // ---- CI on the head commit ----
+ const checkRuns = await github.paginate(github.rest.checks.listForRef, {
+ owner,
+ repo,
+ ref: headSha,
+ filter: 'latest',
+ per_page: 100
+ });
+ const pendingChecks = checkRuns.filter((run) => run.status !== 'completed');
+ const failedChecks = checkRuns.filter((run) => run.status === 'completed' && !OK_CONCLUSIONS.has(run.conclusion));
+
+ if (pendingChecks.length) {
+ return refuse(
+ `${pendingChecks.length} check(s) are still running on \`${headSha.slice(0, 7)}\`:\n\n` +
+ `${formatList(pendingChecks.map((run) => run.name))}\n\nRe-run \`/bot merge\` once they finish.`
+ );
+ }
+ if (failedChecks.length) {
+ return refuse(
+ `${failedChecks.length} check(s) are not green on \`${headSha.slice(0, 7)}\`:\n\n` +
+ formatList(failedChecks.map((run) => `${run.name} (${run.conclusion})`))
+ );
+ }
+
+ const { data: combined } = await github.rest.repos.getCombinedStatusForRef({
+ owner,
+ repo,
+ ref: headSha
+ });
+ // total_count 0 only means there are no legacy statuses.
+ if (combined.total_count > 0 && combined.state !== 'success') {
+ return refuse(
+ `the combined commit status on \`${headSha.slice(0, 7)}\` is \`${combined.state}\`:\n\n` +
+ formatList(combined.statuses.filter((status) => status.state !== 'success')
+ .map((status) => `${status.context} (${status.state})`))
+ );
+ }
+
+ // Requires the check to have actually run, not merely to have not failed.
+ const requiredCheck = checkRuns.find((run) =>
+ run.name === REQUIRED_CHECK &&
+ run.app && run.app.slug === 'github-actions' &&
+ run.status === 'completed' && OK_CONCLUSIONS.has(run.conclusion));
+
+ if (!requiredCheck) {
+ return refuse(
+ `the \`${REQUIRED_CHECK}\` check has not succeeded on \`${headSha.slice(0, 7)}\`. ` +
+ 'If it never ran, a maintainer needs to approve the workflow run first.'
+ );
+ }
+
+ const scopeSummary = `${files.length} file(s), all within:\n${formatList(grants)}`;
+
+ if (dryRun) {
+ core.info('Dry run: every gate passed, not merging.');
+ await react('+1');
+ await say(
+ `@${commenter} **dry run** - this PR passes every gate and I *would* squash-merge it ` +
+ `at \`${headSha.slice(0, 7)}\`.\n\nVerified scope: ${scopeSummary}`
+ );
+ return;
+ }
+
+ // ---- re-validate, then merge ----
+ // An unchanged head SHA means the verified file list still holds.
+ const { data: fresh } = await github.rest.pulls.get({
+ owner,
+ repo,
+ pull_number: pr.number
+ });
+
+ if (fresh.head.sha !== headSha || fresh.base.ref !== pr.base.ref || fresh.state !== 'open' || fresh.merged || fresh.draft) {
+ return refuse('it changed while I was checking it. Nothing was merged - re-run `/bot merge`.');
+ }
+
+ let merged;
+ try {
+ // Pinned to the verified head: a moved head fails with 409.
+ ({ data: merged } = await github.rest.pulls.merge({
+ owner,
+ repo,
+ pull_number: pr.number,
+ sha: headSha,
+ merge_method: MERGE_METHOD,
+ commit_title: `${pr.title} (#${pr.number})`,
+ commit_message:
+ `Merged by /bot merge on behalf of @${commenter} (id ${comment.user.id}).\n` +
+ `Grants: ${grants.join(', ')}\nHead: ${headSha}\n`
+ }));
+ } catch (error) {
+ const hint = {
+ 403: 'the workflow token cannot write to the repository.',
+ 405: 'GitHub refused the merge - branch protection, a required review or check, a newly added CODEOWNERS file, or squash merging being disabled.',
+ 409: `the head commit moved after I verified it (was \`${headSha.slice(0, 7)}\`).`,
+ 422: 'GitHub rejected the merge as invalid.'
+ }[error.status];
+
+ if (!hint) {
+ throw error;
+ }
+
+ await refuse(`${hint}\n\n> ${error.message}\n\nNothing was merged.`);
+ core.setFailed(`Delegated merge failed: ${error.status} ${error.message}`);
+ return;
+ }
+
+ core.info(`Merged #${pr.number} as ${merged.sha}.`);
+ await react('rocket');
+ await say(
+ `@${commenter} squash-merged into \`${pr.base.ref}\` as ${merged.sha}.\n\nVerified scope: ${scopeSummary}`
+ );
+
+ // ---- re-kick the build ----
+ // A GITHUB_TOKEN merge fires no push event, so build_all.yml would
+ // otherwise never see these files.
+ try {
+ await github.rest.actions.createWorkflowDispatch({
+ owner,
+ repo,
+ workflow_id: 'build_all.yml',
+ ref: pr.base.ref
+ });
+ core.info(`Dispatched build_all.yml on ${pr.base.ref}.`);
+ } catch (error) {
+ core.warning(`Merged successfully, but dispatching build_all.yml failed: ${error.message}`);
+ }
diff --git a/.gitignore b/.gitignore
index 916c7207b7..cdcd1c90b4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,7 @@ Build
Build.bat
/build*/
CMakeLists.txt.user
+CMakeUserPresets.json
**/CMakeLists.txt.autosave
deps/build*
MYMETA.json
@@ -49,3 +50,4 @@ internal_docs/
# Python bytecode
__pycache__/
*.pyc
+*.opc
diff --git a/AGENTS.md b/AGENTS.md
index fbc624b958..236aa54c05 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -56,6 +56,7 @@ ctest --test-dir ./tests/fff_print
- Add helper functions or utilities only when existing code cannot reasonably be reused. Avoid duplication.
- Keep code concise and clear. Manually simplify AI generated bloated codes before review.
- Include targeted tests or documented verification for behavior changes, especially in slicing logic, profiles, formats, and GUI defaults.
+- For profile changes (`resources/profiles//**`), check that `version` in the sibling `resources/profiles/.json` was bumped.
- For translation changes (`localization/i18n/**/*.po`), check that recurring terms match the [Localization glossary](https://github.com/OrcaSlicer/OrcaSlicer_WIKI/blob/main/guides/localization_glossary.md) for that language.
## Localization & translations
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1e65dc5132..c912cdd08f 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -59,6 +59,13 @@ if (APPLE)
message(STATUS "CMAKE_OSX_DEPLOYMENT_TARGET: ${CMAKE_OSX_DEPLOYMENT_TARGET}")
endif ()
+# Keep MSVC's default /W3 out of CMAKE__FLAGS so it can be applied to our own
+# targets only. Silencing a bundled target would otherwise override a warning level,
+# which cl reports as D9025 for every file it compiles.
+if (POLICY CMP0092)
+ cmake_policy(SET CMP0092 NEW)
+endif ()
+
project(OrcaSlicer)
# Backward compatibility for old CMake versions
@@ -126,6 +133,8 @@ option(SLIC3R_GUI "Compile OrcaSlicer with GUI components (OpenGL,
option(SLIC3R_FHS "Assume OrcaSlicer is to be installed in a FHS directory structure" 0)
option(SLIC3R_PROFILE "Compile OrcaSlicer with an invasive Shiny profiler" 0)
option(SLIC3R_PCH "Use precompiled headers" 1)
+option(SLIC3R_WARNINGS "Emit compiler warnings for OrcaSlicer sources" 1)
+option(SLIC3R_BUNDLED_WARNINGS "Emit compiler warnings for bundled third-party sources" 0)
option(SLIC3R_MSVC_COMPILE_PARALLEL "Compile on Visual Studio in parallel" 1)
option(SLIC3R_MSVC_PDB "Generate PDB files on MSVC in Release mode" 1)
option(SLIC3R_ASAN "Enable ASan on Clang and GCC" 0)
@@ -337,15 +346,20 @@ if (MSVC AND CMAKE_CXX_COMPILER_ID STREQUAL Clang)
# clang-cl can interpret SYSTEM header paths if -imsvc is used
set(CMAKE_INCLUDE_SYSTEM_FLAG_CXX "-imsvc")
-
- set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall \
- -Wno-old-style-cast -Wno-reserved-id-macro -Wno-c++98-compat-pedantic")
else ()
set(IS_CLANG_CL FALSE)
endif ()
if (MSVC)
- if (SLIC3R_MSVC_COMPILE_PARALLEL AND NOT IS_CLANG_CL)
+ # CMP0092 only applies when the cache is created; an existing tree keeps its /W3,
+ # which a silenced bundled target would then override (D9025, once per file).
+ string(REGEX REPLACE "/W[0-4]" "" CMAKE_C_FLAGS "${CMAKE_C_FLAGS}")
+ string(REGEX REPLACE "/W[0-4]" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
+
+ # /MP only matters for the VS generators, where CMake turns it into the
+ # MultiProcessorCompilation property. Ninja parallelises on its own, and
+ # clang-cl warns "argument unused" if the flag reaches it.
+ if (SLIC3R_MSVC_COMPILE_PARALLEL AND CMAKE_GENERATOR MATCHES "Visual Studio")
add_compile_options(/MP)
endif ()
# /bigobj (Increase Number of Sections in .Obj file)
@@ -526,8 +540,15 @@ if (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUXX)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fext-numeric-literals" )
endif()
-if (NOT MSVC AND ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang"))
- if (NOT MINGW)
+if ((NOT MSVC OR IS_CLANG_CL) AND ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang"))
+ if (IS_CLANG_CL)
+ # clang-cl reads -Wall as MSVC /Wall, which clang maps to -Weverything. /W4 is
+ # its -Wall -Wextra and, unlike /clang:-Wall, is ordered with the -Wno-* below
+ # instead of after them. The -Wextra-only warnings are dropped again so the set
+ # matches what -Wall gives the GNU/Clang builds.
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4" )
+ add_compile_options(-Wno-unused-parameter -Wno-ignored-qualifiers -Wno-missing-field-initializers)
+ elseif (NOT MINGW)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall" )
endif ()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-reorder" )
@@ -1139,8 +1160,57 @@ function(orcaslicer_copy_sos target config postfix output_sos)
)
endfunction()
+# Bundled sources set their own warning flags, and a plain -Wall there means /Wall
+# (= -Weverything) under clang-cl. Target options are applied after the ones a target
+# set on itself, so these win. Targets are discovered rather than listed so a newly
+# bundled library needs no maintenance here.
+function(orcaslicer_silence_third_party_warnings _dir)
+ get_property(_subdirs DIRECTORY "${_dir}" PROPERTY SUBDIRECTORIES)
+ foreach (_subdir IN LISTS _subdirs)
+ orcaslicer_silence_third_party_warnings("${_subdir}")
+ endforeach ()
+ get_property(_targets DIRECTORY "${_dir}" PROPERTY BUILDSYSTEM_TARGETS)
+ foreach (_target IN LISTS _targets)
+ get_target_property(_type ${_target} TYPE)
+ if (NOT _type STREQUAL "INTERFACE_LIBRARY" AND NOT _type STREQUAL "UTILITY")
+ if (MSVC AND NOT IS_CLANG_CL)
+ # Drop any level the target set for itself, or -w overrides it and cl
+ # reports D9025 once per file.
+ get_target_property(_opts ${_target} COMPILE_OPTIONS)
+ if (_opts)
+ string(REGEX REPLACE "/W[0-4]|/Wall" "" _opts "${_opts}")
+ string(REGEX REPLACE ";;+" ";" _opts "${_opts}")
+ set_target_properties(${_target} PROPERTIES COMPILE_OPTIONS "${_opts}")
+ endif ()
+ # CMake maps a level into the VS generator's WarningLevel element, while a
+ # bare -w stays on the command line and trips D9025 there, once per file.
+ target_compile_options(${_target} PRIVATE /W0)
+ else ()
+ target_compile_options(${_target} PRIVATE -w)
+ endif ()
+ endif ()
+ endforeach ()
+endfunction()
+
+
# libslic3r, OrcaSlicer GUI and the OrcaSlicer executable.
add_subdirectory(deps_src)
+
+if (NOT SLIC3R_BUNDLED_WARNINGS)
+ orcaslicer_silence_third_party_warnings("${CMAKE_CURRENT_SOURCE_DIR}/deps_src")
+endif ()
+
+# Warning level for the targets added below: our sources, plus glad and libvgcode,
+# which are vendored but live under src/. The deps_src libraries were configured just
+# above. CMP0092 left MSVC without a default level, so it is set here.
+if (NOT SLIC3R_WARNINGS)
+ add_compile_options(-w)
+elseif (MSVC AND NOT IS_CLANG_CL)
+ # /we4715 is C4715, no return from a non-void function, matching the
+ # -Werror=return-type the GNU/Clang builds apply.
+ add_compile_options(/W3 /we4715)
+endif ()
+
add_subdirectory(src)
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT OrcaSlicer_app_gui)
@@ -1152,6 +1222,10 @@ endif()
if(BUILD_TESTS)
add_subdirectory(tests)
+ if (NOT SLIC3R_BUNDLED_WARNINGS)
+ # Catch2 is vendored under tests/ and sets its own warning flags too.
+ orcaslicer_silence_third_party_warnings("${CMAKE_CURRENT_SOURCE_DIR}/tests/catch2")
+ endif ()
endif()
if (NOT WIN32 AND NOT APPLE)
diff --git a/build_linux.sh b/build_linux.sh
index 72ea742f1a..6d65a10e41 100755
--- a/build_linux.sh
+++ b/build_linux.sh
@@ -567,6 +567,8 @@ if [[ -n "${BUILD_ORCA}" ]] || [[ -n "${BUILD_TESTS}" ]] ; then
print_and_run cmake --build $BUILD_DIR --config "${BUILD_CONFIG}" --target OrcaSlicer
echo "Building OrcaSlicer_profile_validator .."
print_and_run cmake --build $BUILD_DIR --config "${BUILD_CONFIG}" --target OrcaSlicer_profile_validator
+ echo "Building generate_system_cache ..."
+ print_and_run cmake --build $BUILD_DIR --config "${BUILD_CONFIG}" --target generate_system_cache
./scripts/run_gettext.sh
fi
if [[ -n "${BUILD_TESTS}" ]] ; then
diff --git a/build_release_vs.bat b/build_release_vs.bat
index 3288beda4c..78419dadf5 100644
--- a/build_release_vs.bat
+++ b/build_release_vs.bat
@@ -152,7 +152,7 @@ echo on
set CMAKE_POLICY_VERSION_MINIMUM=3.5
if "%USE_NINJA%"=="1" (
cmake .. -G %CMAKE_GENERATOR% -DORCA_TOOLS=ON %SIG_FLAG% -DBUILD_TESTS=%BUILD_TESTS% -DCMAKE_BUILD_TYPE=%build_type%
- cmake --build . --config %build_type% --target ALL_BUILD
+ cmake --build . --config %build_type% --target all
) else (
cmake .. -G %CMAKE_GENERATOR% -A %arch% -DORCA_TOOLS=ON %SIG_FLAG% -DBUILD_TESTS=%BUILD_TESTS% -DCMAKE_BUILD_TYPE=%build_type%
cmake --build . --config %build_type% --target ALL_BUILD -- -m
diff --git a/deps/Assimp/Assimp.cmake b/deps/Assimp/Assimp.cmake
new file mode 100644
index 0000000000..8b4de03b09
--- /dev/null
+++ b/deps/Assimp/Assimp.cmake
@@ -0,0 +1,40 @@
+if(CMAKE_VERSION VERSION_LESS 3.22)
+ set(_assimp_url "https://github.com/assimp/assimp/archive/refs/tags/v5.3.1.tar.gz")
+ set(_assimp_hash "SHA256=a07666be71afe1ad4bc008c2336b7c688aca391271188eb9108d0c6db1be53f1")
+else()
+ set(_assimp_url "https://github.com/assimp/assimp/archive/refs/tags/v5.4.3.tar.gz")
+ set(_assimp_hash "SHA256=66dfbaee288f2bc43172440a55d0235dfc7bf885dda6435c038e8000e79582cb")
+endif()
+
+# Assimp's bundled zlib (contrib/zlib) is too old to compile against the modern
+# macOS SDK: its zutil.h takes the classic-Mac branch under TARGET_OS_MAC and
+# does `#define fdopen(fd,mode) NULL`, which then clobbers the SDK's real
+# `fdopen` prototype in and breaks the build. On macOS use the system
+# zlib (already found by find_package(ZLIB) in deps-unix-common) instead.
+if(APPLE)
+ set(_assimp_build_zlib "-DASSIMP_BUILD_ZLIB=OFF")
+else()
+ set(_assimp_build_zlib "-DASSIMP_BUILD_ZLIB=ON")
+endif()
+
+orcaslicer_add_cmake_project(Assimp
+ URL ${_assimp_url}
+ URL_HASH ${_assimp_hash}
+ CMAKE_ARGS
+ -DASSIMP_BUILD_TESTS=OFF
+ -DASSIMP_BUILD_SAMPLES=OFF
+ -DASSIMP_BUILD_ASSIMP_TOOLS=OFF
+ -DASSIMP_INSTALL_PDB=OFF
+ -DASSIMP_NO_EXPORT=ON
+ -DASSIMP_BUILD_ALL_IMPORTERS_BY_DEFAULT=OFF
+ -DASSIMP_BUILD_GLTF_IMPORTER=ON
+ -DASSIMP_BUILD_OBJ_IMPORTER=ON
+ -DASSIMP_BUILD_FBX_IMPORTER=ON
+ ${_assimp_build_zlib}
+ -DASSIMP_WARNINGS_AS_ERRORS=OFF
+ -DBUILD_WITH_STATIC_CRT=OFF
+)
+
+if (MSVC)
+ add_debug_dep(dep_Assimp)
+endif ()
diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt
index b7435df295..2b0cb7694f 100644
--- a/deps/CMakeLists.txt
+++ b/deps/CMakeLists.txt
@@ -368,6 +368,7 @@ include(libnoise/libnoise.cmake)
include(Draco/Draco.cmake)
include(FFMPEG/FFMPEG.cmake)
+include(Assimp/Assimp.cmake)
# I *think* 1.1 is used for *just* md5 hashing?
@@ -451,6 +452,7 @@ set(_dep_list
dep_python3
dep_wxInspector
dep_FFMPEG
+ dep_Assimp
)
if (MSVC)
diff --git a/deps/TBB/MSVC.cmake b/deps/TBB/MSVC.cmake
new file mode 100644
index 0000000000..d7984bff80
--- /dev/null
+++ b/deps/TBB/MSVC.cmake
@@ -0,0 +1,98 @@
+# Copyright (c) 2020-2021 Intel Corporation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+set(TBB_LINK_DEF_FILE_FLAG ${CMAKE_LINK_DEF_FILE_FLAG})
+set(TBB_DEF_FILE_PREFIX win${TBB_ARCH})
+
+# Workaround for CMake issue https://gitlab.kitware.com/cmake/cmake/issues/18317.
+# TODO: consider use of CMP0092 CMake policy.
+string(REGEX REPLACE "/W[0-4]" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
+
+set(TBB_WARNING_LEVEL $<$:/W4> $<$:/WX>)
+
+# Warning suppression C4324: structure was padded due to alignment specifier
+set(TBB_WARNING_SUPPRESS /wd4324)
+set(TBB_TEST_COMPILE_FLAGS /bigobj)
+
+if (MSVC_VERSION LESS_EQUAL 1900)
+ # Warning suppression C4503 for VS2015 and earlier:
+ # decorated name length exceeded, name was truncated.
+ # More info can be found at
+ # https://docs.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-1-c4503
+ set(TBB_TEST_COMPILE_FLAGS ${TBB_TEST_COMPILE_FLAGS} /wd4503)
+endif()
+
+set(TBB_LIB_COMPILE_FLAGS -D_CRT_SECURE_NO_WARNINGS /GS)
+set(TBB_COMMON_COMPILE_FLAGS /volatile:iso /FS /EHsc)
+
+# Ignore /WX set through add_compile_options() or added to CMAKE_CXX_FLAGS if TBB_STRICT is disabled.
+if (NOT TBB_STRICT AND COMMAND tbb_remove_compile_flag)
+ tbb_remove_compile_flag(/WX)
+endif()
+
+if (WINDOWS_STORE OR TBB_WINDOWS_DRIVER)
+ set(TBB_COMMON_COMPILE_FLAGS ${TBB_COMMON_COMPILE_FLAGS} /D_WIN32_WINNT=0x0A00)
+ set(TBB_COMMON_LINK_FLAGS -NODEFAULTLIB:kernel32.lib -INCREMENTAL:NO)
+ set(TBB_COMMON_LINK_LIBS OneCore.lib)
+endif()
+
+if (WINDOWS_STORE)
+ if (NOT CMAKE_SYSTEM_VERSION EQUAL 10.0)
+ message(FATAL_ERROR "CMAKE_SYSTEM_VERSION must be equal to 10.0")
+ endif()
+ set(TBB_COMMON_COMPILE_FLAGS ${TBB_COMMON_COMPILE_FLAGS} /ZW /ZW:nostdlib)
+ # CMake define this extra lib, remove it for this build type
+ string(REGEX REPLACE "WindowsApp.lib" "" CMAKE_CXX_STANDARD_LIBRARIES "${CMAKE_CXX_STANDARD_LIBRARIES}")
+
+ if (TBB_NO_APPCONTAINER)
+ set(TBB_LIB_LINK_FLAGS ${TBB_LIB_LINK_FLAGS} -APPCONTAINER:NO)
+ endif()
+endif()
+
+if (TBB_WINDOWS_DRIVER)
+ # Since this is universal driver disable this variable
+ set(CMAKE_SYSTEM_PROCESSOR "")
+ # CMake define list additional libs, remove it for this build type
+ set(CMAKE_CXX_STANDARD_LIBRARIES "")
+ set(TBB_COMMON_COMPILE_FLAGS ${TBB_COMMON_COMPILE_FLAGS} /D _UNICODE /DUNICODE /DWINAPI_FAMILY=WINAPI_FAMILY_APP /D__WRL_NO_DEFAULT_LIB__)
+endif()
+
+if (NOT DEFINED TBB_ENABLE_IPO)
+ if (DEFINED CMAKE_INTERPROCEDURAL_OPTIMIZATION)
+ set(TBB_ENABLE_IPO ${CMAKE_INTERPROCEDURAL_OPTIMIZATION})
+ else()
+ set(TBB_ENABLE_IPO ON)
+ endif()
+endif()
+
+if (TBB_ENABLE_IPO)
+ if (CMAKE_CXX_COMPILER_ID MATCHES "(Clang|IntelLLVM)")
+ if (CMAKE_SYSTEM_PROCESSOR MATCHES "(x86|AMD64)")
+ set(TBB_COMMON_COMPILE_FLAGS ${TBB_COMMON_COMPILE_FLAGS} -mrtm -mwaitpkg)
+ endif()
+ set(TBB_OPENMP_NO_LINK_FLAG TRUE)
+ set(TBB_IPO_COMPILE_FLAGS $<$>:-flto>)
+ else()
+ set(TBB_IPO_COMPILE_FLAGS $<$>:/GL>)
+ set(TBB_IPO_LINK_FLAGS $<$>:-LTCG> $<$>:-INCREMENTAL:NO>)
+ endif()
+else()
+ if (CMAKE_CXX_COMPILER_ID MATCHES "(Clang|IntelLLVM)" AND CMAKE_SYSTEM_PROCESSOR MATCHES "(x86|AMD64)")
+ set(TBB_COMMON_COMPILE_FLAGS ${TBB_COMMON_COMPILE_FLAGS} -mrtm -mwaitpkg)
+ endif()
+ set(TBB_IPO_COMPILE_FLAGS "")
+ set(TBB_IPO_LINK_FLAGS "")
+endif()
+
+set(TBB_OPENMP_FLAG /openmp)
diff --git a/deps/TBB/TBB.cmake b/deps/TBB/TBB.cmake
index 9b1452d33e..dac2ed63e6 100644
--- a/deps/TBB/TBB.cmake
+++ b/deps/TBB/TBB.cmake
@@ -1,4 +1,6 @@
-if (FLATPAK AND "${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
+if (MSVC)
+ set(_patch_command ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_LIST_DIR}/MSVC.cmake ./cmake/compilers/MSVC.cmake)
+elseif (FLATPAK AND "${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
set(_patch_command ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_LIST_DIR}/GNU.cmake ./cmake/compilers/GNU.cmake)
else()
set(_patch_command "")
@@ -13,6 +15,8 @@ orcaslicer_add_cmake_project(
-DTBB_BUILD_SHARED=OFF
-DTBB_BUILD_TESTS=OFF
-DTBB_TEST=OFF
+ -DTBB_ENABLE_IPO=OFF
+ -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF
-DCMAKE_POSITION_INDEPENDENT_CODE=ON
-DCMAKE_DEBUG_POSTFIX=_debug
)
diff --git a/deps/wxWidgets/0001-Clang-CL-fix.patch b/deps/wxWidgets/0001-Clang-CL-fix.patch
new file mode 100644
index 0000000000..23bf23b3f4
--- /dev/null
+++ b/deps/wxWidgets/0001-Clang-CL-fix.patch
@@ -0,0 +1,28 @@
+---
+ build/cmake/wxWidgetsConfig.cmake.in | 10 +++++++++-
+ 1 file changed, 10 insertions(+), 1 deletion(-)
+
+diff --git a/build/cmake/wxWidgetsConfig.cmake.in b/build/cmake/wxWidgetsConfig.cmake.in
+index 1a83f36..70ad8a4 100644
+--- a/build/cmake/wxWidgetsConfig.cmake.in
++++ b/build/cmake/wxWidgetsConfig.cmake.in
+@@ -58,7 +58,16 @@ if(WIN32_MSVC_NAMING)
+ endif()
+ endif()
+
+-include("${CMAKE_CURRENT_LIST_DIR}${wxPLATFORM_LIB_DIR}/@PROJECT_NAME@Targets.cmake")
++if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND CMAKE_CXX_COMPILER_FRONTEND_VARIANT STREQUAL "MSVC")
++ if (CMAKE_GENERATOR_PLATFORM STREQUAL "ARM64" OR CMAKE_VS_PLATFORM_NAME STREQUAL "ARM64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "^(ARM64|arm64|aarch64)$")
++ set(_wx_clang_msvc_lib_dir "vc_arm64_lib")
++ else()
++ set(_wx_clang_msvc_lib_dir "vc_x64_lib")
++ endif()
++ include("${CMAKE_CURRENT_LIST_DIR}${wxPLATFORM_LIB_DIR}/${_wx_clang_msvc_lib_dir}/@PROJECT_NAME@Targets.cmake")
++else()
++ include("${CMAKE_CURRENT_LIST_DIR}${wxPLATFORM_LIB_DIR}/@PROJECT_NAME@Targets.cmake")
++endif()
+
+ macro(wx_inherit_property source dest name)
+ # property name without _
+--
+2.43.0
diff --git a/deps/wxWidgets/wxWidgets.cmake b/deps/wxWidgets/wxWidgets.cmake
index 1e2cc85f78..07bb31d8be 100644
--- a/deps/wxWidgets/wxWidgets.cmake
+++ b/deps/wxWidgets/wxWidgets.cmake
@@ -28,6 +28,7 @@ orcaslicer_add_cmake_project(
GIT_SHALLOW ON
GIT_SUBMODULES 3rdparty/catch 3rdparty/pcre 3rdparty/libwebp
DEPENDS ${PNG_PKG} ${ZLIB_PKG} ${EXPAT_PKG} ${JPEG_PKG}
+ PATCH_COMMAND git apply --verbose --ignore-space-change --whitespace=fix ${CMAKE_CURRENT_LIST_DIR}/0001-Clang-CL-fix.patch
CMAKE_ARGS
-DwxBUILD_PRECOMP=ON
${_wx_toolkit}
diff --git a/deps_src/clipper2/CMakeLists.txt b/deps_src/clipper2/CMakeLists.txt
index c604002da7..86c9a9efab 100644
--- a/deps_src/clipper2/CMakeLists.txt
+++ b/deps_src/clipper2/CMakeLists.txt
@@ -37,7 +37,11 @@ target_include_directories(Clipper2
)
if (WIN32)
- target_compile_options(Clipper2 PRIVATE /W4 /WX)
+ if (MSVC AND NOT CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
+ target_compile_options(Clipper2 PRIVATE /W4 /WX)
+ elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND CMAKE_CXX_COMPILER_FRONTEND_VARIANT STREQUAL "MSVC")
+ target_compile_options(Clipper2 PRIVATE /W4)
+ endif()
else()
target_compile_options(Clipper2 PRIVATE -Wall -Wextra -Wpedantic -Werror)
target_link_libraries(Clipper2 PUBLIC -lm)
diff --git a/deps_src/miniz/CMakeLists.txt b/deps_src/miniz/CMakeLists.txt
index e02d8a4885..7e060a180f 100644
--- a/deps_src/miniz/CMakeLists.txt
+++ b/deps_src/miniz/CMakeLists.txt
@@ -11,6 +11,8 @@ add_library(miniz_static STATIC
if(${CMAKE_C_COMPILER_ID} STREQUAL "GNU")
target_compile_definitions(miniz_static PRIVATE _GNU_SOURCE)
+elseif (CMAKE_C_COMPILER_ID STREQUAL "Clang" AND CMAKE_C_COMPILER_FRONTEND_VARIANT STREQUAL "MSVC")
+ target_compile_options(miniz_static PRIVATE /clang:-Wno-error=incompatible-pointer-types)
endif()
target_link_libraries(miniz INTERFACE miniz_static)
diff --git a/docs/HLSD/preset-cache.md b/docs/HLSD/preset-cache.md
new file mode 100644
index 0000000000..6e693dbd6f
--- /dev/null
+++ b/docs/HLSD/preset-cache.md
@@ -0,0 +1,402 @@
+# System Preset Cache — High Level Design
+
+## Why it exists
+
+OrcaSlicer ships tens of thousands of system preset JSON files. Every launch used to
+parse all of them: read each vendor profile, walk its machine, process and filament
+sub-files, resolve inheritance, and build the preset collections from scratch. That
+parse dominated startup, and it produced the same result every time, because system
+presets only change when the app is updated or a profile update is installed.
+
+The preset cache replaces that parse with a read. Each vendor's presets are serialized
+once — at build time, in CI — into a single binary file the app reads in one pass. The
+read replaces the file walk and the JSON parsing, which is where the time went;
+resolving inheritance and registering the presets still runs at load, through the same
+code the JSON path uses, so the result is the parse's result without the parse.
+
+The cache is **only ever an optimization**. Every rule below exists to guarantee that a
+cache is either provably equivalent to parsing the JSONs, or rejected. There is no
+"mostly right" cache.
+
+## The unit is one vendor
+
+A cache covers exactly one vendor. `BBL.opc` sits beside `BBL.json` and holds
+everything `BBL.json` and the `BBL/` sub-file tree would have produced.
+
+Per-vendor granularity is what makes the system practical:
+
+- A vendor whose profile is bumped invalidates only its own cache. The other 60-odd
+ vendors keep theirs — even when the bumped vendor is the shared Orca filament
+ library everyone else inherits from.
+- The setup wizard, which loads vendors one at a time, gets the same speedup as
+ startup without a second code path.
+- A vendor with no cache, or a broken one, costs only that vendor a parse.
+
+A cache holds *system* presets only. User presets, project settings and modified
+presets are never serialized — they have their own storage and their own lifecycle.
+
+## Where the files live
+
+| Location | Contents on a shipped build | Role |
+|---|---|---|
+| `resources/profiles/` | `.opc` alone — the profile and its preset JSONs both pruned | What the app ships with; what installing copies from, and the only thing it is read for |
+| `/system/` | `.opc` alone, or `.json` + `/` after an update | What the user has installed |
+| `/system/` (dev build) | `.json` + `/` + `.opc` written at runtime | A developer tree caches as it parses |
+| `/cache/wizard_profile_data.json` | The wizard's derived vendor catalog plus the stamps it was built from | Written and read by the setup wizard only; never shipped (see "The wizard's profile-data cache") |
+
+Two forms of the same vendor therefore exist, and the system's central rule is that
+**a vendor's cache is the whole of it**. Where a cache ships or is installed, no profile
+and no preset JSONs sit beside it: the cache carries the presets, the vendor profile,
+and the version stamp that says which release it came from. A vendor is "installed" if
+either form is present *and usable*, and its installed version is read from whichever
+form a load would serve.
+
+What stays beside the caches in `resources/profiles/` is everything that is not a
+preset: each vendor's directory of printer thumbnails, cover images, bed models and
+hotend meshes, which are read from disk by path and were never part of the cache. Files
+that are not vendors at all, `blacklist.json` chief among them, are untouched.
+
+The alternative — shipping both and treating the cache as a sidecar — was rejected. It
+doubles the installed size, and it creates a class of bug where the two disagree and
+the app's behavior depends on which one a given code path happened to read.
+
+## What a cache file is
+
+A fixed-size header followed by one binary stream.
+
+The header carries a magic number, the cache format version, the payload size and a
+CRC32 of the payload. It exists so that a truncated download, a half-written file or a
+file from an entirely different program is rejected in microseconds, before anything
+tries to interpret it.
+
+The payload opens with the stamps that decide whether the cache may be used at all —
+format version, vendor name, vendor version — then a dictionary, and then the vendor's
+data: its vendor profile, three lists of preset entries (process, filament, machine),
+and the count of errors the original parse hit.
+
+Each entry is one preset **in source form**: what its JSON sub-file states and nothing
+that resolving it derives — the preset's own config diff, the name of the preset it
+inherits, and the parse metadata (name, sub-path, description, instantiation, setting
+and filament ids, renames). Non-instantiated base presets are stored too; the children
+that inherit from them cannot resolve without them.
+
+**The payload names its own keys.** The dictionary holds the distinct `opt_key`s the
+file uses, the `ConfigOptionType` each was written as, and the distinct enum *value
+names*; an option in an entry's config is then a `uint16` index into that dictionary
+plus its value. Names are written once per file rather than once per occurrence, and a
+reader resolves the dictionary against this build's `print_config_def` once, after
+which reading an option is a vector index.
+
+This is what makes the cache survive config-schema drift. The alternative — keying an
+option by its `serialization_key_ordinal`, the position `ConfigDef::add` assigns by
+declaration order at static init — cannot: inserting one option into the middle of
+`PrintConfig.cpp` shifts every later ordinal, and the lookup on the way back in then
+*succeeds on the wrong option*, silently, wherever the two share a type. Because a
+name-keyed payload instead drops the individual options this build cannot place, the
+file as a whole stays readable, and there is no schema fingerprint — no checksum over
+the option schema that would reject every cache on every release. An option this build
+no longer defines, or now defines with a different type, gets exactly what it gets from
+a JSON profile: read, dropped, and the rest of the preset loads.
+
+The ordinal-keyed cereal hooks in `PrintConfig.hpp` are untouched — they are also the
+undo/redo wire format, where the process cannot change underneath them. The cache has
+its own serialization in `PresetCacheFormat.{hpp,cpp}`.
+
+Three deliberate choices in the layout:
+
+- **Stamps come first**, so the question "what version is this vendor installed at?"
+ can be answered by reading the first kilobyte. The updater asks that question for
+ every vendor on every launch; reading tens of megabytes to answer it would give back
+ the startup time the cache saved. The dictionary sits behind them, ahead of the
+ entries, so a reader that does go on resolves it once and then indexes.
+- **Nothing inherited is baked in.** A filament preset that inherits from the shared
+ library is stored as its own diff plus its parent's name, and the parent is looked up
+ when the entry is installed, against whatever library is loaded then. A cache
+ therefore carries no other vendor's values, and no other vendor's update — the
+ library's included — can make it stale.
+- **Nothing derived is stored.** Default presets, flattened configs, aliases and
+ lookup maps are all reconstructed at load by the same code the JSON path runs, and
+ state that path never fills (obsolete-preset lists) is not stored either. This keeps
+ the cache a record of the vendor's data, not a memory image of the program's state.
+
+## When a cache may be used
+
+A cache is accepted only if every gate below passes. Any failure means "parse the
+JSONs instead" — never a hard error, never a partial load.
+
+**1. Integrity.** Magic number, a declared body size that is exactly the rest of the
+file, CRC32 over the payload. The size is checked against the file's real length before
+anything is allocated on the strength of it, so an eight-byte field in an unauthenticated
+file cannot ask for a gigabyte.
+
+**2. Cache format version.** A single integer bumped by hand whenever the binary layout
+changes in a way nothing else would catch: reordering or retyping a hand-written
+serialized field, or changing what the cache's own stamps mean. Config-schema drift is
+explicitly *not* such a change — the dictionary handles it — so this no longer moves
+every release.
+
+**3. Vendor identity and version.** The cache names the vendor it holds and the profile
+version it was built from. It is accepted only if that version is at least as new as
+the profile now on disk. Where no profile sits beside the cache — the shipped,
+cache-only form — the comparison is skipped, because nothing on disk can be newer than
+a cache that is the installation.
+
+**4. Every entry installs.** Entries are installed as they are read, and an entry that
+cannot be — typically one that inherits a parent the currently loaded filament library
+no longer provides — rejects the whole cache, never just the entry. A partial vendor is
+not a vendor.
+
+There is deliberately no stamp for the shared filament library. A cache stores its
+filaments' inheritance by name and resolves it at load, so a library update changes
+what a cache load *produces*, never whether the cache is *valid* — the same file yields
+the updated result. This matters most on a shipped build, where a vendor is its cache
+and nothing else: a profile update that delivered only the library would otherwise have
+stranded every other vendor with a cache it invalidated and no JSONs to fall back on.
+
+A vendor profile with no parsable version is never cached and never served from a
+cache. There would be no way to tell later whether the cache had gone stale, and a
+cache nothing can invalidate is worse than no cache.
+
+## How a vendor is loaded
+
+Vendors load in a fixed order, because filament inheritance crosses exactly one
+boundary: any vendor's filament may inherit from the shared Orca filament library,
+and nothing else reaches across vendors. The library therefore goes first, alone;
+every other vendor follows in parallel, resolving against it; and the results are
+merged in a stable order:
+
+```mermaid
+flowchart LR
+ lib["1 · OrcaFilamentLibrary
loaded first, synchronously"] --> par["2 · every other vendor in parallel,
each into its own bundle, filaments
resolving against the loaded library"] --> merge["3 · bundles merged into one,
sequentially, in stable vendor order"]
+```
+
+Whether a vendor comes from its cache or from a parse changes nothing in that
+order — both produce the same bundle, so cached and parsed vendors mix freely in
+one startup.
+
+**A vendor is loaded from where it is installed and nowhere else.** For startup that
+is `/system/`; resources reaches the app by being *installed* into that
+directory first, never by being loaded from. (The setup wizard is the one caller with
+a different notion of "where": it also shows vendors the user has not installed, and
+loads those from `resources/profiles` — see "The wizard's profile-data cache".) There
+is one lookup tier and one parse source:
+
+```
+load vendor V from /system:
+ system/V.opc passes CACHE_VERSION + size + CRC + vendor name + version gate?
+ yes -> serve from it
+ no -> parse system/V.json, then write system/V.opc back
+```
+
+The same decision drawn out — "the gates" are the four acceptance checks above:
+
+```mermaid
+flowchart TB
+ start["load vendor V from a directory dir
— normally <data_dir>/system/"]
+ start --> stamp["installed version = version of dir/V.json
— or ∞ with no profile there,
the cache then being the installation"]
+ stamp --> g1{"dir/V.opc
passes all four gates?"}
+ g1 -- "yes" --> hit(["served from the
installed cache"])
+ g1 -- "no" --> pd["parse the JSONs in dir"]
+ pd --> ver{"profile version
parsable?"}
+ ver -- "yes" --> save(["loaded; dir/V.opc written back —
the next load takes the top path"])
+ ver -- "no" --> raw(["loaded, never cached"])
+```
+
+A second tier into `resources/profiles/` used to sit between those two, and a parse
+fallback to the same place behind them. Both existed only because an installed cache
+died on every app upgrade, when the schema fingerprint rejected it; with the fingerprint
+gone there is nothing for them to rescue. They also had a cost: on a developer tree the
+shipped cache answered first, so the profile in `/system/` was never parsed
+and its cache was never written back.
+
+Serving from a cache is not a memory-image restore. The entries are deserialized and
+then installed one by one — inheritance resolved against the presets installed before
+them and the currently loaded filament library, configs flattened onto the collection
+defaults, validated and registered — by the same function the JSON path calls straight
+after parsing a sub-file. The two paths share everything below the parse, which is what
+makes a cache-loaded bundle indistinguishable from a JSON-loaded one by construction
+rather than by test coverage. Installation also rebuilds each preset's file path from
+the local data directory, so a shipped cache never carries the generating machine's
+paths.
+
+App upgrades work because a cache normally survives one. Only a deliberate
+`CACHE_VERSION` bump makes an installed cache unreadable, and that is handled at
+install time rather than at load: a vendor whose cache this build cannot read counts
+as **not installed**, so the updater lays down a working copy on the next launch (see
+below). A vendor that still has its profile JSONs beside the cache is simply parsed
+and re-cached.
+
+If a parse does happen and the vendor's profile carries a version, the app writes the
+cache back beside where it looked for the vendor. That is how a developer build warms
+itself up on second launch, and how a vendor delivered by a profile update becomes
+cached without waiting for the next release.
+
+## The wizard's profile-data cache
+
+The setup wizard's printer and filament pages want every vendor in one bundle — the
+installed ones *and* the shipped ones the user has not installed yet, because the
+wizard is where installing is chosen. Its set therefore spans two directories:
+`/system/` for installed vendors (shadowing resources on a name collision),
+`resources/profiles` for the rest, each vendor loaded from its own directory.
+
+What the wizard actually consumes from that bundle is one derived JSON — the model /
+machine / filament / process catalog its web pages render — and that JSON is a pure
+function of the vendor set: each vendor's name and version, in load order. A profile
+change requires a version bump, so name and version determine a vendor's content
+wherever its copy sits; which directory served it is deliberately **not** stamped,
+and installing or removing a copy at an unchanged version leaves the cache valid. So
+the wizard caches the *derived JSON*, not another form of the inputs:
+`/cache/wizard_profile_data.json` holds the stamp list and the catalog. On
+open, the wizard computes the current stamps (one version peek per vendor) and, when
+they match, serves the catalog from the file — no bundle built, no preset installed.
+Caching bundle inputs instead was tried and measured: rebuilding the bundle from
+per-vendor caches costs ~2 s of preset installation whatever feeds it, so only
+skipping the rebuild entirely wins.
+
+Any change to the set — a vendor added, removed or updated, or its cache-only
+`.opc` replaced by a newer one — changes the stamps and retires the whole file;
+the wizard then rebuilds the bundle vendor by vendor (per-vendor caches serving where
+they cover) and writes the catalog back. Selections, region and per-open decorations
+are applied downstream of the cache either way, so a served catalog is
+indistinguishable from a rebuilt one. Nothing ships this file and the updater never
+touches it; it is a locally written artifact, re-derived whenever stale, written
+through a temp file and rename so half a cache is never readable.
+
+The cache lives under `/cache/`, not beside the vendors: everything that
+scans `/system/` treats any `.opc` there as a vendor, so a non-vendor
+cache file must not sit in that directory. Relatedly, the stamp reader is hardened:
+`read_cache_stamps` validates the cache version before reading anything
+variable-length and bounds the stamp strings' lengths, so a reader pointed at a
+foreign or damaged `.opc` rejects it cleanly instead of aborting on a garbage
+64-bit allocation.
+
+## How a vendor is installed
+
+Installing copies from `resources/profiles/` into `/system/`. A shipped build
+offers only a cache and a source tree only JSONs, but a partially-generated tree can
+have both, at different versions, so the installer picks the form that ships at the
+**newer version** and installs only that one:
+
+- Cache newer or equal, and readable → copy the `.opc`, verify the *copy* is one this
+ build can read, and only then delete any profile and vendor directory a previous
+ install left behind, so nothing can shadow it.
+- Profile newer, or the cache unreadable or absent → copy the profile and the vendor's
+ preset JSONs exactly as the app did before caches existed, and delete any stale `.opc`
+ once the profile is safely in place.
+
+One vendor that cannot be installed is one vendor missing, not a reason to leave the
+rest uninstalled: the installer skips it, records the failure, and carries on with the
+batch. A vendor whose cache arrives unreadable falls back to installing its profile,
+which is decided by reading the copy rather than by the kilobyte peek that chose the
+form.
+
+**"Installed" means present and usable.** Where the cache is the whole of a vendor's
+installation, a `.opc` this build cannot read is not an installation — counted as one,
+the vendor would be stranded with nothing to load and the updater would never repair
+it. The installed version is likewise whichever form a load would actually serve: the
+cache's stamp while it covers the profile beside it, the profile's own version once it
+does not.
+
+The result is that only one form of a vendor is ever present, and it is the newest one
+the build has. This matters most for the update check, which compares what is installed
+against what installing *would* lay down: if those two disagreed about which form
+counts, a vendor could reinstall on every launch forever, or silently never update.
+
+Profile updates delivered over the air always arrive as JSONs, and they win — an
+updated vendor's real profile lands in the data directory, the installed cache beside it
+is older and gets rejected, and the vendor is parsed and re-cached. An update that touches only
+the filament library needs nothing more: every other vendor's cache stays valid and
+simply resolves against the new library on its next load.
+
+## How the caches are produced
+
+Cache generation is a build step, not something a user ever runs.
+
+One script per platform does the whole job, and CI calls it once on each. It builds a
+small dev-utility that loads a profiles directory exactly as the app would, with cache
+writing enabled, dropping a `.opc` beside every vendor profile it parses; then
+it copies those caches into each packaged application it was pointed at and deletes
+every preset JSON they replace — the vendor's own profile included. Only a vendor that
+actually has a cache is pruned, so a vendor the generator skipped keeps its JSONs and is
+simply parsed at startup.
+
+Caches are generated into the checkout's own `resources/profiles`, because that is what
+cpack re-installs from when it builds the NSIS installer — so that directory is also a
+prune target in CI. Pruning it deletes the checkout's preset JSONs, which is a packaging
+step, not something a build should do to a working tree by surprise: the Windows script
+refuses that target unless given `--prune-source`, and CI passes it.
+
+Generation runs after the build, in the same job, so the caches ship with a build that
+can read them.
+
+The flatpak differs only in where the script is called from. Nothing outside
+flatpak-builder ever builds it, so there is no packaged tree for the workflow to point
+the script at afterwards: the manifest runs it as a build step instead, against the
+profiles the install has already copied into `/app`.
+
+## Behavior when things go wrong
+
+The system is designed so that no cache problem is fatal:
+
+- **Corrupt, truncated or foreign file** — rejected at the header, vendor parsed. A
+ cache is written to a temp file beside its target and moved into place, so a write
+ that dies partway leaves the previous cache intact rather than a truncated one.
+- **An option this build no longer has, or now types differently** — that option alone
+ is dropped, exactly as a JSON profile's would be. The preset and the file load.
+- **Cache from a build with a different cache layout** — rejected on `CACHE_VERSION`.
+ A vendor with JSONs beside it is parsed and re-cached; a cache-only vendor reads as
+ not installed and the updater reinstalls it.
+- **Stale cache** — rejected on the vendor version stamp, vendor parsed and re-cached.
+- **Failure part-way through loading** — a deserialization error, or any entry that
+ fails to install — rejects the whole cache, and the bundle is reset to a clean state
+ before falling back, so a half-loaded cache can never leak into the parsed result.
+- **A vendor that can be neither read nor parsed** — logged, and left out. The setup
+ wizard drops that vendor from its list and opens with the rest; startup records the
+ error alongside the vendors that did load. One broken vendor never takes the app down.
+
+The one genuine limit: on a shipped build a vendor is its cache and nothing else, so a
+rejected cache has nothing to fall back to for that vendor. This is by design — the
+alternative is shipping every preset twice — and it is why the acceptance gates are
+conservative and why CI generates the caches with the same build that ships them. The
+recovery path is a profile update, which delivers real JSONs.
+
+It also means nothing may quietly assume a `.json` exists. Discovery, version
+checks and the update decision all read whichever form is present, and a code path that
+enumerates only `*.json` will find no vendors at all in a packaged build.
+
+## Maintenance rules
+
+- **Adding, removing, retyping or reordering a config option** needs nothing. The
+ payload names its keys and its enum values, so an option a cache carries and this
+ build does not is dropped; one this build has and the cache does not is simply
+ absent, as it would be from a JSON that predates it.
+- **Changing a hand-written `serialize()`** — `VendorProfile` or its nested types — or
+ the `CachedPreset` field list — written and read by `visit_entry` in
+ `PresetCacheFormat.cpp`, one list for the save, the load and the name peek alike — or
+ the cache's own layout or stamps, requires bumping `CACHE_VERSION` by hand.
+- **The dictionary indexes with a `uint16`**, so `print_config_def` may hold at most
+ 65535 options and one cache at most 65535 distinct enum value names.
+ `CacheDictionary::save` throws past that, which surfaces when CI generates the
+ caches rather than on a user's machine.
+- **Bumping `CACHE_VERSION` is safe without a resources fallback** because
+ `is_vendor_installed` means *present and usable*: cache-only vendors read as not
+ installed after a bump, and the updater reinstalls them from resources.
+- **Bumping a vendor profile's version** invalidates that vendor's cache and nothing
+ else — the filament library's included. Other vendors' caches resolve against the
+ new library the next time they load.
+- **Caches are never committed.** They are build artifacts, generated per build,
+ ignored by git.
+
+## Where this lives in the tree
+
+| Area | Files |
+|---|---|
+| Everything about the bytes on disk — the dictionary, one config's wire format, the file framing and stamps, entry serialization, `VendorCacheFile` save/load/peeks | `src/libslic3r/PresetCacheFormat.{hpp,cpp}` |
+| Serve-or-parse decision, installing cache entries into a bundle, cache write-back | `src/libslic3r/PresetBundle.{hpp,cpp}` |
+| Vendor profile serialization | `src/libslic3r/Preset.hpp` |
+| Vendor discovery, installed/shipped versions, installation | `src/libslic3r/utils.cpp` (declared in `Utils.hpp`) |
+| Update and reinstall decisions | `src/slic3r/Utils/PresetUpdater.cpp` |
+| Setup wizard and printer-selection dialog | `src/slic3r/GUI/ConfigWizard.cpp`, `src/slic3r/GUI/WebGuideDialog.cpp` |
+| Generator tool | `src/dev-utils/generate_system_cache.cpp` |
+| Build and packaging script | `scripts/build_preset_cache.{sh,bat}` |
+| Tests | `tests/libslic3r/test_vendor_cache.cpp` |
diff --git a/localization/i18n/OrcaSlicer.pot b/localization/i18n/OrcaSlicer.pot
index 88e49a85fc..6ec0ecd9cf 100644
--- a/localization/i18n/OrcaSlicer.pot
+++ b/localization/i18n/OrcaSlicer.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -4452,6 +4452,20 @@ msgstr ""
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr ""
+#, possible-c-format, possible-boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr ""
+
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr ""
+
+#, possible-c-format, possible-boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr ""
+
+msgid "Adjust"
+msgstr ""
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4533,6 +4547,12 @@ msgid ""
"No - Disable Arachne Wall Generator and set [Displacement] mode of the Fuzzy Skin"
msgstr ""
+msgid "Brim ear radius"
+msgstr ""
+
+msgid "Brim width"
+msgstr ""
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr ""
@@ -4784,6 +4804,12 @@ msgstr ""
msgid "Calibration error"
msgstr ""
+msgid "This printer is not configured with the hardware this control needs."
+msgstr ""
+
+msgid "This control is not supported on this printer."
+msgstr ""
+
msgid "Network unavailable"
msgstr ""
@@ -5615,7 +5641,7 @@ msgstr ""
msgid "Size:"
msgstr ""
-#, possible-c-format, possible-boost-format
+#, possible-boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr ""
@@ -5790,6 +5816,9 @@ msgstr ""
msgid "Project"
msgstr ""
+msgid "Device (Web)"
+msgstr ""
+
msgid "Yes"
msgstr ""
@@ -7780,19 +7809,19 @@ msgstr ""
msgid "Replaced with 3D files from directory:\n"
msgstr ""
-#, possible-boost-format
+#, possible-c-format, possible-boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr ""
-#, possible-boost-format
+#, possible-c-format, possible-boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr ""
-#, possible-boost-format
+#, possible-c-format, possible-boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr ""
-#, possible-boost-format
+#, possible-c-format, possible-boost-format
msgid "✔ Replaced %s.\n"
msgstr ""
@@ -8472,6 +8501,15 @@ msgstr ""
msgid "Pop up to select filament grouping mode"
msgstr ""
+msgid "Visible plugin pages"
+msgstr ""
+
+msgid "pages"
+msgstr ""
+
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr ""
+
msgid "Behaviour"
msgstr ""
@@ -8797,6 +8835,14 @@ msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr ""
+
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+
msgid "Experimental Features"
msgstr ""
@@ -9052,9 +9098,21 @@ msgstr ""
msgid "Preset Inside Project"
msgstr ""
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr ""
+
msgid "Detach from parent"
msgstr ""
+msgid "Unique preset"
+msgstr ""
+
+msgid "Parent preset"
+msgstr ""
+
+msgid "This preset does not inherit from another preset."
+msgstr ""
+
msgid "Name is unavailable."
msgstr ""
@@ -9732,20 +9790,6 @@ msgstr ""
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr ""
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr ""
-
-msgid "Adjust to the set range automatically?\n"
-msgstr ""
-
-msgid "Adjust"
-msgstr ""
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr ""
@@ -9931,6 +9975,9 @@ msgstr ""
msgid "Setting Overrides"
msgstr ""
+msgid "Retraction when switching material"
+msgstr ""
+
msgid "Basic information"
msgstr ""
@@ -10057,6 +10104,12 @@ msgstr ""
msgid "Printable space"
msgstr ""
+msgid "Printer Agent"
+msgstr ""
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr ""
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, possible-boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10179,9 +10232,6 @@ msgstr ""
msgid "Z-Hop"
msgstr ""
-msgid "Retraction when switching material"
-msgstr ""
-
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
"\n"
@@ -11445,6 +11495,9 @@ msgstr ""
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr ""
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr ""
+
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr ""
@@ -11740,9 +11793,6 @@ msgstr ""
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr ""
-msgid "Printer Agent"
-msgstr ""
-
msgid "Select the network agent implementation for printer communication."
msgstr ""
@@ -12279,9 +12329,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
-msgid "Brim width"
-msgstr ""
-
msgid "This is the distance from the model to the outermost brim line."
msgstr ""
@@ -12347,6 +12394,12 @@ msgid ""
"0 to deactivate."
msgstr ""
+msgid "Brim ears outer only"
+msgstr ""
+
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr ""
+
msgid "upward compatible machine"
msgstr ""
@@ -13359,6 +13412,12 @@ msgstr ""
msgid "Gyroid"
msgstr ""
+msgid "Sparse infill smooth factor"
+msgstr ""
+
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr ""
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr ""
@@ -13839,6 +13898,12 @@ msgstr ""
msgid "Klipper"
msgstr ""
+msgid "Skip G-code config block"
+msgstr ""
+
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr ""
+
msgid "Pellet Modded Printer"
msgstr ""
@@ -14800,6 +14865,12 @@ msgstr ""
msgid "Retraction distance when extruder change"
msgstr ""
+msgid "Retraction Length (Toolchange)"
+msgstr ""
+
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr ""
+
msgid "Z-hop height"
msgstr ""
@@ -14893,6 +14964,9 @@ msgstr ""
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr ""
+msgid "Extra length on restart (Toolchange)"
+msgstr ""
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr ""
@@ -15278,6 +15352,12 @@ msgstr ""
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr ""
+msgid "Wait for temperature on wipe tower"
+msgstr ""
+
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr ""
+
msgid "No sparse layers (beta)"
msgstr ""
@@ -18253,9 +18333,6 @@ msgstr ""
msgid "Print Host upload"
msgstr ""
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr ""
-
msgid "Select a Flashforge printer"
msgstr ""
@@ -19087,9 +19164,6 @@ msgstr ""
msgid "User canceled."
msgstr ""
-msgid "Head diameter"
-msgstr ""
-
msgid "Max angle"
msgstr ""
diff --git a/localization/i18n/ca/OrcaSlicer_ca.po b/localization/i18n/ca/OrcaSlicer_ca.po
index 79a9d82df4..b7eb022c0d 100644
--- a/localization/i18n/ca/OrcaSlicer_ca.po
+++ b/localization/i18n/ca/OrcaSlicer_ca.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: 2025-03-15 10:55+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -4828,6 +4828,23 @@ msgstr "La temperatura actual de la cambra és superior a la temperatura segura
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "La temperatura mínima de la cambra (%d℃) és superior a la temperatura objectiu de la cambra (%d℃). El valor mínim és el llindar a partir del qual comença la impressió mentre la cambra continua escalfant-se cap a l'objectiu, de manera que no l'hauria de superar. Es limitarà al valor objectiu."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "L'alçada de capa és massa petita. S'establirà al mínim (%g mm)."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "L'alçada de capa està fora dels límits establerts a Configuració de la Impressora -> Extrusora -> Límits d'alçada de la capa, això pot causar problemes de qualitat d'impressió."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "Voleu ajustar-la automàticament al límit (%g mm)?"
+
+msgid "Adjust"
+msgstr "Ajustar"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4948,6 +4965,13 @@ msgstr ""
"Sí - Activa el generador de parets Arachne\n"
"No - Desactiva el generador de parets Arachne i estableix el mode [Desplaçament] de la pell difusa"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Radi de l'orella de la Vora d'Adherència"
+
+msgid "Brim width"
+msgstr "Ample de la Vora d'Adherència"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "El mode espiral només funciona quan els bucles de paret són 1, el suport està desactivat, la detecció d'acumulació per sondeig està desactivada, les capes de la coberta superior són 0, la densitat de farciment dispers és 0 i el tipus de timelapse és tradicional."
@@ -5202,6 +5226,14 @@ msgstr "No s'ha pogut generar el gcode cali"
msgid "Calibration error"
msgstr "Error de calibratge"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "Aquesta impressora no està configurada amb el maquinari que necessita aquest control."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Aquest control no és compatible amb aquesta impressora."
+
# AI Translated
msgid "Network unavailable"
msgstr "Xarxa no disponible"
@@ -6067,7 +6099,7 @@ msgstr "Volum:"
msgid "Size:"
msgstr "Mida:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "S'han trobat conflictes de rutes gcode a la capa %d, Z = %.2lfmm. Si us plau, separeu els objectes conflictius més lluny ( %s <-> %s )."
@@ -6248,6 +6280,10 @@ msgstr "Multidispositiu"
msgid "Project"
msgstr "Projecte"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Dispositiu (Web)"
+
msgid "Yes"
msgstr "Sí"
@@ -8361,19 +8397,19 @@ msgstr "No s'ha seleccionat el directori per a la substitució"
msgid "Replaced with 3D files from directory:\n"
msgstr "Substituït amb fitxers 3D del directori:\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Omès %s: mateix fitxer.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Omès %s: el fitxer no existeix.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Omès %s: la substitució ha fallat.\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Substituït %s.\n"
@@ -9116,6 +9152,18 @@ msgstr "Amb aquesta opció habilitada, podeu enviar una tasca a diversos disposi
msgid "Pop up to select filament grouping mode"
msgstr "Finestra emergent per seleccionar el mode d'agrupació de filaments"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Pàgines de connectors visibles"
+
+# AI Translated
+msgid "pages"
+msgstr "pàgines"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Nombre de pàgines de connectors que es mostren com a pestanyes fixes abans que la resta de pàgines es replegui en un desplegable a l'última pestanya."
+
msgid "Behaviour"
msgstr "Comportament"
@@ -9506,6 +9554,18 @@ msgstr "Mostrar els perfils no compatibles"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Mostra els perfils incompatibles o no compatibles a les llistes desplegables d'impressora i de filament. Aquests perfils no es poden seleccionar."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Experimental) Utilitza agents d'impressora en lloc d'amfitrions d'impressió"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Envia els treballs d'impressió de les impressores que no són Bambu a través dels agents de connector d'impressora en lloc del flux clàssic de pujada a l'amfitrió d'impressió.\n"
+"Quan està desactivat, OrcaSlicer utilitza el comportament antic de l'amfitrió d'impressió."
+
# AI Translated
msgid "Experimental Features"
msgstr "Funcions experimentals"
@@ -9776,9 +9836,25 @@ msgstr "Perfil d'usuari"
msgid "Preset Inside Project"
msgstr "Perfil intern del Projecte"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Copia en aquest perfil tots els valors heretats del perfil pare i elimina la relació d'herència. Els perfils compatibles només amb el perfil pare poden deixar de ser compatibles."
+
msgid "Detach from parent"
msgstr "Desvincula del pare"
+# AI Translated
+msgid "Unique preset"
+msgstr "Perfil únic"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Perfil pare"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Aquest perfil no hereta de cap altre perfil."
+
msgid "Name is unavailable."
msgstr "El nom no està disponible."
@@ -10521,22 +10597,6 @@ msgstr "Estàs segur que vols activar aquesta opció?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "Els patrons de farciment estan dissenyats normalment per gestionar la rotació automàticament per garantir una impressió correcta i aconseguir els efectes desitjats (p. ex., Gyroid, Cúbic). Rotar el patró de farciment dispers actual pot portar a un suport insuficient. Procediu amb precaució i comproveu minuciosament qualsevol problema d'impressió potencial. Esteu segur que voleu activar aquesta opció?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"L'alçada de la capa és massa petita.\n"
-"Es posarà a min_layer_height\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "L'alçada de la capa supera el límit a Configuració de la Impressora -> Extrusora -> Límits d'alçada de la capa, això pot causar problemes de qualitat d'impressió."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "Voleu ajustar el rang automàticament?\n"
-
-msgid "Adjust"
-msgstr "Ajustar"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "Característica experimental: Retreure i tallar el filament a major distància durant els canvis de filaments per minimitzar el flux. Tot i que pot reduir notablement el flux, també pot elevar el risc d'esclops de broquets o altres complicacions d'impressió."
@@ -10735,6 +10795,9 @@ msgstr "Trobades paraules clau reservades"
msgid "Setting Overrides"
msgstr "Anul·lacions de configuració"
+msgid "Retraction when switching material"
+msgstr "Retracció en canviar de material"
+
msgid "Basic information"
msgstr "Informació bàsica"
@@ -10867,6 +10930,12 @@ msgstr "Perfils de processos compatibles"
msgid "Printable space"
msgstr "Espai imprimible"
+msgid "Printer Agent"
+msgstr "Agent de la impressora"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Seleccioneu la implementació de l'agent de xarxa per a la comunicació amb la impressora. Els agents disponibles es registren a l'inici."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10997,9 +11066,6 @@ msgstr "Límits d'alçada de capa"
msgid "Z-Hop"
msgstr "Z-Hop"
-msgid "Retraction when switching material"
-msgstr "Retracció en canviar de material"
-
# AI Translated
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
@@ -12380,6 +12446,10 @@ msgstr " està massa a prop de la zona d'exclusió, i es provocaran col·lisions
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " és massa a prop de l'àrea de detecció d'acumulació i es causaran col·lisions.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " està parcialment fora de l'àrea imprimible, i no es pot imprimir.\n"
+
# AI Translated
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "Les temperatures de broquet seleccionades són incompatibles. La temperatura de broquet de cada filament ha d'estar dins del rang de temperatura de broquet recomanat dels altres filaments. Altrament, es pot produir una obturació del broquet o danys a la impressora."
@@ -12714,9 +12784,6 @@ msgstr "Utilitzar 3MF en lloc de G-code"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Activeu-ho si la impressora accepta un fitxer 3MF com a treball d'impressió. Quan està activat, Orca Slicer envia el fitxer laminat com a .gcode.3mf, en lloc d'un fitxer .gcode simple."
-msgid "Printer Agent"
-msgstr "Agent de la impressora"
-
msgid "Select the network agent implementation for printer communication."
msgstr "Seleccioneu la implementació de l'agent de xarxa per a la comunicació amb la impressora."
@@ -13402,9 +13469,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "Velocitat dels ponts interns. Si el valor s'expressa com un percentatge, es calcularà en funció de la velocitat del pont (bridge_speed). El valor per defecte és del 150%."
-msgid "Brim width"
-msgstr "Ample de la Vora d'Adherència"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Distància del model a la línia de la Vora d'Adherència més exterior"
@@ -13488,6 +13552,14 @@ msgstr ""
"La geometria es simplificarà abans de detectar angles pronunciats. Aquest paràmetre indica la longitud mínima de la desviació per a la simplificació.\n"
"0 per desactivar"
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Orelles de la Vora d'Adherència només a l'exterior"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Genera orelles de ratolí només al contorn exterior del model, excloent-ne els forats i les seccions tancades."
+
msgid "upward compatible machine"
msgstr "màquina compatible ascendent"
@@ -14679,6 +14751,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "Giroide"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Factor de suavitzat del farciment poc dens"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Controla com s'arrodoneixen les cantonades del farciment poc dens. 0% manté el traçat original amb cantonades vives, mentre que 100% produeix les corbes més amples possibles entre línies de farciment adjacents."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Acceleració del farciment superficial superior. L'ús d'un valor inferior pot millorar la qualitat de la superfície superior"
@@ -15232,6 +15312,14 @@ msgstr "Amb quin tipus de Codi-G és compatible la impressora."
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "Omet el bloc de configuració del G-code"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "No escriu el CONFIG_BLOCK (els parells clau/valor de la configuració del laminador) al fitxer G-code. Això pot ajudar amb impressores el microprogramari de les quals falla en analitzar aquestes línies de comentari (p. ex. Anycubic go-klipper). Nota: el fitxer G-code ja no contindrà la configuració del laminador, de manera que en tornar-lo a importar a OrcaSlicer no es restaurarà la configuració."
+
msgid "Pellet Modded Printer"
msgstr "Impressora modificada de pellets"
@@ -16321,6 +16409,14 @@ msgstr "Retracció llarga al canviar d'extrusor"
msgid "Retraction distance when extruder change"
msgstr "Distància de retracció al canviar d'extrusor"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Longitud de retracció (Canvi d'eina)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Quan s'activa la retracció abans d'un canvi d'eina, el filament es retira la quantitat especificada (la longitud es mesura sobre el filament en brut, abans d'entrar a l'extrusor)."
+
msgid "Z-hop height"
msgstr "Alçada Z-hop"
@@ -16419,6 +16515,10 @@ msgstr "Longitud addicional en reiniciar"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "Quan la retracció es compensa després d'un desplaçament, l'extrusor introduirà una quantitat addicional de filament. Aquest ajustament rarament es necessita."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Longitud addicional en reiniciar (Canvi d'eina)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Quan la retracció es compensa després d'un canvi d'eina, l'extrusor introduirà una quantitat addicional de filament."
@@ -16835,6 +16935,14 @@ msgstr "Canvi d'eina a la Torre de Purga"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "Força el capçal a desplaçar-se a la Torre de Purga abans d'emetre l'ordre de canvi d'eina (Tx). Només és rellevant per a impressores multiextrusor (multicapçal) que utilitzen una Torre de Purga de tipus 2. Per defecte, Orca omet aquest desplaçament en màquines multicapçal perquè el firmware gestiona el canvi de capçal, cosa que pot fer que l'ordre Tx s'emeti sobre la peça impresa. Activeu aquesta opció si voleu que el canvi d'eina s'emeti sempre sobre la Torre de Purga."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Espera la temperatura a la Torre de Purga"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Recull la nova eina sense esperar que arribi a la temperatura d'impressió, es desplaça a la Torre de Purga i hi espera la temperatura, just abans de purgar. El degoteig de l'escalfament cau sobre la torre en lloc del model, i el desplaçament se solapa amb l'escalfament. Només és rellevant per a impressores multiextrusor (multicapçal) que utilitzen una Torre de Purga de tipus 2. El microprogramari o la macro de canvi d'eina no han d'esperar la temperatura pel seu compte. Quan està desactivat, l'espera de temperatura s'emet just després de l'ordre de canvi d'eina."
+
msgid "No sparse layers (beta)"
msgstr "Sense capes poc denses( beta )"
@@ -20121,9 +20229,6 @@ msgstr "Impressora Física"
msgid "Print Host upload"
msgstr "Pujada al amfitrió( host ) d'impressió"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Seleccioneu la implementació de l'agent de xarxa per a la comunicació amb la impressora. Els agents disponibles es registren a l'inici."
-
# AI Translated
msgid "Select a Flashforge printer"
msgstr "Seleccioneu una impressora Flashforge"
@@ -21066,9 +21171,6 @@ msgstr "Alguna cosa inesperada ha passat en intentar iniciar sessió, torneu-ho
msgid "User canceled."
msgstr "Usuari cancel·lat."
-msgid "Head diameter"
-msgstr "Diàmetre del cap"
-
msgid "Max angle"
msgstr "Angle màxim"
@@ -21887,6 +21989,22 @@ msgstr ""
"Evitar la deformació( warping )\n"
"Sabíeu que quan imprimiu materials propensos a deformar-se, com ara l'ABS, augmentar adequadament la temperatura del llit pot reduir la probabilitat de deformació?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "L'alçada de la capa és massa petita.\n"
+#~ "Es posarà a min_layer_height\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "L'alçada de la capa supera el límit a Configuració de la Impressora -> Extrusora -> Límits d'alçada de la capa, això pot causar problemes de qualitat d'impressió."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "Voleu ajustar el rang automàticament?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Diàmetre del cap"
+
#~ msgid "Print order within a single layer."
#~ msgstr "Ordre d'impressió dins d'una sola capa"
diff --git a/localization/i18n/cs/OrcaSlicer_cs.po b/localization/i18n/cs/OrcaSlicer_cs.po
index e21fd3086c..b521a8073b 100644
--- a/localization/i18n/cs/OrcaSlicer_cs.po
+++ b/localization/i18n/cs/OrcaSlicer_cs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: Jakub Hencl\n"
"Language-Team: \n"
@@ -4786,6 +4786,23 @@ msgstr "Aktuální teplota komory je vyšší než bezpečná teplota materiálu
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "Minimální teplota komory (%d℃) je vyšší než cílová teplota komory (%d℃). Minimální hodnota je práh, při kterém tisk začíná, zatímco se komora dále ohřívá k cílové teplotě, takže by ji neměla překročit. Bude omezena na cílovou hodnotu."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "Výška vrstvy je příliš malá. Bude nastavena na minimum (%g mm)."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "Výška vrstvy je mimo limity nastavené v Nastavení tiskárny -> Extruder -> Omezení výšky vrstvy, což může způsobit problémy s kvalitou tisku."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "Upravit ji automaticky na limit (%g mm)?"
+
+msgid "Adjust"
+msgstr "Upravit"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4906,6 +4923,13 @@ msgstr ""
"Ano – povolit Arachne Wall Generator\n"
"Ne – zakázat Arachne Wall Generator a nastavit režim [Displacement] pro Fuzzy Skin"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Poloměr ouška límce"
+
+msgid "Brim width"
+msgstr "Šířka límce"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "Spirálový režim funguje pouze tehdy, když je počet smyček stěny 1, podpěry jsou vypnuté, detekce usazenin sondováním je vypnutá, počet horních plných vrstev je 0, hustota řídké výplně je 0 a typ časosběru je tradiční."
@@ -5160,6 +5184,14 @@ msgstr "Nepodařilo se vygenerovat kalibrační G-code."
msgid "Calibration error"
msgstr "Chyba kalibrace"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "Tato tiskárna nemá nakonfigurovaný hardware, který tento ovládací prvek vyžaduje."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Tento ovládací prvek není na této tiskárně podporován."
+
# AI Translated
msgid "Network unavailable"
msgstr "Síť není dostupná"
@@ -6029,7 +6061,7 @@ msgstr "Objem:"
msgid "Size:"
msgstr "Velikost:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "Byly nalezeny konflikty drah G-kódu ve vrstvě %d, Z = %.2lf mm. Oddělte prosím konfliktní objekty více od sebe (%s <-> %s)."
@@ -6210,6 +6242,10 @@ msgstr "Více zařízení"
msgid "Project"
msgstr "Projekt"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Zařízení (Web)"
+
msgid "Yes"
msgstr "Ano"
@@ -8320,19 +8356,19 @@ msgstr "Nebyla vybrána složka pro nahrazení"
msgid "Replaced with 3D files from directory:\n"
msgstr "Nahrazeno 3D soubory ze složky:\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Přeskočeno %s: stejný soubor.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Přeskočeno %s: soubor neexistuje.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Přeskočeno %s: nahrazení se nezdařilo.\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Nahrazeno %s.\n"
@@ -9070,6 +9106,18 @@ msgstr "Pokud je tato volba povolena, můžete odeslat úlohu na více zařízen
msgid "Pop up to select filament grouping mode"
msgstr "Zobrazit dialog pro výběr režimu seskupení filamentů"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Viditelné stránky pluginů"
+
+# AI Translated
+msgid "pages"
+msgstr "stránek"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Počet stránek pluginů zobrazených jako pevné karty, než se zbývající stránky sbalí do rozbalovací nabídky na poslední kartě."
+
msgid "Behaviour"
msgstr "Chování"
@@ -9457,6 +9505,18 @@ msgstr "Zobrazit nepodporované předvolby"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Zobrazovat nekompatibilní/nepodporované předvolby v rozevíracích seznamech tiskáren a filamentů. Tyto předvolby nelze vybrat."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Experimentální) Používat agenty tiskárny místo tiskových hostů"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Směruje tiskové úlohy pro tiskárny jiné než Bambu přes agenty pluginů tiskárny místo klasického nahrávání na tiskový host.\n"
+"Pokud je vypnuto, OrcaSlicer používá původní chování tiskového hosta."
+
# AI Translated
msgid "Experimental Features"
msgstr "Experimentální funkce"
@@ -9724,10 +9784,26 @@ msgstr "Uživatelská předvolba"
msgid "Preset Inside Project"
msgstr "Předvolba v projektu"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Zkopíruje do této předvolby všechny hodnoty zděděné z nadřazené předvolby a odstraní vztah dědičnosti. Předvolby kompatibilní pouze s nadřazenou předvolbou mohou přestat být podporovány."
+
# AI Translated
msgid "Detach from parent"
msgstr "Oddělit od nadřazeného"
+# AI Translated
+msgid "Unique preset"
+msgstr "Samostatná předvolba"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Nadřazená předvolba"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Tato předvolba nedědí z jiné předvolby."
+
msgid "Name is unavailable."
msgstr "Název není k dispozici."
@@ -10469,22 +10545,6 @@ msgstr "Opravdu chcete tuto možnost povolit?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "Vzory výplně jsou obvykle navrženy tak, aby automaticky pracovaly s rotací a zajistily správný tisk i zamýšlený efekt (např. Gyroid, Cubic). Otočení aktuální řídké výplně může vést k nedostatečné opoře. Postupujte opatrně a pečlivě zkontrolujte možné problémy při tisku. Opravdu chcete tuto možnost povolit?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"Výška vrstvy je příliš malá.\n"
-"Bude nastavena na min_layer_height\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "Výška vrstvy přesahuje limit v Nastavení tiskárny -> Extruder -> Omezení výšky vrstvy, což může způsobit problémy s kvalitou tisku."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "Automaticky upravit do nastaveného rozsahu?\n"
-
-msgid "Adjust"
-msgstr "Upravit"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "Experimentální funkce: Stažení a odstřižení filamentu na větší vzdálenost během výměny filamentu pro minimalizaci purge. Ačkoliv to může výrazně snížit purge, může to také zvýšit riziko ucpání trysky nebo jiných komplikací při tisku."
@@ -10684,6 +10744,9 @@ msgstr "Byla nalezena rezervovaná klíčová slova"
msgid "Setting Overrides"
msgstr "Přepisování nastavení"
+msgid "Retraction when switching material"
+msgstr "Retrakce při změně materiálu"
+
msgid "Basic information"
msgstr "Základní informace"
@@ -10816,6 +10879,13 @@ msgstr "Kompatibilní procesní profily"
msgid "Printable space"
msgstr "Tisknutelný prostor"
+# AI Translated
+msgid "Printer Agent"
+msgstr "Agent tiskárny"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Vyberte implementaci síťového agenta pro komunikaci s tiskárnou. Dostupní agenti jsou registrováni při spuštění."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10943,9 +11013,6 @@ msgstr "Omezení výšky vrstvy"
msgid "Z-Hop"
msgstr "Z-Hop"
-msgid "Retraction when switching material"
-msgstr "Retrakce při změně materiálu"
-
# AI Translated
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
@@ -12363,6 +12430,10 @@ msgstr " je příliš blízko oblasti vyloučení a může způsobit kolize.\n"
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " je příliš blízko oblasti detekce shlukování a dojde ke kolizi.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " je částečně mimo tisknutelnou oblast a nelze jej vytisknout.\n"
+
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "Vybrané teploty trysky nejsou kompatibilní. Teplota trysky každého filamentu musí spadat do doporučeného rozsahu teplot ostatních filamentů. Jinak může dojít k ucpání trysky nebo poškození tiskárny."
@@ -12696,10 +12767,6 @@ msgstr "Použít 3MF místo G-code"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Zapněte, pokud tiskárna přijímá jako tiskovou úlohu soubor 3MF. Je-li zapnuto, odešle Orca Slicer slicovaný soubor jako .gcode.3mf místo prostého souboru .gcode."
-# AI Translated
-msgid "Printer Agent"
-msgstr "Agent tiskárny"
-
# AI Translated
msgid "Select the network agent implementation for printer communication."
msgstr "Vyberte implementaci síťového agenta pro komunikaci s tiskárnou."
@@ -13387,9 +13454,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "Rychlost vnitřních mostů. Pokud je hodnota zadána v procentech, vypočítá se podle bridge_speed. Výchozí hodnota je 150 %."
-msgid "Brim width"
-msgstr "Šířka límce"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Vzdálenost od modelu k nejvzdálenější brim linii."
@@ -13470,6 +13534,14 @@ msgstr ""
"Geometrie bude decimována před detekcí ostrých úhlů. Tento parametr určuje minimální délku odchylky pro decimaci.\n"
"0 pro deaktivaci."
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Ouška límce pouze na vnějším obrysu"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Vytvoří myší ouška pouze na vnějším obrysu modelu, bez otvorů a uzavřených částí."
+
msgid "upward compatible machine"
msgstr "stroj zpětně kompatibilní"
@@ -14646,6 +14718,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "Gyroid"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Faktor vyhlazení řídké výplně"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Určuje, jak silně se zaoblují rohy řídké výplně. 0% zachová původní ostrou dráhu, zatímco 100% vytvoří největší možné křivky mezi sousedními liniemi výplně."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Akcelerace výplně horní plochy. Použití nižší hodnoty může zlepšit kvalitu horní plochy."
@@ -15198,6 +15278,14 @@ msgstr "Jaký typ G-code je s tiskárnou kompatibilní."
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "Vynechat konfigurační blok G-code"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "Nezapisuje CONFIG_BLOCK (dvojice klíč/hodnota s konfigurací sliceru) do souboru G-code. Může to pomoci u tiskáren, jejichž firmware při zpracování těchto řádků s komentáři havaruje (např. Anycubic go-klipper). Poznámka: soubor G-code již nebude obsahovat nastavení sliceru, takže jeho opětovný import do OrcaSlicer konfiguraci neobnoví."
+
msgid "Pellet Modded Printer"
msgstr "Tiskárna na pelety"
@@ -16265,6 +16353,14 @@ msgstr "Dlouhá retrakce při změně extruderu"
msgid "Retraction distance when extruder change"
msgstr "Délka retrakce při změně extruderu"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Délka retrakce (Změna nástroje)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Když je retrakce spuštěna před změnou nástroje, filament se zatáhne o zadanou hodnotu (délka se měří na nezpracovaném filamentu, než vstoupí do extruderu)."
+
msgid "Z-hop height"
msgstr "Výška Z-hopu"
@@ -16362,6 +16458,10 @@ msgstr "Dodatečná délka při restartu"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "Při kompenzaci retrakce po pohybu přesunu extruder posune toto přídavné množství filamentu. Toto nastavení je potřeba jen zřídka."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Dodatečná délka při restartu (Změna nástroje)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Při kompenzaci retrakce po výměně nástroje extruder posune toto přídavné množství filamentu."
@@ -16780,6 +16880,14 @@ msgstr "Výměna nástroje na věži na očištění trysky"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "Vynutí přejezd tiskové hlavy k věži na očištění trysky před vydáním příkazu k výměně nástroje (Tx). Týká se pouze tiskáren s více extrudery (více tiskovými hlavami), které používají věž na očištění trysky typu 2. Ve výchozím nastavení Orca na strojích s více tiskovými hlavami tento přejezd vynechává, protože výměnu hlavy řeší firmware, což může vést k vydání příkazu Tx nad tištěným dílem. Zapněte tuto volbu, chcete-li, aby byla výměna nástroje vždy vydána nad věží na očištění trysky."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Čekat na teplotu na věži na očištění trysky"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Vyzvedne nový nástroj, aniž by čekal na dosažení tiskové teploty, přejede na věž na očištění trysky a počká na teplotu tam, těsně před čištěním. Materiál vytékající při ohřevu skončí na věži místo na modelu a přejezd se překrývá s ohřevem. Relevantní pouze pro tiskárny s více extrudery (více tiskovými hlavami) používající věž na očištění trysky typu 2. Firmware ani makro pro změnu nástroje nesmí na teplotu čekat samo. Pokud je vypnuto, čekání na teplotu se vloží hned po příkazu ke změně nástroje."
+
msgid "No sparse layers (beta)"
msgstr "Žádné řídké vrstvy (beta)"
@@ -20043,9 +20151,6 @@ msgstr "Fyzická tiskárna"
msgid "Print Host upload"
msgstr "Nahrání na tiskový server"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Vyberte implementaci síťového agenta pro komunikaci s tiskárnou. Dostupní agenti jsou registrováni při spuštění."
-
# AI Translated
msgid "Select a Flashforge printer"
msgstr "Vyberte tiskárnu Flashforge"
@@ -21002,9 +21107,6 @@ msgstr "Při pokusu o přihlášení došlo k neočekávané chybě, zkuste to p
msgid "User canceled."
msgstr "Zrušeno uživatelem."
-msgid "Head diameter"
-msgstr "Průměr hlavy"
-
msgid "Max angle"
msgstr "Maximální úhel"
@@ -21873,6 +21975,22 @@ msgstr ""
"Zamezte kroucení\n"
"Víte, že při tisku materiálů náchylných ke kroucení, jako je ABS, může vhodné zvýšení teploty vyhřívané desky snížit pravděpodobnost kroucení?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "Výška vrstvy je příliš malá.\n"
+#~ "Bude nastavena na min_layer_height\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "Výška vrstvy přesahuje limit v Nastavení tiskárny -> Extruder -> Omezení výšky vrstvy, což může způsobit problémy s kvalitou tisku."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "Automaticky upravit do nastaveného rozsahu?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Průměr hlavy"
+
#~ msgid "Print order within a single layer."
#~ msgstr "Pořadí tisku v rámci jedné vrstvy."
diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po
index 50384598e3..436966457a 100644
--- a/localization/i18n/de/OrcaSlicer_de.po
+++ b/localization/i18n/de/OrcaSlicer_de.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: Heiko Liebscher \n"
"Language-Team: \n"
@@ -4692,6 +4692,23 @@ msgstr "Die aktuelle Kammer-Temperatur ist höher als die sichere Temperatur des
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "Die minimale Druckraumtemperatur (%d℃) ist höher als die Ziel-Druckraumtemperatur (%d℃). Der Minimalwert ist der Schwellenwert, bei dem der Druck beginnt, während der Druckraum weiter auf die Zieltemperatur heizt; er sollte diese daher nicht überschreiten. Er wird auf die Zieltemperatur begrenzt."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "Die Schichthöhe ist zu klein. Sie wird auf den Mindestwert (%g mm) gesetzt."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "Die Schichthöhe liegt außerhalb der in Druckereinstellungen -> Extruder -> Schichthöhenlimits festgelegten Grenzen. Dies kann zu Problemen mit der Druckqualität führen."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "Automatisch an den Grenzwert (%g mm) anpassen?"
+
+msgid "Adjust"
+msgstr "Anpassen"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4812,6 +4829,13 @@ msgstr ""
"Ja - Arachne Wall Generator aktivieren\n"
"Nein - Arachne Wall Generator deaktivieren und den Modus [Verschiebung] des Fuzzy Skin setzen"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Radius der Brim-Ohren"
+
+msgid "Brim width"
+msgstr "Randbreite"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "Der Spiralmodus funktioniert nur, wenn die Wandschleifen 1 sind, die Stütze deaktiviert ist, die Klumpenerkennung durch Abtasten deaktiviert ist, die oberen Schichtlagen 0 sind, die Dichte der spärlichen Füllung 0 ist und der Zeitraffertyp traditionell ist."
@@ -5066,6 +5090,14 @@ msgstr "Fehler beim Generieren des Kalibrierungs-G-Codes"
msgid "Calibration error"
msgstr "Kalibrierungsfehler"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "Dieser Drucker ist nicht mit der Hardware ausgestattet, die dieses Bedienelement benötigt."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Dieses Bedienelement wird von diesem Drucker nicht unterstützt."
+
# AI Translated
msgid "Network unavailable"
msgstr "Netzwerk nicht verfügbar"
@@ -5923,7 +5955,7 @@ msgstr "Volumen:"
msgid "Size:"
msgstr "Größe:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "Konflikte von G-Code-Pfaden wurden bei Layer %d, Z = %.2lf mm gefunden.Bitte trennen Sie die konfliktbehafteten Objekte weiter voneinander (%s <-> %s)."
@@ -6103,6 +6135,10 @@ msgstr "Multi-Gerät"
msgid "Project"
msgstr "Projekt"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Gerät (Web)"
+
msgid "Yes"
msgstr "Ja"
@@ -8191,19 +8227,19 @@ msgstr "Verzeichnis um daraus zu ersetzen wurde nicht ausgewählt"
msgid "Replaced with 3D files from directory:\n"
msgstr "Ersetzt durch 3D-Dateien aus Verzeichnis:\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Übersprungen %s: gleiche Datei.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Übersprungen %s: Datei existiert nicht.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Übersprungen %s: Ersetzen fehlgeschlagen.\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Ersetzt %s.\n"
@@ -8941,6 +8977,18 @@ msgstr "Wenn diese Option aktiviert ist, können Sie eine Aufgabe gleichzeitig a
msgid "Pop up to select filament grouping mode"
msgstr "Popup zum Auswählen des Filament-Gruppierungsmodus"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Sichtbare Plugin-Seiten"
+
+# AI Translated
+msgid "pages"
+msgstr "Seiten"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Anzahl der Plugin-Seiten, die als feste Tabs angezeigt werden, bevor die übrigen Seiten im letzten Tab zu einem Dropdown zusammengefasst werden."
+
msgid "Behaviour"
msgstr "Verhalten"
@@ -9296,6 +9344,18 @@ msgstr "Nicht unterstützte Profile anzeigen"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Zeigt inkompatible/nicht unterstützte Profile in den Dropdown-Listen für Drucker und Filament an. Diese Profile können nicht ausgewählt werden."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Experimentell) Drucker-Agenten anstelle von Druck-Hosts verwenden"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Leitet Druckaufträge für Nicht-Bambu-Drucker über Drucker-Plugin-Agenten statt über den klassischen Druck-Host-Upload.\n"
+"Wenn deaktiviert, verwendet OrcaSlicer das bisherige Druck-Host-Verhalten."
+
msgid "Experimental Features"
msgstr "Experimentelle Funktionen"
@@ -9558,9 +9618,25 @@ msgstr "Benutzerprofil"
msgid "Preset Inside Project"
msgstr "Projektbasiertes Profil"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Kopiert alle vom übergeordneten Profil geerbten Werte in dieses Profil und entfernt die Vererbungsbeziehung. Profile, die nur mit dem übergeordneten Profil kompatibel sind, können dadurch nicht mehr unterstützt werden."
+
msgid "Detach from parent"
msgstr "Vom übergeordneten Element trennen"
+# AI Translated
+msgid "Unique preset"
+msgstr "Eigenständiges Profil"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Übergeordnetes Profil"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Dieses Profil erbt nicht von einem anderen Profil."
+
msgid "Name is unavailable."
msgstr "Der Name ist nicht verfügbar."
@@ -10296,22 +10372,6 @@ msgstr "Sind Sie sicher, dass Sie diese Option aktivieren möchten?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "Infill-Muster sind in der Regel so konzipiert, dass sie eine automatische Drehung ermöglichen, um einen ordnungsgemäßen Druck zu gewährleisten und die beabsichtigten Effekte zu erzielen (z. B. Gyroid, Cubic). Das Drehen des aktuellen spärlichen Infill-Musters kann zu unzureichender Unterstützung führen. Bitte gehen Sie vorsichtig vor und überprüfen Sie gründlich auf mögliche Druckprobleme. Sind Sie sicher, dass Sie diese Option aktivieren möchten?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"Die Schichthöhe ist zu klein.\n"
-"Sie wird auf min_layer_height gesetzt\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "Die Schichthöhe überschreitet das Limit in Druckereinstellungen -> Extruder -> Schichthöhenlimits. Dies kann zu Problemen mit der Druckqualität führen."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "Automatisch an den eingestellten Bereich anpassen?\n"
-
-msgid "Adjust"
-msgstr "Anpassen"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "Experimentelle Funktion: Filament beim Filamentwechsel weiter zurückziehen und abschneiden, um den Flush zu minimieren. Obwohl dies den Flush deutlich reduzieren kann, kann es auch das Risiko von Düsenverstopfungen oder anderen Druckkomplikationen erhöhen."
@@ -10505,6 +10565,9 @@ msgstr "Reservierte Schlüsselwörter gefunden"
msgid "Setting Overrides"
msgstr "Überschreiben der Einstellungen"
+msgid "Retraction when switching material"
+msgstr "Rückzug bei Materialwechsel"
+
msgid "Basic information"
msgstr "Grundlegende Informationen"
@@ -10634,6 +10697,12 @@ msgstr "Kompatible Prozessprofile"
msgid "Printable space"
msgstr "Druckbarer Raum"
+msgid "Printer Agent"
+msgstr "Drucker-Agent"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Wählen Sie die Implementierung des Netzwerkagenten für die Druckerkommunikation. Verfügbare Agenten werden beim Start registriert."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10759,9 +10828,6 @@ msgstr "Höhenbegrenzungen für Schichten"
msgid "Z-Hop"
msgstr "Z-Hop"
-msgid "Retraction when switching material"
-msgstr "Rückzug bei Materialwechsel"
-
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
"\n"
@@ -12103,6 +12169,10 @@ msgstr " ist zu nahe am Sperrbereich und es werden Kollisionen verursacht.\n"
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " ist zu nahe am Klumpenerkennungsbereich und es werden Kollisionen verursacht.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " liegt teilweise außerhalb des druckbaren Bereichs und kann nicht gedruckt werden.\n"
+
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "Die ausgewählten Düsentemperaturen sind nicht kompatibel. Die Düsentemperatur jedes Filaments muss innerhalb des empfohlenen Düsentemperaturbereichs der anderen Filamente liegen. Andernfalls kann es zu Düsenverstopfungen oder Druckerschäden kommen."
@@ -12418,9 +12488,6 @@ msgstr "Benutze 3MF statt G-Code"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Aktivieren Sie diese Option, wenn der Drucker eine 3MF-Datei als Druckauftrag akzeptiert. Wenn aktiviert, sendet Orca Slicer die geslicete Datei als .gcode.3mf, anstatt als einfache .gcode-Datei."
-msgid "Printer Agent"
-msgstr "Drucker-Agent"
-
msgid "Select the network agent implementation for printer communication."
msgstr "Wählen Sie die Netzwerk-Agent-Implementierung für die Druckerkommunikation aus."
@@ -13091,9 +13158,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "Geschwindigkeit der internen Brücken. Wenn der Wert als Prozentsatz angegeben wird, wird er auf der Grundlage der Brückengeschwindigkeit berechnet. Der Standardwert beträgt 150 %."
-msgid "Brim width"
-msgstr "Randbreite"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Abstand vom Modell zur äußersten Randlinie"
@@ -13174,6 +13238,14 @@ msgstr ""
"Die Geometrie wird vor der Erkennung scharfer Winkel reduziert. Dieser Parameter ist ein Indikator für die minimale Länge der Abweichung für die Reduzierung.\n"
"0 zum Deaktivieren."
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Brim-Ohren nur außen"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Erzeugt Mausohren nur an der Außenkontur des Modells, ohne Löcher und geschlossene Bereiche."
+
msgid "upward compatible machine"
msgstr "Aufwärtskompatible Maschine"
@@ -14341,6 +14413,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "Gyroid"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Glättungsfaktor der Füllung"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Legt fest, wie stark die Ecken der Füllung abgerundet werden. 0% behält den ursprünglichen scharfkantigen Pfad bei, während 100% die größtmöglichen Kurven zwischen benachbarten Fülllinien erzeugt."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Dies ist die Beschleunigung der Füllung von der obersten Schicht. Die Verwendung eines niedrigeren Werts kann die Qualität der Oberfläche verbessern."
@@ -14874,6 +14954,14 @@ msgstr "Mit welcher Art von G-Code ist der Drucker kompatibel."
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "G-code-Konfigurationsblock auslassen"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "Schreibt den CONFIG_BLOCK (die Schlüssel-Wert-Paare der Slicer-Konfiguration) nicht in die G-code-Datei. Das kann bei Druckern helfen, deren Firmware beim Verarbeiten dieser Kommentarzeilen abstürzt (z. B. Anycubic go-klipper). Hinweis: Die G-code-Datei enthält dann keine Slicer-Einstellungen mehr, sodass beim erneuten Importieren in OrcaSlicer die Konfiguration nicht wiederhergestellt wird."
+
msgid "Pellet Modded Printer"
msgstr "Pellet-Modifizierter Drucker"
@@ -15920,6 +16008,14 @@ msgstr "Langer Rückzug beim Extruderwechsel"
msgid "Retraction distance when extruder change"
msgstr "Rückzugslänge beim Extruderwechsel"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Rückzugslänge (Werkzeugwechsel)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Wenn vor einem Werkzeugwechsel ein Rückzug ausgelöst wird, wird das Filament um den angegebenen Betrag zurückgezogen (die Länge wird am rohen Filament gemessen, bevor es in den Extruder gelangt)."
+
msgid "Z-hop height"
msgstr "Z-Hub-Höhe"
@@ -16014,6 +16110,10 @@ msgstr "Zusätzliche Länge beim Neustart"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "Wenn die Rückzugskompensation nach dem Reisemove durchgeführt wird, wird der Extruder diese zusätzliche Menge an Filament schieben. Diese Einstellung wird nur selten benötigt."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Zusätzliche Länge beim Neustart (Werkzeugwechsel)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Wenn die Rückzugskompensation nach dem Wechsel des Werkzeugs durchgeführt wird, wird der Extruder diese zusätzliche Menge an Filament schieben."
@@ -16431,6 +16531,14 @@ msgstr "Werkzeugwechsel auf dem Reinigungsturm"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "Erzwinge, dass der Werkzeugkopf zum Reinigungsturm fährt, bevor der Werkzeugwechselbefehl (Tx) ausgegeben wird. Nur relevant für Mehrfach-Extruder (Mehrfach-Werkzeugkopf) Drucker, die einen Typ-2-Reinigungsturm verwenden. Standardmäßig überspringt Orca die Fahrt auf Mehrfach-Werkzeugkopf-Maschinen, da die Firmware den Kopfwechsel übernimmt, was dazu führen kann, dass der Tx-Befehl über dem gedruckten Teil ausgegeben wird. Aktivieren Sie diese Option, wenn Sie möchten, dass der Werkzeugwechsel immer über dem Reinigungsturm ausgegeben wird."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Auf Temperatur am Reinigungsturm warten"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Nimmt das neue Werkzeug auf, ohne auf das Erreichen der Drucktemperatur zu warten, fährt zum Reinigungsturm und wartet dort unmittelbar vor dem Spülen auf die Temperatur. Das beim Aufheizen austretende Material landet auf dem Turm statt auf dem Modell, und die Fahrt überlappt sich mit dem Aufheizen. Nur relevant für Multi-Extruder-Drucker (mehrere Werkzeugköpfe) mit einem Reinigungsturm vom Typ 2. Die Firmware bzw. das Werkzeugwechsel-Makro darf nicht selbst auf die Temperatur warten. Wenn deaktiviert, wird das Warten auf die Temperatur direkt nach dem Werkzeugwechselbefehl ausgegeben."
+
msgid "No sparse layers (beta)"
msgstr "Keine dünnen Schichten (Beta)"
@@ -19650,9 +19758,6 @@ msgstr "Drucker"
msgid "Print Host upload"
msgstr "Hochladen zum Druck-Host"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Wählen Sie die Implementierung des Netzwerkagenten für die Druckerkommunikation. Verfügbare Agenten werden beim Start registriert."
-
msgid "Select a Flashforge printer"
msgstr "Wählen Sie einen Flashforge-Drucker aus"
@@ -20500,9 +20605,6 @@ msgstr "Es ist etwas Unerwartetes passiert, als Sie versucht haben, sich anzumel
msgid "User canceled."
msgstr "Benutzer abgebrochen."
-msgid "Head diameter"
-msgstr "Kopfdurchmesser"
-
msgid "Max angle"
msgstr "Maximaler Winkel"
@@ -21286,6 +21388,22 @@ msgstr ""
"Verwerfungen vermeiden\n"
"Wussten Sie, dass beim Drucken von Materialien, die zu Verwerfungen neigen, wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die Wahrscheinlichkeit von Verwerfungen verringert werden kann?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "Die Schichthöhe ist zu klein.\n"
+#~ "Sie wird auf min_layer_height gesetzt\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "Die Schichthöhe überschreitet das Limit in Druckereinstellungen -> Extruder -> Schichthöhenlimits. Dies kann zu Problemen mit der Druckqualität führen."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "Automatisch an den eingestellten Bereich anpassen?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Kopfdurchmesser"
+
#~ msgid "Print order within a single layer."
#~ msgstr "Druckreihenfolge innerhalb einer einzelnen Schicht"
diff --git a/localization/i18n/en/OrcaSlicer_en.po b/localization/i18n/en/OrcaSlicer_en.po
index 232820f681..88fb455959 100644
--- a/localization/i18n/en/OrcaSlicer_en.po
+++ b/localization/i18n/en/OrcaSlicer_en.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: 2026-06-17 15:44-0300\n"
"Last-Translator: Alexandre Folle de Menezes\n"
"Language-Team: \n"
@@ -4448,6 +4448,20 @@ msgstr ""
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr ""
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr ""
+
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr ""
+
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr ""
+
+msgid "Adjust"
+msgstr ""
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4529,6 +4543,12 @@ msgid ""
"No - Disable Arachne Wall Generator and set [Displacement] mode of the Fuzzy Skin"
msgstr ""
+msgid "Brim ear radius"
+msgstr ""
+
+msgid "Brim width"
+msgstr ""
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr ""
@@ -4780,6 +4800,12 @@ msgstr ""
msgid "Calibration error"
msgstr ""
+msgid "This printer is not configured with the hardware this control needs."
+msgstr ""
+
+msgid "This control is not supported on this printer."
+msgstr ""
+
msgid "Network unavailable"
msgstr ""
@@ -5611,7 +5637,7 @@ msgstr ""
msgid "Size:"
msgstr ""
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr ""
@@ -5786,6 +5812,9 @@ msgstr ""
msgid "Project"
msgstr ""
+msgid "Device (Web)"
+msgstr ""
+
msgid "Yes"
msgstr ""
@@ -7776,19 +7805,19 @@ msgstr ""
msgid "Replaced with 3D files from directory:\n"
msgstr ""
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr ""
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr ""
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr ""
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr ""
@@ -8468,6 +8497,15 @@ msgstr ""
msgid "Pop up to select filament grouping mode"
msgstr ""
+msgid "Visible plugin pages"
+msgstr ""
+
+msgid "pages"
+msgstr ""
+
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr ""
+
msgid "Behaviour"
msgstr ""
@@ -8793,6 +8831,14 @@ msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr ""
+
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+
msgid "Experimental Features"
msgstr ""
@@ -9048,9 +9094,21 @@ msgstr ""
msgid "Preset Inside Project"
msgstr ""
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr ""
+
msgid "Detach from parent"
msgstr ""
+msgid "Unique preset"
+msgstr ""
+
+msgid "Parent preset"
+msgstr ""
+
+msgid "This preset does not inherit from another preset."
+msgstr ""
+
msgid "Name is unavailable."
msgstr ""
@@ -9728,20 +9786,6 @@ msgstr ""
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr ""
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr ""
-
-msgid "Adjust to the set range automatically?\n"
-msgstr ""
-
-msgid "Adjust"
-msgstr ""
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr ""
@@ -9927,6 +9971,9 @@ msgstr ""
msgid "Setting Overrides"
msgstr ""
+msgid "Retraction when switching material"
+msgstr ""
+
msgid "Basic information"
msgstr ""
@@ -10053,6 +10100,12 @@ msgstr ""
msgid "Printable space"
msgstr ""
+msgid "Printer Agent"
+msgstr ""
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr ""
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10175,9 +10228,6 @@ msgstr ""
msgid "Z-Hop"
msgstr ""
-msgid "Retraction when switching material"
-msgstr ""
-
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
"\n"
@@ -11441,6 +11491,9 @@ msgstr ""
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr ""
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr ""
+
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr ""
@@ -11736,9 +11789,6 @@ msgstr ""
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr ""
-msgid "Printer Agent"
-msgstr ""
-
msgid "Select the network agent implementation for printer communication."
msgstr ""
@@ -12275,9 +12325,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
-msgid "Brim width"
-msgstr ""
-
msgid "This is the distance from the model to the outermost brim line."
msgstr ""
@@ -12343,6 +12390,12 @@ msgid ""
"0 to deactivate."
msgstr ""
+msgid "Brim ears outer only"
+msgstr ""
+
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr ""
+
msgid "upward compatible machine"
msgstr ""
@@ -13355,6 +13408,12 @@ msgstr ""
msgid "Gyroid"
msgstr ""
+msgid "Sparse infill smooth factor"
+msgstr ""
+
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr ""
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr ""
@@ -13835,6 +13894,12 @@ msgstr ""
msgid "Klipper"
msgstr ""
+msgid "Skip G-code config block"
+msgstr ""
+
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr ""
+
msgid "Pellet Modded Printer"
msgstr ""
@@ -14796,6 +14861,12 @@ msgstr ""
msgid "Retraction distance when extruder change"
msgstr ""
+msgid "Retraction Length (Toolchange)"
+msgstr ""
+
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr ""
+
msgid "Z-hop height"
msgstr ""
@@ -14889,6 +14960,9 @@ msgstr ""
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr ""
+msgid "Extra length on restart (Toolchange)"
+msgstr ""
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr ""
@@ -15274,6 +15348,12 @@ msgstr ""
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr ""
+msgid "Wait for temperature on wipe tower"
+msgstr ""
+
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr ""
+
msgid "No sparse layers (beta)"
msgstr ""
@@ -18249,9 +18329,6 @@ msgstr ""
msgid "Print Host upload"
msgstr ""
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr ""
-
msgid "Select a Flashforge printer"
msgstr ""
@@ -19083,9 +19160,6 @@ msgstr ""
msgid "User canceled."
msgstr ""
-msgid "Head diameter"
-msgstr ""
-
msgid "Max angle"
msgstr ""
diff --git a/localization/i18n/es/OrcaSlicer_es.po b/localization/i18n/es/OrcaSlicer_es.po
index 1913c4512a..9c5127e50a 100644
--- a/localization/i18n/es/OrcaSlicer_es.po
+++ b/localization/i18n/es/OrcaSlicer_es.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: Ian A. Bassi <>\n"
"Language-Team: \n"
@@ -4564,6 +4564,23 @@ msgstr "La temperatura actual de la recámara es superior a la temperatura de se
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "La temperatura mínima de la recámara (%d℃) es superior a la temperatura objetivo de la recámara (%d℃). El valor mínimo es el umbral en el que comienza la impresión mientras la recámara continúa calentándose hacia el objetivo, por lo que no debería superarlo. Se ajustará al valor objetivo."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "La altura de capa es demasiado pequeña. Se establecerá en el mínimo (%g mm)."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "La altura de capa está fuera de los límites establecidos en Ajustes de la Impresora -> Extrusor -> Limite de Altura de Capa, esto puede causar problemas de calidad de impresión."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "¿Ajustarla automáticamente al límite (%g mm)?"
+
+msgid "Adjust"
+msgstr "Ajustar"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4684,6 +4701,13 @@ msgstr ""
"Sí: habilitar el generador de muros Arachne\n"
"No: deshabilitar el generador de paredes Arachne y establecer el modo [Desplazamiento] de la piel rugosa"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Radio de las orejas de borde"
+
+msgid "Brim width"
+msgstr "Ancho del borde de adherencia"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "El modo espiral solo funciona cuando los bucles de perímetro son 1, el soporte está desactivado, la detección de agrupamientos mediante sondeo está desactivada, las capas superiores de la carcasa son 0, la densidad de relleno es 0 y el tipo de lapso de tiempo es tradicional."
@@ -4938,6 +4962,14 @@ msgstr "Fallo al generar el G-Code de calibración"
msgid "Calibration error"
msgstr "Error de calibración"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "Esta impresora no está configurada con el hardware que necesita este control."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Este control no es compatible con esta impresora."
+
msgid "Network unavailable"
msgstr "Red no disponible"
@@ -5779,7 +5811,7 @@ msgstr "Volumen:"
msgid "Size:"
msgstr "Tamaño:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "Se han encontrado conflictos de rutas G-Code en la capa %d, Z = %.2lfmm. Por favor, separe más los objetos en conflicto (%s <-> %s)."
@@ -5960,6 +5992,10 @@ msgstr "Multi-dispositivo"
msgid "Project"
msgstr "Proyecto"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Dispositivo (Web)"
+
msgid "Yes"
msgstr "Sí"
@@ -7997,19 +8033,19 @@ msgstr "No se seleccionó el directorio para el reemplazo"
msgid "Replaced with 3D files from directory:\n"
msgstr "Reemplazado con archivos 3D desde el directorio:\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Omitido %s: mismo archivo.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Omitido %s: el archivo no existe.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Omitido %s: fallo al reemplazar.\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Reemplazado %s.\n"
@@ -8725,6 +8761,18 @@ msgstr "Con esta opción activada, puede enviar una tarea a varios dispositivos
msgid "Pop up to select filament grouping mode"
msgstr "Ventana emergente para seleccionar el modo de agrupación de filamentos"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Páginas de plugins visibles"
+
+# AI Translated
+msgid "pages"
+msgstr "páginas"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Número de páginas de plugins que se muestran como pestañas fijas antes de que el resto de páginas se agrupe en un desplegable en la última pestaña."
+
msgid "Behaviour"
msgstr "Comportamiento"
@@ -9074,6 +9122,18 @@ msgstr "Mostrar ajustes preestablecidos no compatibles"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Mostrar los ajustes preestablecidos incompatibles o no compatibles en los menús desplegables de impresoras y filamentos. Estos ajustes preestablecidos no se pueden seleccionar."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Experimental) Usar agentes de impresora en lugar de hosts de impresión"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Envía los trabajos de impresión de impresoras que no son Bambu a través de los agentes de plugin de impresora en lugar del flujo clásico de subida al host de impresión.\n"
+"Cuando está desactivado, OrcaSlicer utiliza el comportamiento heredado del host de impresión."
+
msgid "Experimental Features"
msgstr "Funciones experimentales"
@@ -9333,9 +9393,25 @@ msgstr "Perfil de usuario"
msgid "Preset Inside Project"
msgstr "Perfil interno del proyecto"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Copia en este perfil todos los valores heredados del perfil padre y elimina la relación de herencia. Los perfiles compatibles solo con el perfil padre pueden dejar de ser compatibles."
+
msgid "Detach from parent"
msgstr "Separar del elemento padre"
+# AI Translated
+msgid "Unique preset"
+msgstr "Perfil único"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Perfil padre"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Este perfil no hereda de otro perfil."
+
msgid "Name is unavailable."
msgstr "El nombre no está disponible."
@@ -10031,22 +10107,6 @@ msgstr "¿Está seguro de que desea activar esta opción?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "Los patrones de relleno suelen diseñarse para gestionar la rotación automáticamente y asegurar una impresión adecuada y lograr sus efectos previstos (p. ej., Giroide, Cúbico). Rotar el patrón de relleno actual puede provocar soporte insuficiente. Proceda con precaución y compruebe detenidamente posibles problemas de impresión. ¿Está seguro de que desea activar esta opción?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"La altura de la capa es demasiado pequeña.\n"
-"Se establecerá en min_layer_height\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "La altura de la capa excede el límite en Ajustes de la Impresora -> Extrusor -> Limite de Altura de Capa, esto puede causar problemas de calidad de impresión."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "¿Desea ajustar el rango automáticamente?\n"
-
-msgid "Adjust"
-msgstr "Ajustar"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "Función experimental: retraer y cortar el filamento a una mayor distancia durante los cambios de filamento para minimizar el purgado. Aunque puede reducir notablemente el purgado, también puede aumentar el riesgo de atascos de boquilla u otras complicaciones de impresión.Característica experimental: Retraer y cortar el filamento a mayor distancia durante los cambios de filamento para minimizar el descarte. Aunque puede reducir notablemente el descarte, también puede elevar el riesgo de atascos de boquillas u otros problemas en la impresión."
@@ -10238,6 +10298,9 @@ msgstr "Palabras clave utilizadas y encontradas"
msgid "Setting Overrides"
msgstr "Sobreescribir Ajustes de impresora"
+msgid "Retraction when switching material"
+msgstr "Retracción al cambiar de material"
+
msgid "Basic information"
msgstr "Información básica"
@@ -10364,6 +10427,12 @@ msgstr "Perfiles de proceso compatibles"
msgid "Printable space"
msgstr "Espacio imprimible"
+msgid "Printer Agent"
+msgstr "Agente de impresora"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Seleccione la implementación del agente de red para la comunicación con la impresora. Los agentes disponibles se registran al iniciar el sistema."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10489,9 +10558,6 @@ msgstr "Límites de altura de la capa"
msgid "Z-Hop"
msgstr "Salto en Z"
-msgid "Retraction when switching material"
-msgstr "Retracción al cambiar de material"
-
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
"\n"
@@ -11809,6 +11875,10 @@ msgstr " está demasiado cerca de una zona de exclusión, lo que provocará coli
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " está demasiado cerca del área de detección de aglomeraciones, y se producirán colisiones.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " está parcialmente fuera del área imprimible, y no se puede imprimir.\n"
+
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "Las temperaturas de boquilla seleccionadas son incompatibles. La temperatura de boquilla de cada filamento debe estar dentro del rango de temperaturas recomendado para los demás filamentos. De lo contrario, podrían producirse atascos en la boquilla o daños en la impresora."
@@ -12116,9 +12186,6 @@ msgstr "Utiliza 3MF en lugar de G-code"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Activa esta opción si la impresora admite un archivo 3MF como trabajo de impresión. Cuando está activada, Orca Slicer envía el archivo cortado como un archivo .gcode.3mf, en lugar de como un archivo .gcode convencional."
-msgid "Printer Agent"
-msgstr "Agente de impresora"
-
msgid "Select the network agent implementation for printer communication."
msgstr "Seleccione la implementación del agente de red para la comunicación con la impresora."
@@ -12794,9 +12861,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "Velocidad de los puntes internos. Si se expresa como un porcentaje, será Calculado en base a la velocidad de puente. El valor por defecto es 150%."
-msgid "Brim width"
-msgstr "Ancho del borde de adherencia"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Distancia del modelo a la línea más externa del borde de adherencia."
@@ -12876,6 +12940,14 @@ msgstr ""
"La geometría se verá diezmada antes de detectar angulos agudos. Este parámetro indica la longitud mínima de desviación para el diezmado\n"
"0 para desactivar."
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Orejas de borde solo en el exterior"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Genera orejas de ratón únicamente en el contorno exterior del modelo, excluyendo agujeros y secciones cerradas."
+
msgid "upward compatible machine"
msgstr "máquina compatible ascendente"
@@ -14011,6 +14083,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "Giroide"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Factor de suavizado del relleno poco denso"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Controla cuánto se redondean las esquinas del relleno poco denso. 0% mantiene el trazado original con esquinas vivas, mientras que 100% produce las curvas más amplias posibles entre líneas de relleno adyacentes."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Aceleración del relleno de la superficie superior. El uso de un valor más bajo puede mejorar la calidad de la superficie superior."
@@ -14544,6 +14624,14 @@ msgstr "Con qué tipo de G-Code es compatible la impresora."
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "Omitir el bloque de configuración del G-code"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "No escribe el CONFIG_BLOCK (los pares clave/valor de la configuración del laminador) en el archivo G-code. Esto puede ayudar con impresoras cuyo firmware falla al analizar esas líneas de comentario (p. ej. Anycubic go-klipper). Nota: el archivo G-code ya no contendrá los ajustes del laminador, por lo que al importarlo de nuevo en OrcaSlicer no se restaurará la configuración."
+
msgid "Pellet Modded Printer"
msgstr "Impresora Modificada para Pellets"
@@ -15583,6 +15671,14 @@ msgstr "Retracción larga al cambiar de extrusor"
msgid "Retraction distance when extruder change"
msgstr "Distancia de retracción al cambiar de extrusor"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Longitud de retracción (Cambio de herramienta)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Cuando se activa la retracción antes de un cambio de herramienta, el filamento se retrae la cantidad especificada (la longitud se mide sobre el filamento en bruto, antes de entrar en el extrusor)."
+
msgid "Z-hop height"
msgstr "Altura de Salto en Z"
@@ -15676,6 +15772,10 @@ msgstr "Longitud extra de reinicio"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "Cuando la retracción se compensa después de un desplazamiento, el extrusor expulsará esta cantidad adicional de filamento. Esta función no suele ser necesaria."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Longitud extra de reinicio (Cambio de herramienta)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Cuando se compensa la retracción después de cambiar de cabezal, el extrusor expulsará esta cantidad adicional de filamento."
@@ -16082,6 +16182,14 @@ msgstr "Cambio de herramienta en la torre de purga"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "Obliga al cabezal a desplazarse hasta la torre de purga antes de emitir el comando de cambio de herramienta (Tx). Solo es relevante para impresoras con múltiples extrusores (múltiples cabezales) que utilicen una torre de limpieza de tipo 2. Por defecto, Orca omite el desplazamiento en máquinas con múltiples cabezales porque el firmware se encarga del cambio de cabezal, lo que puede provocar que el comando Tx se emita por encima de la pieza impresa. Habilita esta opción si deseas que el cambio de herramienta se emita siempre por encima de la torre de purga."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Esperar la temperatura en la torre de purga"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Recoge la nueva herramienta sin esperar a que alcance la temperatura de impresión, se desplaza a la torre de purga y espera allí la temperatura, justo antes de purgar. El rezumado del calentamiento cae sobre la torre en lugar de sobre el modelo, y el desplazamiento se solapa con el calentamiento. Solo es relevante para impresoras multiextrusor (multicabezal) que usan una torre de purga de tipo 2. El firmware o la macro de cambio de herramienta no deben esperar la temperatura por su cuenta. Cuando está desactivado, la espera de temperatura se emite justo después del comando de cambio de herramienta."
+
msgid "No sparse layers (beta)"
msgstr "Sin capas de baja densidad (beta)"
@@ -19281,9 +19389,6 @@ msgstr "Impresora física"
msgid "Print Host upload"
msgstr "Mandar al servidor de impresión"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Seleccione la implementación del agente de red para la comunicación con la impresora. Los agentes disponibles se registran al iniciar el sistema."
-
msgid "Select a Flashforge printer"
msgstr "Selecciona una impresora Flashforge"
@@ -20125,9 +20230,6 @@ msgstr "Ha ocurrido algo inesperado al intentar iniciar sesión, inténtelo de n
msgid "User canceled."
msgstr "Cancelado por el usuario."
-msgid "Head diameter"
-msgstr "Diámetro de la cabeza"
-
msgid "Max angle"
msgstr "Ángulo máximo"
@@ -20861,6 +20963,22 @@ msgstr ""
"Evita la deformación\n"
"¿Sabías que al imprimir materiales propensos a la deformación como el ABS, aumentar adecuadamente la temperatura de la cama térmica puede reducir la probabilidad de deformaciones?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "La altura de la capa es demasiado pequeña.\n"
+#~ "Se establecerá en min_layer_height\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "La altura de la capa excede el límite en Ajustes de la Impresora -> Extrusor -> Limite de Altura de Capa, esto puede causar problemas de calidad de impresión."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "¿Desea ajustar el rango automáticamente?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Diámetro de la cabeza"
+
#~ msgid "Print order within a single layer."
#~ msgstr "Orden de impresión dentro de cada capa."
diff --git a/localization/i18n/eu/OrcaSlicer_eu.po b/localization/i18n/eu/OrcaSlicer_eu.po
index fa10cc387f..03e6d6685d 100644
--- a/localization/i18n/eu/OrcaSlicer_eu.po
+++ b/localization/i18n/eu/OrcaSlicer_eu.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: 2026-07-20 13:33+0200\n"
"Last-Translator: Manu Goiogana \n"
"Language-Team: \n"
@@ -4606,6 +4606,23 @@ msgstr "Uneko ganberako tenperatura materialaren tenperatura segurua baino handi
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "Ganberako gutxieneko tenperatura (%d ℃) helburuko ganbera-tenperatura (%d ℃) baino altuagoa da. Gutxieneko balioa inprimaketa hasten den atalasea da, ganberak helbururantz berotzen jarraitzen duen bitartean; beraz, ez luke helburua gainditu behar. Helburuko baliora mugatuko da."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "Geruza-altuera txikiegia da. Gutxienekora ezarriko da (%g mm)."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "Geruza-altuera Inprimagailuaren ezarpenak -> Estrusorea -> Geruza-altueraren mugak atalean ezarritako mugetatik kanpo dago; horrek inprimatze-kalitateko arazoak sor ditzake."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "Automatikoki mugara (%g mm) doitu nahi duzu?"
+
+msgid "Adjust"
+msgstr "Doitu"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4725,6 +4742,13 @@ msgstr ""
"Bai - Gaitu Arachne horma-sorgailua\n"
"Ez - Desgaitu Arachne horma-sorgailua eta ezarri gainazal zimurraren [Desplazamendua] modua"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Ertz-belarriaren erradioa"
+
+msgid "Brim width"
+msgstr "Itsaspen ertzaren zabalera"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "Espiral moduak baldintza hauetan bakarrik funtzionatzen du: horma-begiztak 1 izatea, euskarriak desgaituta egotea, haztatze bidezko material-metaketa detektatzea desgaituta egotea, goiko estalki-geruzak 0 izatea, dentsitate baxuko betegarriaren dentsitatea 0 izatea eta timelapse mota tradizionala izatea."
@@ -4979,6 +5003,14 @@ msgstr "Hutsegitea gertatu da kalibrazioko G-Code-a sortzean"
msgid "Calibration error"
msgstr "Kalibrazio akatsa"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "Inprimagailu honek ez dauka kontrol honek behar duen hardwarea konfiguratuta."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Kontrol hau ez da bateragarria inprimagailu honekin."
+
# AI Translated
msgid "Network unavailable"
msgstr "Sarea ez dago erabilgarri"
@@ -5828,7 +5860,7 @@ msgstr "Bolumena:"
msgid "Size:"
msgstr "Tamaina:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "G-code ibilbideen gatazkak aurkitu dira %d geruzan, Z = %.2lf mm. Urrundu gehiago gatazkan dauden objektuak (%s <-> %s)."
@@ -6005,6 +6037,10 @@ msgstr "Gailu anitz"
msgid "Project"
msgstr "Proiektua"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Gailua (Web)"
+
msgid "Yes"
msgstr "Bai"
@@ -8064,19 +8100,19 @@ msgstr "Ez da ordezkatzeko direktoriorik hautatu"
msgid "Replaced with 3D files from directory:\n"
msgstr "Direktorio honetako 3D fitxategiekin ordeztuta:\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ %s saltatu da: fitxategi bera.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ %s saltatu da: fitxategia ez da existitzen.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ %s saltatu da: ezin izan da ordeztu.\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ %s ordezkatu da.\n"
@@ -8790,6 +8826,18 @@ msgstr "Aukera hau gaituta, zeregin bat hainbat gailutara bidali eta hainbat gai
msgid "Pop up to select filament grouping mode"
msgstr "Erakutsi filamentuak taldekatzeko modua hautatzeko leihoa"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Ikusgai dauden plugin-orriak"
+
+# AI Translated
+msgid "pages"
+msgstr "orri"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Fitxa finko gisa erakusten diren plugin-orrien kopurua; gainerako orriak azken fitxako goitibeherako zerrendan bilduko dira."
+
msgid "Behaviour"
msgstr "Jokabidea"
@@ -9142,6 +9190,18 @@ msgstr "Erakutsi onartzen ez diren aurrezarpenak"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Erakutsi bateraezinak edo onartu gabeak diren aurrezarpenak inprimagailuaren eta filamentuaren goitibeherako zerrendetan. Aurrezarpen hauek ezin dira hautatu."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Esperimentala) Erabili inprimagailu-agenteak inprimatze-hostenen ordez"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Bideratu Bambu ez diren inprimagailuen inprimatze-lanak inprimagailuaren plugin-agenteen bidez, inprimatze-hostera igotzeko fluxu klasikoaren ordez.\n"
+"Desgaituta dagoenean, OrcaSlicer-ek inprimatze-hostaren aurreko portaera erabiltzen du."
+
msgid "Experimental Features"
msgstr "Ezaugarri esperimentalak"
@@ -9402,9 +9462,25 @@ msgstr "Erabiltzailearen aurrezarpena"
msgid "Preset Inside Project"
msgstr "Proiektu barruko aurrezarpena"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Aurrezarpen honetara gurasoaren balio heredatu guztiak kopiatzen ditu eta gurasoarekiko lotura kentzen du. Gurasoarekin soilik bateragarriak diren aurrezarpenak bateraezin gera daitezke."
+
msgid "Detach from parent"
msgstr "Bereizi gurasotik"
+# AI Translated
+msgid "Unique preset"
+msgstr "Aurrezarpen bakarra"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Guraso-aurrezarpena"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Aurrezarpen honek ez du beste aurrezarpen batetik heredatzen."
+
msgid "Name is unavailable."
msgstr "Izena ez dago erabilgarri."
@@ -10124,22 +10200,6 @@ msgstr "Ziur aukera hau gaitu nahi duzula?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "Betegarri-patroiak normalean biraketa automatikoki kudeatzeko diseinatuta daude, behar bezala inprimatzeko eta nahi den efektua lortzeko (adibidez, Giroidea edo Kubikoa). Uneko dentsitate baxuko betegarri-patroia biratzeak euskarri eskasa eragin dezake. Kontuz jarraitu eta egiaztatu arretaz inprimatze-arazorik sor daitekeen. Ziur zaude aukera hau gaitu nahi duzula?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"Geruza-altuera txikiegia da.\n"
-"min_layer_height baliora ezarriko da\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "Geruza-altuerak Inprimagailuaren ezarpenak -> Estrusorea -> Geruza-altueraren mugak ataleko muga gainditzen du; horrek inprimatze-kalitateko arazoak sor ditzake."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "Doitu automatikoki ezarritako barrutira?\n"
-
-msgid "Adjust"
-msgstr "Doitu"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "Funtzio esperimentala: filamentu aldaketetan distantzia handiagoan atzera egitea eta moztea, purgatzea minimizatzeko. Purgatzea nabarmen murriztu dezakeen arren, pitaren buxadurak edo bestelako inprimatze-arazoak izateko arriskua ere handitu dezake."
@@ -10333,6 +10393,9 @@ msgstr "Erreserbatutako gako-hitzak aurkitu dira"
msgid "Setting Overrides"
msgstr "Ezarpenen gainidazketak"
+msgid "Retraction when switching material"
+msgstr "Atzera-egitea materiala aldatzean"
+
msgid "Basic information"
msgstr "Oinarrizko informazioa"
@@ -10459,6 +10522,12 @@ msgstr "Prozesu-profil bateragarriak"
msgid "Printable space"
msgstr "Inprimatzeko espazioa"
+msgid "Printer Agent"
+msgstr "Inprimagailu-agentea"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Hautatu sare-agentearen inplementazioa inprimagailuarekin komunikatzeko. Erabilgarri dauden agenteak abioan erregistratzen dira."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10584,9 +10653,6 @@ msgstr "Geruza-altueraren mugak"
msgid "Z-Hop"
msgstr "Z jauzia"
-msgid "Retraction when switching material"
-msgstr "Atzera-egitea materiala aldatzean"
-
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
"\n"
@@ -11912,6 +11978,10 @@ msgstr " bazterketa-eremu batetik gertuegi dago, eta talkak eragingo ditu.\n"
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " material-metaketa detektatzeko eremutik gertuegi dago, eta talkak eragingo ditu.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " inprimagarri den eremutik kanpo dago partzialki, eta ezin da inprimatu.\n"
+
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "Hautatutako pita-tenperaturak ez dira bateragarriak. Filamentu bakoitzaren pita-tenperaturak gainerako filamentuen gomendatutako pita-tenperatura tartean egon behar du. Bestela, pita buxatu edo inprimagailua kaltetu daiteke."
@@ -12228,9 +12298,6 @@ msgstr "Erabili 3MF G-codearen ordez"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Gaitu aukera hau inprimagailuak 3MF fitxategi bat inprimatze-lan gisa onartzen badu. Gaituta dagoenean, OrcaSlicerrek xerratutako fitxategia .gcode.3mf gisa bidaltzen du, .gcode fitxategi arrunt baten ordez."
-msgid "Printer Agent"
-msgstr "Inprimagailu-agentea"
-
msgid "Select the network agent implementation for printer communication."
msgstr "Hautatu inprimagailuarekin komunikatzeko sare-agentearen inplementazioa."
@@ -12905,9 +12972,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "Barru-zubien abiadura. Balioa ehuneko gisa adierazten bada, Zubien abiadura-ren arabera kalkulatuko da. Lehenetsitako balioa % 150ekoa da."
-msgid "Brim width"
-msgstr "Itsaspen ertzaren zabalera"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Hau da modelotik itsaspen ertzaren kanporen lerrora dagoen distantzia."
@@ -12987,6 +13051,14 @@ msgstr ""
"Geometria sinplifikatu egingo da angelu zorrotzak detektatu aurretik. Parametro honek sinplifikaziorako desbideratzearen gutxieneko luzera adierazten du.\n"
"0, desaktibatzeko."
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Ertz-belarriak kanpoaldean soilik"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Sortu saguaren belarriak modeloaren kanpoko ingeradan soilik, zuloak eta itxitako atalak baztertuta."
+
msgid "upward compatible machine"
msgstr "gorantz bateragarria den makina"
@@ -14137,6 +14209,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "Giroidea"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Dentsitate baxuko betegarriaren leuntze-faktorea"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Dentsitate baxuko betegarriaren izkinak zenbateraino biribiltzen diren kontrolatzen du. 0% balioak jatorrizko ibilbide zorrotza mantentzen du, eta 100% balioak ondoz ondoko betegarri-lerroen arteko kurbarik zabalenak sortzen ditu."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Hau da goiko gainazaleko betegarriaren azelerazioa. Balio txikiago batek goiko gainazalaren kalitatea hobetu dezake."
@@ -14676,6 +14756,14 @@ msgstr "Inprimagailua zer G-code motarekin den bateragarria."
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "Saltatu G-code-aren konfigurazio-blokea"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "Ez idatzi CONFIG_BLOCK (xerragailuaren konfigurazioko gako/balio bikoteak) G-code fitxategian. Lagungarria izan daiteke firmwareak iruzkin-lerro horiek prozesatzean huts egiten duen inprimagailuetan (adib. Anycubic go-klipper). Oharra: G-code fitxategiak ez ditu jada xerragailuaren ezarpenak edukiko; beraz, OrcaSlicer-era berriro inportatzeak ez du konfigurazioa berreskuratuko."
+
msgid "Pellet Modded Printer"
msgstr "Pelletekin moldatutako inprimagailua"
@@ -15719,6 +15807,14 @@ msgstr "Atzera-egite luzea estrusorea aldatzean"
msgid "Retraction distance when extruder change"
msgstr "Atzera-egite distantzia estrusorea aldatzean"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Atzera-egitearen luzera (Erreminta aldaketa)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Erreminta aldatu aurretik atzera-egitea abiarazten denean, filamentua zehaztutako kopurua atzeratzen da (luzera filamentu gordinean neurtzen da, estrusorean sartu aurretik)."
+
msgid "Z-hop height"
msgstr "Z jauziaren altuera"
@@ -15812,6 +15908,10 @@ msgstr "Berrabiaraztean luzera gehigarria"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "Mugimenduaren ondoren atzera-egitea konpentsatzen denean, estrusoreak filamentu kantitate gehigarri hau bultzatuko du. Ezarpen hau gutxitan behar da."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Berrabiaraztean luzera gehigarria (Erreminta aldaketa)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Tresna aldatu ondoren atzera-egitea konpentsatzen denean, estrusoreak filamentu kantitate gehigarri hau bultzatuko du."
@@ -16220,6 +16320,14 @@ msgstr "Tresna-aldaketa purgatze-dorrean"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "Behartu inprimatze-burua purgatze-dorrera joatera tresna aldatzeko agindua (Tx) eman aurretik. 2. motako purgatze-dorrea erabiltzen duten estrusore anitzeko (inprimatze-buru anitzeko) inprimagailuetarako bakarrik da garrantzitsua. Lehenespenez, Orcak ez du joan-etorria egiten inprimatze-buru anitzeko makinetan, firmwareak buruaren aldaketa kudeatzen duelako; horren ondorioz, Tx agindua inprimatutako piezaren gainean eman daiteke. Gaitu aukera hau tresna-aldaketa beti purgatze-dorrearen gainean egin dadin."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Itxaron tenperatura purgatze-dorrean"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Hartu erreminta berria inprimatze-tenperaturara iritsi arte itxaron gabe, joan purgatze-dorrera eta itxaron han tenperatura, purgatu aurretik. Berotzeak eragindako jarioa dorrean erortzen da modeloan beharrean, eta desplazamendua berotzearekin gainjartzen da. Estrusore anitzeko (inprimatze-buru anitzeko) inprimagailuetan soilik da baliagarria, 2. motako purgatze-dorrea erabiltzen dutenean. Firmwareak edo erreminta aldaketaren makroak ez du tenperaturaren zain egon behar. Desgaituta dagoenean, tenperaturaren zain egoteko agindua erreminta aldaketaren komandoaren ondoren bidaltzen da."
+
msgid "No sparse layers (beta)"
msgstr "Geruza bakandurik ez (beta)"
@@ -19429,9 +19537,6 @@ msgstr "Inprimagailu fisikoa"
msgid "Print Host upload"
msgstr "Inprimatze-ostalariaren karga"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Hautatu sare-agentearen inplementazioa inprimagailuarekin komunikatzeko. Erabilgarri dauden agenteak abioan erregistratzen dira."
-
msgid "Select a Flashforge printer"
msgstr "Hautatu Flashforge inprimagailu bat"
@@ -20278,9 +20383,6 @@ msgstr "Ustekabeko zerbait gertatu da saioa hasten saiatzean; saiatu berriro."
msgid "User canceled."
msgstr "Erabiltzaileak bertan behera utzi du."
-msgid "Head diameter"
-msgstr "Buruaren diametroa"
-
msgid "Max angle"
msgstr "Gehieneko angelua"
@@ -21016,6 +21118,22 @@ msgstr ""
"Saihestu okertzea\n"
"Ba al zenekien ABS bezalako okertzeko joera duten materialak inprimatzean ohe beroaren tenperatura egoki igotzeak okertzeko probabilitatea murriztu dezakeela?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "Geruza-altuera txikiegia da.\n"
+#~ "min_layer_height baliora ezarriko da\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "Geruza-altuerak Inprimagailuaren ezarpenak -> Estrusorea -> Geruza-altueraren mugak ataleko muga gainditzen du; horrek inprimatze-kalitateko arazoak sor ditzake."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "Doitu automatikoki ezarritako barrutira?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Buruaren diametroa"
+
#~ msgid "Print order within a single layer."
#~ msgstr "Geruza bakarreko inprimatze-ordena."
diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po
index 1257994f16..fc58381106 100644
--- a/localization/i18n/fr/OrcaSlicer_fr.po
+++ b/localization/i18n/fr/OrcaSlicer_fr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: Guislain Cyril, Thomas Lété\n"
@@ -4643,6 +4643,23 @@ msgstr "La température actuelle du caisson est supérieure à la température d
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "La température minimale du caisson (%d℃) est supérieure à la température cible du caisson (%d℃). La valeur minimale est le seuil à partir duquel l’impression démarre tandis que le caisson continue de chauffer vers la cible ; elle ne doit donc pas la dépasser. Elle sera limitée à la cible."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "La hauteur de couche est trop faible. Elle sera définie au minimum (%g mm)."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "La hauteur de couche est en dehors des limites définies dans Paramètres de l’imprimante -> Extrudeur -> Limites de la hauteur de la couche, ce qui peut entraîner des problèmes de qualité d’impression."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "L’ajuster automatiquement à la limite (%g mm) ?"
+
+msgid "Adjust"
+msgstr "Ajuster"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4762,6 +4779,13 @@ msgstr ""
"Oui - Activer le générateur de parois Arachne\n"
"Non - Désactiver le générateur de parois Arachne et définir le mode [Déplacement] de la surface irrégulière"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Rayon de la bordure à oreilles"
+
+msgid "Brim width"
+msgstr "Largeur de la bordure"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "Le mode spirale ne fonctionne que lorsque le nombre de parois est 1, le support est désactivé, la détection d'agglomération par sondage est désactivée, les couches supérieures sont à 0, la densité de remplissage clairsemé est à 0 et le type de timelapse est traditionnel."
@@ -4835,7 +4859,7 @@ msgid "Calibrating the micro lidar"
msgstr "Calibrage du micro-Lidar"
msgid "Calibrating flow ratio"
-msgstr "Calibration du ratio de débit"
+msgstr "Calibration du rapport de débit"
msgid "Pause (nozzle temperature malfunction)"
msgstr "Pause (dysfonctionnement de la température de la buse)"
@@ -5016,6 +5040,14 @@ msgstr "Échec de la génération du G-code de calibration"
msgid "Calibration error"
msgstr "Erreur de la calibration"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "Cette imprimante ne dispose pas du matériel requis par ce contrôle."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Ce contrôle n’est pas pris en charge sur cette imprimante."
+
# AI Translated
msgid "Network unavailable"
msgstr "Réseau indisponible"
@@ -5871,7 +5903,7 @@ msgstr "Volume :"
msgid "Size:"
msgstr "Taille :"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "Des conflits de chemins G-code ont été trouvés au niveau de la couche %d, z = %.2lfmm. Veuillez séparer davantage les objets en conflit (%s <-> %s)."
@@ -6052,6 +6084,10 @@ msgstr "Multi-appareils"
msgid "Project"
msgstr "Projet"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Appareil (Web)"
+
msgid "Yes"
msgstr "Oui"
@@ -7434,11 +7470,11 @@ msgstr "Erreur lors du chargement des shaders"
msgctxt "Layers"
msgid "Top"
-msgstr "Du haut"
+msgstr "Supérieur"
msgctxt "Layers"
msgid "Bottom"
-msgstr "Du bas"
+msgstr "Inférieur"
# AI Translated
msgid "Plugin Selection"
@@ -8120,19 +8156,19 @@ msgstr "Le répertoire pour le remplacement n'a pas été sélectionné"
msgid "Replaced with 3D files from directory:\n"
msgstr "Remplacé par des fichiers 3D depuis le répertoire :\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Ignoré %s : même fichier.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Ignoré %s : le fichier n'existe pas.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Ignoré %s : échec du remplacement.\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Remplacé %s.\n"
@@ -8857,6 +8893,18 @@ msgstr "Si cette option est activée, vous pouvez envoyer une tâche à plusieur
msgid "Pop up to select filament grouping mode"
msgstr "Fenêtre contextuelle pour sélectionner le mode de regroupement des filaments"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Pages de plugins visibles"
+
+# AI Translated
+msgid "pages"
+msgstr "pages"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Nombre de pages de plugins affichées sous forme d’onglets fixes avant que les pages restantes ne soient regroupées dans un menu déroulant sur le dernier onglet."
+
msgid "Behaviour"
msgstr "Comportement"
@@ -9211,6 +9259,18 @@ msgstr "Afficher les préréglages non pris en charge"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Affiche les préréglages incompatibles ou non pris en charge dans les listes déroulantes d’imprimantes et de filaments. Ces préréglages ne peuvent pas être sélectionnés."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Expérimental) Utiliser les agents d’imprimante au lieu des hôtes d’impression"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Achemine les tâches d’impression des imprimantes non Bambu via les agents de plugin d’imprimante au lieu du flux classique d’envoi vers l’hôte d’impression.\n"
+"Lorsque cette option est désactivée, OrcaSlicer utilise l’ancien comportement de l’hôte d’impression."
+
msgid "Experimental Features"
msgstr "Fonctionnalités expérimentales"
@@ -9472,9 +9532,25 @@ msgstr "Préréglage utilisateur"
msgid "Preset Inside Project"
msgstr "Préréglage intégré au projet"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Copie dans ce préréglage toutes les valeurs héritées du préréglage parent et supprime le lien d’héritage. Les préréglages compatibles uniquement avec le parent peuvent devenir incompatibles."
+
msgid "Detach from parent"
msgstr "Détacher du parent"
+# AI Translated
+msgid "Unique preset"
+msgstr "Préréglage unique"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Préréglage parent"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Ce préréglage n’hérite d’aucun autre préréglage."
+
msgid "Name is unavailable."
msgstr "Le nom n'est pas disponible."
@@ -10211,27 +10287,11 @@ msgstr "Voulez-vous vraiment activer cette option ?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "Les motifs de remplissage sont généralement conçus pour gérer la rotation automatiquement afin d'assurer une impression correcte et d'atteindre les effets souhaités (ex. : Gyroïde, Cubique). La rotation du motif de remplissage clairsemé actuel peut entraîner un support insuffisant. Veuillez procéder avec précaution et vérifier soigneusement tout problème d'impression potentiel. Voulez-vous vraiment activer cette option ?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"La hauteur de couche est trop faible.\n"
-"Elle sera définie à min_layer_height\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "La hauteur de la couche dépasse la limite fixée dans Paramètres de l’imprimante -> Extrudeur -> Limites de la hauteur de la couche, ce qui peut entraîner des problèmes de qualité d’impression."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "S’ajuster automatiquement à la plage définie ?\n"
-
-msgid "Adjust"
-msgstr "Ajuster"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
-msgstr "Fonction expérimentale : Rétracter et couper le filament à une plus grande distance lors des changements de filament afin de minimiser le rinçage. Bien que cela puisse réduire considérablement le rinçage, cela peut également augmenter le risque de bouchage des buses ou d’autres complications d’impression."
+msgstr "Fonction expérimentale : Rétracter et couper le filament à une plus grande distance lors des changements de filament afin de minimiser la purge. Bien que cela puisse réduire considérablement la purge, cela peut également augmenter le risque de bouchage des buses ou d’autres complications d’impression."
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications. Please use with the latest printer firmware."
-msgstr "Fonction expérimentale : Rétracter et couper le filament à une plus grande distance lors des changements de filament afin de minimiser l’affleurement. Bien que cela puisse réduire sensiblement l’affleurement, cela peut également augmenter le risque d’obstruction des buses ou d’autres complications d’impression. Veuillez utiliser le dernier micrologiciel de l’imprimante."
+msgstr "Fonction expérimentale : Rétracter et couper le filament à une plus grande distance lors des changements de filament afin de minimiser la purge. Bien que cela puisse réduire sensiblement la purge, cela peut également augmenter le risque d’obstruction des buses ou d’autres complications d’impression. Veuillez utiliser le dernier micrologiciel de l’imprimante."
msgid ""
"When recording timelapse without toolhead, it is recommended to add a \"Timelapse Wipe Tower\" \n"
@@ -10422,6 +10482,9 @@ msgstr "Mots clés réservés trouvés"
msgid "Setting Overrides"
msgstr "Forçage des réglages"
+msgid "Retraction when switching material"
+msgstr "Rétraction lors du changement de matériau"
+
msgid "Basic information"
msgstr "Informations de base"
@@ -10548,6 +10611,12 @@ msgstr "Profils de traitement compatibles"
msgid "Printable space"
msgstr "Espace imprimable"
+msgid "Printer Agent"
+msgstr "Agent d'imprimante"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Sélectionner l'implémentation de l'agent réseau pour la communication avec l'imprimante. Les agents disponibles sont enregistrés au démarrage."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10673,9 +10742,6 @@ msgstr "Limites de hauteur de couche"
msgid "Z-Hop"
msgstr "Saut en Z"
-msgid "Retraction when switching material"
-msgstr "Rétraction lors du changement de matériau"
-
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
"\n"
@@ -12010,6 +12076,10 @@ msgstr " est trop proche d'une zone d'exclusion. Cela va entraîner des collisio
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " est trop proche de la zone de détection d'agglomération, et des collisions seront causées.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " est partiellement en dehors de la zone imprimable et ne peut pas être imprimé.\n"
+
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "Les températures de buse sélectionnées sont incompatibles. La température de buse de chaque filament doit se situer dans la plage de température de buse recommandée des autres filaments. Sinon, un bouchage de la buse ou des dommages à l’imprimante peuvent survenir."
@@ -12323,9 +12393,6 @@ msgstr "Utiliser le 3MF au lieu du G-code"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Activez ceci si l’imprimante accepte un fichier 3MF comme tâche d’impression. Lorsque cette option est activée, Orca Slicer envoie le fichier découpé au format .gcode.3mf au lieu d’un simple fichier .gcode."
-msgid "Printer Agent"
-msgstr "Agent d'imprimante"
-
msgid "Select the network agent implementation for printer communication."
msgstr "Sélectionner l'implémentation de l'agent réseau pour la communication avec l'imprimante."
@@ -12689,7 +12756,7 @@ msgstr ""
"Si réglée à 0, la largeur de ligne correspond à celle du remplissage plein interne."
msgid "Internal bridge flow ratio"
-msgstr "Ratio de débit du pont interne"
+msgstr "Rapport de débit du pont interne"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the first layer over sparse infill so increasing it may increase strength and upper layer quality.\n"
@@ -12729,13 +12796,13 @@ msgstr ""
"Le débit réel du remplissage solide inférieur utilisé est calculé en multipliant cette valeur par le rapport de débit du filament et, s’il est défini, par le rapport de débit de l’objet."
msgid "Set other flow ratios"
-msgstr "Définir d'autres ratios de débit"
+msgstr "Définir d'autres rapports de débit"
msgid "Change flow ratios for other extrusion path types."
-msgstr "Modifier les ratios de débit pour d'autres types de chemin d'extrusion."
+msgstr "Modifier les rapports de débit pour d'autres types de chemin d'extrusion."
msgid "First layer flow ratio"
-msgstr "Ratio de débit de la première couche"
+msgstr "Rapport de débit de la première couche"
msgid ""
"This factor affects the amount of material on the first layer for the extrusion path roles listed in this section.\n"
@@ -12744,10 +12811,10 @@ msgid ""
msgstr ""
"Ce facteur affecte la quantité de matériau sur la première couche pour les rôles de chemin d'extrusion listés dans cette section.\n"
"\n"
-"Pour la première couche, le ratio de débit réel pour chaque rôle de chemin (n'affecte pas les bordures et les jupes) sera multiplié par cette valeur."
+"Pour la première couche, le rapport de débit réel pour chaque rôle de chemin (n'affecte pas les bordures et les jupes) sera multiplié par cette valeur."
msgid "Outer wall flow ratio"
-msgstr "Ratio de débit de la paroi extérieure"
+msgstr "Rapport de débit de la paroi extérieure"
msgid ""
"This factor affects the amount of material for outer walls.\n"
@@ -12756,10 +12823,10 @@ msgid ""
msgstr ""
"Ce facteur affecte la quantité de matériau pour les parois extérieures.\n"
"\n"
-"Le débit réel de la paroi extérieure est calculé en multipliant cette valeur par le ratio de débit du filament, et si défini, le ratio de débit de l'objet."
+"Le débit réel de la paroi extérieure est calculé en multipliant cette valeur par le rapport de débit du filament, et si défini, le rapport de débit de l'objet."
msgid "Inner wall flow ratio"
-msgstr "Ratio de débit de la paroi intérieure"
+msgstr "Rapport de débit de la paroi intérieure"
msgid ""
"This factor affects the amount of material for inner walls.\n"
@@ -12768,10 +12835,10 @@ msgid ""
msgstr ""
"Ce facteur affecte la quantité de matériau pour les parois intérieures.\n"
"\n"
-"Le débit réel de la paroi intérieure est calculé en multipliant cette valeur par le ratio de débit du filament, et si défini, le ratio de débit de l'objet."
+"Le débit réel de la paroi intérieure est calculé en multipliant cette valeur par le rapport de débit du filament, et si défini, le rapport de débit de l'objet."
msgid "Overhang flow ratio"
-msgstr "Ratio de débit de surplomb"
+msgstr "Rapport de débit de surplomb"
msgid ""
"This factor affects the amount of material for overhangs.\n"
@@ -12780,10 +12847,10 @@ msgid ""
msgstr ""
"Ce facteur affecte la quantité de matériau pour les surplombs.\n"
"\n"
-"Le débit réel de surplomb est calculé en multipliant cette valeur par le ratio de débit du filament, et si défini, le ratio de débit de l'objet."
+"Le débit réel de surplomb est calculé en multipliant cette valeur par le rapport de débit du filament, et si défini, le rapport de débit de l'objet."
msgid "Sparse infill flow ratio"
-msgstr "Ratio de débit du remplissage clairsemé"
+msgstr "Rapport de débit du remplissage clairsemé"
msgid ""
"This factor affects the amount of material for sparse infill.\n"
@@ -12792,10 +12859,10 @@ msgid ""
msgstr ""
"Ce facteur affecte la quantité de matériau pour le remplissage clairsemé.\n"
"\n"
-"Le débit réel du remplissage clairsemé est calculé en multipliant cette valeur par le ratio de débit du filament, et si défini, le ratio de débit de l'objet."
+"Le débit réel du remplissage clairsemé est calculé en multipliant cette valeur par le rapport de débit du filament, et si défini, le rapport de débit de l'objet."
msgid "Internal solid infill flow ratio"
-msgstr "Ratio de débit du remplissage solide interne"
+msgstr "Rapport de débit du remplissage solide interne"
msgid ""
"This factor affects the amount of material for internal solid infill.\n"
@@ -12804,10 +12871,10 @@ msgid ""
msgstr ""
"Ce facteur affecte la quantité de matériau pour le remplissage solide interne.\n"
"\n"
-"Le débit réel du remplissage solide interne est calculé en multipliant cette valeur par le ratio de débit du filament, et si défini, le ratio de débit de l'objet."
+"Le débit réel du remplissage solide interne est calculé en multipliant cette valeur par le rapport de débit du filament, et si défini, le rapport de débit de l'objet."
msgid "Gap fill flow ratio"
-msgstr "Ratio de débit du remplissage des espaces"
+msgstr "Rapport de débit du remplissage des espaces"
msgid ""
"This factor affects the amount of material for filling the gaps.\n"
@@ -12816,10 +12883,10 @@ msgid ""
msgstr ""
"Ce facteur affecte la quantité de matériau pour le remplissage des espaces.\n"
"\n"
-"Le débit réel du remplissage des espaces est calculé en multipliant cette valeur par le ratio de débit du filament, et si défini, le ratio de débit de l'objet."
+"Le débit réel du remplissage des espaces est calculé en multipliant cette valeur par le rapport de débit du filament, et si défini, le rapport de débit de l'objet."
msgid "Support flow ratio"
-msgstr "Ratio de débit des supports"
+msgstr "Rapport de débit des supports"
msgid ""
"This factor affects the amount of material for support.\n"
@@ -12828,10 +12895,10 @@ msgid ""
msgstr ""
"Ce facteur affecte la quantité de matériau pour les supports.\n"
"\n"
-"Le débit réel des supports est calculé en multipliant cette valeur par le ratio de débit du filament, et si défini, le ratio de débit de l'objet."
+"Le débit réel des supports est calculé en multipliant cette valeur par le rapport de débit du filament, et si défini, le rapport de débit de l'objet."
msgid "Support interface flow ratio"
-msgstr "Ratio de débit de l'interface de support"
+msgstr "Rapport de débit de l'interface de support"
msgid ""
"This factor affects the amount of material for the support interface.\n"
@@ -12840,7 +12907,7 @@ msgid ""
msgstr ""
"Ce facteur affecte la quantité de matériau pour l'interface de support.\n"
"\n"
-"Le débit réel de l'interface de support est calculé en multipliant cette valeur par le ratio de débit du filament, et si défini, le ratio de débit de l'objet."
+"Le débit réel de l'interface de support est calculé en multipliant cette valeur par le rapport de débit du filament, et si défini, le rapport de débit de l'objet."
msgid "Precise wall"
msgstr "Parois précises"
@@ -13000,9 +13067,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "Vitesse des ponts internes. Si la valeur est exprimée en pourcentage, elle sera calculée sur la base de la vitesse du pont. La valeur par défaut est 150%."
-msgid "Brim width"
-msgstr "Largeur de la bordure"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Distance du modèle à la ligne de bord la plus externe"
@@ -13043,10 +13107,10 @@ msgid ""
"\n"
"If your current setup already works well, enabling it may be unnecessary and can cause the brim to fuse with upper layers."
msgstr ""
-"Lorsqu'il est activé, le bordure est aligné avec la géométrie du périmètre de la première couche après l'application de la compensation du pied d'éléphant.\n"
-"Cette option est destinée aux cas où la compensation du pied d'éléphant modifie considérablement l’empreinte de la première couche.\n"
+"Lorsqu'il est activé, la bordure est alignée avec la géométrie du périmètre de la première couche après l'application de la compensation de la patte d'éléphant.\n"
+"Cette option est destinée aux cas où la compensation de la patte d'éléphant modifie considérablement l’empreinte de la première couche.\n"
"\n"
-"Si votre configuration actuelle fonctionne déjà bien, son activation peut être inutile et peut provoquer la fusion du bordure avec les couches supérieures."
+"Si votre configuration actuelle fonctionne déjà bien, son activation peut être inutile et peut provoquer la fusion de la bordure avec les couches supérieures."
msgid "Combine brims"
msgstr "Combiner les bordures"
@@ -13082,6 +13146,14 @@ msgstr ""
"La géométrie sera décimée avant de détecter les angles vifs. Ce paramètre indique la longueur minimale de l’écart pour la décimation.\n"
"0 pour désactiver"
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Bordure à oreilles sur le contour extérieur uniquement"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Génère des oreilles de souris uniquement sur le contour extérieur du modèle, en excluant les trous et les sections fermées."
+
msgid "upward compatible machine"
msgstr "machine à compatibilité ascendante"
@@ -13643,7 +13715,7 @@ msgid ""
msgstr ""
"Le matériau peut présenter un changement volumétrique après le passage de l’état fondu à l’état cristallin. Ce paramètre modifie proportionnellement tous les débits d’extrusion de ce filament dans le G-code. La valeur recommandée est comprise entre 0,95 et 1,05. Vous pouvez peut-être ajuster cette valeur pour obtenir une belle surface plate lorsqu’il y a un léger débordement ou un sous-débordement.\n"
"\n"
-"Le ratio de débit de l’objet final est cette valeur multipliée par le ratio de débit du filament."
+"Le rapport de débit de l’objet final est cette valeur multipliée par le rapport de débit du filament."
msgid "Enable pressure advance"
msgstr "Activer la Pressure Advance"
@@ -14236,6 +14308,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "Gyroïde"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Facteur de lissage du remplissage"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Contrôle le degré d’arrondi des angles du remplissage. 0% conserve le tracé anguleux d’origine, tandis que 100% produit les courbes les plus amples possibles entre les lignes de remplissage adjacentes."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Il s'agit de l'accélération de la surface supérieure du remplissage. Utiliser une valeur plus petite pourrait améliorer la qualité de la surface supérieure"
@@ -14774,6 +14854,14 @@ msgstr "Avec quel type de G-code l'imprimante est-elle compatible."
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "Omettre le bloc de configuration du G-code"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "N’écrit pas le CONFIG_BLOCK (les paires clé/valeur de la configuration du logiciel de découpe) dans le fichier G-code. Cela peut aider avec les imprimantes dont le firmware plante lors de l’analyse de ces lignes de commentaire (par ex. Anycubic go-klipper). Remarque : le fichier G-code ne contiendra plus les réglages du logiciel de découpe, sa réimportation dans OrcaSlicer ne restaurera donc pas la configuration."
+
msgid "Pellet Modded Printer"
msgstr "Imprimante à pellets"
@@ -15821,6 +15909,14 @@ msgstr "Rétraction longue lors du changement d'extrudeur"
msgid "Retraction distance when extruder change"
msgstr "Distance de rétraction lors du changement d'extrudeur"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Longueur de rétraction (Changement d’outil)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Lorsque la rétraction est déclenchée avant un changement d’outil, le filament est rétracté de la quantité spécifiée (la longueur est mesurée sur le filament brut, avant son entrée dans l’extrudeur)."
+
msgid "Z-hop height"
msgstr "Hauteur du saut en Z"
@@ -15914,6 +16010,10 @@ msgstr "Longueur supplémentaire"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "Lorsque la rétraction est compensée après le mouvement de déplacement, l’extrudeuse poussera cette quantité supplémentaire de filament. Ce paramètre est rarement nécessaire."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Longueur supplémentaire à la reprise (Changement d’outil)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Lorsque la rétraction est compensée après le changement d’outil, l’extrudeur poussera cette quantité supplémentaire de filament."
@@ -16012,11 +16112,11 @@ msgstr ""
"Si l’angle maximal à l’intérieur de la boucle périmétrique dépasse cette valeur (indiquant l’absence d’angles vifs), une couture en biseau sera utilisée. La valeur par défaut est de 155°."
msgid "Conditional overhang threshold"
-msgstr "Seuil de dépassement conditionnel"
+msgstr "Seuil de surplomb conditionnel"
#, no-c-format, no-boost-format
msgid "This option determines the overhang threshold for the application of scarf joint seams. If the unsupported portion of the perimeter is less than this threshold, scarf joint seams will be applied. The default threshold is set at 40% of the external wall's width. Due to performance considerations, the degree of overhang is estimated."
-msgstr "Cette option détermine le seuil de surplomb pour l’application des coutures en écharpe. Si la partie non soutenue du périmètre est inférieure à ce seuil, des coutures en biseau seront appliquées. Le seuil par défaut est fixé à 40 % de la largeur de la paroi extérieure. Pour des raisons de performance, le degré de surplomb est estimé."
+msgstr "Cette option détermine le seuil de surplomb pour l’application des coutures en biseau. Si la partie non soutenue du périmètre est inférieure à ce seuil, des coutures en biseau seront appliquées. Le seuil par défaut est fixé à 40 % de la largeur de la paroi extérieure. Pour des raisons de performance, le degré de surplomb est estimé."
msgid "Scarf joint speed"
msgstr "Vitesse de la couture en biseau"
@@ -16025,7 +16125,7 @@ msgid "This option sets the printing speed for scarf joints. It is recommended t
msgstr "Cette option définit la vitesse d’impression des coutures en biseau. Il est recommandé d’imprimer les coutures en biseau à une vitesse lente (moins de 100 mm/s). Il est également conseillé d’activer l’option « Lissage de la vitesse d’extrusion » si la vitesse définie varie de manière significative par rapport à la vitesse des parois extérieures ou intérieures. Si la vitesse spécifiée ici est supérieure à la vitesse des parois extérieures ou intérieures, l’imprimante prendra par défaut la plus lente des deux vitesses. Lorsqu’elle est spécifiée sous forme de pourcentage (par exemple, 80 %), la vitesse est calculée sur la base de la vitesse de la paroi extérieure ou intérieure. La valeur par défaut est fixée à 100 %."
msgid "Scarf joint flow ratio"
-msgstr "Ratio de débit de la couture en biseau"
+msgstr "Rapport de débit de la couture en biseau"
msgid "This factor affects the amount of material for scarf joints."
msgstr "Ce facteur influe sur la quantité de matériau pour les coutures en biseau."
@@ -16234,7 +16334,7 @@ msgstr "Taux de débit de la finition en spirale"
#, no-c-format, no-boost-format
msgid "Sets the finishing flow ratio while ending the spiral. Normally the spiral transition scales the flow ratio from 100% to 0% during the last loop which can in some cases lead to under extrusion at the end of the spiral."
-msgstr "Définit le ratio de débit de finition lors de la fin de la spirale. Normalement, la transition de la spirale fait passer le taux de débit de 100% à 0% au cours de la dernière boucle, ce qui peut dans certains cas entraîner une sous-extrusion à la fin de la spirale."
+msgstr "Définit le rapport de débit de finition lors de la fin de la spirale. Normalement, la transition de la spirale fait passer le taux de débit de 100% à 0% au cours de la dernière boucle, ce qui peut dans certains cas entraîner une sous-extrusion à la fin de la spirale."
msgid "If smooth or traditional mode is selected, a timelapse video will be generated for each print. After each layer is printed, a snapshot is taken with the chamber camera. All of these snapshots are composed into a timelapse video when printing completes. If smooth mode is selected, the toolhead will move to the excess chute after each layer is printed and then take a snapshot. Since the melt filament may leak from the nozzle during the process of taking a snapshot, a prime tower is required for smooth mode to wipe the nozzle."
msgstr "Si le mode fluide ou traditionnel est sélectionné, une vidéo en timelapse sera générée pour chaque impression. À chaque couche imprimée, un instantané est pris avec la caméra intégrée. Tous ces instantanés seront assemblés dans une vidéo timelapse une fois l'impression terminée. Si le mode lisse est sélectionné, l'extrudeur se déplace vers la goulotte d'évacuation à chaque couche imprimée, puis prend un cliché. Étant donné que le filament fondu peut s'échapper de la buse pendant la prise de vue, une tour d’amorçage est requise en mode lisse pour essuyer la buse."
@@ -16326,6 +16426,14 @@ msgstr "Changement d’outil sur la tour d’essuyage"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "Force la tête d’outil à se déplacer vers la tour d’essuyage avant d’émettre la commande de changement d’outil (Tx). Pertinent uniquement pour les imprimantes multi-extrudeurs (à têtes d’outil multiples) utilisant une tour d’essuyage de type 2. Par défaut, Orca omet ce déplacement sur les machines à têtes d’outil multiples car le firmware gère le changement de tête, ce qui peut entraîner l’émission de la commande Tx au-dessus de la pièce imprimée. Activez cette option si vous préférez que le changement d’outil soit toujours émis au-dessus de la tour d’essuyage."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Attendre la température sur la tour d’essuyage"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Prend le nouvel outil sans attendre qu’il atteigne la température d’impression, se déplace vers la tour d’essuyage et y attend la température, juste avant la purge. Le suintement dû à la chauffe se dépose sur la tour plutôt que sur le modèle, et le déplacement se superpose à la chauffe. Uniquement pertinent pour les imprimantes multi-extrudeurs (multi-têtes) utilisant une tour d’essuyage de type 2. Le firmware ou la macro de changement d’outil ne doivent pas attendre la température eux-mêmes. Lorsque cette option est désactivée, l’attente de température est émise juste après la commande de changement d’outil."
+
msgid "No sparse layers (beta)"
msgstr "Pas de couches éparses (beta)"
@@ -18217,7 +18325,7 @@ msgid "Record Factor"
msgstr "Enregistrer le facteur"
msgid "We found the best flow ratio for you"
-msgstr "Nous avons trouvé le meilleur ratio de débit pour vous"
+msgstr "Nous avons trouvé le meilleur rapport de débit pour vous"
msgid "Flow Ratio"
msgstr "Rapport de débit"
@@ -19542,9 +19650,6 @@ msgstr "Imprimante Physique"
msgid "Print Host upload"
msgstr "Envoi vers l’imprimante hôte"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Sélectionner l'implémentation de l'agent réseau pour la communication avec l'imprimante. Les agents disponibles sont enregistrés au démarrage."
-
msgid "Select a Flashforge printer"
msgstr "Sélectionner une imprimante Flashforge"
@@ -20392,9 +20497,6 @@ msgstr "Un événement inattendu s’est produit lors de la connexion, veuillez
msgid "User canceled."
msgstr "L’utilisateur a annulé."
-msgid "Head diameter"
-msgstr "Diamètre de la tête"
-
msgid "Max angle"
msgstr "Angle maximal"
@@ -21176,6 +21278,22 @@ msgstr ""
"Éviter la déformation\n"
"Saviez-vous que lors de l’impression de matériaux susceptibles de se déformer, tels que l’ABS, une augmentation appropriée de la température du plateau chauffant peut réduire la probabilité de déformation?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "La hauteur de couche est trop faible.\n"
+#~ "Elle sera définie à min_layer_height\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "La hauteur de la couche dépasse la limite fixée dans Paramètres de l’imprimante -> Extrudeur -> Limites de la hauteur de la couche, ce qui peut entraîner des problèmes de qualité d’impression."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "S’ajuster automatiquement à la plage définie ?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Diamètre de la tête"
+
#~ msgid "Print order within a single layer."
#~ msgstr "Ordre d’impression au sein d’une même couche"
diff --git a/localization/i18n/hu/OrcaSlicer_hu.po b/localization/i18n/hu/OrcaSlicer_hu.po
index 98cd987512..9f8a849884 100644
--- a/localization/i18n/hu/OrcaSlicer_hu.po
+++ b/localization/i18n/hu/OrcaSlicer_hu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -4739,6 +4739,23 @@ msgstr "A kamra aktuális hőmérséklete magasabb az anyag biztonságos hőmér
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "A minimális kamrahőmérséklet (%d℃) magasabb a cél kamrahőmérsékletnél (%d℃). A minimális érték az a küszöb, amelynél a nyomtatás elindul, miközben a kamra tovább melegszik a célérték felé, ezért nem haladhatja meg azt. Az érték a célértékre lesz korlátozva."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "A rétegmagasság túl kicsi. A minimumra lesz állítva (%g mm)."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "A rétegmagasság a Nyomtatóbeállítások -> Extruder -> Rétegmagasság limitek menüpontban megadott határértékeken kívül esik, ez minőségbeli problémákat okozhat a nyomtatás során."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "Szeretnéd automatikusan a határértékre (%g mm) igazítani?"
+
+msgid "Adjust"
+msgstr "Módosítás"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4858,6 +4875,13 @@ msgstr ""
"Igen - Engedélyezd az Arachne falgenerátort\n"
"Nem - Tiltsd le az Arachne falgenerátort, majd állítsd a barázdált felületet [Eltolás] módra"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Peremfül sugara"
+
+msgid "Brim width"
+msgstr "Perem szélessége"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "A spirál mód csak akkor működik, ha a falhurkok száma 1, a támasz és a szondázásos csomósodásészlelés ki van kapcsolva, a felső héjrétegek száma 0, a kitöltés sűrűsége 0, a Timelapse típusa pedig hagyományos."
@@ -5112,6 +5136,14 @@ msgstr "Nem sikerült létrehozni a kalibrációs G-kódot"
msgid "Calibration error"
msgstr "Kalibrációs hiba"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "Ez a nyomtató nincs felszerelve a vezérlőelemhez szükséges hardverrel."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Ez a vezérlőelem nem támogatott ezen a nyomtatón."
+
# AI Translated
msgid "Network unavailable"
msgstr "A hálózat nem érhető el"
@@ -5971,7 +6003,7 @@ msgstr "Térfogat:"
msgid "Size:"
msgstr "Méret:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "G-kód útvonalütközés található a(z) %d. rétegen, Z = %.2lfmm. Helyezd távolabb egymástól az ütköző objektumokat (%s <-> %s)."
@@ -6153,6 +6185,10 @@ msgstr "Több eszköz"
msgid "Project"
msgstr "Projekt"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Nyomtató (Web)"
+
msgid "Yes"
msgstr "Igen"
@@ -8244,19 +8280,19 @@ msgstr "A cseréhez nem lett mappa kiválasztva"
msgid "Replaced with 3D files from directory:\n"
msgstr "Cserélve a mappából származó 3D fájlokra:\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ %s kihagyva: azonos fájl.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ %s kihagyva: a fájl nem létezik.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ %s kihagyva: a csere sikertelen.\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔%s lecserélve.\n"
@@ -8993,6 +9029,18 @@ msgstr "Ezzel az opcióval egyszerre több eszközre küldhetsz feladatot és t
msgid "Pop up to select filament grouping mode"
msgstr "Felugró ablak a filamentcsoportosítási mód kiválasztásához"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Látható bővítményoldalak"
+
+# AI Translated
+msgid "pages"
+msgstr "oldal"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "A rögzített fülként megjelenő bővítményoldalak száma; a fennmaradó oldalak az utolsó fülön lenyíló listába kerülnek."
+
msgid "Behaviour"
msgstr "Viselkedés"
@@ -9362,6 +9410,18 @@ msgstr "Nem támogatott beállítások megjelenítése"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Megjeleníti a nem kompatibilis vagy nem támogatott beállításokat a nyomtató- és filamentlegördülő listákban. Ezek a beállítások nem választhatók ki."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Kísérleti) Nyomtatóügynökök használata nyomtatókiszolgálók helyett"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"A nem Bambu nyomtatók nyomtatási feladatait a nyomtató bővítményügynökein keresztül továbbítja a klasszikus nyomtatókiszolgálóra való feltöltés helyett.\n"
+"Ha ki van kapcsolva, az OrcaSlicer a régi nyomtatókiszolgáló-viselkedést használja."
+
# AI Translated
msgid "Experimental Features"
msgstr "Kísérleti funkciók"
@@ -9632,9 +9692,25 @@ msgstr "Felhasználói beállítás"
msgid "Preset Inside Project"
msgstr "Projekt a beállításon belül"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Az összes örökölt értéket átmásolja a szülő előbeállításból ebbe az előbeállításba, és megszünteti az öröklési kapcsolatot. A csak a szülővel kompatibilis előbeállítások támogatása megszűnhet."
+
msgid "Detach from parent"
msgstr "Leválasztás a szülőről"
+# AI Translated
+msgid "Unique preset"
+msgstr "Önálló előbeállítás"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Szülő előbeállítás"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Ez az előbeállítás nem örököl másik előbeállításból."
+
msgid "Name is unavailable."
msgstr "A név nem elérhető."
@@ -10376,22 +10452,6 @@ msgstr "Biztos, hogy engedélyezed ezt az opciót?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "A kitöltési minták általában maguk kezelik a forgatást a megfelelő nyomtatás és a kívánt hatás elérése érdekében (pl. Gyroid, Cubic). A jelenlegi kitöltési minta elforgatása elégtelen alátámasztáshoz vezethet. Kérlek, járj el körültekintően, és alaposan ellenőrizd a lehetséges nyomtatási problémákat. Biztos, hogy engedélyezed ezt a beállítást?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"A rétegmagasság túl kicsi.\n"
-"A rendszer a min_layer_height értékre állítja.\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "A rétegmagasság meghaladja a Nyomtatóbeállítások -> Extruder -> Rétegmagasság limitek menüpontban megadott értéket, ez minőségbeli problémákat okozhat a nyomtatás során."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "Szeretnéd az értéket automatikusan a beállított tartományhoz igazítani?\n"
-
-msgid "Adjust"
-msgstr "Módosítás"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "Kísérleti funkció: Filamentcsere közben nagyobb távolságon történő visszahúzás és elvágás az öblítés minimalizálása érdekében. Bár ez jelentősen csökkentheti az öblítés mértékét, növelheti a fúvóka eltömődésének vagy más nyomtatási problémák kockázatát."
@@ -10587,6 +10647,9 @@ msgstr "Foglalt kulcsszavakat találtunk"
msgid "Setting Overrides"
msgstr "Beállítások felülbírálása"
+msgid "Retraction when switching material"
+msgstr "Visszahúzás anyagváltáskor"
+
msgid "Basic information"
msgstr "Alapinformációk"
@@ -10720,6 +10783,12 @@ msgstr "Kompatibilis folyamatprofilok"
msgid "Printable space"
msgstr "Nyomtatási terület"
+msgid "Printer Agent"
+msgstr "Nyomtatóügynök"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Válaszd ki a nyomtatóval való kommunikációhoz használt hálózati ügynököt. Az elérhető ügynököket indításkor regisztrálja a rendszer."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10845,9 +10914,6 @@ msgstr "Rétegmagasság limitek"
msgid "Z-Hop"
msgstr "Z-emelés"
-msgid "Retraction when switching material"
-msgstr "Visszahúzás anyagváltáskor"
-
# AI Translated
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
@@ -12200,6 +12266,10 @@ msgstr " túl közel van a tiltott területhez, a nyomtatás során előfordulha
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " túl közel van a csomósodásészlelési területhez, és ez ütközést fog okozni.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " részben a nyomtatható területen kívül esik, ezért nem nyomtatható ki.\n"
+
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "A kiválasztott fúvóka hőmérsékletek nem kompatibilisek. Mindegyik filament fúvóka hőmérsékletének a többi filament ajánlott fúvóka hőmérsékleti tartományába kell esnie. Ellenkező esetben a fúvóka eltömődhet vagy a nyomtató megsérülhet."
@@ -12530,9 +12600,6 @@ msgstr "3MF használata G-kód helyett"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Kapcsold be, ha a nyomtató 3MF fájlt fogad el nyomtatási feladatként. Bekapcsolva az Orca Slicer a szeletelt fájlt .gcode.3mf formátumban küldi el egyszerű .gcode fájl helyett."
-msgid "Printer Agent"
-msgstr "Nyomtatóügynök"
-
msgid "Select the network agent implementation for printer communication."
msgstr "Válaszd ki a nyomtató kommunikációjához használt hálózati ügynök implementációját."
@@ -13220,9 +13287,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "A belső hidak sebessége. Ha az érték százalékban van megadva, a bridge_speed alapján lesz kiszámítva. Az alapértelmezett érték 150%."
-msgid "Brim width"
-msgstr "Perem szélessége"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "A modell és a legkülső peremvonal közötti távolság"
@@ -13302,6 +13366,14 @@ msgstr ""
"Az éles szögek észlelése előtt a geometria egyszerűsítve lesz. Ez a paraméter a leegyszerűsítésnél figyelembe vett eltérés minimális hosszát adja meg.\n"
"0 értékkel kikapcsolható."
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Peremfülek csak kívül"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Egérfüleket csak a modell külső kontúrján hoz létre, a furatokat és a zárt szakaszokat kihagyva."
+
msgid "upward compatible machine"
msgstr "felfelé kompatibilis gép"
@@ -14475,6 +14547,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "Gyroid"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Kitöltés simítási tényezője"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Azt szabályozza, hogy a kitöltés sarkai mennyire legyenek lekerekítve. A 0% megtartja az eredeti éles útvonalat, a 100% pedig a lehető legnagyobb íveket hozza létre a szomszédos kitöltővonalak között."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "A felső felületi kitöltés gyorsulása. Alacsonyabb érték használata javíthatja a felső felület minőségét"
@@ -15017,6 +15097,14 @@ msgstr "Milyen G-kóddal kompatibilis a nyomtató."
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "G-code konfigurációs blokk kihagyása"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "Nem írja a CONFIG_BLOCK blokkot (a szeletelő beállításainak kulcs/érték párjait) a G-code fájlba. Ez segíthet azoknál a nyomtatóknál, amelyek firmware-e összeomlik ezeknek a megjegyzéssoroknak a feldolgozásakor (pl. Anycubic go-klipper). Megjegyzés: a G-code fájl így már nem tartalmazza a szeletelő beállításait, ezért az OrcaSlicerbe való visszaimportálás nem állítja vissza a konfigurációt."
+
msgid "Pellet Modded Printer"
msgstr "Granulátumos módosított nyomtató"
@@ -16079,6 +16167,14 @@ msgstr "Hosszú visszahúzás extruderváltáskor"
msgid "Retraction distance when extruder change"
msgstr "Visszahúzási távolság extruderváltáskor"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Visszahúzás hossza (Eszközváltás)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Amikor a visszahúzás eszközváltás előtt aktiválódik, a filament a megadott értékkel húzódik vissza (a hossz a nyers filamenten mérve, mielőtt az az extruderbe kerülne)."
+
msgid "Z-hop height"
msgstr "Z-emelés magassága"
@@ -16172,6 +16268,10 @@ msgstr "Extra hossz újraindításkor"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "Amikor a visszahúzás kompenzálásra kerül utazási mozgás után, az extruder ezt a további szálmennyiséget nyomja előre. Erre a beállításra ritkán van szükség."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Extra hossz újraindításkor (Eszközváltás)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Amikor a visszahúzás kompenzálásra kerül szerszámváltás után, az extruder ezt a további szálmennyiséget nyomja előre."
@@ -16588,6 +16688,14 @@ msgstr "Szerszámcsere a törlőtoronyban"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "A szerszámcsere parancs (Tx) kiadása előtt a törlőtoronyhoz mozgatja a szerszámfejet. Csak a 2-es típusú törlőtornyot használó többextruderes (több szerszámfejes) nyomtatóknál van jelentősége. Az Orca alapértelmezés szerint kihagyja ezt a mozgást a több szerszámfejes gépeknél, mert a fejcserét a firmware kezeli. Emiatt azonban előfordulhat, hogy a Tx parancsot a nyomtatott tárgy felett adja ki. Kapcsold be ezt a beállítást, ha azt szeretnéd, hogy a szerszámcsere mindig a törlőtorony felett történjen."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Várakozás a hőmérsékletre a törlőtornyon"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Felveszi az új szerszámot anélkül, hogy megvárná a nyomtatási hőmérséklet elérését, a törlőtoronyhoz áll, és ott várja meg a hőmérsékletet, közvetlenül az öblítés előtt. A felfűtés közben kiszivárgó anyag a toronyra kerül a modell helyett, a mozgás pedig átfedésben van a fűtéssel. Csak több extruderes (több szerszámfejes) nyomtatóknál releváns, amelyek 2-es típusú törlőtornyot használnak. A firmware vagy a szerszámváltó makró nem várhat magától a hőmérsékletre. Ha ki van kapcsolva, a hőmérsékletre várakozás közvetlenül a szerszámváltó parancs után kerül kiadásra."
+
msgid "No sparse layers (beta)"
msgstr "Nincsenek ritka rétegek (béta)"
@@ -19847,9 +19955,6 @@ msgstr "Fizikai nyomtató"
msgid "Print Host upload"
msgstr "Feltöltés a nyomtatóra"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Válaszd ki a nyomtatóval való kommunikációhoz használt hálózati ügynököt. Az elérhető ügynököket indításkor regisztrálja a rendszer."
-
# AI Translated
msgid "Select a Flashforge printer"
msgstr "Válassz egy Flashforge nyomtatót"
@@ -20791,9 +20896,6 @@ msgstr "Bejelentkezés közben váratlan hiba történt, próbáld újra."
msgid "User canceled."
msgstr "Felhasználó által megszakítva."
-msgid "Head diameter"
-msgstr "Fej átmérő"
-
msgid "Max angle"
msgstr "Maximális szög"
@@ -21607,6 +21709,22 @@ msgstr ""
"Kunkorodás elkerülése\n"
"Tudtad, hogy a kunkorodásra hajlamos anyagok (például ABS) nyomtatásakor az asztal hőmérsékletének növelése csökkentheti a kunkorodás valószínűségét?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "A rétegmagasság túl kicsi.\n"
+#~ "A rendszer a min_layer_height értékre állítja.\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "A rétegmagasság meghaladja a Nyomtatóbeállítások -> Extruder -> Rétegmagasság limitek menüpontban megadott értéket, ez minőségbeli problémákat okozhat a nyomtatás során."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "Szeretnéd az értéket automatikusan a beállított tartományhoz igazítani?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Fej átmérő"
+
#~ msgid "Print order within a single layer."
#~ msgstr "Nyomtatási sorrend egyetlen rétegen belül."
diff --git a/localization/i18n/it/OrcaSlicer_it.po b/localization/i18n/it/OrcaSlicer_it.po
index 3c43178102..bc36e08d25 100644
--- a/localization/i18n/it/OrcaSlicer_it.po
+++ b/localization/i18n/it/OrcaSlicer_it.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -4741,6 +4741,23 @@ msgstr "L'attuale temperatura della camera è superiore alla temperatura di sicu
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "La temperatura minima della camera (%d℃) è superiore alla temperatura target della camera (%d℃). Il valore minimo è la soglia alla quale inizia la stampa mentre la camera continua a riscaldarsi verso il target, quindi non dovrebbe superarlo. Verrà limitato al valore target."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "L'altezza dello strato è troppo piccola. Sarà impostata al valore minimo (%g mm)."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "L'altezza dello strato è fuori dai limiti impostati in Impostazioni stampante -> Estrusore -> Limiti Altezza Strato, ciò potrebbe causare problemi di qualità di stampa."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "Regolarla automaticamente al limite (%g mm)?"
+
+msgid "Adjust"
+msgstr "Regola"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4860,6 +4877,13 @@ msgstr ""
"Sì - Abilita generatore di pareti Arachne\n"
"No - Disabilita generatore di pareti Arachne e imposta la modalità [Spostamento] della Superficie ruvida"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Raggio della tesa ad orecchio"
+
+msgid "Brim width"
+msgstr "Larghezza tesa"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "La modalità spirale funziona solo quando i perimetri sono 1, il supporto è disabilitato, il rilevamento degli ammassi tramite sondaggio è disabilitato, gli strati superiori della shell sono 0, la densità del riempimento sparso è 0 e il tipo di timelapse è tradizionale."
@@ -5114,6 +5138,14 @@ msgstr "Impossibile generare G-code di calibrazione"
msgid "Calibration error"
msgstr "Errore di calibrazione"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "Questa stampante non dispone dell'hardware richiesto da questo controllo."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Questo controllo non è supportato su questa stampante."
+
# AI Translated
msgid "Network unavailable"
msgstr "Rete non disponibile"
@@ -5973,7 +6005,7 @@ msgstr "Volume:"
msgid "Size:"
msgstr "Dimensione:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "Sono stati trovati conflitti di percorsi nel G-code sullo strato %d, Z = %.2lfmm. Si prega di separare gli oggetti in conflitto (%s <-> %s)."
@@ -6154,6 +6186,10 @@ msgstr "Multi-dispositivo"
msgid "Project"
msgstr "Progetto"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Dispositivo (Web)"
+
msgid "Yes"
msgstr "Sì"
@@ -8244,19 +8280,19 @@ msgstr "La directory per la sostituzione non è stata selezionata"
msgid "Replaced with 3D files from directory:\n"
msgstr "Sostituito con file 3D dalla directory:\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Saltato %s: stesso file.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Saltato %s: il file non esiste.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Saltato %s: sostituzione fallita.\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Sostituito %s.\n"
@@ -8995,6 +9031,18 @@ msgstr "Abilitando questa opzione, puoi inviare un'attività a più dispositivi
msgid "Pop up to select filament grouping mode"
msgstr "Popup per selezionare la modalità di raggruppamento filamenti"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Pagine dei plugin visibili"
+
+# AI Translated
+msgid "pages"
+msgstr "pagine"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Numero di pagine dei plugin mostrate come schede fisse prima che le pagine rimanenti vengano raccolte in un menu a discesa nell'ultima scheda."
+
msgid "Behaviour"
msgstr "Comportamento"
@@ -9381,6 +9429,18 @@ msgstr "Mostra i profili non supportati"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Mostra i profili incompatibili/non supportati negli elenchi a discesa di stampante e filamento. Questi profili non possono essere selezionati."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Sperimentale) Usa gli agenti stampante invece degli host di stampa"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Instrada i lavori di stampa delle stampanti non Bambu attraverso gli agenti plugin della stampante invece del classico flusso di caricamento sull'host di stampa.\n"
+"Quando è disattivato, OrcaSlicer usa il comportamento legacy dell'host di stampa."
+
# AI Translated
msgid "Experimental Features"
msgstr "Funzionalità sperimentali"
@@ -9650,9 +9710,25 @@ msgstr "Profilo utente"
msgid "Preset Inside Project"
msgstr "Profilo interno al progetto"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Copia in questo profilo tutti i valori ereditati dal profilo padre e rimuove la relazione di ereditarietà. I profili compatibili solo con il profilo padre potrebbero non essere più supportati."
+
msgid "Detach from parent"
msgstr "Scollega dal genitore"
+# AI Translated
+msgid "Unique preset"
+msgstr "Profilo unico"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Profilo padre"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Questo profilo non eredita da un altro profilo."
+
msgid "Name is unavailable."
msgstr "Nome non disponibile."
@@ -10392,22 +10468,6 @@ msgstr "Sei sicuro di voler abilitare questa opzione?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "I pattern di riempimento sono generalmente progettati per gestire automaticamente la rotazione per garantire una stampa corretta e ottenere gli effetti desiderati (ad es. Gyroid, Cubico). La rotazione del pattern di riempimento sparso corrente potrebbe portare a un supporto insufficiente. Procedere con cautela e verificare accuratamente eventuali problemi di stampa. Sei sicuro di voler abilitare questa opzione?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"L'altezza dello strato è troppo piccola.\n"
-"Sarà impostato su min_layer_height\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "L'altezza dello strato supera il limite in Impostazioni stampante -> Estrusore -> Limiti Altezza Strato. Ciò potrebbe causare problemi di qualità di stampa."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "Regolare automaticamente l'intervallo impostato?\n"
-
-msgid "Adjust"
-msgstr "Regola"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "Funzionalità sperimentale: ritrazione e taglio del filamento a una distanza maggiore durante i cambi di filamento per ridurre al minimo lo spurgo. Sebbene possa ridurre notevolmente lo spurgo, può anche aumentare il rischio di intasamento degli ugelli o di altre complicazioni di stampa."
@@ -10603,6 +10663,9 @@ msgstr "Parole chiave riservate trovate"
msgid "Setting Overrides"
msgstr "Sovrascrivi impostazioni"
+msgid "Retraction when switching material"
+msgstr "Retrazione quando si cambia materiale"
+
msgid "Basic information"
msgstr "Informazioni di base"
@@ -10734,6 +10797,12 @@ msgstr "Profili di processo compatibili"
msgid "Printable space"
msgstr "Spazio di stampa"
+msgid "Printer Agent"
+msgstr "Agente stampante"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Selezionare l'implementazione dell'agente di rete per la comunicazione con la stampante. Gli agenti disponibili vengono registrati all'avvio."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10859,9 +10928,6 @@ msgstr "Limiti altezza strati"
msgid "Z-Hop"
msgstr "Sollevamento Z"
-msgid "Retraction when switching material"
-msgstr "Retrazione quando si cambia materiale"
-
# AI Translated
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
@@ -12221,6 +12287,10 @@ msgstr " è troppo vicino all'area di esclusione e si verificheranno collisioni.
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " è troppo vicino all'area di rilevamento ammassi e verranno causate collisioni.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " è parzialmente fuori dall'area stampabile e non può essere stampato.\n"
+
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "Le temperature degli ugelli selezionate sono incompatibili. La temperatura dell'ugello per ciascun filamento deve rientrare nell'intervallo di temperatura consigliato per gli altri filamenti. In caso contrario, potrebbero verificarsi ostruzioni degli ugelli o danni alla stampante."
@@ -12550,9 +12620,6 @@ msgstr "Usa 3MF invece di G-code"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Abilita questa opzione se la stampante accetta un file 3MF come processo di stampa. Quando è abilitata, Orca Slicer invia il file elaborato come .gcode.3mf, invece di un semplice file .gcode."
-msgid "Printer Agent"
-msgstr "Agente stampante"
-
msgid "Select the network agent implementation for printer communication."
msgstr "Selezionare l'implementazione dell'agente di rete per la comunicazione con la stampante."
@@ -13239,9 +13306,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "Velocità dei ponti interni. Se il valore è espresso in percentuale, verrà calcolato in base a bridge_speed. Il valore predefinito è 150%."
-msgid "Brim width"
-msgstr "Larghezza tesa"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Questa è la distanza tra il modello e la linea più esterna della tesa."
@@ -13321,6 +13385,14 @@ msgstr ""
"La geometria verrà decimata prima di rilevare gli spigoli vivi. Questo parametro indica la lunghezza minima dello scostamento per la decimazione.\n"
"0 per disattivare."
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Tesa ad orecchio solo sul contorno esterno"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Genera gli orecchi di topo solo sul contorno esterno del modello, escludendo fori e sezioni chiuse."
+
msgid "upward compatible machine"
msgstr "macchina compatibile con versioni successive"
@@ -14495,6 +14567,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "Giroide"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Fattore di arrotondamento del riempimento sparso"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Controlla quanto vengono arrotondati gli angoli del riempimento sparso. 0% mantiene il percorso originale con angoli vivi, mentre 100% produce le curve più ampie possibili tra linee di riempimento adiacenti."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Accelerazione del riempimento della superficie superiore. L'utilizzo di un valore inferiore può migliorare la qualità della superficie superiore."
@@ -15039,6 +15119,14 @@ msgstr "Con quale tipo di G-code la stampante è compatibile."
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "Ometti il blocco di configurazione del G-code"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "Non scrive il CONFIG_BLOCK (le coppie chiave/valore della configurazione dello slicer) nel file G-code. Può essere utile con stampanti il cui firmware va in crash durante l'analisi di queste righe di commento (ad es. Anycubic go-klipper). Nota: il file G-code non conterrà più le impostazioni dello slicer, quindi reimportandolo in OrcaSlicer la configurazione non verrà ripristinata."
+
msgid "Pellet Modded Printer"
msgstr "Stampante modificata per granuli"
@@ -16098,6 +16186,14 @@ msgstr "Retrazione lunga al cambio estrusore"
msgid "Retraction distance when extruder change"
msgstr "Distanza di retrazione al cambio estrusore"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Lunghezza di retrazione (Cambio testina)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Quando la retrazione viene attivata prima di un cambio testina, il filamento viene ritirato della quantità specificata (la lunghezza è misurata sul filamento grezzo, prima che entri nell'estrusore)."
+
msgid "Z-hop height"
msgstr "Altezza sollevamento Z"
@@ -16195,6 +16291,10 @@ msgstr "Lunghezza aggiuntiva in ripresa"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "Quando la retrazione è compensata dopo uno spostamento, l'estrusore espelle questa quantità aggiuntiva di filamento. Questa impostazione è raramente necessaria."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Lunghezza aggiuntiva in ripresa (Cambio testina)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Quando la retrazione è compensata dopo un cambio di testina, l'estrusore espelle questa quantità aggiuntiva di filamento."
@@ -16612,6 +16712,14 @@ msgstr "Cambio utensile sulla torre di spurgo"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "Forza la testa di stampa a spostarsi sulla torre di spurgo prima di emettere il comando di cambio utensile (Tx). Rilevante solo per le stampanti multi-estrusore (multi-testa) che utilizzano una torre di spurgo di Tipo 2. Per impostazione predefinita Orca salta lo spostamento sulle macchine multi-testa perché il firmware gestisce il cambio della testa, il che può far sì che il comando Tx venga emesso sopra la parte stampata. Abilita questa opzione se desideri che il cambio utensile venga sempre emesso sopra la torre di spurgo."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Attendi la temperatura sulla torre di spurgo"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Preleva la nuova testina senza attendere che raggiunga la temperatura di stampa, si sposta sulla torre di spurgo e attende lì la temperatura, subito prima dello spurgo. Il trasudo dovuto al riscaldamento finisce sulla torre invece che sul modello, e lo spostamento si sovrappone al riscaldamento. Rilevante solo per stampanti multi-estrusore (multi-testina) che usano una torre di spurgo di tipo 2. Il firmware o la macro di cambio testina non devono attendere la temperatura autonomamente. Quando è disattivato, l'attesa della temperatura viene emessa subito dopo il comando di cambio testina."
+
msgid "No sparse layers (beta)"
msgstr "Nessuno strato sparso (beta)"
@@ -19865,9 +19973,6 @@ msgstr "Stampante fisica"
msgid "Print Host upload"
msgstr "Caricamento host di stampa"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Selezionare l'implementazione dell'agente di rete per la comunicazione con la stampante. Gli agenti disponibili vengono registrati all'avvio."
-
# AI Translated
msgid "Select a Flashforge printer"
msgstr "Seleziona una stampante Flashforge"
@@ -20810,9 +20915,6 @@ msgstr "Si è verificato un problema imprevisto durante il tentativo di accesso.
msgid "User canceled."
msgstr "Utente rimosso."
-msgid "Head diameter"
-msgstr "Diametro testa"
-
msgid "Max angle"
msgstr "Angolo massimo"
@@ -21631,6 +21733,22 @@ msgstr ""
"Evita le deformazioni\n"
"Sapevi che quando si stampano materiali soggetti a deformazioni come l'ABS, aumentare in modo appropriato la temperatura del piano riscaldato può ridurre la probabilità di deformazione?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "L'altezza dello strato è troppo piccola.\n"
+#~ "Sarà impostato su min_layer_height\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "L'altezza dello strato supera il limite in Impostazioni stampante -> Estrusore -> Limiti Altezza Strato. Ciò potrebbe causare problemi di qualità di stampa."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "Regolare automaticamente l'intervallo impostato?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Diametro testa"
+
#~ msgid "Print order within a single layer."
#~ msgstr "Ordine di stampa all'interno di un singolo strato."
diff --git a/localization/i18n/ja/OrcaSlicer_ja.po b/localization/i18n/ja/OrcaSlicer_ja.po
index 0d9f044060..1b70ddbf67 100644
--- a/localization/i18n/ja/OrcaSlicer_ja.po
+++ b/localization/i18n/ja/OrcaSlicer_ja.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -4750,6 +4750,23 @@ msgstr "現在のチャンバー温度が材料の安全温度を超えていま
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "最低庫内温度 (%d℃) が目標庫内温度 (%d℃) を上回っています。最低値は、チャンバーが目標に向けて加熱を続けながら印刷を開始するしきい値であるため、目標値を超えてはいけません。値は目標値に制限されます。"
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "積層ピッチが小さすぎます。最小値 (%g mm) に設定されます。"
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "積層ピッチが、プリンター設定 -> 押出機 -> 積層ピッチの制限 で設定された範囲を外れています。印刷品質の問題が発生する可能性があります。"
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "自動的に制限値 (%g mm) に調整しますか?"
+
+msgid "Adjust"
+msgstr "調整"
+
# AI Translated
msgid ""
"Layer height too small\n"
@@ -4873,6 +4890,13 @@ msgstr ""
"はい - Arachneウォールジェネレーターを有効にする\n"
"いいえ - Arachneウォールジェネレーターを無効にし、ファジースキンを[変位]モードに設定する"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "ブリムイヤー半径"
+
+msgid "Brim width"
+msgstr "ブリム幅"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "スパイラルモードは壁ループが1、サポートが無効、プロービングによるクランピング検出が無効、上部シェルレイヤーが0、スパースインフィル密度が0、タイムラプスタイプがトラディショナルの場合のみ機能します。"
@@ -5127,6 +5151,14 @@ msgstr "キャリブレーションG-codeの生成に失敗しました"
msgid "Calibration error"
msgstr "キャリブレーションエラー"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "このプリンターには、このコントロールに必要なハードウェアが設定されていません。"
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "このコントロールはこのプリンターではサポートされていません。"
+
# AI Translated
msgid "Network unavailable"
msgstr "ネットワークが利用できません"
@@ -5988,7 +6020,7 @@ msgstr "ボリューム"
msgid "Size:"
msgstr "サイズ:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "レイヤー%d、Z = %.2lfmmでG-codeパスの衝突が検出されました。衝突するオブジェクトをもっと離してください(%s <-> %s)。"
@@ -6164,6 +6196,10 @@ msgstr "マルチデバイス"
msgid "Project"
msgstr "プロジェクト"
+# AI Translated
+msgid "Device (Web)"
+msgstr "デバイス (Web)"
+
msgid "Yes"
msgstr "はい"
@@ -8262,19 +8298,19 @@ msgstr "置換用のディレクトリが選択されていません"
msgid "Replaced with 3D files from directory:\n"
msgstr "ディレクトリの3Dファイルで置換しました:\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ スキップ %s: 同一ファイル。\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ スキップ %s: ファイルが存在しません。\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ スキップ %s: 置換に失敗しました。\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ 置換しました %s。\n"
@@ -9015,6 +9051,18 @@ msgstr "このオプションを有効にすると、複数のデバイスに同
msgid "Pop up to select filament grouping mode"
msgstr "フィラメントグルーピングモード選択のポップアップ"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "表示するプラグインページ数"
+
+# AI Translated
+msgid "pages"
+msgstr "ページ"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "固定タブとして表示するプラグインページの数です。残りのページは最後のタブのドロップダウンにまとめられます。"
+
msgid "Behaviour"
msgstr "動作"
@@ -9404,6 +9452,18 @@ msgstr "非対応のプリセットを表示"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "プリンターとフィラメントのドロップダウンリストに、互換性のない/非対応のプリセットを表示します。これらのプリセットは選択できません。"
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(実験的) プリントホストの代わりにプリンターエージェントを使用"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Bambu 以外のプリンターの印刷ジョブを、従来のプリントホストへのアップロードではなく、プリンターのプラグインエージェント経由で送信します。\n"
+"無効の場合、OrcaSlicer は従来のプリントホストの動作を使用します。"
+
# AI Translated
msgid "Experimental Features"
msgstr "実験的機能"
@@ -9672,9 +9732,25 @@ msgstr "ユーザープリセット"
msgid "Preset Inside Project"
msgstr "プロジェクト プリセット"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "親プリセットから継承したすべての値をこのプリセットにコピーし、親との継承関係を解除します。親プリセットとのみ互換性のあるプリセットは、サポートされなくなる場合があります。"
+
msgid "Detach from parent"
msgstr "親から分離"
+# AI Translated
+msgid "Unique preset"
+msgstr "独立したプリセット"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "親プリセット"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "このプリセットは他のプリセットを継承していません。"
+
msgid "Name is unavailable."
msgstr "名称は使用できません"
@@ -10416,22 +10492,6 @@ msgstr "このオプションを有効にしてもよろしいですか?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "インフィルパターンは通常、適切な印刷と意図した効果を確保するために回転を自動的に処理するように設計されています(例: ジャイロイド、キュービック)。現在のスパースインフィルパターンを回転させると、サポートが不十分になる可能性があります。慎重に進め、潜在的な印刷問題を十分に確認してください。このオプションを有効にしてもよろしいですか?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"レイヤー高さが小さすぎます。\n"
-"min_layer_heightに設定されます\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "レイヤー高さがプリンター設定 -> エクストルーダー -> レイヤー高さ制限の上限を超えています。印刷品質の問題が発生する可能性があります。"
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "設定範囲に自動調整しますか?\n"
-
-msgid "Adjust"
-msgstr "調整"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "実験的機能: フィラメント交換時により長い距離でフィラメントをリトラクト・カットしてフラッシュを最小化します。フラッシュを大幅に削減できますが、ノズル詰まりやその他の印刷問題のリスクが高まる可能性もあります。"
@@ -10621,6 +10681,9 @@ msgstr "保留キーワードが見つかりました"
msgid "Setting Overrides"
msgstr "上書き設定"
+msgid "Retraction when switching material"
+msgstr "素材変更時のリトラクション"
+
msgid "Basic information"
msgstr "基本情報"
@@ -10751,6 +10814,12 @@ msgstr "互換性のあるプロセスプロファイル"
msgid "Printable space"
msgstr "造形可能領域"
+msgid "Printer Agent"
+msgstr "プリンターエージェント"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "プリンター通信用のネットワークエージェント実装を選択します。使用可能なエージェントは起動時に登録されます。"
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10877,9 +10946,6 @@ msgstr "積層ピッチの制限"
msgid "Z-Hop"
msgstr "Z-ホップ"
-msgid "Retraction when switching material"
-msgstr "素材変更時のリトラクション"
-
# AI Translated
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
@@ -12258,6 +12324,10 @@ msgstr " は除外エリアに近すぎるため、衝突が発生します。\n
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " がクランピング検出エリアに近すぎ、衝突が発生します。\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " は造形可能領域から一部はみ出しているため、印刷できません。\n"
+
# AI Translated
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "選択したノズル温度に互換性がありません。各フィラメントのノズル温度は、他のフィラメントの推奨ノズル温度範囲内に収まる必要があります。そうでない場合、ノズル詰まりやプリンターの損傷が発生する可能性があります。"
@@ -12599,9 +12669,6 @@ msgstr "G-codeの代わりに3MFを使用"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "プリンターが印刷ジョブとして3MFファイルを受け付ける場合に有効にします。有効にすると、Orca Slicerはスライス済みファイルを通常の.gcodeファイルではなく.gcode.3mfとして送信します。"
-msgid "Printer Agent"
-msgstr "プリンターエージェント"
-
msgid "Select the network agent implementation for printer communication."
msgstr "プリンター通信用のネットワークエージェント実装を選択します。"
@@ -13320,9 +13387,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "内部ブリッジの速度です。値を%で指定した場合、bridge_speedを基準に計算されます。デフォルト値は150%です。"
-msgid "Brim width"
-msgstr "ブリム幅"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "一番外側のブリム線がモデルと距離です。"
@@ -13411,6 +13475,14 @@ msgstr ""
"鋭角を検出する前にジオメトリが間引かれます。このパラメータは、間引きにおける偏差の最小長さを指定します。\n"
"0で無効になります。"
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "ブリムイヤーを外側の輪郭のみ"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "穴や閉じた部分を除き、モデルの外側の輪郭にのみマウスイヤーを生成します。"
+
msgid "upward compatible machine"
msgstr "互換性のあるデバイス"
@@ -14634,6 +14706,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "ジャイロイド"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "スパース インフィルの平滑化係数"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "スパース インフィルの角をどの程度丸めるかを設定します。0% では元の鋭い経路のまま、100% では隣接するインフィル線の間で可能な限り大きな曲線になります。"
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "トップ面のインフィル加速度です。遅くすると表面の仕上がりが向上させることができます"
@@ -15233,6 +15313,14 @@ msgstr "プリンターが対応するG-code"
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "G-code の設定ブロックを省略"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "CONFIG_BLOCK (スライサー設定のキーと値のペア) を G-code ファイルに書き込みません。これらのコメント行の解析でファームウェアがクラッシュするプリンター (例: Anycubic go-klipper) で役立ちます。注意: G-code ファイルにスライサー設定が含まれなくなるため、OrcaSlicer に読み込み直しても設定は復元されません。"
+
# AI Translated
msgid "Pellet Modded Printer"
msgstr "ペレット改造プリンター"
@@ -16374,6 +16462,14 @@ msgstr "押出機切り替え時のロングリトラクション"
msgid "Retraction distance when extruder change"
msgstr "押出機切替時のリトラクション距離"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "リトラクション量 (ツール交換)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "ツール交換の前にリトラクションが行われるとき、指定した量だけフィラメントが引き戻されます (長さは押出機に入る前の未加工のフィラメントで測定されます)。"
+
# AI Translated
msgid "Z-hop height"
msgstr "Zホップの高さ"
@@ -16488,6 +16584,10 @@ msgstr "再開時の追加長さ"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "移動後に引込みが補償されると、エクストルーダーはこの追加量のフィラメントを押し出します。 この設定はほとんど必要ありません。"
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "再開時の追加長さ (ツール交換)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "ツールの交換後に吸込み分が補正されると、エクストルーダーはこの追加量のフィラメントを押し出します。"
@@ -16963,6 +17063,14 @@ msgstr "ワイプタワー上でツール交換"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "ツール交換コマンド (Tx) を発行する前に、ツールヘッドを強制的にワイプタワーへ移動させます。タイプ2のワイプタワーを使用するマルチ押出機 (マルチツールヘッド) プリンターにのみ関係します。デフォルトでは、マルチツールヘッド機ではファームウェアがヘッドの交換を処理するためOrcaは移動をスキップしますが、その結果Txコマンドが造形物の上で発行される場合があります。ツール交換を常にワイプタワーの上で発行したい場合は、このオプションを有効にしてください。"
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "ワイプタワーで温度待機"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "印刷温度に達するのを待たずに新しいツールを取り付け、ワイプタワーへ移動し、パージ直前にそこで温度を待ちます。加熱中の垂れ出しはモデルではなくタワーに落ち、移動時間が加熱と重なります。タイプ 2 のワイプタワーを使用するマルチ押出機 (マルチツールヘッド) プリンターでのみ有効です。ファームウェアやツール交換マクロ側で温度待機を行わないようにしてください。無効の場合、温度待機はツール交換コマンドの直後に出力されます。"
+
# AI Translated
msgid "No sparse layers (beta)"
msgstr "スパース層なし (ベータ)"
@@ -20389,9 +20497,6 @@ msgstr "実物プリンター"
msgid "Print Host upload"
msgstr "プリントホストのアップロード"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "プリンター通信用のネットワークエージェント実装を選択します。使用可能なエージェントは起動時に登録されます。"
-
# AI Translated
msgid "Select a Flashforge printer"
msgstr "Flashforgeプリンターを選択"
@@ -21363,9 +21468,6 @@ msgstr "ログイン中に予期しない問題が発生しました。再試行
msgid "User canceled."
msgstr "ユーザーがキャンセルしました。"
-msgid "Head diameter"
-msgstr "直径"
-
msgid "Max angle"
msgstr "最大角度"
@@ -22194,6 +22296,22 @@ msgstr ""
"反りを避ける\n"
"ABSのような反りやすい素材を印刷する場合、ヒートベッドの温度を適切に上げることで、反りが発生する確率を下げることができることをご存知ですか?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "レイヤー高さが小さすぎます。\n"
+#~ "min_layer_heightに設定されます\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "レイヤー高さがプリンター設定 -> エクストルーダー -> レイヤー高さ制限の上限を超えています。印刷品質の問題が発生する可能性があります。"
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "設定範囲に自動調整しますか?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "直径"
+
#~ msgid "Print order within a single layer."
#~ msgstr "単一レイヤー内の印刷順序。"
diff --git a/localization/i18n/ko/OrcaSlicer_ko.po b/localization/i18n/ko/OrcaSlicer_ko.po
index 5a6ac0438b..767674e525 100644
--- a/localization/i18n/ko/OrcaSlicer_ko.po
+++ b/localization/i18n/ko/OrcaSlicer_ko.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: 2025-06-02 17:12+0900\n"
"Last-Translator: crwusiz \n"
"Language-Team: \n"
@@ -4763,6 +4763,23 @@ msgstr "현재 챔버 온도가 재료의 안전 온도보다 높으므로 재
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "최소 챔버 온도(%d℃)가 목표 챔버 온도(%d℃)보다 높습니다. 최소값은 챔버가 목표 온도까지 계속 가열되는 동안 출력을 시작하는 기준값이므로 목표값을 초과해서는 안 됩니다. 이 값은 목표값으로 제한됩니다."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "레이어 높이가 너무 작습니다. 최솟값(%g mm)으로 설정됩니다."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "레이어 높이가 프린터 설정 -> 압출기 -> 레이어 높이 한도에서 설정한 범위를 벗어났습니다. 출력 품질 문제가 발생할 수 있습니다."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "한도(%g mm)에 맞게 자동으로 조정할까요?"
+
+msgid "Adjust"
+msgstr "조정"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4884,6 +4901,13 @@ msgstr ""
"예 - 아라크네 벽 생성기 활성화\n"
"아니오 - 아라크네 벽 생성기 비활성화 및 퍼지 스킨 [변위] 모드 설정"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "브림 귀 반경"
+
+msgid "Brim width"
+msgstr "브림 너비"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "나선형 모드는 벽 루프가 1이고, 서포트가 비활성화되고, 프로빙에 의한 클럼핑 감지가 비활성화되고, 상단 셸 레이어가 0이고, 희소 인필 밀도가 0이고 타임랩스 유형이 전통적인 경우에만 작동합니다."
@@ -5138,6 +5162,14 @@ msgstr "교정 Gcode를 생성하지 못했습니다"
msgid "Calibration error"
msgstr "교정 오류"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "이 프린터에는 이 컨트롤에 필요한 하드웨어가 구성되어 있지 않습니다."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "이 컨트롤은 이 프린터에서 지원되지 않습니다."
+
# AI Translated
msgid "Network unavailable"
msgstr "네트워크를 사용할 수 없음"
@@ -6001,7 +6033,7 @@ msgstr "용량:"
msgid "Size:"
msgstr "크기:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "레이어 %d, Z = %.2lf mm에서 Gcode 경로 충돌이 발견되었습니다. 충돌하는 객체를 더 멀리 분리하세요 (%s <-> %s)."
@@ -6178,6 +6210,10 @@ msgstr "멀티 디바이스"
msgid "Project"
msgstr "프로젝트"
+# AI Translated
+msgid "Device (Web)"
+msgstr "장치 (웹)"
+
msgid "Yes"
msgstr "예"
@@ -8288,22 +8324,22 @@ msgid "Replaced with 3D files from directory:\n"
msgstr "다음 디렉터리의 3D 파일로 교체했습니다:\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ 건너뜀 %s: 동일한 파일입니다.\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ 건너뜀 %s: 파일이 존재하지 않습니다.\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ 건너뜀 %s: 교체하지 못했습니다.\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ %s을(를) 교체했습니다.\n"
@@ -9077,6 +9113,18 @@ msgstr "활성화하면 여러 장치에 동시에 작업을 보내고 여러
msgid "Pop up to select filament grouping mode"
msgstr "필라멘트 그룹화 모드를 선택하기 위한 팝업"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "표시할 플러그인 페이지"
+
+# AI Translated
+msgid "pages"
+msgstr "페이지"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "고정 탭으로 표시되는 플러그인 페이지 수입니다. 나머지 페이지는 마지막 탭의 드롭다운으로 묶입니다."
+
# AI Translated
msgid "Behaviour"
msgstr "동작"
@@ -9491,6 +9539,18 @@ msgstr "지원되지 않는 사전 설정 표시"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "프린터 및 필라멘트 드롭다운 목록에 호환되지 않거나 지원되지 않는 사전 설정을 표시합니다. 이러한 사전 설정은 선택할 수 없습니다."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(실험적) 출력 호스트 대신 프린터 에이전트 사용"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Bambu 이외의 프린터 출력 작업을 기존 출력 호스트 업로드 방식 대신 프린터 플러그인 에이전트를 통해 전달합니다.\n"
+"비활성화하면 OrcaSlicer는 기존 출력 호스트 동작을 사용합니다."
+
# AI Translated
msgid "Experimental Features"
msgstr "실험적 기능"
@@ -9762,10 +9822,26 @@ msgstr "사용자 사전 설정"
msgid "Preset Inside Project"
msgstr "프로젝트 내부 사전 설정"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "상위 사전 설정에서 상속한 모든 값을 이 사전 설정으로 복사하고 상속 관계를 제거합니다. 상위 사전 설정에서만 호환되는 사전 설정은 지원되지 않을 수 있습니다."
+
# AI Translated
msgid "Detach from parent"
msgstr "상위 항목에서 분리"
+# AI Translated
+msgid "Unique preset"
+msgstr "독립 사전 설정"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "상위 사전 설정"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "이 사전 설정은 다른 사전 설정을 상속하지 않습니다."
+
msgid "Name is unavailable."
msgstr "이름을 사용할 수 없습니다."
@@ -10519,22 +10595,6 @@ msgstr "이 옵션을 사용하시겠습니까?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "채우기 패턴은 일반적으로 올바른 출력과 의도한 효과를 위해 회전을 자동으로 처리하도록 설계되어 있습니다(예: 자이로이드, 큐빅). 현재 드문 채우기 패턴을 회전시키면 지지력이 부족해질 수 있습니다. 신중하게 진행하고 출력 문제가 발생하지 않는지 충분히 확인하십시오. 이 옵션을 활성화하시겠습니까?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"레이어 높이가 너무 작습니다.\n"
-"min_layer_height로 설정됩니다.\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "레이어 높이가 프린터 설정 -> 압출기 -> 레이어의 제한을 초과합니다.높이 제한으로 인해 출력 품질 문제가 발생할 수 있습니다."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "설정 범위에 자동으로 맞춰지나요?\n"
-
-msgid "Adjust"
-msgstr "조정"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "실험적 기능: 플러시를 최소화하기 위해 필라멘트 교체 중에 더 먼 거리에서 필라멘트를 집어넣고 절단합니다. 플러시를 눈에 띄게 줄일 수 있지만 노즐 막힘이나 기타 출력 문제의 위험이 높아질 수도 있습니다."
@@ -10728,6 +10788,9 @@ msgstr "예약어를 찾았습니다"
msgid "Setting Overrides"
msgstr "설정 덮어쓰기"
+msgid "Retraction when switching material"
+msgstr "재료 전환 시 후퇴"
+
msgid "Basic information"
msgstr "기본 정보"
@@ -10861,6 +10924,14 @@ msgstr "호환 프로세스 사전설정"
msgid "Printable space"
msgstr "출력 가능 공간"
+# AI Translated
+msgid "Printer Agent"
+msgstr "프린터 에이전트"
+
+# AI Translated
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "프린터 통신에 사용할 네트워크 에이전트 구현을 선택합니다. 사용 가능한 에이전트는 시작 시 등록됩니다."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10993,9 +11064,6 @@ msgstr "레이어 높이 한도"
msgid "Z-Hop"
msgstr "Z올리기"
-msgid "Retraction when switching material"
-msgstr "재료 전환 시 후퇴"
-
# AI Translated
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
@@ -12388,6 +12456,10 @@ msgstr " 이(가) 제외 영역에 너무 가깝습니다. 출력 시 충돌이
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " 뭉침 감지 영역에 너무 가까워 충돌이 발생할 수 있습니다.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " 이(가) 출력 가능 영역을 일부 벗어나 출력할 수 없습니다.\n"
+
# AI Translated
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "선택한 노즐 온도가 서로 호환되지 않습니다. 각 필라멘트의 노즐 온도는 다른 필라멘트의 권장 노즐 온도 범위 안에 있어야 합니다. 그렇지 않으면 노즐 막힘이나 프린터 손상이 발생할 수 있습니다."
@@ -12732,10 +12804,6 @@ msgstr "G-code 대신 3MF 사용"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "프린터가 출력 작업으로 3MF 파일을 허용하는 경우 이 옵션을 활성화하십시오. 활성화하면 Orca Slicer가 슬라이스된 파일을 일반 .gcode 파일 대신 .gcode.3mf로 전송합니다."
-# AI Translated
-msgid "Printer Agent"
-msgstr "프린터 에이전트"
-
# AI Translated
msgid "Select the network agent implementation for printer communication."
msgstr "프린터 통신에 사용할 네트워크 에이전트 구현을 선택합니다."
@@ -13446,9 +13514,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "내부 브릿지의 속도. 값을 백분율로 표현하면 bridge_speed를 기준으로 계산됩니다. 기본값은 150%입니다."
-msgid "Brim width"
-msgstr "브림 너비"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "모델과 가장 바깥쪽 브림 선까지의 거리"
@@ -13533,6 +13598,14 @@ msgstr ""
"날카로운 각도를 감지하기 전에 형상이 무시됩니다. 이 매개변수는 무시하는 형상의 최소 길이를 나타냅니다.\n"
"0으로 비활성화합니다"
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "브림 귀를 바깥쪽에만"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "구멍과 닫힌 영역을 제외하고 모델의 바깥쪽 윤곽에만 생쥐 귀를 생성합니다."
+
msgid "upward compatible machine"
msgstr "상향 호환 장치"
@@ -14729,6 +14802,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "자이로이드"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "드문 채우기 부드러움 계수"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "드문 채우기의 모서리를 얼마나 둥글게 할지 조절합니다. 0%는 원래의 날카로운 경로를 유지하고, 100%는 인접한 채우기 선 사이에 가능한 가장 큰 곡선을 만듭니다."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "상단 표면 가속도. 낮은 값을 사용하면 상단 표면 품질이 향상될 수 있습니다"
@@ -15291,6 +15372,14 @@ msgstr "프린터와 호환되는 Gcode 종류"
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "G-code 설정 블록 생략"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "CONFIG_BLOCK(슬라이서 설정의 키/값 쌍)을 G-code 파일에 기록하지 않습니다. 이 주석 줄을 해석할 때 펌웨어가 중단되는 프린터(예: Anycubic go-klipper)에 도움이 될 수 있습니다. 참고: G-code 파일에 슬라이서 설정이 더 이상 포함되지 않으므로, 이 파일을 OrcaSlicer로 다시 가져와도 설정이 복원되지 않습니다."
+
msgid "Pellet Modded Printer"
msgstr "펠릿 프린터"
@@ -16400,6 +16489,14 @@ msgstr "압출기 교체 시 긴 수축"
msgid "Retraction distance when extruder change"
msgstr "압출기 교체 시 수축 거리"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "후퇴 길이 (툴 체인지)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "툴 체인지 전에 후퇴가 실행되면 지정한 양만큼 필라멘트가 뒤로 당겨집니다 (길이는 압출기에 들어가기 전의 원래 필라멘트를 기준으로 측정됩니다)."
+
msgid "Z-hop height"
msgstr "Z올리기 높이"
@@ -16498,6 +16595,10 @@ msgstr "재 시작 시 추가 길이"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "이동 후 후퇴가 보상되면 압출기는 이 추가 양의 필라멘트를 밀어냅니다. 이 설정은 거의 필요하지 않습니다."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "재 시작 시 추가 길이 (툴 체인지)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "툴 체인지 후 후퇴가 보상되면 압출기는 이 추가 양의 필라멘트를 밀어냅니다."
@@ -16922,6 +17023,14 @@ msgstr "프라임 타워에서 툴 체인지"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "툴 체인지 명령(Tx)을 실행하기 전에 툴헤드가 반드시 프라임 타워로 이동하도록 합니다. 유형 2 프라임 타워를 사용하는 다중 압출기(멀티 툴헤드) 프린터에만 해당됩니다. 기본적으로 Orca는 멀티 툴헤드 장비에서 펌웨어가 헤드 교체를 처리하므로 이동을 생략하는데, 이 때문에 Tx 명령이 출력물 위에서 실행될 수 있습니다. 툴 체인지가 항상 프라임 타워 위에서 실행되도록 하려면 이 옵션을 활성화하십시오."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "프라임 타워에서 온도 대기"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "출력 온도에 도달할 때까지 기다리지 않고 새 툴을 집은 뒤 프라임 타워로 이동하여, 퍼지 직전에 그곳에서 온도를 기다립니다. 가열 중 흘러나온 재료는 모델이 아닌 타워에 떨어지고, 이동 시간이 가열 시간과 겹칩니다. 타입 2 프라임 타워를 사용하는 다중 압출기(다중 툴헤드) 프린터에만 해당합니다. 펌웨어나 툴 체인지 매크로가 직접 온도를 기다려서는 안 됩니다. 비활성화하면 툴 체인지 명령 직후에 온도 대기가 실행됩니다."
+
msgid "No sparse layers (beta)"
msgstr "희소 레이어 없음(베타)"
@@ -20261,10 +20370,6 @@ msgstr "물리 프린터"
msgid "Print Host upload"
msgstr "출력 호스트 업로드"
-# AI Translated
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "프린터 통신에 사용할 네트워크 에이전트 구현을 선택합니다. 사용 가능한 에이전트는 시작 시 등록됩니다."
-
# AI Translated
msgid "Select a Flashforge printer"
msgstr "Flashforge 프린터 선택"
@@ -21217,9 +21322,6 @@ msgstr "로그인을 시도하는 동안 예기치 않은 문제가 발생했습
msgid "User canceled."
msgstr "사용자가 취소했습니다."
-msgid "Head diameter"
-msgstr "헤드 직경"
-
msgid "Max angle"
msgstr "최대 각도"
@@ -22057,6 +22159,22 @@ msgstr ""
"뒤틀림 방지\n"
"ABS와 같이 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 높이면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "레이어 높이가 너무 작습니다.\n"
+#~ "min_layer_height로 설정됩니다.\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "레이어 높이가 프린터 설정 -> 압출기 -> 레이어의 제한을 초과합니다.높이 제한으로 인해 출력 품질 문제가 발생할 수 있습니다."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "설정 범위에 자동으로 맞춰지나요?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "헤드 직경"
+
#~ msgid "Print order within a single layer."
#~ msgstr "단일 레이어 내의 출력 순서"
diff --git a/localization/i18n/lt/OrcaSlicer_lt.po b/localization/i18n/lt/OrcaSlicer_lt.po
index 9a6b7ae590..ad5edffc9a 100644
--- a/localization/i18n/lt/OrcaSlicer_lt.po
+++ b/localization/i18n/lt/OrcaSlicer_lt.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: 2026-07-02 14:13+0300\n"
"Last-Translator: Gintaras Kučinskas \n"
"Language-Team: \n"
@@ -4728,6 +4728,23 @@ msgstr "Dabartinė kameros temperatūra yra aukštesnė už saugią medžiagos t
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "Minimali kameros temperatūra (%d℃) yra aukštesnė nei tikslinė kameros temperatūra (%d℃). Minimali vertė yra slenkstis, kurį pasiekus pradedamas spausdinimas, kol kamera vis dar kaitinama iki tikslinės temperatūros, todėl ji neturėtų viršyti tikslinės. Vertė bus apribota iki tikslinės temperatūros."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "Sluoksnio aukštis per mažas. Jis bus nustatytas į mažiausią reikšmę (%g mm)."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "Sluoksnio aukštis yra už ribų, nurodytų Spausdintuvo nustatymai -> Ekstruderis -> Sluoksnio aukščio ribos, tai gali sukelti spausdinimo kokybės problemų."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "Automatiškai sureguliuoti iki ribos (%g mm)?"
+
+msgid "Adjust"
+msgstr "Sureguliuoti"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4847,6 +4864,13 @@ msgstr ""
"Taip – įjungti „Arachne“ sienelių generatorių\n"
"Ne – išjungti „Arachne“ sienelių generatorių ir nustatyti „Šiurkštaus paviršius“ režimą [Slinktis]"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Apvado „ausies“ spindulys"
+
+msgid "Brim width"
+msgstr "Pado apvado plotis"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "Spiralinis režimas veikia tik tada, kai sienelės kilpų skaičius yra 1, atramos išjungtos, sulipimo aptikimas zonduojant išjungtas, viršutinių apvalkalo sluoksnių yra 0, reto užpildo tankis yra 0 %, o laiko intervalų vaizdo įrašo tipas – tradicinis."
@@ -5101,6 +5125,14 @@ msgstr "Nepavyko sugeneruoti kalibravimo G-kodo"
msgid "Calibration error"
msgstr "Kalibravimo klaida"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "Šiame spausdintuve nėra sukonfigūruotos įrangos, kurios reikia šiam valdikliui."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Šis valdiklis šiame spausdintuve nepalaikomas."
+
# AI Translated
msgid "Network unavailable"
msgstr "Tinklas neprieinamas"
@@ -5961,7 +5993,7 @@ msgstr "Tūris:"
msgid "Size:"
msgstr "Dydis:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "Rasta G-kodo trajektorijų konfliktų %d sluoksnyje, Z = %.2lfmm. Prašome labiau atskirti konfliktuojančius objektus (%s <-> %s)."
@@ -6142,6 +6174,10 @@ msgstr "Kelių įrenginių valdymas (Multi-device)"
msgid "Project"
msgstr "Projektas"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Įrenginys (Web)"
+
msgid "Yes"
msgstr "Taip"
@@ -8239,19 +8275,19 @@ msgstr ""
"Pakeista 3D failais iš katalogo:\n"
"\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Praleistas %s: tas pats failas.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Praleistas %s: failas neegzistuoja.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Praleistas %s: nepavyko pakeisti.\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Pakeistas %s.\n"
@@ -8977,6 +9013,18 @@ msgstr "Kai įjungta ši funkcija, jūs galite siųsti užduotį keliems įrengi
msgid "Pop up to select filament grouping mode"
msgstr "Iššokantis langas gijų grupavimo režimui pasirinkti"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Matomi papildinių puslapiai"
+
+# AI Translated
+msgid "pages"
+msgstr "puslapiai"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Papildinių puslapių, rodomų kaip fiksuotos kortelės, skaičius; likę puslapiai sutraukiami į išskleidžiamąjį sąrašą paskutinėje kortelėje."
+
msgid "Behaviour"
msgstr "Elgsena"
@@ -9329,6 +9377,18 @@ msgstr "Rodyti nepalaikomus profilius"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Rodyti nesuderinamus / nepalaikomus profilius spausdintuvų ir gijų išskleidžiamuosiuose sąrašuose. Šių profilių pasirinkti negalima."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Eksperimentinė) Naudoti spausdintuvo agentus vietoj spausdinimo serverių"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Nukreipia ne Bambu spausdintuvų spausdinimo užduotis per spausdintuvo papildinių agentus, o ne per klasikinį įkėlimo į spausdinimo serverį srautą.\n"
+"Kai išjungta, OrcaSlicer naudoja senąjį spausdinimo serverio veikimą."
+
msgid "Experimental Features"
msgstr "Eksperimentinis"
@@ -9590,9 +9650,25 @@ msgstr "Naudotojo profilis"
msgid "Preset Inside Project"
msgstr "Profilis projekto viduje"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Nukopijuoja į šį profilį visas iš pirminio profilio paveldėtas reikšmes ir pašalina paveldėjimo ryšį. Profiliai, suderinami tik su pirminiu profiliu, gali tapti nepalaikomi."
+
msgid "Detach from parent"
msgstr "Atskirti nuo tėvinio profilio"
+# AI Translated
+msgid "Unique preset"
+msgstr "Savarankiškas profilis"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Pirminis profilis"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Šis profilis nepaveldi iš kito profilio."
+
msgid "Name is unavailable."
msgstr "Nėra pavadinimo."
@@ -10330,24 +10406,6 @@ msgstr "Ar tikrai norite įjungti šią parinktį?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "Užpildymo modeliai paprastai yra suprojektuoti taip, kad automatiškai tvarkytų sukimąsi, siekiant užtikrinti tinkamą spausdinimą ir pasiekti numatytus efektus (pvz., Gyroid, Cubic). Sukant esamą retą užpildymo modelį, gali atsirasti nepakankamas atraminis paviršius. Prašome elgtis atsargiai ir atidžiai patikrinti, ar nėra galimų spausdinimo problemų. Ar tikrai norite įjungti šią parinktį?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"Per mažas sluoksnio aukštis.\n"
-"Jis bus nustatytas į min_layer_height\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "Sluoksnio aukštis viršija ribą, nurodytą Spausdintuvo nustatymai -> Ekstruderis -> Sluoksnio aukščio ribos, tai gali sukelti spausdinimo kokybės problemų."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr ""
-"Sureguliuoti pagal nustatytą diapazoną automatiškai?\n"
-"\n"
-
-msgid "Adjust"
-msgstr "Sureguliuoti"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "Eksperimentinė funkcija: gijos įtraukimas ir nukirpimas didesniu atstumu keičiant giją, siekiant sumažinti išvalymą (flush). Nors tai gali pastebimai sumažinti išvalymą, taip pat gali padidėti purkštuko užsikimšimo ar kitų spausdinimo komplikacijų rizika."
@@ -10547,6 +10605,9 @@ msgstr "Rasti rezervuoti raktažodžiai"
msgid "Setting Overrides"
msgstr "Nustatymų perrašymas"
+msgid "Retraction when switching material"
+msgstr "Įtraukimas keičiant medžiagą"
+
msgid "Basic information"
msgstr "Pagrindinė informacija"
@@ -10673,6 +10734,12 @@ msgstr "Suderinami apdorojimo profiliai"
msgid "Printable space"
msgstr "Erdvė spausdinimui"
+msgid "Printer Agent"
+msgstr "Spausdintuvo agentas"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Pasirinkite tinklo agento modulį ryšiui su spausdintuvu palaikyti. Prieinami agentai užregistruojami paleidimo metu."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10798,9 +10865,6 @@ msgstr "Sluoksnio aukščio ribos"
msgid "Z-Hop"
msgstr "Z šuolis"
-msgid "Retraction when switching material"
-msgstr "Įtraukimas keičiant medžiagą"
-
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
"\n"
@@ -12146,6 +12210,10 @@ msgstr ""
" yra per arti sulipimo aptikimo zonos, todėl įvyks susidūrimai.\n"
"\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " yra iš dalies už spausdinimo srities ribų ir negali būti atspausdintas.\n"
+
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "Pasirinktos purkštuko temperatūros yra nesuderinamos. Kiekvienos gijos purkštuko temperatūra turi patekti į kitų gijų rekomenduojamos temperatūros diapazoną. Priešingu atveju gali užsikimšti purkštukas arba sugesti spausdintuvas."
@@ -12459,9 +12527,6 @@ msgstr "Vietoj G-kodo naudoti 3MF"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Įjunkite, jei spausdintuvas spausdinimo užduotims priima 3MF failus. Kai įjungta, „Orca Slicer“ sugeneruotą failą siunčia kaip „.gcode.3mf“, o ne kaip paprastą „.gcode“ failą."
-msgid "Printer Agent"
-msgstr "Spausdintuvo agentas"
-
msgid "Select the network agent implementation for printer communication."
msgstr "Pasirinkite tinklo agento modulį ryšiui su spausdintuvu palaikyti."
@@ -13134,9 +13199,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "Vidinių tiltelių spausdinimo greitis. Jei reikšmė nurodoma procentais, ji apskaičiuojama pagal „bridge_speed“ (tiltelių greitį). Numatytoji reikšmė – 150 %."
-msgid "Brim width"
-msgstr "Pado apvado plotis"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Atstumas nuo modelio iki išorinės krašto linijos"
@@ -13217,6 +13279,14 @@ msgstr ""
"Prieš aptinkant aštrius kampus, geometrija yra supaprastinama (decimuojama). Šis parametras nurodo minimalų nuokrypio ilgį supaprastinimui atlikti.\n"
"Įrašykite 0, kad išjungtumėte."
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Apvado „ausys“ tik išorėje"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Kuria peliukų ausis tik ant išorinio modelio kontūro, praleidžiant skyles ir uždaras sritis."
+
msgid "upward compatible machine"
msgstr "atgaliniu būdu suderinamas įrenginys"
@@ -14370,6 +14440,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "Giroidas"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Reto užpildo glotninimo koeficientas"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Nustato, kaip stipriai suapvalinami reto užpildo kampai. 0% palieka pradinę aštrią trajektoriją, o 100% sukuria didžiausias įmanomas kreives tarp gretimų užpildo linijų."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Viršutinio paviršiaus užpildo pagreitis. Naudojant mažesnę vertę gali pagerėti viršutinio paviršiaus kokybė."
@@ -14914,6 +14992,14 @@ msgstr "Su kokiu G kodu suderinamas spausdintuvas."
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "Praleisti G-code konfigūracijos bloką"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "Neįrašo CONFIG_BLOCK (pjaustyklės konfigūracijos raktų ir reikšmių porų) į G-code failą. Tai gali padėti su spausdintuvais, kurių programinė įranga stringa apdorodama šias komentarų eilutes (pvz., Anycubic go-klipper). Pastaba: G-code faile nebeliks pjaustyklės nustatymų, todėl importavus jį atgal į OrcaSlicer konfigūracija nebus atkurta."
+
msgid "Pellet Modded Printer"
msgstr "Modifikuotas granulinis spausdintuvas"
@@ -15955,6 +16041,14 @@ msgstr "Ilgas įtraukimas keičiant ekstruderį"
msgid "Retraction distance when extruder change"
msgstr "Įtraukimo atstumas keičiant ekstruderį"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Atitraukimo ilgis (Įrankio keitimas)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Kai atitraukimas suaktyvinamas prieš įrankio keitimą, gija atitraukiama nurodytu atstumu (ilgis matuojamas ant neapdorotos gijos, prieš jai patenkant į ekstruderį)."
+
msgid "Z-hop height"
msgstr "„Z-hop“ (pakėlimo) aukštis"
@@ -16049,6 +16143,10 @@ msgstr "Papildomas ilgis po sugrąžinimo"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "Kai po judėjimo kompensuojamas gijos įtraukimas, ekstruderis papildomai išstums šį gijos kiekį. Šis nustatymas reikalingas retai."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Papildomas ilgis po sugrąžinimo (Įrankio keitimas)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Kai po įrankio pakeitimo kompensuojamas gijos įtraukimas, ekstruderis papildomai išstums šį gijos kiekį."
@@ -16461,6 +16559,14 @@ msgstr "Įrankio keitimas virš valymo bokšto"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "Priverstinai nukreipti spausdinimo galvutę prie valymo bokšto prieš vykdant įrankio keitimo komandą (Tx). Aktualu tik spausdintuvams su keliais ekstruderiais (keliomis galvutėmis), naudojantiems 2 tipo valymo bokštą. Pagal numatytuosius nustatymus „OrcaSlicer“ praleidžia šį judesį kelių galvučių įrenginiuose, nes galvučių sukeitimą valdo aparatinė programinė įranga, todėl Tx komanda gali būti įvykdyta virš spausdinamos detalės. Įjunkite šią parinktį, jei norite, kad įrankio keitimas visada vyktų virš valymo bokšto."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Laukti temperatūros ant valymo bokšto"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Paima naują įrankį nelaukdamas, kol jis pasieks spausdinimo temperatūrą, nuvažiuoja prie valymo bokšto ir ten laukia temperatūros, prieš pat pravalymą. Kaitinant ištekėjusi medžiaga patenka ant bokšto, o ne ant modelio, o pervažiavimas persidengia su kaitinimu. Aktualu tik daugiaekstruderiams (kelių spausdinimo galvučių) spausdintuvams, naudojantiems 2 tipo valymo bokštą. Programinė įranga ar įrankio keitimo makrokomanda neturi pati laukti temperatūros. Kai išjungta, laukimo temperatūros komanda pateikiama iškart po įrankio keitimo komandos."
+
msgid "No sparse layers (beta)"
msgstr "Nėra retų sluoksnių (beta)"
@@ -19702,9 +19808,6 @@ msgstr "Fizinis spausdintuvas"
msgid "Print Host upload"
msgstr "Įkėlimas spausdinimui tinkle"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Pasirinkite tinklo agento modulį ryšiui su spausdintuvu palaikyti. Prieinami agentai užregistruojami paleidimo metu."
-
msgid "Select a Flashforge printer"
msgstr "Pasirinkite „Flashforge“ spausdintuvą"
@@ -20552,9 +20655,6 @@ msgstr "Bandant prisijungti įvyko kažkas netikėto. Bandykite dar kartą."
msgid "User canceled."
msgstr "Vartotojas atšaukė."
-msgid "Head diameter"
-msgstr "Galvutės skersmuo"
-
msgid "Max angle"
msgstr "Maksimalus kampas"
@@ -21336,6 +21436,24 @@ msgstr ""
"Venkite deformacijų (warping)\n"
"Ar žinojote, kad spausdinant medžiagas, kurios yra linkusios trauktis ir riestis (pvz., ABS), tinkamas kaitinamojo pagrindo temperatūros padidinimas gali sumažinti deformacijų (warping) tikimybę?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "Per mažas sluoksnio aukštis.\n"
+#~ "Jis bus nustatytas į min_layer_height\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "Sluoksnio aukštis viršija ribą, nurodytą Spausdintuvo nustatymai -> Ekstruderis -> Sluoksnio aukščio ribos, tai gali sukelti spausdinimo kokybės problemų."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr ""
+#~ "Sureguliuoti pagal nustatytą diapazoną automatiškai?\n"
+#~ "\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Galvutės skersmuo"
+
#~ msgid "Print order within a single layer."
#~ msgstr "Elementų spausdinimo eiliškumas vieno sluoksnio ribose."
diff --git a/localization/i18n/nl/OrcaSlicer_nl.po b/localization/i18n/nl/OrcaSlicer_nl.po
index 1ae53b2888..28ad63d455 100644
--- a/localization/i18n/nl/OrcaSlicer_nl.po
+++ b/localization/i18n/nl/OrcaSlicer_nl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -5150,6 +5150,23 @@ msgstr "De huidige kamertemperatuur is hoger dan de veilige temperatuur van het
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "De minimale kamertemperatuur (%d℃) is hoger dan de doelkamertemperatuur (%d℃). De minimale waarde is de drempel waarbij het printen start terwijl de kamer verder opwarmt naar de doelwaarde; deze mag die dus niet overschrijden. De waarde wordt begrensd tot de doelwaarde."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "De laaghoogte is te klein. Deze wordt ingesteld op het minimum (%g mm)."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "De laaghoogte valt buiten de limieten die zijn ingesteld in Printerinstellingen -> Extruder -> Laaghoogtelimieten, dit kan problemen met de afdrukkwaliteit veroorzaken."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "Automatisch aanpassen naar de limiet (%g mm)?"
+
+msgid "Adjust"
+msgstr "Aanpassen"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -5277,6 +5294,13 @@ msgstr ""
"Ja - Arachne-wandgenerator inschakelen\n"
"Nee - Arachne-wandgenerator uitschakelen en de modus [Displacement] van Vage buitenkant instellen"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Straal van randoren"
+
+msgid "Brim width"
+msgstr "Rand breedte"
+
# AI Translated
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "De spiraalmodus werkt alleen wanneer Wanden 1 is, ondersteuning is uitgeschakeld, klontdetectie via aftasten is uitgeschakeld, het aantal bovenste buitenlagen 0 is, de dichtheid van de dunne vulling (infill) 0 is en het timelapse-type traditioneel is."
@@ -5582,6 +5606,14 @@ msgstr "Cali G-code niet gegenereerd"
msgid "Calibration error"
msgstr "Kalibratiefout"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "Deze printer beschikt niet over de hardware die dit besturingselement nodig heeft."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Dit besturingselement wordt niet ondersteund op deze printer."
+
# AI Translated
msgid "Network unavailable"
msgstr "Netwerk niet beschikbaar"
@@ -6513,7 +6545,7 @@ msgid "Size:"
msgstr "Maat:"
# AI Translated
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "Er zijn conflicten tussen G-code-paden gevonden op laag %d, Z = %.2lfmm. Plaats de conflicterende objecten verder uit elkaar (%s <-> %s)."
@@ -6714,6 +6746,10 @@ msgstr "Meerdere apparaten"
msgid "Project"
msgstr "Project"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Apparaat (Web)"
+
msgid "Yes"
msgstr "Ja"
@@ -8999,22 +9035,22 @@ msgid "Replaced with 3D files from directory:\n"
msgstr "Vervangen door 3D-bestanden uit de map:\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Overgeslagen %s: hetzelfde bestand.\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Overgeslagen %s: bestand bestaat niet.\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Overgeslagen %s: vervangen is mislukt.\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Vervangen %s.\n"
@@ -9827,6 +9863,18 @@ msgstr "Met deze optie ingeschakeld kunt u een taak tegelijkertijd naar meerdere
msgid "Pop up to select filament grouping mode"
msgstr "Pop-up om de filamentgroeperingsmodus te kiezen"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Zichtbare plug-inpagina's"
+
+# AI Translated
+msgid "pages"
+msgstr "pagina's"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Aantal plug-inpagina's dat als vaste tabbladen wordt getoond voordat de overige pagina's worden samengevouwen in een vervolgkeuzelijst op het laatste tabblad."
+
msgid "Behaviour"
msgstr "Gedrag"
@@ -10243,6 +10291,18 @@ msgstr "Niet-ondersteunde voorinstellingen tonen"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Toon incompatibele/niet-ondersteunde voorinstellingen in de keuzelijsten voor printer en filament. Deze voorinstellingen kunnen niet worden geselecteerd."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Experimenteel) Printeragents gebruiken in plaats van printhosts"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Stuurt printtaken voor niet-Bambu-printers via printer-plug-inagents in plaats van via de klassieke uploadstroom naar de printhost.\n"
+"Wanneer dit is uitgeschakeld, gebruikt OrcaSlicer het oude printhostgedrag."
+
# AI Translated
msgid "Experimental Features"
msgstr "Experimentele functies"
@@ -10523,10 +10583,26 @@ msgstr "Gebruikersvoorinstelling"
msgid "Preset Inside Project"
msgstr "Voorinstelling binnen project"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Kopieert alle overgeërfde waarden van de bovenliggende voorinstelling naar deze voorinstelling en verwijdert de overervingsrelatie. Voorinstellingen die alleen met de bovenliggende voorinstelling compatibel zijn, kunnen daardoor niet meer worden ondersteund."
+
# AI Translated
msgid "Detach from parent"
msgstr "Losmaken van bovenliggend element"
+# AI Translated
+msgid "Unique preset"
+msgstr "Unieke voorinstelling"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Bovenliggende voorinstelling"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Deze voorinstelling erft niet van een andere voorinstelling."
+
msgid "Name is unavailable."
msgstr "Naam is niet beschikbaar."
@@ -11336,22 +11412,6 @@ msgstr "Weet u zeker dat u deze optie wilt inschakelen?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "Vulpatronen zijn doorgaans ontworpen om rotatie automatisch af te handelen, zodat ze goed printen en hun beoogde effect bereiken (bijv. Gyroide, Kubisch). Het roteren van het huidige patroon voor de dunne vulling (infill) kan tot onvoldoende ondersteuning leiden. Ga voorzichtig te werk en controleer grondig op mogelijke printproblemen. Weet u zeker dat u deze optie wilt inschakelen?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"Laaghoogte is te klein.\n"
-"Het zal worden ingesteld op min_layer_height\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "De laaghoogte overschrijdt de limiet in Printerinstellingen -> Extruder -> Laaghoogtelimieten, dit kan problemen met de afdrukkwaliteit veroorzaken."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "Automatisch aanpassen aan het ingestelde bereik?\n"
-
-msgid "Adjust"
-msgstr "Aanpassen"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "Experimentele functie: Het filament op grotere afstand terugtrekken en afsnijden tijdens filamentwisselingen om flush te minimaliseren. Hoewel het het doorspoelen aanzienlijk kan verminderen, kan het ook het risico op een verstopt mondstuk of andere printcomplicaties vergroten."
@@ -11551,6 +11611,9 @@ msgstr "Gereserveerde zoekworden gevonden"
msgid "Setting Overrides"
msgstr "Overschrijvingen instellen"
+msgid "Retraction when switching material"
+msgstr "Terugtrekken (retraction) bij het wisselen van filament"
+
msgid "Basic information"
msgstr "Basisinformatie"
@@ -11689,6 +11752,14 @@ msgstr "Geschikte proces profielen"
msgid "Printable space"
msgstr "Ruimte waarbinnen geprint kan worden"
+# AI Translated
+msgid "Printer Agent"
+msgstr "Printeragent"
+
+# AI Translated
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Selecteer de implementatie van de netwerkagent voor de communicatie met de printer. Beschikbare agenten worden bij het opstarten geregistreerd."
+
# AI Translated
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
@@ -11829,9 +11900,6 @@ msgstr "Limieten voor laaghoogte"
msgid "Z-Hop"
msgstr "Z-hop"
-msgid "Retraction when switching material"
-msgstr "Terugtrekken (retraction) bij het wisselen van filament"
-
# AI Translated
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
@@ -13323,6 +13391,10 @@ msgstr " bevindt zich te dicht bij het uitsluitingsgebied en er zullen botsingen
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " ligt te dicht bij het gebied voor klontdetectie, waardoor er botsingen zullen ontstaan.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " ligt gedeeltelijk buiten het printbare gebied en kan niet worden geprint.\n"
+
# AI Translated
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "De geselecteerde mondstuktemperaturen zijn niet compatibel. De mondstuktemperatuur van elk filament moet binnen het aanbevolen mondstuktemperatuurbereik van de andere filamenten vallen. Anders kan het mondstuk verstopt raken of kan de printer beschadigd raken."
@@ -13686,10 +13758,6 @@ msgstr "3MF gebruiken in plaats van G-code"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Schakel dit in als de printer een 3MF-bestand als printopdracht accepteert. Indien ingeschakeld verzendt Orca Slicer het geslicede bestand als een .gcode.3mf in plaats van als een gewoon .gcode-bestand."
-# AI Translated
-msgid "Printer Agent"
-msgstr "Printeragent"
-
# AI Translated
msgid "Select the network agent implementation for printer communication."
msgstr "Selecteer de implementatie van de netwerkagent voor de communicatie met de printer."
@@ -14443,9 +14511,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "Snelheid van interne bruggen. Als de waarde als percentage wordt uitgedrukt, wordt deze berekend op basis van bridge_speed. De standaardwaarde is 150%."
-msgid "Brim width"
-msgstr "Rand breedte"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Dit is de afstand van het model tot de buitenste randlijn."
@@ -14537,6 +14602,14 @@ msgstr ""
"De geometrie wordt vereenvoudigd voordat scherpe hoeken worden gedetecteerd. Deze parameter geeft de minimale lengte van de afwijking voor die vereenvoudiging aan.\n"
"0 om uit te schakelen."
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Randoren alleen aan de buitenzijde"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Genereert alleen muisoren op de buitencontour van het model, met uitsluiting van gaten en gesloten secties."
+
msgid "upward compatible machine"
msgstr "opwaarts compatibele machine"
@@ -15846,6 +15919,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "Gyroide"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Afvlakkingsfactor voor dunne vulling"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Bepaalt hoe sterk de hoeken van de dunne vulling worden afgerond. 0% behoudt het oorspronkelijke scherpe pad, terwijl 100% de grootst mogelijke bochten tussen aangrenzende vullijnen oplevert."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Versnelling van de topoppervlakte-invulling. Gebruik van een lagere waarde kan de kwaliteit van de bovenlaag verbeteren."
@@ -16456,6 +16537,14 @@ msgstr "Het type G-code waarmee de printer compatibel is."
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "G-code-configuratieblok overslaan"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "Schrijft het CONFIG_BLOCK (de sleutel/waarde-paren van de slicerconfiguratie) niet naar het G-code-bestand. Dit kan helpen bij printers waarvan de firmware vastloopt bij het verwerken van deze commentaarregels (bijv. Anycubic go-klipper). Let op: het G-code-bestand bevat dan geen slicerinstellingen meer, dus door het weer in OrcaSlicer te importeren wordt de configuratie niet hersteld."
+
# AI Translated
msgid "Pellet Modded Printer"
msgstr "Printer omgebouwd voor pellets"
@@ -17653,6 +17742,14 @@ msgstr "Lange terugtrekking bij extruderwissel"
msgid "Retraction distance when extruder change"
msgstr "Terugtrekafstand bij extruderwissel"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Terugtreklengte (Gereedschapswissel)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Wanneer het terugtrekken vóór een gereedschapswissel wordt geactiveerd, wordt het filament met de opgegeven hoeveelheid teruggetrokken (de lengte wordt gemeten op het onbewerkte filament, voordat het de extruder ingaat)."
+
# AI Translated
msgid "Z-hop height"
msgstr "Z-hop-hoogte"
@@ -17763,6 +17860,10 @@ msgstr "Extra lengte bij herstart"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "Als retracten wordt gecompenseerd na een beweging, wordt deze extra hoeveelheid filament geëxtrudeerd. Deze instelling is zelden van toepassing."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Extra lengte bij herstart (Gereedschapswissel)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Als retracten wordt gecompenseerd na een toolwisseling, wordt deze extra hoeveelheid filament geëxtrudeerd."
@@ -18255,6 +18356,14 @@ msgstr "Toolwissel op het afveegblok"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "Dwing de printkop naar het afveegblok te bewegen voordat de opdracht voor de toolwissel (Tx) wordt gegeven. Alleen relevant voor printers met meerdere extruders (meerdere printkoppen) die een afveegblok van type 2 gebruiken. Standaard slaat Orca deze verplaatsing op machines met meerdere printkoppen over, omdat de firmware de kopwissel afhandelt, waardoor de Tx-opdracht boven het geprinte onderdeel kan worden gegeven. Schakel deze optie in als u wilt dat de toolwissel altijd boven het afveegblok wordt uitgevoerd."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Wachten op temperatuur bij het afveegblok"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Pakt het nieuwe gereedschap op zonder te wachten tot het de printtemperatuur bereikt, verplaatst zich naar het afveegblok en wacht daar op de temperatuur, vlak voor het spoelen. Het materiaal dat tijdens het opwarmen uitloopt komt op het blok terecht in plaats van op het model, en de verplaatsing overlapt met het opwarmen. Alleen relevant voor printers met meerdere extruders (meerdere printkoppen) die een afveegblok van type 2 gebruiken. De firmware of de gereedschapswisselmacro mag niet zelf op de temperatuur wachten. Wanneer dit is uitgeschakeld, wordt het wachten op de temperatuur direct na het gereedschapswisselcommando uitgevoerd."
+
# AI Translated
msgid "No sparse layers (beta)"
msgstr "Geen dunne lagen (bèta)"
@@ -21860,10 +21969,6 @@ msgstr "Fysieke printer"
msgid "Print Host upload"
msgstr "Host-upload afdrukken"
-# AI Translated
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Selecteer de implementatie van de netwerkagent voor de communicatie met de printer. Beschikbare agenten worden bij het opstarten geregistreerd."
-
# AI Translated
msgid "Select a Flashforge printer"
msgstr "Selecteer een Flashforge-printer"
@@ -22918,9 +23023,6 @@ msgstr "Er is iets onverwachts gebeurd bij het inloggen. Probeer het opnieuw."
msgid "User canceled."
msgstr "Gebruiker geannuleerd."
-msgid "Head diameter"
-msgstr "Kopdiameter"
-
# AI Translated
msgid "Max angle"
msgstr "Maximale hoek"
@@ -23781,6 +23883,22 @@ msgstr ""
"Kromtrekken voorkomen\n"
"Wist je dat bij het printen van materialen die gevoelig zijn voor kromtrekken, zoals ABS, een juiste verhoging van de temperatuur van het warmtebed de kans op kromtrekken kan verkleinen?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "Laaghoogte is te klein.\n"
+#~ "Het zal worden ingesteld op min_layer_height\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "De laaghoogte overschrijdt de limiet in Printerinstellingen -> Extruder -> Laaghoogtelimieten, dit kan problemen met de afdrukkwaliteit veroorzaken."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "Automatisch aanpassen aan het ingestelde bereik?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Kopdiameter"
+
# AI Translated
#~ msgid "Print order within a single layer."
#~ msgstr "Printvolgorde binnen één laag."
diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po
index a0701dca09..e8acc62a9b 100644
--- a/localization/i18n/pl/OrcaSlicer_pl.po
+++ b/localization/i18n/pl/OrcaSlicer_pl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OrcaSlicer 2.3.0-rc\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: Krzysztof Morga <>\n"
"Language-Team: \n"
@@ -4843,6 +4843,23 @@ msgstr "Obecna temperatura komory jest wyższa niż bezpieczna temperatura dla f
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "Minimalna temperatura komory (%d℃) jest wyższa niż docelowa temperatura komory (%d℃). Wartość minimalna to próg, przy którym rozpoczyna się druk, podczas gdy komora nadal nagrzewa się do wartości docelowej, więc nie powinna jej przekraczać. Zostanie ograniczona do wartości docelowej."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "Wysokość warstwy jest zbyt mała. Zostanie ustawiona na minimum (%g mm)."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "Wysokość warstwy wykracza poza limity ustawione w Ustawieniach Drukarki -> Ekstruder -> Limity wysokości warstwy, co może powodować problemy z jakością druku."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "Dostosować ją automatycznie do limitu (%g mm)?"
+
+msgid "Adjust"
+msgstr "Dostosuj"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4965,6 +4982,13 @@ msgstr ""
"Tak — włącz generator ścian Arachne\n"
"Nie — wyłącz generator ścian Arachne i ustaw tryb [Przesunięcie] skóry fuzzy"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Promień ucha brim"
+
+msgid "Brim width"
+msgstr "Szerokość brimu"
+
# AI Translated
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "Tryb spiralny działa tylko wtedy, gdy liczba pętli ściany wynosi 1, podpory są wyłączone, wykrywanie zlepiania przez sondowanie jest wyłączone, liczba warstw górnej powłoki wynosi 0, gęstość wypełnienia wynosi 0, a typ timelapse jest tradycyjny."
@@ -5226,6 +5250,14 @@ msgstr "Nie udało się wygenerować kodu kalibracji"
msgid "Calibration error"
msgstr "Błąd kalibracji"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "Ta drukarka nie ma skonfigurowanego sprzętu wymaganego przez ten element sterujący."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Ten element sterujący nie jest obsługiwany przez tę drukarkę."
+
# AI Translated
msgid "Network unavailable"
msgstr "Sieć niedostępna"
@@ -6109,7 +6141,7 @@ msgstr "Objętość:"
msgid "Size:"
msgstr "Rozmiar:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "Wykryto konflikty ścieżek G-code na warstwie %d, Z = %.2lfmm. Proszę oddalić od siebie obiekty będące w konflikcie (%s <-> %s)."
@@ -6295,6 +6327,10 @@ msgstr "Wiele urządzeń"
msgid "Project"
msgstr "Projekt"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Urządzenie (Web)"
+
msgid "Yes"
msgstr "Tak"
@@ -8444,22 +8480,22 @@ msgid "Replaced with 3D files from directory:\n"
msgstr "Zastąpiono plikami 3D z katalogu:\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Pominięto %s: ten sam plik.\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Pominięto %s: plik nie istnieje.\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Pominięto %s: nie udało się zastąpić.\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Zastąpiono %s.\n"
@@ -9232,6 +9268,18 @@ msgstr "Umożliwia wysyłanie zadania do wielu urządzeń jednocześnie i zarzą
msgid "Pop up to select filament grouping mode"
msgstr "Okno dialogowe do wyboru trybu grupowania filamentów"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Widoczne strony wtyczek"
+
+# AI Translated
+msgid "pages"
+msgstr "stron"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Liczba stron wtyczek wyświetlanych jako stałe karty, zanim pozostałe strony zostaną zwinięte do listy rozwijanej na ostatniej karcie."
+
# AI Translated
msgid "Behaviour"
msgstr "Zachowanie"
@@ -9647,6 +9695,18 @@ msgstr "Pokaż nieobsługiwane profile"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Pokazuj niekompatybilne/nieobsługiwane profile na listach rozwijanych drukarek i filamentów. Tych profili nie można wybrać."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Eksperymentalne) Używaj agentów drukarki zamiast serwerów druku"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Kieruje zadania druku dla drukarek innych niż Bambu przez agentów wtyczek drukarki zamiast klasycznego przesyłania do serwera druku.\n"
+"Gdy opcja jest wyłączona, OrcaSlicer korzysta z dotychczasowego działania serwera druku."
+
# AI Translated
msgid "Experimental Features"
msgstr "Funkcje eksperymentalne"
@@ -9918,10 +9978,26 @@ msgstr "Profil użytkownika"
msgid "Preset Inside Project"
msgstr "Profil wewnątrz projektu"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Kopiuje do tego profilu wszystkie wartości odziedziczone z profilu nadrzędnego i usuwa relację dziedziczenia. Profile zgodne wyłącznie z profilem nadrzędnym mogą przestać być obsługiwane."
+
# AI Translated
msgid "Detach from parent"
msgstr "Odłącz od elementu nadrzędnego"
+# AI Translated
+msgid "Unique preset"
+msgstr "Profil niezależny"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Profil nadrzędny"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Ten profil nie dziedziczy z innego profilu."
+
msgid "Name is unavailable."
msgstr "Nazwa jest niedostępna."
@@ -10684,22 +10760,6 @@ msgstr "Czy na pewno włączyć tę opcję?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "Wzory wypełnienia są zwykle projektowane tak, aby samodzielnie obsługiwać obrót, co zapewnia prawidłowy druk i zamierzony efekt (np. Gyroidalny, Sześcienny). Obracanie bieżącego wzoru wypełnienia może prowadzić do niewystarczającego podparcia. Zachowaj ostrożność i dokładnie sprawdź, czy nie występują problemy z drukiem. Czy na pewno chcesz włączyć tę opcję?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"Wysokość warstwy jest zbyt mała.\n"
-"Ustawione zostanie na min_layer_height\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "Wysokość warstwy przekracza limit w Ustawieniach Drukarki -> Extruder -> Limity wysokości warstwy, co może powodować problemy z jakością druku."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "Dostosować automatycznie do ustawionego zakresu?\n"
-
-msgid "Adjust"
-msgstr "Dostosuj"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "Funkcja eksperymentalna: Polega na wycofywaniu filamentu na większą odległość w celu zminimalizowania płukania, a następne jego odcięcie. Choć może to znacząco zmniejszyć ilość zużytego filamentu, może również zwiększyć ryzyko zatknięcia dyszy lub innych problemów z drukowaniem."
@@ -10899,6 +10959,9 @@ msgstr "Znaleziono zarezerwowane słowa kluczowe"
msgid "Setting Overrides"
msgstr "Nadpisywane Ustawień"
+msgid "Retraction when switching material"
+msgstr "Retrakcja podczas zmiany filamentu"
+
msgid "Basic information"
msgstr "Podstawowe informacje"
@@ -11033,6 +11096,14 @@ msgstr "Kompatybilne profile procesów"
msgid "Printable space"
msgstr "Przestrzeń do druku"
+# AI Translated
+msgid "Printer Agent"
+msgstr "Agent drukarki"
+
+# AI Translated
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Wybierz implementację agenta sieciowego do komunikacji z drukarką. Dostępni agenci są rejestrowani przy uruchamianiu."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -11165,9 +11236,6 @@ msgstr "Ograniczenia wysokości warstwy"
msgid "Z-Hop"
msgstr "Z-Hop"
-msgid "Retraction when switching material"
-msgstr "Retrakcja podczas zmiany filamentu"
-
# AI Translated
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
@@ -12559,6 +12627,10 @@ msgstr " jest zbyt blisko obszaru wykluczenia, mogą wystąpić kolizje.\n"
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " jest zbyt blisko obszaru wykrywania zalepienia dyszy, co doprowadzi do kolizji.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " znajduje się częściowo poza obszarem druku i nie może zostać wydrukowany.\n"
+
# AI Translated
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "Wybrane temperatury dyszy są niezgodne. Temperatura dyszy każdego filamentu musi mieścić się w zalecanym zakresie temperatur dyszy pozostałych filamentów. W przeciwnym razie może dojść do zatkania dyszy lub uszkodzenia drukarki."
@@ -12901,10 +12973,6 @@ msgstr "Użyj 3MF zamiast G-code"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Włącz tę opcję, jeśli drukarka przyjmuje plik 3MF jako zadanie druku. Po włączeniu Orca Slicer wysyła plik po cięciu jako .gcode.3mf zamiast zwykłego pliku .gcode."
-# AI Translated
-msgid "Printer Agent"
-msgstr "Agent drukarki"
-
# AI Translated
msgid "Select the network agent implementation for printer communication."
msgstr "Wybierz implementację agenta sieciowego do komunikacji z drukarką."
@@ -13617,9 +13685,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "Prędkość wewnętrznych mostów. Jeśli wartość jest wyrażona w procentach, będzie obliczana na podstawie prędkości mostu. Wartość domyślna wynosi 150%."
-msgid "Brim width"
-msgstr "Szerokość brimu"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Odległość od modelu do najbardziej zewnętrznej linii brimu"
@@ -13703,6 +13768,14 @@ msgstr ""
"Kształt zostanie zredukowany przed wykryciem ostrych kątów. Ten parametr wskazuje minimalną długość odchylenia dla redukcji.\n"
"0, aby dezaktywować"
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Uszy brim tylko na zewnątrz"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Generuje uszy myszy tylko na zewnętrznym obrysie modelu, z pominięciem otworów i zamkniętych sekcji."
+
msgid "upward compatible machine"
msgstr "drukarka kompatybilna i wzwyż"
@@ -14896,6 +14969,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "Gyroidalny"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Współczynnik wygładzania wypełnienia"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Określa, jak mocno zaokrąglane są narożniki wypełnienia. 0% zachowuje oryginalną ostrą ścieżkę, a 100% tworzy największe możliwe łuki pomiędzy sąsiednimi liniami wypełnienia."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Przyspieszenie dla wypełnienia górnej powierzchni. Użycie niższej wartości może poprawić jakość górnej powierzchni"
@@ -15459,6 +15540,14 @@ msgstr "Z jakim rodzajem G-code drukarka jest kompatybilna."
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "Pomiń blok konfiguracyjny G-code"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "Nie zapisuje bloku CONFIG_BLOCK (par klucz/wartość z konfiguracją slicera) do pliku G-code. Może to pomóc w przypadku drukarek, których firmware ulega awarii podczas przetwarzania tych linii komentarza (np. Anycubic go-klipper). Uwaga: plik G-code nie będzie już zawierał ustawień slicera, więc ponowne zaimportowanie go do OrcaSlicer nie przywróci konfiguracji."
+
msgid "Pellet Modded Printer"
msgstr "Drukarka do druku granulatem"
@@ -16571,6 +16660,14 @@ msgstr "Długa retrakcja podczas zmian ekstruderów"
msgid "Retraction distance when extruder change"
msgstr "Długość retrakcji podczas zmian ekstruderów"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Długość retrakcji (Zmiana narzędzia)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Gdy retrakcja jest wyzwalana przed zmianą narzędzia, filament zostaje wycofany o określoną wartość (długość mierzona jest na surowym filamencie, przed wejściem do ekstrudera)."
+
msgid "Z-hop height"
msgstr "Wysokość Z-hop"
@@ -16669,6 +16766,10 @@ msgstr "Dodatkowa ilość dla powrotu"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "Gdy retrakcja jest kompensowana po przemieszczeniu, ekstruder przepycha tę dodatkową ilość filamentu. To opcja jest rzadko potrzebna."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Dodatkowa ilość dla powrotu (Zmiana narzędzia)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Jeśli retrakcja jest korygowana po zmianie narzędzia, extruder przepchnie taką dodatkową ilość filamentu."
@@ -17099,6 +17200,14 @@ msgstr "Zmiana narzędzia na wieży czyszczącej"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "Wymusza przemieszczenie głowicy do wieży czyszczącej przed wydaniem polecenia zmiany narzędzia (Tx). Dotyczy tylko drukarek wieloekstruderowych (wielogłowicowych) korzystających z wieży czyszczącej typu 2. Domyślnie Orca pomija to przemieszczenie na maszynach wielogłowicowych, ponieważ zamianą głowic zajmuje się oprogramowanie sprzętowe, przez co polecenie Tx może zostać wydane nad drukowaną częścią. Włącz tę opcję, jeśli chcesz, aby zmiana narzędzia zawsze następowała nad wieżą czyszczącą."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Czekaj na temperaturę na wieży czyszczącej"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Pobiera nowe narzędzie bez czekania, aż osiągnie temperaturę druku, przejeżdża do wieży czyszczącej i tam czeka na temperaturę, tuż przed płukaniem. Materiał wyciekający podczas nagrzewania trafia na wieżę zamiast na model, a przejazd nakłada się na nagrzewanie. Dotyczy wyłącznie drukarek z wieloma ekstruderami (wieloma głowicami) używających wieży czyszczącej typu 2. Firmware ani makro zmiany narzędzia nie mogą samodzielnie czekać na temperaturę. Gdy opcja jest wyłączona, oczekiwanie na temperaturę jest wysyłane bezpośrednio po poleceniu zmiany narzędzia."
+
msgid "No sparse layers (beta)"
msgstr "Warstwy bez czyszczenia (beta)"
@@ -20445,10 +20554,6 @@ msgstr "Fizyczna drukarka"
msgid "Print Host upload"
msgstr "Przesyłanie do hosta drukowania"
-# AI Translated
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Wybierz implementację agenta sieciowego do komunikacji z drukarką. Dostępni agenci są rejestrowani przy uruchamianiu."
-
# AI Translated
msgid "Select a Flashforge printer"
msgstr "Wybierz drukarkę Flashforge"
@@ -21401,9 +21506,6 @@ msgstr "Wystąpił problem podczas próby logowania, proszę spróbować ponowni
msgid "User canceled."
msgstr "Anulowane przez użytkownika."
-msgid "Head diameter"
-msgstr "Średnica łącznika"
-
msgid "Max angle"
msgstr "Maksymalny kąt"
@@ -22234,6 +22336,22 @@ msgstr ""
"Unikaj odkształceń\n"
"Czy wiesz, że podczas drukowania filamentami podatnymi na odkształcenia, takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może zmniejszyć prawdopodobieństwo odkształceń?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "Wysokość warstwy jest zbyt mała.\n"
+#~ "Ustawione zostanie na min_layer_height\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "Wysokość warstwy przekracza limit w Ustawieniach Drukarki -> Extruder -> Limity wysokości warstwy, co może powodować problemy z jakością druku."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "Dostosować automatycznie do ustawionego zakresu?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Średnica łącznika"
+
#~ msgid "Print order within a single layer."
#~ msgstr "Kolejność druku obiektów w obrębie jednej warstwy. Domyślnie lub według listy obiektów"
diff --git a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po
index 0d777ec32e..1b39d4a159 100644
--- a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po
+++ b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: 2026-07-26 11:14-0300\n"
"Last-Translator: Alexandre Folle de Menezes\n"
"Language-Team: Portuguese, Brazilian\n"
@@ -217,7 +217,6 @@ msgstr "Os filamentos %s são duros e quebradiços, podendo se romper no AMS. E
msgid "%s has a risk of nozzle clogging when using 0.4, 0.6, 0.8mm high-flow nozzles. Use with caution."
msgstr "%s apresenta risco de entupimento do bico ao utilizar bicos de alto fluxo de 0,4, 0,6 ou 0,8 mm. Use com cautela."
-# AI Translated
#, c-format, boost-format
msgid "%s may fail to load or unload due to the Filament Track Switch. If you wish to continue."
msgstr "%s pode falhar ao carregar ou descarregar devido ao Filament Track Switch. Se você deseja continuar."
@@ -347,7 +346,6 @@ msgstr "Leitura "
msgid "Please wait"
msgstr "Por favor, aguarde"
-# AI Translated
msgid "Reading"
msgstr "Lendo"
@@ -700,7 +698,6 @@ msgstr "Redefinir posição"
msgid "Reset rotation"
msgstr "Redefinir rotação"
-# AI Translated
msgid "World"
msgstr "Mundo"
@@ -988,7 +985,6 @@ msgstr "Plano de corte com cavidade é inválido"
msgid "Connector"
msgstr "Conector"
-# AI Translated
#, boost-format
msgid ""
"Objects(%1%) have duplicated connectors. Some connectors may be missing in slicing result.\n"
@@ -2032,7 +2028,6 @@ msgstr ""
"\n"
"Se você não usava o Bambu Cloud para sincronizar perfis, esta mudança não afeta você e você pode ignorar esta mensagem com segurança."
-# AI Translated
msgid "Profile syncing change"
msgstr "Alteração de sincronização de perfil"
@@ -3429,7 +3424,7 @@ msgid "AMS has not been initialized. Please initialize it before use."
msgstr "O AMS não foi inicializado. Por favor, inicialize-o antes de usar."
msgid "Changing fan speed during printing may affect print quality, please choose carefully."
-msgstr "Mudar a velocidade do ventilador durante a impressão pode afetar a qualidade da impressão. Escolha com cuidado."
+msgstr "Mudar a velocidade da ventoinha durante a impressão pode afetar a qualidade da impressão. Escolha com cuidado."
msgid "Change Anyway"
msgstr "Mudar Mesmo Assim"
@@ -3441,7 +3436,7 @@ msgid "Filter"
msgstr "Filtrar"
msgid "Enabling filtration redirects the right fan to filter gas, which may reduce cooling performance."
-msgstr "Ativar a filtragem redireciona o ventilador direito para filtrar o gás, o que pode reduzir o desempenho de resfriamento."
+msgstr "Ativar a filtragem redireciona a ventoinha direito para filtrar o gás, o que pode reduzir o desempenho de resfriamento."
msgid "Enabling filtration during printing may reduce cooling and affect print quality. Please choose carefully."
msgstr "Habilitar a filtragem durante a impressão pode reduzir o resfriamento e afetar a qualidade da impressão. Escolha com cuidado."
@@ -3474,7 +3469,7 @@ msgid "Top"
msgstr "Topo"
msgid "The fan controls the temperature during printing to improve print quality. The system automatically adjusts the fan's switch and speed according to different printing materials."
-msgstr "O ventilador controla a temperatura durante a impressão para melhorar a qualidade da impressão. O sistema ajusta automaticamente a ativação e a velocidade do ventilador de acordo com os diferentes materiais de impressão."
+msgstr "A ventoinha controla a temperatura durante a impressão para melhorar a qualidade da impressão. O sistema ajusta automaticamente a ativação e a velocidade da ventoinha de acordo com os diferentes materiais de impressão."
msgid "Cooling mode is suitable for printing PLA/PETG/TPU materials and filters the chamber air."
msgstr "O modo de resfriamento é adequado para impressão com materiais PLA/PETG/TPU e filtra o ar da câmara."
@@ -4582,6 +4577,23 @@ msgstr "A temperatura da câmara atual está mais alta do que a temperatura segu
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "A temperatura mínima da câmara (%d℃) é superior à temperatura alvo da câmara (%d℃). O valor mínimo é o limite no qual a impressão começa enquanto a câmara continua aquecendo em direção ao alvo; portanto, não deve execedê-lo. O valor será limitado ao alvo."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "A altura da camada é muito pequena. Ela será definida para o mínimo (%g mm)."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "A altura da camada está fora dos limites definidos em Configurações da Impressora -> Extrusora -> Limites de altura da camada, isso pode causar problemas de qualidade de impressão."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "Ajustar automaticamente para o limite (%g mm)?"
+
+msgid "Adjust"
+msgstr "Ajustar"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4701,6 +4713,13 @@ msgstr ""
"Sim - Habilitar Gerador de Parede Arachne\n"
"Não - Desabilitar Gerador de Parede Arachne e setar o modo [Deslocamento] da Textura Difusa"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Raio da orelha da borda"
+
+msgid "Brim width"
+msgstr "Largura da borda"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "O modo espiral só funciona quando as voltas da parede são 1, o suporte está desativado, a detecção de aglomeração por sondagem está desativada, as camadas da casca de topo são 0, a densidade de preenchimento esparso é 0 e o tipo de timelapse é tradicional."
@@ -4798,7 +4817,7 @@ msgid "Pause (AMS offline)"
msgstr "Pausa (AMS offline)"
msgid "Pause (low speed of the heatbreak fan)"
-msgstr "Pausa (baixa velocidade do ventilador do heatbreak)"
+msgstr "Pausa (baixa velocidade da ventoinha do heatbreak)"
msgid "Pause (chamber temperature control problem)"
msgstr "Pausa (problema no controle de temperatura da câmara)"
@@ -4922,7 +4941,7 @@ msgstr "Para garantir sua segurança, certas tarefas de processamento (como o la
#, c-format, boost-format
msgid "The chamber temperature is too high, which may cause the filament to soften. Please wait until the chamber temperature drops below %d℃. You may open the front door or enable fans to cool down."
-msgstr "A temperatura da câmara está muito alta, o que pode causar o amolecimento do filamento. Aguarde até que a temperatura da câmara caia abaixo de %d℃. Você pode abrir a porta frontal ou ligar os ventiladores para resfriar."
+msgstr "A temperatura da câmara está muito alta, o que pode causar o amolecimento do filamento. Aguarde até que a temperatura da câmara caia abaixo de %d℃. Você pode abrir a porta frontal ou ligar as ventoinhas para resfriar."
#, c-format, boost-format
msgid "AMS temperature is too high, which may cause the filament to soften. Please wait until the AMS temperature drops below %d℃."
@@ -4955,6 +4974,14 @@ msgstr "Falha ao gerar o G-code de calibração"
msgid "Calibration error"
msgstr "Erro de calibração"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "Esta impressora não está configurada com o hardware que este controle requer."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Este controle não é suportado nesta impressora."
+
msgid "Network unavailable"
msgstr "Rede indisponível"
@@ -5208,7 +5235,7 @@ msgid "Jerk"
msgstr "Jerk"
msgid "Fan Speed"
-msgstr "Velocidade do Ventilador"
+msgstr "Velocidade da Ventoinha"
msgid "Flow"
msgstr "Fluxo"
@@ -5314,7 +5341,7 @@ msgid "Flow: "
msgstr "Fluxo: "
msgid "Fan: "
-msgstr "Ventilador: "
+msgstr "Ventoinha: "
msgid "Temperature: "
msgstr "Temperatura: "
@@ -5350,7 +5377,7 @@ msgid "Flow rate"
msgstr "Taxa de fluxo"
msgid "Fan speed"
-msgstr "Velocidade do ventilador"
+msgstr "Velocidade da ventoinha"
msgid "Time"
msgstr "Tempo"
@@ -5464,7 +5491,7 @@ msgid "Jerk (mm/s)"
msgstr "Jerk (mm/s)"
msgid "Fan speed (%)"
-msgstr "Velocidade do ventilador (%)"
+msgstr "Velocidade da ventoinha (%)"
msgid "Temperature (℃)"
msgstr "Temperatura (℃)"
@@ -5798,7 +5825,7 @@ msgstr "Volume:"
msgid "Size:"
msgstr "Tamanho:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "Foram encontrados conflitos de caminhos de G-code na camada %d, Z = %.2lfmm. Por favor, separe mais os objetos em conflito (%s <-> %s)."
@@ -5979,6 +6006,10 @@ msgstr "Multi-dispositivo"
msgid "Project"
msgstr "Projeto"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Dispositivo (Web)"
+
msgid "Yes"
msgstr "Sim"
@@ -7368,12 +7399,11 @@ msgstr "Inferior"
msgid "Plugin Selection"
msgstr "Seleção de plugins"
-# AI Translated
msgid ""
"No plugins capabilities available for this type.\n"
"Enable or install some to use."
msgstr ""
-"Nenhum recurso de plugins disponível para este tipo.\n"
+"Nenhuma capacidade de plugin disponível para este tipo.\n"
"Ative ou instale algum para usar."
msgid "There is stringing-prone filament in the current print job. Enabling nozzle clumping detection now may degrade print quality. Are you sure you want to enable it?"
@@ -8026,19 +8056,19 @@ msgstr "Diretório para substituição não foi selecionado"
msgid "Replaced with 3D files from directory:\n"
msgstr "Substituído por arquivos 3D do diretório:\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ %s Ignorados: mesmo arquivo.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ %s Ignorados: arquivo não existe.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ %s Ignorados: falha ao substituir.\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ %s Substituídos.\n"
@@ -8765,6 +8795,18 @@ msgstr "Com esta opção habilitada, você pode enviar uma tarefa para vários d
msgid "Pop up to select filament grouping mode"
msgstr "Abrir seleção do modo de agrupamento de filamento"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Páginas de plugin visíveis"
+
+# AI Translated
+msgid "pages"
+msgstr "páginas"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Número de páginas de plugin exibidas como abas fixas antes que as páginas restantes sejam agrupadas em um menu suspenso na última aba."
+
msgid "Behaviour"
msgstr "Comportamento"
@@ -9119,6 +9161,18 @@ msgstr "Mostrar predefinições não suportadas"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Exibir predefinições incompatíveis e não suportadas nas listas de impressora e filamento. Essas predefinições não podem ser selecionadas."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Experimental) Usar agentes de impressora em vez de hosts de impressão"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Encaminha os trabalhos de impressão de impressoras que não são Bambu pelos agentes de plugin de impressora em vez do fluxo clássico de envio ao host de impressão.\n"
+"Quando desativado, o OrcaSlicer usa o comportamento antigo do host de impressão."
+
msgid "Experimental Features"
msgstr "Recursos Experimentais"
@@ -9380,9 +9434,25 @@ msgstr "Predefinição do Usuário"
msgid "Preset Inside Project"
msgstr "Predefinição Dentro do Projeto"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Copia para esta predefinição todos os valores herdados da predefinição pai e remove a relação de herança. Predefinições compatíveis apenas com a predefinição pai podem deixar de ser suportadas."
+
msgid "Detach from parent"
msgstr "Separar do pai"
+# AI Translated
+msgid "Unique preset"
+msgstr "Predefinição única"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Predefinição pai"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Esta predefinição não herda de outra predefinição."
+
msgid "Name is unavailable."
msgstr "O nome não está disponível."
@@ -9758,7 +9828,7 @@ msgid "Unable to automatically match to suitable filament. Please click to manua
msgstr "Não foi possível encontrar automaticamente um filamento adequado. Clique para selecionar manualmente."
msgid "Install toolhead enhanced cooling fan to prevent filament softening."
-msgstr "Instale um ventilador de resfriamento aprimorado no cabeçote de impressão para evitar o amolecimento do filamento."
+msgstr "Instale uma ventoinha de resfriamento aprimorado no cabeçote de impressão para evitar o amolecimento do filamento."
msgid "Smooth Cool Plate"
msgstr "Placa Fria Lisa"
@@ -10102,24 +10172,6 @@ msgstr "Tem certeza de que deseja habilitar esta opção?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "Padrões de preenchimento são projetados para lidar com a rotação automaticamente para garantir a impressão adequada e atingir os efeitos pretendidos (Ex. Giroide, Cúbico). Girar o padrão de preenchimento esparso atual pode causar suporte insuficiente. Prossiga com cautela e verifique cuidadosamente se há possíveis problemas de impressão. Tem certeza de que deseja habilitar esta opção?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"A altura da camada é muito pequena.\n"
-"Ela será definida como altura mínima da camada\n"
-"A altura da camada é muito pequena.\n"
-"Ela será definida como altura mínima da camada\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "A altura da camada excede o limite em Configurações da Impressora -> Extrusora -> Limites de altura da camada, isso pode causar problemas de qualidade de impressão."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "Ajustar automaticamente à faixa definida?\n"
-
-msgid "Adjust"
-msgstr "Ajustar"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "Funcionalidade experimental: Retrair e cortar o filamento a uma distância maior durante mudanças de filamento para minimizar a purga. Embora possa reduzir notavelmente a purga, ele também pode elevar o risco de bolhas no bico ou outras complicações de impressão."
@@ -10314,6 +10366,9 @@ msgstr "Palavras-chave reservadas encontradas"
msgid "Setting Overrides"
msgstr "Sobrescrever configurações"
+msgid "Retraction when switching material"
+msgstr "Retração ao trocar material"
+
msgid "Basic information"
msgstr "Informações básicas"
@@ -10382,25 +10437,25 @@ msgid "Cooling for specific layer"
msgstr "Resfriamento para camada específica"
msgid "Part cooling fan"
-msgstr "Ventilador de resfriamento de peças"
+msgstr "Ventoinha de resfriamento de peças"
msgid "Min fan speed threshold"
-msgstr "Limiar de velocidade mínima do ventilador"
+msgstr "Limiar de velocidade mínima da ventoinha"
msgid "The part cooling fan will run at the minimum fan speed when the estimated layer time is longer than the threshold value. When the layer time is shorter than the threshold, the fan speed will be interpolated between the minimum and maximum fan speed according to layer printing time."
-msgstr "O ventilador de resfriamento de peças irá girar na velocidade mínima quando o tempo estimado da camada for mais longo do que o valor de limiar. Quando o tempo da camada for mais curto que o limiar, a velocidade do ventilador é interpolada entre a velocidade mínima e máxima de acordo com o tempo de impressão da camada."
+msgstr "A ventoinha de resfriamento de peças irá girar na velocidade mínima quando o tempo estimado da camada for mais longo do que o valor de limiar. Quando o tempo da camada for mais curto que o limiar, a velocidade da ventoinha é interpolada entre a velocidade mínima e máxima de acordo com o tempo de impressão da camada."
msgid "Max fan speed threshold"
-msgstr "Limiar de velocidade máxima do ventilador"
+msgstr "Limiar de velocidade máxima da ventoinha"
msgid "The part cooling fan will run at maximum speed when the estimated layer time is shorter than the threshold value."
-msgstr "O ventilador de resfriamento de peças irá girar na velocidade máxima quando o tempo estimado da camada for mais curto que o limiar."
+msgstr "A ventoinha de resfriamento de peças irá girar na velocidade máxima quando o tempo estimado da camada for mais curto que o limiar."
msgid "Auxiliary part cooling fan"
-msgstr "Ventilador auxiliar de resfriamento de peças"
+msgstr "Ventoinha auxiliar de resfriamento de peças"
msgid "Exhaust fan"
-msgstr "Ventilador de exaustão"
+msgstr "Ventoinha de exaustão"
msgid "During print"
msgstr "Durante a impressão"
@@ -10441,6 +10496,12 @@ msgstr "Perfis de processo compatíveis"
msgid "Printable space"
msgstr "Espaço de impressão"
+msgid "Printer Agent"
+msgstr "Agente de Impressora"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Selecione a implementação do agente de rede para comunicação com a impressora. Os agentes disponíveis são registrados na inicialização."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10450,10 +10511,10 @@ msgid "G-code flavor is switched"
msgstr "Tipo de G-code está trocado"
msgid "Cooling Fan"
-msgstr "Ventilador de resfriamento"
+msgstr "Ventoinha de resfriamento"
msgid "Fan speed-up time"
-msgstr "Tempo de aceleração do ventilador"
+msgstr "Tempo de aceleração da ventoinha"
msgid "Extruder Clearance"
msgstr "Folga da extrusora"
@@ -10566,9 +10627,6 @@ msgstr "Limites de altura da camada"
msgid "Z-Hop"
msgstr "Z-Hop"
-msgid "Retraction when switching material"
-msgstr "Retração ao trocar material"
-
# AI Translated
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
@@ -11770,7 +11828,6 @@ msgstr "Erro de agrupamento: "
msgid " can not be placed in the "
msgstr " não pode ser colocado na "
-# AI Translated
msgid "Group error in manual mode. Please check nozzle count or regroup."
msgstr "Erro de agrupamento no modo manual. Por favor, verifique o número de bicos ou reagrupe."
@@ -11900,6 +11957,10 @@ msgstr " está muito perto de uma área de exclusão, e colisões vão ocorrer.\
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " está muito perto da área de detecção de aglomeração, e ocorrerão colisões.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " está parcialmente fora da área imprimível, e não pode ser impresso.\n"
+
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "As temperaturas dos bicos selecionadas são incompatíveis. A temperatura do bico de cada filamento deve estar dentro da faixa de temperatura recomendada para os demais filamentos. Caso contrário, pode ocorrer entupimento do bico ou danos à impressora."
@@ -12096,7 +12157,6 @@ msgstr "A contração de filamento não será usada porque a contração dos fil
msgid "Generating skirt & brim"
msgstr "Gerando saia e borda"
-# AI Translated
msgid ""
"Per-object skirts cannot fit between the objects in By object print sequence.\n"
"\n"
@@ -12214,9 +12274,6 @@ msgstr "Usar 3MF em vez de G-code"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Ative esta opção se a impressora aceitar um arquivo 3MF como trabalho de impressão. Quando ativada, o OrcaSlicer envia o arquivo fatiado como .gcode.3mf, em vez de um arquivo .gcode comum."
-msgid "Printer Agent"
-msgstr "Agente de Impressora"
-
msgid "Select the network agent implementation for printer communication."
msgstr "Selecione a implementação do agente de rede para comunicação com a impressora."
@@ -12277,9 +12334,8 @@ msgstr "API Key"
msgid "HTTP digest"
msgstr "Digest HTTP"
-# AI Translated
msgid "Configuration for the plugin capabilities this preset uses, overriding the global Capabilities configuration. Stored as a raw JSON array and edited through the dialog behind the button, never typed in directly."
-msgstr "Configuração dos recursos de plugin que esta predefinição usa, substituindo a configuração global de Recursos. Armazenada como um array JSON bruto e editada por meio da caixa de diálogo atrás do botão, nunca digitada diretamente."
+msgstr "Configuração das capacidades de plugin que esta predefinição usa, substituindo a configuração global de Capacidades. Armazenada como um array JSON bruto e editada por meio da caixa de diálogo atrás do botão, nunca digitada diretamente."
msgid "Avoid crossing walls"
msgstr "Evitar atravessar paredes"
@@ -12420,26 +12476,26 @@ msgid "Force cooling for overhangs and bridges"
msgstr "Resfriamento forçado para saliências e pontes"
msgid "Enable this option to allow adjustment of the part cooling fan speed for specifically for overhangs, internal and external bridges. Setting the fan speed specifically for these features can improve overall print quality and reduce warping."
-msgstr "Habilite esta opção para permitir o ajuste da velocidade do ventilador de resfriamento de peças especificamente para saliências, pontes internas e externas. Definir a velocidade do ventilador especificamente para esses recursos pode melhorar a qualidade geral da impressão e reduzir a deformação."
+msgstr "Habilite esta opção para permitir o ajuste da velocidade da ventoinha de resfriamento de peças especificamente para saliências, pontes internas e externas. Definir a velocidade da ventoinha especificamente para esses recursos pode melhorar a qualidade geral da impressão e reduzir a deformação."
msgid "Overhangs and external bridges fan speed"
-msgstr "Velocidade do ventilador para saliências e pontes externas"
+msgstr "Velocidade da ventoinha para saliências e pontes externas"
msgid ""
"Use this part cooling fan speed when printing bridges or overhang walls with an overhang threshold that exceeds the value set in the 'Overhangs cooling threshold' parameter above. Increasing the cooling specifically for overhangs and bridges can improve the overall print quality of these features.\n"
"\n"
"Please note, this fan speed is clamped on the lower end by the minimum fan speed threshold set above. It is also adjusted upwards up to the maximum fan speed threshold when the minimum layer time threshold is not met."
msgstr ""
-"Use esta parte da velocidade do ventilador de resfriamento ao imprimir pontes ou paredes salientes com um limite de saliência que exceda o valor definido no parâmetro 'Limiar de resfriamento de saliências' acima. Aumentar o resfriamento especificamente para saliências e pontes pode melhorar a qualidade geral de impressão desses recursos.\n"
+"Use esta parte da velocidade da ventoinha de resfriamento ao imprimir pontes ou paredes salientes com um limite de saliência que exceda o valor definido no parâmetro 'Limiar de resfriamento de saliências' acima. Aumentar o resfriamento especificamente para saliências e pontes pode melhorar a qualidade geral de impressão desses recursos.\n"
"\n"
-"Observe que esta velocidade do ventilador é fixada na extremidade inferior pelo limiar mínimo de velocidade do ventilador definido acima. Ela também é ajustada para cima até o limiar máximo de velocidade do ventilador quando o limiar mínimo de tempo da camada não é atingido."
+"Observe que esta velocidade da ventoinha é fixada na extremidade inferior pelo limiar mínimo de velocidade da ventoinha definido acima. Ela também é ajustada para cima até o limiar máximo de velocidade da ventoinha quando o limiar mínimo de tempo da camada não é atingido."
msgid "Overhang cooling activation threshold"
msgstr "Limiar de ativação de resfriamento de saliência"
#, no-c-format, no-boost-format
msgid "When the overhang exceeds this specified threshold, force the cooling fan to run at the 'Overhang Fan Speed' set below. This threshold is expressed as a percentage, indicating the portion of each line's width that is unsupported by the layer beneath it. Setting this value to 0% forces the cooling fan to run for all outer walls, regardless of the overhang degree."
-msgstr "Quando a saliência excede esse limiar especificado, força o ventilador de resfriamento a funcionar na 'Velocidade da ventoinha de saliência' definida abaixo. Esse limiar é expresso como uma porcentagem, indicando a parte da largura de cada linha que não é suportada pela camada abaixo dela. Definir esse valor como 0% força o ventilador de resfriamento a funcionar para todas as paredes externas, independentemente do grau de saliência."
+msgstr "Quando a saliência excede esse limiar especificado, força a ventoinha de resfriamento a funcionar na 'Velocidade da ventoinha de saliência' definida abaixo. Esse limiar é expresso como uma porcentagem, indicando a parte da largura de cada linha que não é suportada pela camada abaixo dela. Definir esse valor como 0% força a ventoinha de resfriamento a funcionar para todas as paredes externas, independentemente do grau de saliência."
msgid "External bridge infill direction"
msgstr "Direção de preenchimento de ponte externa"
@@ -12897,9 +12953,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "Velocidade de pontes internas. Se o valor for expresso como uma porcentagem, ele será calculado com base na bridge_speed. O valor padrão é 150%."
-msgid "Brim width"
-msgstr "Largura da borda"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Essa é a distância do modelo até a linha da borda mais externa."
@@ -12979,6 +13032,14 @@ msgstr ""
"A geometria será decimada antes de detectar ângulos agudos. Este parâmetro indica o comprimento mínimo da divergência para a decimação.\n"
"0 para desativar."
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Orelhas da borda apenas externas"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Gera orelhas de rato apenas no contorno externo do modelo, excluindo furos e seções fechadas."
+
msgid "upward compatible machine"
msgstr "uáquina compatível ascendente"
@@ -13026,11 +13087,9 @@ msgstr ""
msgid "As object list"
msgstr "Como lista de objetos"
-# AI Translated
msgid "Best of all (shortest path)"
msgstr "Melhor de todas (caminho mais curto)"
-# AI Translated
msgid "Snake"
msgstr "Serpentina"
@@ -13038,7 +13097,7 @@ msgid "Slow printing down for better layer cooling"
msgstr "Diminuir a velocidade de impressão para melhor resfriamento de camada"
msgid "Enable this option to slow printing speed down to ensure that the final layer time is not shorter than the layer time threshold in \"Max fan speed threshold\", so that the layer can be cooled for a longer time. This can improve the quality for small details."
-msgstr "Ative esta opção para diminuir a velocidade de impressão para que o tempo da camada final não seja menor do que o limiar de tempo da camada em \"Limiar de velocidade máxima do ventilador\", para que a camada possa ser resfriada um tempo mais longo. Isso pode melhorar a qualidade para detalhes pequenos."
+msgstr "Ative esta opção para diminuir a velocidade de impressão para que o tempo da camada final não seja menor do que o limiar de tempo da camada em \"Limiar de velocidade máxima da ventoinha\", para que a camada possa ser resfriada um tempo mais longo. Isso pode melhorar a qualidade para detalhes pequenos."
msgid "Normal printing"
msgstr "Impressão normal"
@@ -13093,16 +13152,16 @@ msgid "Enable this to override the fan speed set in custom G-code after print co
msgstr "Habilite para substituir a velocidade da ventoinha definida no G-code personalizado após a conclusão da impressão."
msgid "Speed of exhaust fan during printing. This speed will override the speed in filament custom G-code."
-msgstr "Velocidade do ventilador de exaustão durante a impressão. Esta velocidade substituirá a velocidade no G-code personalizado do filamento."
+msgstr "Velocidade da ventoinha de exaustão durante a impressão. Esta velocidade substituirá a velocidade no G-code personalizado do filamento."
msgid "Speed of exhaust fan after printing completes."
-msgstr "Velocidade do ventilador de exaustão após a conclusão da impressão."
+msgstr "Velocidade da ventoinha de exaustão após a conclusão da impressão."
msgid "No cooling for the first"
msgstr "Sem resfriamento para as primeiras"
msgid "Turn off all cooling fans for the first few layers. This can be used to improve build plate adhesion."
-msgstr "Desligar todos os ventiladores de resfriamento para as primeiras camadas. Isso pode ser usado para obter uma melhor adesão à placa de impressão."
+msgstr "Desligar todos as ventoinhas de resfriamento para as primeiras camadas. Isso pode ser usado para obter uma melhor adesão à placa de impressão."
msgid "Don't support bridges"
msgstr "Não suportar pontes"
@@ -13278,11 +13337,9 @@ msgstr "Densidade da superfície superior"
msgid "Density of top surface layer. A value of 100% creates a fully solid, smooth top layer. Reducing this value results in a textured top surface, according to the chosen top surface pattern. A value of 0% will result in only the walls on the top layer being created. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion."
msgstr "Densidade da camada superior. Um valor de 100% cria uma camada superior totalmente sólida e lisa. Reduzir esse valor resulta em uma superfície superior texturizada, de acordo com o padrão de superfície superior escolhido. Um valor de 0% resultará na criação apenas das paredes da camada superior. Destinado a fins estéticos ou funcionais, não para corrigir problemas como extrusão excessiva."
-# AI Translated
msgid "Top surface expansion"
msgstr "Expansão da superfície superior"
-# AI Translated
msgid ""
"Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n"
"Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane. Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top. The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."
@@ -13290,11 +13347,9 @@ msgstr ""
"Expande as superfícies superiores por esta distância para conectar superfícies superiores distintas e preencher lacunas.\n"
"Útil para casos em que a superfície superior é interrompida por um recurso elevado, como um texto sobre um plano. Expandi-la remove os buracos sob esses recursos e cria um caminho contínuo com melhor acabamento para imprimir por cima. A expansão é aplicada à superfície superior original, antes de qualquer outro processamento, como detecção de ponte ou de saliência."
-# AI Translated
msgid "Top expansion wall margin"
msgstr "Margem de parede da expansão superior"
-# AI Translated
msgid ""
"Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n"
"This can cause contraction marks (such as the hull line) on the outer walls.\n"
@@ -13304,11 +13359,9 @@ msgstr ""
"Isso pode causar marcas de contração (como a linha do casco) nas paredes externas.\n"
"Ao adicionar uma pequena margem, essa contração não ocorrerá diretamente nas paredes, evitando assim uma marca visível."
-# AI Translated
msgid "Top expansion direction"
msgstr "Direção da expansão superior"
-# AI Translated
msgid ""
"Direction in which the top surface expansion grows.\n"
" - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n"
@@ -13335,11 +13388,9 @@ msgstr "Padrão de superfície inferior"
msgid "This is the line pattern of bottom surface infill, not including bridge infill."
msgstr "Este é o padrão de linha do preenchimento da superfície inferior, não incluindo o preenchimento de ponte."
-# AI Translated
msgid "Bottom surface density"
msgstr "Densidade da superfície inferior"
-# AI Translated
msgid ""
"Density of the bottom surface layer. Intended for aesthetic or functional purposes, not to fix issues such as over-extrusion.\n"
"WARNING: Lowering this value may negatively affect bed adhesion."
@@ -13347,31 +13398,27 @@ msgstr ""
"Densidade da camada da superfície inferior. Destinada a fins estéticos ou funcionais, não a corrigir problemas como sobre-extrusão.\n"
"AVISO: reduzir este valor pode afetar negativamente a aderência à mesa."
-# AI Translated
msgid "Top surface fill order"
msgstr "Ordem de preenchimento da superfície superior"
-# AI Translated
msgid ""
"Direction in which top surfaces are filled when using a center-based pattern (Concentric, Archimedean Chords, Octagram Spiral).\n"
"Outward starts at the center of the surface, so any excess material is pushed towards the edge where it is least visible. Inward starts at the edge and ends with the tight curves at the center.\n"
"Default uses shortest-path ordering, which may run in either direction."
msgstr ""
-"Direção em que as superfícies superiores são preenchidas ao usar um padrão baseado no centro (Concêntrico, Cordas de Arquimedes, Espiral Octograma).\n"
+"Direção em que as superfícies superiores são preenchidas ao usar um padrão baseado no centro (Concêntrico, Cordas de Arquimedes, Espiral de Octograma).\n"
"Para fora começa no centro da superfície, de modo que qualquer excesso de material seja empurrado em direção à borda, onde é menos visível. Para dentro começa na borda e termina com as curvas fechadas no centro.\n"
"O padrão usa a ordenação de caminho mais curto, que pode seguir em qualquer direção."
-# AI Translated
msgid "Bottom surface fill order"
msgstr "Ordem de preenchimento da superfície inferior"
-# AI Translated
msgid ""
"Direction in which bottom surfaces are filled when using a center-based pattern (Concentric, Archimedean Chords, Octagram Spiral).\n"
"Inward starts each surface with the wider outer curves, which improves first layer adhesion on build plates where the tight curves at the center may not stick. Outward starts at the center, pushing any excess material towards the edge.\n"
"Default uses shortest-path ordering, which may run in either direction."
msgstr ""
-"Direção em que as superfícies inferiores são preenchidas ao usar um padrão baseado no centro (Concêntrico, Cordas de Arquimedes, Espiral Octograma).\n"
+"Direção em que as superfícies inferiores são preenchidas ao usar um padrão baseado no centro (Concêntrico, Cordas de Arquimedes, Espiral de Octograma).\n"
"Para dentro começa cada superfície com as curvas externas mais largas, o que melhora a aderência da primeira camada em mesas onde as curvas fechadas no centro podem não aderir. Para fora começa no centro, empurrando qualquer excesso de material em direção à borda.\n"
"O padrão usa a ordenação de caminho mais curto, que pode seguir em qualquer direção."
@@ -13399,19 +13446,15 @@ msgstr "Limiar de pequenos perímetros"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Isso define o limiar para o comprimento do perímetro pequeno. O limiar padrão é 0 mm."
-# AI Translated
msgid "Small support perimeters"
msgstr "Pequenos perímetros de suporte"
-# AI Translated
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr "Igual a \"Pequenos perímetros\", mas para suportes. Esta configuração separada afetará a velocidade do suporte para áreas <= `small_support_perimeter_threshold`. Se expressa como uma porcentagem (por exemplo: 80%), será calculada com base na configuração de velocidade de suporte ou de interface de suporte acima. Defina como zero para automático."
-# AI Translated
msgid "Small support perimeters threshold"
-msgstr "Limite de pequenos perímetros de suporte"
+msgstr "Limiar de pequenos perímetros de suporte"
-# AI Translated
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr "Isto define o limite para o comprimento de pequenos perímetros de suporte. O limite padrão é 0mm."
@@ -13603,7 +13646,6 @@ msgstr ""
msgid "Enable adaptive pressure advance within features (beta)"
msgstr "Habilitar pressure advance adaptativo nos recursos (beta)"
-# AI Translated
msgid ""
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
@@ -13635,10 +13677,10 @@ msgid "Default line width if other line widths are set to 0. If expressed as a %
msgstr "Largura de linha padrão se outras larguras de linha estiverem definidas como 0. Se expresso como %, será calculado sobre o diâmetro do bico."
msgid "Keep fan always on"
-msgstr "Manter o ventilador sempre ligado"
+msgstr "Manter a ventoinha sempre ligado"
msgid "Enabling this setting means that part cooling fan will never stop entirely and will instead run at least at minimum speed to reduce the frequency of starting and stopping."
-msgstr "Habilitar esta configuração significa que o ventilador de resfriamento da peça nunca será desligado completamente e funcionará pelo menos na velocidade mínima para reduzir a frequência de inícios e paradas."
+msgstr "Habilitar esta configuração significa que a ventoinha de resfriamento da peça nunca será desligado completamente e funcionará pelo menos na velocidade mínima para reduzir a frequência de inícios e paradas."
msgid "Don't slow down outer walls"
msgstr "Não desacelerar as paredes externas"
@@ -13658,7 +13700,7 @@ msgid "Layer time"
msgstr "Tempo da camada"
msgid "The part cooling fan will be enabled for layers where the estimated time is shorter than this value. Fan speed is interpolated between the minimum and maximum fan speeds according to layer printing time."
-msgstr "O ventilador de resfriamento de peças será ativado para camadas cujo tempo estimado seja mais curto que esse valor. A velocidade do ventilador é interpolada entre as velocidades mínima e máxima do ventilador de acordo com o tempo de impressão da camada."
+msgstr "A ventoinha de resfriamento de peças será ativado para camadas cujo tempo estimado seja mais curto que esse valor. A velocidade da ventoinha é interpolada entre as velocidades mínima e máxima da ventoinha de acordo com o tempo de impressão da camada."
msgid "s"
msgstr "s"
@@ -13706,7 +13748,6 @@ msgstr "Temperatura de purga"
msgid "Temperature when flushing filament. 0 indicates the upper bound of the recommended nozzle temperature range."
msgstr "Temperatura ao purgar filamento. 0 indica o limite superior da faixa de temperatura recomendada para o bico."
-# AI Translated
msgid "Flush temperature used in fast purge mode."
msgstr "Temperatura de purga usada no modo de purga rápida."
@@ -13972,11 +14013,9 @@ msgstr "Filamento imprimível"
msgid "The filament is printable in extruder."
msgstr "O filamento é imprimível na extrusora."
-# AI Translated
msgid "Filament-extruder compatibility"
msgstr "Compatibilidade filamento-extrusora"
-# AI Translated
msgid "A single 32-bit int encoding the compatibility level of a filament across all extruders (up to 10). Every 3 bits represent one extruder (bits [3*i, 3*i+2] for extruder i). 0: printable, 1: error, 2: critical warning, 3: warning, 4-7: reserved."
msgstr "Um único inteiro de 32 bits que codifica o nível de compatibilidade de um filamento em todas as extrusoras (até 10). Cada 3 bits representam uma extrusora (bits [3*i, 3*i+2] para a extrusora i). 0: imprimível, 1: erro, 2: aviso crítico, 3: aviso, 4-7: reservado."
@@ -14016,11 +14055,9 @@ msgstr "Direção do preenchimento sólido"
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Ângulo para padrão de preenchimento sólido, que controla a direção inicial ou principal da linha."
-# AI Translated
msgid "Top layer direction"
msgstr "Direção da camada superior"
-# AI Translated
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
@@ -14028,11 +14065,9 @@ msgstr ""
"Ângulo fixo para o preenchimento sólido superior e as linhas de alisamento.\n"
"Defina como -1 para seguir a direção padrão do preenchimento sólido."
-# AI Translated
msgid "Bottom layer direction"
msgstr "Direção da camada inferior"
-# AI Translated
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
@@ -14047,11 +14082,9 @@ msgstr "Densidade do preenchimento esparso"
msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used."
msgstr "Densidade do preenchimento esparso interno, 100% transforma todo o preenchimento esparso em preenchimento sólido e será usado o padrão de preenchimento sólido interno."
-# AI Translated
msgid "Align directions to model"
msgstr "Alinhar direções ao modelo"
-# AI Translated
msgid ""
"Aligns infill, bridge, ironing, and top/bottom surface directions to follow the model's orientation on the build plate.\n"
"When enabled, these directions rotate together with the model so the printed features keep their intended orientation relative to the part, preserving optimal strength and surface characteristics regardless of how the model is placed."
@@ -14071,11 +14104,9 @@ msgstr "Multilinhas de Preenchimento"
msgid "Using multiple lines for the infill pattern, if supported by infill pattern."
msgstr "Usar múltiplas linhas para o padrão de preenchimento, se suportado pelo padrão de preenchimento."
-# AI Translated
msgid "Z-buckling bias optimization (experimental)"
msgstr "Otimização de tendência à flambagem em Z (experimental)"
-# AI Translated
#, no-c-format, no-boost-format
msgid "Tightens the gyroid wave along the Z (vertical) axis at low infill density to shorten the effective vertical column length and improve Z-axis compression buckling resistance. Filament use is preserved. No effect at ~30% sparse infill density and above. Only applies when Sparse infill pattern is set to Gyroid."
msgstr "Aperta a onda giroide ao longo do eixo Z (vertical) em baixa densidade de preenchimento para encurtar o comprimento efetivo da coluna vertical e melhorar a resistência à flambagem por compressão no eixo Z. O uso de filamento é preservado. Sem efeito em densidade de preenchimento esparso de ~30% ou mais. Aplica-se apenas quando o padrão de Preenchimento esparso está definido como Giroide."
@@ -14143,6 +14174,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "Giroide"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Fator de suavização do preenchimento esparso"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Controla o quanto os cantos do preenchimento esparso são arredondados. 0% mantém o trajeto original com cantos vivos, enquanto 100% produz as maiores curvas possíveis entre linhas de preenchimento adjacentes."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Esta é a aceleração do preenchimento da superfície superior. Usar um valor menor pode melhorar a qualidade da superfície superior."
@@ -14198,13 +14237,12 @@ msgstr "Jerk para primeira camada."
msgid "Jerk for travel."
msgstr "Jerk para deslocamento."
-# AI Translated
msgid ""
"Travel jerk of first layer.\n"
"The percentage value is relative to Travel Jerk."
msgstr ""
"Jerk de deslocamento da primeira camada.\n"
-"O valor percentual é relativo ao Jerk de deslocamento."
+"O valor percentual é relativo ao Jerk de Deslocamento."
msgid "Line width of the first layer. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Largura da linha da primeira camada. Se expresso como uma %, será calculado sobre o diâmetro do bico."
@@ -14243,10 +14281,10 @@ msgid "Nozzle temperature for printing the first layer with this filament"
msgstr "Temperatura do bico para imprimir a primeira camada com este filamento"
msgid "Full fan speed at layer"
-msgstr "Velocidade total do ventilador na camada"
+msgstr "Velocidade total da ventoinha na camada"
msgid "Fan speed will be ramped up linearly from zero at layer \"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower than \"close_fan_the_first_x_layers\", in which case the fan will be running at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
-msgstr "A velocidade do ventilador aumentará linearmente de zero na camada \"close_fan_the_first_x_layers\" para o máximo na camada \"full_fan_speed_layer\". \"full_fan_speed_layer\" será ignorado se for menor que \"close_fan_the_first_x_layers\", caso em que o ventilador funcionará na velocidade máxima permitida na camada \"close_fan_the_first_x_layers\" + 1."
+msgstr "A velocidade da ventoinha aumentará linearmente de zero na camada \"close_fan_the_first_x_layers\" para o máximo na camada \"full_fan_speed_layer\". \"full_fan_speed_layer\" será ignorado se for menor que \"close_fan_the_first_x_layers\", caso em que a ventoinha funcionará na velocidade máxima permitida na camada \"close_fan_the_first_x_layers\" + 1."
msgid "layer"
msgstr "camada"
@@ -14254,7 +14292,6 @@ msgstr "camada"
msgid "First layer fan speed"
msgstr "Velocidade da ventoinha na primeira camada"
-# AI Translated
msgid ""
"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n"
"From the second layer onwards, normal cooling resumes.\n"
@@ -14262,44 +14299,44 @@ msgid ""
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
-"Define uma velocidade exata do ventilador para a primeira camada, substituindo todas as outras configurações de resfriamento. Útil para proteger peças impressas em 3D da cabeça da ferramenta (por exemplo, dutos ABS/ASA no estilo Voron) de uma mesa quente. Uma pequena quantidade de fluxo de ar resfria os dutos, sem usar o resfriamento total que pode, em certas condições, prejudicar a aderência da primeira camada.\n"
+"Define uma velocidade exata da ventoinha para a primeira camada, substituindo todas as outras configurações de resfriamento. Útil para proteger peças impressas em 3D da cabeça da ferramenta (por exemplo, dutos ABS/ASA no estilo Voron) de uma mesa aquecida. Uma pequena quantidade de fluxo de ar resfria os dutos, sem usar o resfriamento total que pode, em certas condições, prejudicar a aderência da primeira camada.\n"
"A partir da segunda camada, o resfriamento normal é retomado.\n"
-"Se \"Velocidade total do ventilador na camada\" também estiver definida, o ventilador aumenta suavemente deste valor na primeira camada até o seu alvo na camada escolhida.\n"
+"Se \"Velocidade total da ventoinha na camada\" também estiver definida, a ventoinha aumenta suavemente deste valor na primeira camada até o seu alvo na camada escolhida.\n"
"Disponível apenas quando \"Sem resfriamento nas primeiras\" é 0.\n"
"Defina como -1 para desativá-la."
msgid "Support interface fan speed"
-msgstr "Velocidade do ventilador para interface de suporte"
+msgstr "Velocidade da ventoinha para interface de suporte"
msgid ""
"This part cooling fan speed is applied when printing support interfaces. Setting this parameter to a higher than regular speed reduces the layer binding strength between supports and the supported part, making them easier to separate.\n"
"Set to -1 to disable it.\n"
"This setting is overridden by disable_fan_first_layers."
msgstr ""
-"Esta velocidade do ventilador de resfriamento de peças é aplicada ao imprimir interfaces de suporte. Definir este parâmetro para uma velocidade maior que a normal reduz a força de adesão de camada entre os suportes e a peça suportada, tornando-os mais fáceis de separar.\n"
+"Esta velocidade da ventoinha de resfriamento de peças é aplicada ao imprimir interfaces de suporte. Definir este parâmetro para uma velocidade maior que a normal reduz a força de adesão de camada entre os suportes e a peça suportada, tornando-os mais fáceis de separar.\n"
"Defina como -1 para desabilitá-lo.\n"
"Esta configuração é substituída por disable_fan_first_layers."
msgid "Internal bridges fan speed"
-msgstr "Velocidade do ventilador para pontes internas"
+msgstr "Velocidade da ventoinha para pontes internas"
msgid ""
"The part cooling fan speed used for all internal bridges. Set to -1 to use the overhang fan speed settings instead.\n"
"\n"
"Reducing the internal bridges fan speed, compared to your regular fan speed, can help reduce part warping due to excessive cooling applied over a large surface for a prolonged period of time."
msgstr ""
-"A velocidade do ventilador de resfriamento de peças usada para todas as pontes internas. Defina como -1 para usar as configurações de velocidade do ventilador de sobreposição.\n"
+"A velocidade da ventoinha de resfriamento de peças usada para todas as pontes internas. Defina como -1 para usar as configurações de velocidade da ventoinha de sobreposição.\n"
"\n"
-"Reduzir a velocidade do ventilador das pontes internas, em comparação com a velocidade normal do ventilador, pode ajudar a reduzir a deformação das peças devido ao resfriamento excessivo aplicado sobre uma grande superfície por um período prolongado de tempo."
+"Reduzir a velocidade da ventoinha das pontes internas, em comparação com a velocidade normal da ventoinha, pode ajudar a reduzir a deformação das peças devido ao resfriamento excessivo aplicado sobre uma grande superfície por um período prolongado de tempo."
msgid "Ironing fan speed"
-msgstr "Velocidade do ventilador para alisamento"
+msgstr "Velocidade da ventoinha para alisamento"
msgid ""
"This part cooling fan speed is applied when ironing. Setting this parameter to a lower than regular speed reduces possible nozzle clogging due to the low volumetric flow rate, making the interface smoother.\n"
"Set to -1 to disable it."
msgstr ""
-"Esta velocidade do ventilador de resfriamento de peças é aplicada durante o alisamento. Definir este parâmetro para uma velocidade menor que a normal reduz a possibilidade de entupimento do bico devido ao baixa taxa de fluxo volumétrico, tornando a interface mais suave.\n"
+"Esta velocidade da ventoinha de resfriamento de peças é aplicada durante o alisamento. Definir este parâmetro para uma velocidade menor que a normal reduz a possibilidade de entupimento do bico devido ao baixa taxa de fluxo volumétrico, tornando a interface mais suave.\n"
"Defina como -1 para desabilitá-lo."
msgid "Ironing flow"
@@ -14584,7 +14621,7 @@ msgid "Best auto arranging position in range [0,1] w.r.t. bed shape."
msgstr "Melhor posição de arranjo automático na faixa [0,1] em relação ao formato da mesa."
msgid "Enable this option if machine has auxiliary part cooling fan. G-code command: M106 P2 S(0-255)."
-msgstr "Habilitar esta opção se a máquina tiver ventilador auxiliar de resfriamento de peças. Comando G-code: M106 P2 S(0-255)."
+msgstr "Habilitar esta opção se a máquina tiver ventoinha auxiliar de resfriamento de peças. Comando G-code: M106 P2 S(0-255)."
msgid "Fan direction"
msgstr "Direção da ventoinha"
@@ -14592,7 +14629,6 @@ msgstr "Direção da ventoinha"
msgid "Cooling fan direction of the printer"
msgstr "Direção da ventoinha de resfriamento da impressora"
-# AI Translated
msgid "Both"
msgstr "Ambos"
@@ -14602,9 +14638,9 @@ msgid ""
"It won't move fan commands into the start G-code if the 'only custom start G-code' is activated.\n"
"Use 0 to deactivate."
msgstr ""
-"Ativar o ventilador este número de segundos antes do seu tempo de início alvo (você pode usar frações de segundos). Ele assume aceleração infinita para esta estimativa de tempo e levará em conta apenas os movimentos G1 e G0 (o ajuste de arco não é suportado).\n"
-"Não moverá G-code de comandos do ventilador personalizados (eles funcionam como uma espécie de 'barreira').\n"
-"Não moverá comandos do ventilador para o início do G-code se 'apenas G-code de início personalizado' estiver ativo.\n"
+"Ativar a ventoinha este número de segundos antes do seu tempo de início alvo (você pode usar frações de segundos). Ele assume aceleração infinita para esta estimativa de tempo e levará em conta apenas os movimentos G1 e G0 (o ajuste de arco não é suportado).\n"
+"Não moverá G-code de comandos da ventoinha personalizados (eles funcionam como uma espécie de 'barreira').\n"
+"Não moverá comandos da ventoinha para o início do G-code se 'apenas G-code de início personalizado' estiver ativo.\n"
"Use 0 para desativar."
msgid "Only overhangs"
@@ -14614,15 +14650,15 @@ msgid "Will only take into account the delay for the cooling of overhangs."
msgstr "Levará em conta apenas o atraso para o resfriamento das saliências."
msgid "Fan kick-start time"
-msgstr "Tempo de inicialização do ventilador"
+msgstr "Tempo de inicialização da ventoinha"
msgid ""
"Emit a max fan speed command for this amount of seconds before reducing to target speed to kick-start the cooling fan.\n"
"This is useful for fans where a low PWM/power may be insufficient to get the fan started spinning from a stop, or to get the fan up to speed faster.\n"
"Set to 0 to deactivate."
msgstr ""
-"Emita um comando de velocidade máxima do ventilador por esta quantidade de segundos antes de reduzir para a velocidade alvo para iniciar o ventilador de resfriamento.\n"
-"Isto é útil para ventiladores onde um baixo PWM/potência pode ser insuficiente para fazer o ventilador começar a girar a partir de uma parada, ou para fazer o ventilador alcançar a velocidade mais rapidamente.\n"
+"Emita um comando de velocidade máxima da ventoinha por esta quantidade de segundos antes de reduzir para a velocidade alvo para iniciar a ventoinha de resfriamento.\n"
+"Isto é útil para ventoinhas onde um baixo PWM/potência pode ser insuficiente para fazer a ventoinha começar a girar a partir de uma parada, ou para fazer a ventoinha alcançar a velocidade mais rapidamente.\n"
"Defina como 0 para desativar."
msgid "Minimum non-zero part cooling fan speed"
@@ -14681,6 +14717,14 @@ msgstr "Com que tipo de G-code a impressora é compatível."
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "Omitir o bloco de configuração do G-code"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "Não grava o CONFIG_BLOCK (os pares chave/valor da configuração do fatiador) no arquivo G-code. Isso pode ajudar com impressoras cujo firmware trava ao interpretar essas linhas de comentário (por exemplo, Anycubic go-klipper). Observação: o arquivo G-code não conterá mais as configurações do fatiador, então importá-lo de volta no OrcaSlicer não restaurará a configuração."
+
msgid "Pellet Modded Printer"
msgstr "Impressora Modificada para Pellets"
@@ -14830,19 +14874,15 @@ msgstr "Ângulo de saliência do preenchimento"
msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb."
msgstr "O ângulo das linhas de preenchimento. 60° resultará em um favo de mel puro."
-# AI Translated
msgid "Lightning overhang angle"
-msgstr "Ângulo de saliência Relâmpago"
+msgstr "Ângulo de saliência de Relâmpago"
-# AI Translated
msgid "Maximum overhang angle for Lightning infill support propagation."
msgstr "Ângulo máximo de saliência para a propagação de suporte do preenchimento Relâmpago."
-# AI Translated
msgid "Prune angle"
msgstr "Ângulo de poda"
-# AI Translated
msgid ""
"Controls how aggressively short or unsupported Lightning branches are pruned.\n"
"This angle is converted internally to a per-layer distance."
@@ -14850,11 +14890,9 @@ msgstr ""
"Controla a agressividade com que os ramos Relâmpago curtos ou sem suporte são podados.\n"
"Este ângulo é convertido internamente em uma distância por camada."
-# AI Translated
msgid "Straightening angle"
msgstr "Ângulo de retificação"
-# AI Translated
msgid "Maximum straightening angle used to simplify Lightning branches."
msgstr "Ângulo máximo de retificação usado para simplificar os ramos Relâmpago."
@@ -15205,7 +15243,6 @@ msgstr "Força máxima do eixo Y"
msgid "The allowed maximum output force of Y axis"
msgstr "A força máxima de saída permitida do eixo Y"
-# AI Translated
msgid "N"
msgstr "N"
@@ -15215,8 +15252,9 @@ msgstr "Massa da mesa do eixo Y"
msgid "The machine bed mass load of Y axis"
msgstr "A carga de massa da mesa do equipamento no eixo Y"
+# AI Translated
msgid "g"
-msgstr "G"
+msgstr "g"
msgid "The allowed max printed mass"
msgstr "Massa máxima de impressão permitida"
@@ -15369,7 +15407,7 @@ msgstr ""
"Para desativar o modelador de entrada, use o tipo Desativar."
msgid "The part cooling fan speed may be increased when auto cooling is enabled. This is the maximum speed for the part cooling fan."
-msgstr "A velocidade do ventilador de resfriamento de peças pode ser aumentada quando o resfriamento automático está habilitado. Este é o limite máximo de velocidade do ventilador de resfriamento de peças."
+msgstr "A velocidade da ventoinha de resfriamento de peças pode ser aumentada quando o resfriamento automático está habilitado. Este é o limite máximo de velocidade da ventoinha de resfriamento de peças."
msgid "The highest printable layer height for the extruder. Used to limit the maximum layer height when enable adaptive layer height."
msgstr "A maior altura de camada imprimível para a extrusora. Usada para limitar a altura máxima da camada quando a altura da camada adaptativa está ativada."
@@ -15432,31 +15470,31 @@ msgid "Applies extrusion rate smoothing only on external perimeters and overhang
msgstr "Aplica suavização de taxa de extrusão somente em perímetros externos e saliências. Isso pode ajudar a reduzir artefatos devido a transições de velocidade bruscas em saliências visíveis externamente sem impactar a velocidade de impressão de recursos que não serão visíveis ao usuário."
msgid "Minimum speed for part cooling fan."
-msgstr "Velocidade mínima para o ventilador de resfriamento de peças."
+msgstr "Velocidade mínima para a ventoinha de resfriamento de peças."
msgid ""
"Speed of auxiliary part cooling fan. Auxiliary fan will run at this speed during printing except the first several layers which is defined by no cooling layers.\n"
"Please enable auxiliary_fan in printer settings to use this feature. G-code command: M106 P2 S(0-255)"
msgstr ""
-"Velocidade do ventilador auxiliar de resfriamento de peças. O ventilador auxiliar funcionará nesta velocidade durante a impressão, exceto nas primeiras camadas, que são definidas por camadas sem resfriamento.\n"
+"Velocidade da ventoinha auxiliar de resfriamento de peças. A ventoinha auxiliar funcionará nesta velocidade durante a impressão, exceto nas primeiras camadas, que são definidas por camadas sem resfriamento.\n"
"\n"
-"Por favor, habilite o ventilador auxiliar nas configurações da impressora para usar esta função. Comando G-code: M106 P2 S(0-255)"
+"Por favor, habilite a ventoinha auxiliar nas configurações da impressora para usar esta função. Comando G-code: M106 P2 S(0-255)"
msgid "For the first"
msgstr "Para as primeiras"
msgid "Set special auxiliary cooling fan for the first certain layers."
-msgstr "Definir um ventilador auxiliar de resfriamento específico para as primeiras camadas."
+msgstr "Definir uma ventoinha auxiliar de resfriamento específico para as primeiras camadas."
msgid ""
"Auxiliary fan speed will be ramped up linearly from layer \"For the first\" to maximum at layer \"Full fan speed at layer\".\n"
"\"Full fan speed at layer\" will be ignored if lower than \"For the first\", in which case the fan will run at maximum allowed speed at layer \"For the first\" + 1."
msgstr ""
-"A velocidade do ventilador auxiliar aumentará linearmente da camada \"Para as primeiras\" até o máximo na camada \"Velocidade total do ventilador na camada\".\n"
-"A \"Velocidade total do ventilador na camada\" será ignorada se for menor que \"Para as primeiras\", caso em que o ventilador funcionará na velocidade máxima permitida na camada \"Para as primeiras\" + 1."
+"A velocidade da ventoinha auxiliar aumentará linearmente da camada \"Para as primeiras\" até o máximo na camada \"Velocidade total da ventoinha na camada\".\n"
+"A \"Velocidade total da ventoinha na camada\" será ignorada se for menor que \"Para as primeiras\", caso em que a ventoinha funcionará na velocidade máxima permitida na camada \"Para as primeiras\" + 1."
msgid "Special auxiliary cooling fan speed, effective only for the first x layers."
-msgstr "Velocidade especial do ventilador de resfriamento auxiliar, efetiva apenas para as primeiras x camadas."
+msgstr "Velocidade especial da ventoinha de resfriamento auxiliar, efetiva apenas para as primeiras x camadas."
msgid "The lowest printable layer height for the extruder. Used to limit the minimum layer height when enable adaptive layer height."
msgstr "A menor altura de camada imprimível para a extrusora. Usada para limitar a altura mínima da camada ao habilitar a altura de camada adaptativa."
@@ -15621,11 +15659,9 @@ msgstr "Este G-code é inserido quando a função de extrusão é trocada. Ele
msgid "Plugins Used"
msgstr "Plugins Utilizados"
-# AI Translated
msgid "Plugin capabilities referenced by this preset, stored as name;uuid;capability."
-msgstr "Recursos de plugin referenciados por esta predefinição, armazenados como name;uuid;capability."
+msgstr "Capacidades de plugin referenciados por esta predefinição, armazenados como name;uuid;capability."
-# AI Translated
msgid "Python plugin(s) invoked at each slicing pipeline step to read and modify intermediate slicing data, including a final G-code post-processing step. Research/experimental."
msgstr "Plugin(s) Python invocado(s) em cada etapa do pipeline de fatiamento para ler e modificar dados intermediários de fatiamento, incluindo uma etapa final de pós-processamento do G-code. Pesquisa/experimental."
@@ -15730,6 +15766,14 @@ msgstr "Retração longa na troca de extrusora"
msgid "Retraction distance when extruder change"
msgstr "Distância de retração na troca de extrusora"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Comprimento da retração (Troca de ferramenta)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Quando a retração é acionada antes da troca de ferramenta, o filamento é puxado de volta na quantidade especificada (o comprimento é medido no filamento bruto, antes de entrar na extrusora)."
+
msgid "Z-hop height"
msgstr "Altura de Z-hop"
@@ -15823,6 +15867,10 @@ msgstr "Comprimento extra na retração"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "Quando a retração é compensada após o movimento de deslocamento, a extrusora empurrará essa quantidade adicional de filamento. Esta configuração é raramente necessária."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Comprimento extra na retração (Troca de ferramenta)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Quando a retração é compensada após a troca de ferramenta, a extrusora empurrará essa quantidade adicional de filamento."
@@ -16231,6 +16279,14 @@ msgstr "Troca de ferramenta na torre de purga"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "Força o cabeçote de impressão a se deslocar até a torre de purga antes de emitir o comando de troca de ferramenta (Tx). Relevante apenas para impressoras com múltiplas extrusoras (múltiplos cabeçotes de impressão) que utilizam uma torre de purga Tipo 2. Por padrão, o Orca ignora o deslocamento em máquinas com múltiplos cabeçotes de impressão, pois o firmware gerencia a troca do cabeçote, o que pode resultar na emissão do comando Tx acima da peça impressa. Habilite esta opção se desejar que a troca de ferramenta seja sempre emitida acima da torre de purga."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Aguardar a temperatura na torre de purga"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Pega a nova ferramenta sem esperar que ela atinja a temperatura de impressão, desloca-se até a torre de purga e aguarda a temperatura ali, logo antes de purgar. O vazamento causado pelo aquecimento cai na torre em vez do modelo, e o deslocamento acontece durante o aquecimento. Relevante apenas para impressoras multiextrusora (multicabeça) que usam uma torre de purga do tipo 2. O firmware ou a macro de troca de ferramenta não devem aguardar a temperatura por conta própria. Quando desativado, a espera de temperatura é emitida logo após o comando de troca de ferramenta."
+
msgid "No sparse layers (beta)"
msgstr "Sem camadas esparsas (beta)"
@@ -16243,11 +16299,9 @@ msgstr "Preparar todas as extrusoras de impressão"
msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
msgstr "Se ativado, todos as extrusoras de impressão serão preparados na borda frontal da mesa de impressão no início da impressão."
-# AI Translated
msgid "Toolchange ordering"
msgstr "Ordenação de troca de ferramenta"
-# AI Translated
msgid ""
"Determines the order of tool changes on each layer.\n"
"- Default: Starts with the last used extruder to minimize tool changes.\n"
@@ -16257,7 +16311,6 @@ msgstr ""
"- Padrão: começa com a última extrusora usada para minimizar as trocas de ferramenta.\n"
"- Cíclico: usa uma sequência fixa de ferramentas em cada camada. Isso sacrifica a velocidade em prol de uma melhor qualidade de superfície, pois as trocas de ferramenta extras dão mais tempo para as camadas resfriarem."
-# AI Translated
msgid "Cyclic"
msgstr "Cíclico"
@@ -16638,7 +16691,6 @@ msgstr ""
"\n"
"Se habilitado, este parâmetro também define uma variável G-code chamada chamber_temperature, que pode ser usada para passar a temperatura desejada da câmara para sua macro de início de impressão ou uma macro de absorção de calor como esta: PRINT_START (outras variáveis) CHAMBER_TEMP=[chamber_temperature]. Isso pode ser útil se sua impressora não suportar comandos M141/M191 ou se você desejar lidar com a absorção de calor na macro de início de impressão se nenhum aquecedor de câmara ativo estiver instalado."
-# AI Translated
msgid ""
"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50℃, without waiting for the full 60℃.\n"
"\n"
@@ -16646,11 +16698,11 @@ msgid ""
"\n"
"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature."
msgstr ""
-"Esta é a temperatura da câmara na qual a impressão deve começar, enquanto a câmara continua aquecendo em direção à temperatura da câmara \"Alvo\". Por exemplo, defina o Alvo como 60 e o Mínimo como 50 para começar a imprimir assim que a câmara atingir 50℃, sem esperar pelos 60℃ completos.\n"
+"Esta é a temperatura da câmara na qual a impressão deve começar, enquanto a câmara continua aquecendo em direção à temperatura \"Alvo\" da câmara. Por exemplo, defina o Alvo como 60 e o Mínimo como 50 para começar a imprimir assim que a câmara atingir 50℃, sem esperar pelos 60℃ completos.\n"
"\n"
"Isso define uma variável de G-code chamada chamber_minimal_temperature, que pode ser passada para a sua macro de início de impressão ou uma macro de aquecimento prolongado, assim: PRINT_START (outras variáveis) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n"
"\n"
-"Ao contrário da temperatura da câmara \"Alvo\", esta opção não emite nenhum comando M141/M191; ela apenas expõe o valor ao seu G-code personalizado. Não deve exceder a temperatura da câmara \"Alvo\"."
+"Ao contrário da temperatura \"Alvo\" da câmara, esta opção não emite nenhum comando M141/M191; ela apenas expõe o valor ao seu G-code personalizado. Não deve exceder a temperatura \"Alvo\" da câmara."
msgid "Chamber minimal temperature"
msgstr "Temperatura mínima da câmara"
@@ -16694,20 +16746,18 @@ msgstr "Espessura da casca do topo"
msgid "The number of top solid layers is increased when slicing if the thickness calculated by top shell layers is thinner than this value. This can avoid having too thin a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers."
msgstr "O número de camadas sólidas superiores é aumentado ao fatiar se a espessura calculada pelas camadas da casca do topo for menor do que este valor. Isso pode evitar que a casca seja muito fina quando a altura da camada é pequena. 0 significa que esta configuração está desativada e a espessura da casca do topo é determinada apenas pelo número de camadas da casca do topo."
-# AI Translated
msgid "Separated infills"
msgstr "Preenchimentos separados"
-# AI Translated
msgid ""
"Centers the internal infill of each part on itself, as if it were sliced on its own, instead of on the whole assembly. Parts that touch or overlap are treated as one body and share a center; separate parts (or distinct 3D objects) each get their own.\n"
"Useful when an assembly groups several objects that should each keep a consistent, self-centered infill.\n"
"Affects line and grid patterns and rotation-template infills.\n"
"Patterns locked to global coordinates (Gyroid, Honeycomb, TPMS, ...) are unaffected."
msgstr ""
-"Centraliza o preenchimento interno de cada peça em si mesma, como se fosse fatiada isoladamente, em vez de no conjunto inteiro. Peças que se tocam ou se sobrepõem são tratadas como um único corpo e compartilham um centro; peças separadas (ou objetos 3D distintos) recebem cada uma o seu próprio.\n"
+"Centraliza o preenchimento interno de cada peça em si mesmo, como se fosse fatiada isoladamente, em vez de no conjunto inteiro. Peças que se tocam ou se sobrepõem são tratadas como um único corpo e compartilham um centro; peças separadas (ou objetos 3D distintos) recebem cada uma o seu próprio.\n"
"Útil quando um conjunto agrupa vários objetos que devem manter, cada um, um preenchimento consistente e autocentrado.\n"
-"Afeta os padrões de linha e grade e os preenchimentos com modelo de rotação.\n"
+"Afeta os padrões de linha e grade e os preenchimentos com gabarito de rotação.\n"
"Os padrões fixados em coordenadas globais (Giroide, Favo de mel, TPMS, ...) não são afetados."
msgid "Center surface pattern on"
@@ -16776,11 +16826,9 @@ msgstr "Multiplicador de purga"
msgid "The actual flushing volumes is equal to the flush multiplier value multiplied by the flushing volumes in the table."
msgstr "Os volumes de purga reais são iguais ao multiplicador de purga multiplicado pelos volumes de purga na tabela."
-# AI Translated
msgid "Flush multiplier (Fast mode)"
msgstr "Multiplicador de purga (Modo rápido)"
-# AI Translated
msgid "The flush multiplier used in fast purge mode."
msgstr "O multiplicador de purga usado no modo de purga rápida."
@@ -16790,13 +16838,11 @@ msgstr "Volume de preparo"
msgid "This is the volume of material to prime the extruder with on the tower."
msgstr "Este é o volume de material para preparar a extrusora na torre."
-# AI Translated
msgid "Prime volume mode"
msgstr "Modo de volume de preparação"
-# AI Translated
msgid "Selects how the wipe-tower prime and flush volumes are computed on multi-extruder printers."
-msgstr "Seleciona como os volumes de preparação e de purga da torre de purga são calculados em impressoras com várias extrusoras."
+msgstr "Seleciona como os volumes de preparação e de purga da torre de purga são computados em impressoras com múltiplas extrusoras."
msgid "Saving"
msgstr "Salvando"
@@ -17116,7 +17162,7 @@ msgid "The maximum volumetric speed for ramming before extruder change, where -1
msgstr "A velocidade volumétrica máxima para compactação antes da troca de extrusor, onde -1 significa usar a velocidade volumétrica máxima."
msgid "To prevent oozing, the nozzle temperature will be cooled during ramming. Note: only a cooldown command and fan activation are triggered, reaching the target temperature is not guaranteed. 0 means disabled."
-msgstr "Para evitar o gotejamento, a temperatura do bico será reduzida durante a compactação. Nota: somente um comando de resfriamento e ativação do ventilador são acionados, não sendo garantido o alcance da temperatura alvo. 0 significa desativado."
+msgstr "Para evitar o gotejamento, a temperatura do bico será reduzida durante a compactação. Nota: somente um comando de resfriamento e ativação da ventoinha são acionados, não sendo garantido o alcance da temperatura alvo. 0 significa desativado."
msgid "The maximum volumetric speed for ramming before a hotend change, where -1 means using the maximum volumetric speed."
msgstr "A velocidade volumétrica máxima para compactação antes de uma troca de hotend, em que -1 significa usar a velocidade volumétrica máxima."
@@ -19427,9 +19473,6 @@ msgstr "Impressora Física"
msgid "Print Host upload"
msgstr "Upload do Host de Impressão"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Selecione a implementação do agente de rede para comunicação com a impressora. Os agentes disponíveis são registrados na inicialização."
-
msgid "Select a Flashforge printer"
msgstr "Selecione uma impressora Flashforge"
@@ -20271,9 +20314,6 @@ msgstr "Algo inesperado aconteceu ao tentar conectar, por favor tente novamente.
msgid "User canceled."
msgstr "Cancelado pelo usuário."
-msgid "Head diameter"
-msgstr "Diâmetro da cabeça"
-
msgid "Max angle"
msgstr "Ângulo máx"
@@ -20744,8 +20784,8 @@ msgid ""
"Auxiliary fan\n"
"Did you know that OrcaSlicer supports Auxiliary part cooling fan?"
msgstr ""
-"Ventilador auxiliar\n"
-"Você sabia que o OrcaSlicer suporta ventilador auxiliar de resfriamento de peças?"
+"Ventoinha auxiliar\n"
+"Você sabia que o OrcaSlicer suporta ventoinha auxiliar de resfriamento de peças?"
#: resources/data/hints.ini: [hint:Air filtration]
msgid ""
@@ -21007,6 +21047,24 @@ msgstr ""
"Evitar empenamento\n"
"Você sabia que ao imprimir materiais propensos ao empenamento como ABS, aumentar adequadamente a temperatura da mesa aquecida pode reduzir a probabilidade de empenamento?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "A altura da camada é muito pequena.\n"
+#~ "Ela será definida como altura mínima da camada\n"
+#~ "A altura da camada é muito pequena.\n"
+#~ "Ela será definida como altura mínima da camada\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "A altura da camada excede o limite em Configurações da Impressora -> Extrusora -> Limites de altura da camada, isso pode causar problemas de qualidade de impressão."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "Ajustar automaticamente à faixa definida?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Diâmetro da cabeça"
+
#~ msgid "Print order within a single layer."
#~ msgstr "Ordem de impressão dentro de uma única camada."
@@ -21939,7 +21997,7 @@ msgstr ""
#~ msgstr "Pausado devido à perda do AMS"
#~ msgid "Paused due to low speed of the heat break fan"
-#~ msgstr "Pausado devido a baixa velocidade do ventilador do bloco de aquecimento"
+#~ msgstr "Pausado devido a baixa velocidade da ventoinha do bloco de aquecimento"
#~ msgid "Paused due to chamber temperature control error"
#~ msgstr "Pausado devido a erro no controle de temperatura da câmara"
@@ -22468,20 +22526,20 @@ msgstr ""
#~ msgstr "Forçar resfriamento para saliências e pontes"
#~ msgid "Enable this option to optimize part cooling fan speed for overhang and bridge to get better cooling"
-#~ msgstr "Ative esta opção para otimizar a velocidade do ventilador de resfriamento de peças para saliência e ponte para obter melhor resfriamento"
+#~ msgstr "Ative esta opção para otimizar a velocidade da ventoinha de resfriamento de peças para saliência e ponte para obter melhor resfriamento"
#~ msgid "Fan speed for overhang"
-#~ msgstr "Velocidade do ventilador para saliência"
+#~ msgstr "Velocidade da ventoinha para saliência"
#~ msgid "Force part cooling fan to be this speed when printing bridge or overhang wall which has large overhang degree. Forcing cooling for overhang and bridge can get better quality for these part"
-#~ msgstr "Forçar o ventilador de resfriamento de peças a ser nesta velocidade ao imprimir ponte ou parede saliente que tenha um grande grau de saliência. Forçar o resfriamento para saliência e ponte pode obter melhor qualidade para estas partes"
+#~ msgstr "Forçar a ventoinha de resfriamento de peças a ser nesta velocidade ao imprimir ponte ou parede saliente que tenha um grande grau de saliência. Forçar o resfriamento para saliência e ponte pode obter melhor qualidade para estas partes"
#~ msgid "Cooling overhang threshold"
#~ msgstr "Limiar de resfriamento de saliência"
#, c-format
#~ msgid "Force cooling fan to be specific speed when overhang degree of printed part exceeds this value. Expressed as percentage which indicates how much width of the line without support from lower layer. 0% means forcing cooling for all outer wall no matter how much overhang degree"
-#~ msgstr "Forçar o ventilador de resfriamento a ser uma velocidade específica quando o grau de saliência das peças impressa excede este valor. Expresso como porcentagem, que indica quanto da largura da linha sem suporte da camada inferior. Zero significa forçar o resfriamento para toda a parede externa, não importa quanto seja o grau de saliência"
+#~ msgstr "Forçar a ventoinha de resfriamento a ser uma velocidade específica quando o grau de saliência das peças impressa excede este valor. Expresso como porcentagem, que indica quanto da largura da linha sem suporte da camada inferior. Zero significa forçar o resfriamento para toda a parede externa, não importa quanto seja o grau de saliência"
#~ msgid "Density of external bridges. 100% means solid bridge. Default is 100%."
#~ msgstr "Densidade de pontes externas. 100% significa ponte sólida. O padrão é 100%."
diff --git a/localization/i18n/ru/OrcaSlicer_ru.po b/localization/i18n/ru/OrcaSlicer_ru.po
index c2fbcb54be..2372471707 100644
--- a/localization/i18n/ru/OrcaSlicer_ru.po
+++ b/localization/i18n/ru/OrcaSlicer_ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OrcaSlicer V2.5.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: 2026-02-25 13:38+0300\n"
"Last-Translator: Felix14_v2\n"
"Language-Team: Felix14_v2 (ДС/ТГ: @felix14_v2, почта: aleks111001@list.ru), Andylg \n"
@@ -4715,6 +4715,23 @@ msgstr "Текущая температура внутри термокамер
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "Стартовая температура внутри термокамеры (%d℃) превышает целевую (%d℃). Подразумевается, что печать начинается заранее, поэтому стартовая температура не должна превышать её. Значение будет уменьшено."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "Высота слоя слишком мала. Будет установлено минимальное значение (%g мм)."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "Высота слоя выходит за пределы, заданные в настройках принтера → Экструдер → Ограничение высоты слоя. Это может вызвать проблемы с качеством печати."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "Автоматически подстроить под предел (%g мм)?"
+
+msgid "Adjust"
+msgstr "Подстроиться"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4839,6 +4856,13 @@ msgid ""
"No - Disable Arachne Wall Generator and set [Displacement] mode of the Fuzzy Skin"
msgstr "Использовать нечёткую оболочку с движком Arachne?"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Радиус ушек каймы"
+
+msgid "Brim width"
+msgstr "Ширина каймы"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr ""
"Для печати в режиме вазы необходимы следующие настройки:\n"
@@ -5107,6 +5131,14 @@ msgstr "Не удалось сгенерировать калибровочны
msgid "Calibration error"
msgstr "Ошибка калибровки"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "На этом принтере не настроено оборудование, необходимое для этого элемента управления."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Этот элемент управления не поддерживается на этом принтере."
+
msgid "Network unavailable"
msgstr "Сеть недоступна"
@@ -5991,7 +6023,7 @@ msgstr "Объём:"
msgid "Size:"
msgstr "Размер:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "В G-коде на %d слое (z = %.2lf мм) обнаружен конфликт путей. Пожалуйста, разместите конфликтующие модели дальше друг от друга (%s <-> %s)."
@@ -6198,6 +6230,10 @@ msgstr "Принтеры"
msgid "Project"
msgstr "Проект"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Принтер (веб)"
+
msgid "Yes"
msgstr "Да"
@@ -8299,19 +8335,19 @@ msgstr "Расположение для замены не указано"
msgid "Replaced with 3D files from directory:\n"
msgstr "Заменено файлами из расположения:\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Пропущен %s: идентичный файл.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Пропущен %s: файл не существует.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Пропущен %s: не удалось заменить.\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Заменён %s.\n"
@@ -9040,6 +9076,18 @@ msgstr "Если включено, вы сможете управлять нес
msgid "Pop up to select filament grouping mode"
msgstr "Всплывающее окно для выбора режима группировки материалов"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Видимые страницы плагинов"
+
+# AI Translated
+msgid "pages"
+msgstr "стр."
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Количество страниц плагинов, отображаемых как закреплённые вкладки, прежде чем остальные страницы будут свёрнуты в выпадающий список на последней вкладке."
+
msgid "Behaviour"
msgstr "Автоматизация"
@@ -9400,6 +9448,18 @@ msgstr ""
"\n"
"Примечание: профили остаются недоступными для выбора."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Экспериментально) Использовать агентов принтера вместо хостов печати"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Отправлять задания печати для принтеров, отличных от Bambu, через агентов плагинов принтера вместо классической загрузки на хост печати.\n"
+"Если отключено, OrcaSlicer использует прежнее поведение хоста печати."
+
msgid "Experimental Features"
msgstr "Экспериментальные настройки"
@@ -9666,9 +9726,25 @@ msgstr "Пользовательский профиль"
msgid "Preset Inside Project"
msgstr "Профиль внутри проекта"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Копирует в этот профиль все значения, унаследованные от родительского профиля, и удаляет связь наследования. Профили, совместимые только с родительским, могут стать неподдерживаемыми."
+
msgid "Detach from parent"
msgstr "Сделать независимым"
+# AI Translated
+msgid "Unique preset"
+msgstr "Независимый профиль"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Родительский профиль"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Этот профиль не наследуется от другого профиля."
+
msgid "Name is unavailable."
msgstr "Имя недоступно."
@@ -9686,7 +9762,9 @@ msgstr ""
"несовместим с текущим принтером."
msgid "Please note that saving will overwrite the current preset."
-msgstr "Обратите внимание: при сохранении произойдёт\nперезапись текущего профиля."
+msgstr ""
+"Обратите внимание: при сохранении произойдёт\n"
+"перезапись текущего профиля."
msgid "The name cannot be the same as a preset alias name."
msgstr "Имя не должно совпадать с именем предустановленного профиля."
@@ -10389,22 +10467,6 @@ msgstr "Вы действительно хотите задействовать
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "Многие шаблоны заполнения разработаны на основе автоматического поворота по определённым правилам для поддержания правильной печати и желаемого эффекта (например, «Гироид» или «Куб»). Изменение правила поворота текущего шаблона может привести к его провисанию. Будьте осторожны и внимательно проверяйте результат на наличие потенциальных проблем с печатью."
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"Высота слоя слишком мала.\n"
-"Будет установлено значение min_layer_height\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "Высота слоя не может превышать ограничения, установленные в настройках принтера → Экструдер → Ограничение высоты слоя. Это может вызвать проблемы с качеством печати."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "Автоматически подстроиться под заданный в настройках диапазон?\n"
-
-msgid "Adjust"
-msgstr "Подстроиться"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "[Экспериментальная функция] Втягивание и обрезка прутка на большем расстоянии во время его замены для минимизации очистки. Хотя это значительно сокращает величину очистки, это может повысить риск возникновения затора или вызвать другие проблемы при печати."
@@ -10604,6 +10666,9 @@ msgstr "Найдены зарезервированные ключевые сл
msgid "Setting Overrides"
msgstr "Замещение настроек"
+msgid "Retraction when switching material"
+msgstr "Откат при смене материала"
+
msgid "Basic information"
msgstr "Основные"
@@ -10751,6 +10816,12 @@ msgstr "Совместимые настройки"
msgid "Printable space"
msgstr "Область печати"
+msgid "Printer Agent"
+msgstr "Сетевой агент"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Реализация сетевого агента для обмена информацией с принтером. Доступные реализации определяются при запуске."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10879,9 +10950,6 @@ msgstr "Ограничение высоты слоя"
msgid "Z-Hop"
msgstr "Подъём головы при откате"
-msgid "Retraction when switching material"
-msgstr "Откат при смене материала"
-
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
"\n"
@@ -12218,6 +12286,10 @@ msgstr " находится слишком близко к области иск
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " находится слишком близко к зоне обнаружения налипаний, столкновения неизбежны.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " частично находится за пределами области печати и не может быть напечатан.\n"
+
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "Обнаружен недопустимый перепад температур. Каждый из используемых материалов должен иметь в профиле температуру печати в пределах допустимого диапазона других материалов. В противном случае сопло может забиться и повредить принтер."
@@ -12539,9 +12611,6 @@ msgstr "Сжатие G-кода перед отправкой"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Рекомендуется для принтеров, поддерживающих печать из архивов 3MF. Файлы печати будут отправляться с расширением \".gcode.3mf\"."
-msgid "Printer Agent"
-msgstr "Сетевой агент"
-
msgid "Select the network agent implementation for printer communication."
msgstr "Реализация сетевого агента для обмена информацией с принтером."
@@ -13232,9 +13301,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "Скорость печати внутреннего моста. Можно указать процент от скорости внешнего моста (bridge_speed). По умолчанию – 150%."
-msgid "Brim width"
-msgstr "Ширина каймы"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Расстояние от модели до внешней линии каймы."
@@ -13316,6 +13382,14 @@ msgstr ""
"Геометрия модели будет упрощена перед обнаружением острых углов. Этот параметр задаёт минимальную длину отклонения для её упрощения.\n"
"Установите 0 для отключения."
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Ушки каймы только снаружи"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Создавать мышиные ушки только на внешнем контуре модели, исключая отверстия и замкнутые участки."
+
msgid "upward compatible machine"
msgstr "условия для совместимых принтеров"
@@ -14308,13 +14382,19 @@ msgid "Interface layer pre-extrusion distance"
msgstr "Дистанция избыточной подачи при смене"
msgid "Pre-extrusion distance for prime tower interface layer (where different materials meet)."
-msgstr "Протяжённость первичного движения прочистки после смены материала. Позволяет быстро набрать давление в сопле и сбросить перегретый материал.\n\nПримечание: фактическая длина может быть ограничена шириной башни."
+msgstr ""
+"Протяжённость первичного движения прочистки после смены материала. Позволяет быстро набрать давление в сопле и сбросить перегретый материал.\n"
+"\n"
+"Примечание: фактическая длина может быть ограничена шириной башни."
msgid "Interface layer pre-extrusion length"
msgstr "Длина прутка для избыточной подачи"
msgid "Pre-extrusion length for prime tower interface layer (where different materials meet)."
-msgstr "Длина прутка, которую необходимо продавить на этапе избыточной подачи.\n\n0 – отключить этот этап."
+msgstr ""
+"Длина прутка, которую необходимо продавить на этапе избыточной подачи.\n"
+"\n"
+"0 – отключить этот этап."
msgid "Tower ironing area"
msgstr "Разглаживание кончиков"
@@ -14626,6 +14706,14 @@ msgstr "ТПМП Фишера-Коха S"
msgid "Gyroid"
msgstr "Гироид"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Коэффициент сглаживания заполнения"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Определяет, насколько сильно скругляются углы заполнения. 0% сохраняет исходную траекторию с острыми углами, а 100% создаёт максимально возможные скругления между соседними линиями заполнения."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Ускорение на верхней поверхности. Использование меньшего значения может улучшить качество верхней поверхности."
@@ -15213,6 +15301,14 @@ msgstr "Выбор типа G-кода для совместимости с пр
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "Пропустить блок конфигурации в G-code"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "Не записывать CONFIG_BLOCK (пары ключ/значение с настройками слайсера) в файл G-code. Это может помочь с принтерами, прошивка которых аварийно завершается при разборе этих строк комментариев (например, Anycubic go-klipper). Примечание: файл G-code больше не будет содержать настройки слайсера, поэтому при обратном импорте в OrcaSlicer конфигурация не восстановится."
+
msgid "Pellet Modded Printer"
msgstr "Гранульная модификация принтера"
@@ -15396,8 +15492,7 @@ msgstr "Наклон опор"
msgid ""
"Controls how aggressively short or unsupported Lightning branches are pruned.\n"
"This angle is converted internally to a per-layer distance."
-msgstr ""
-"Допустимый наклон опор молнии. Чем выше, тем быстрее и экономичнее распространяются её ветви."
+msgstr "Допустимый наклон опор молнии. Чем выше, тем быстрее и экономичнее распространяются её ветви."
# "Выпрямление" здесь, вопреки первой мысли – это как раз-таки наоборот искажение шаблона по ходу печати для сокращения количества ветвей. Короче, опять путаница из-за того, что генерация ветвей происходит сверху вниз. При печати снизу вверх шаблон именно что искажается.
msgid "Straightening angle"
@@ -16309,8 +16404,7 @@ msgid ""
"The length of fast retraction after wipe, relative to retraction length.\n"
"The value will be clamped by 100% minus the retract amount before the wipe value."
msgstr ""
-"Быстрый откат после очистки, выраженный в процентах от общей длины отката. В некоторых случаях позволяет значительно снизить количество «паутины»."
-"\n"
+"Быстрый откат после очистки, выраженный в процентах от общей длины отката. В некоторых случаях позволяет значительно снизить количество «паутины».\n"
"Примечание: суммарное значение не должно превышать 100% и будет скорректировано автоматически."
msgid "Retract on layer change"
@@ -16344,6 +16438,14 @@ msgstr "Длинный откат перед сменой экструдера"
msgid "Retraction distance when extruder change"
msgstr "Длина отката перед сменой экструдера"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Длина отката (смена инструмента)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "При срабатывании отката перед сменой инструмента материал втягивается на указанную величину (длина измеряется по прутку материала до его входа в экструдер)."
+
msgid "Z-hop height"
msgstr "Высота подъёма"
@@ -16461,6 +16563,10 @@ msgstr "Доп. подача после отката"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "Дополнительная длина подачи при возврате прутка после отката. Требуется крайне редко (например, для компенсации багов прошивки принтера)."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Доп. подача после отката (смена инструмента)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Дополнительная длина подачи после смены насадки."
@@ -16474,7 +16580,9 @@ msgid "Deretraction speed"
msgstr "Скорость возврата"
msgid "Speed for reloading filament into the nozzle. Zero means same speed of retraction."
-msgstr "Скорость возврата материала в сопло после отката.\n0 – использовать скорость отката."
+msgstr ""
+"Скорость возврата материала в сопло после отката.\n"
+"0 – использовать скорость отката."
msgid "Deretraction speed (extruder change)"
msgstr "Скорость возврата (смена экструдера)"
@@ -16945,6 +17053,14 @@ msgstr ""
"\n"
"Внимание: применимо только к многоэкструдерным принтерам с черновой башней 2 типа."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Ожидание температуры на черновой башне"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Забирает новый инструмент, не дожидаясь достижения температуры печати, перемещается к черновой башне и ждёт нагрева там, непосредственно перед прочисткой. Подтёки при нагреве попадают на башню, а не на модель, а перемещение совмещается с нагревом. Актуально только для принтеров с несколькими экструдерами (несколькими печатающими головами), использующих черновую башню типа 2. Прошивка или макрос смены инструмента не должны сами ждать нагрева. Если отключено, команда ожидания температуры выдаётся сразу после команды смены инструмента."
+
msgid "No sparse layers (beta)"
msgstr "Без разреженных слоёв (beta)"
@@ -17942,13 +18058,21 @@ msgid "To prevent oozing, the nozzle temperature will be cooled during ramming.
msgstr "Во избежание подтёков температура сопла будет снижена на время рэмминга. Поэтому время рэмминга должно быть больше времени охлаждения. 0 значит отключено."
msgid "The maximum volumetric speed for ramming before extruder change, where -1 means using the maximum volumetric speed."
-msgstr "Максимальный объёмный расход для рэмминга перед сменой экструдера.\n-1 – использовать максимальный расход."
+msgstr ""
+"Максимальный объёмный расход для рэмминга перед сменой экструдера.\n"
+"-1 – использовать максимальный расход."
msgid "To prevent oozing, the nozzle temperature will be cooled during ramming. Note: only a cooldown command and fan activation are triggered, reaching the target temperature is not guaranteed. 0 means disabled."
-msgstr "Во избежание подтёков температура сопла будет снижена на время рэмминга.\n0 – не менять температуру.\n\nПримечание: срабатывают только команда охлаждения и включение вентилятора; достижение целевой температуры не гарантируется."
+msgstr ""
+"Во избежание подтёков температура сопла будет снижена на время рэмминга.\n"
+"0 – не менять температуру.\n"
+"\n"
+"Примечание: срабатывают только команда охлаждения и включение вентилятора; достижение целевой температуры не гарантируется."
msgid "The maximum volumetric speed for ramming before a hotend change, where -1 means using the maximum volumetric speed."
-msgstr "Максимальный объёмный расход для рэмминга перед сменой хотэнда.\n-1 – использовать максимальный расход."
+msgstr ""
+"Максимальный объёмный расход для рэмминга перед сменой хотэнда.\n"
+"-1 – использовать максимальный расход."
msgid "length when change hotend"
msgstr "Откат при смене хотэнда"
@@ -19414,10 +19538,14 @@ msgid "Continue anyway?"
msgstr "Всё равно продолжить?"
msgid "Enable \"Auto-adjust\" to fix this automatically, or continue anyway?"
-msgstr "Включить адаптацию к расходу для автоматического исправления?\nНет – игнорировать предупреждение."
+msgstr ""
+"Включить адаптацию к расходу для автоматического исправления?\n"
+"Нет – игнорировать предупреждение."
msgid "Enable \"Auto-scale for nozzle\" and \"Auto-adjust\" to fix this automatically, or continue anyway?"
-msgstr "Включить адаптацию к соплу и расходу для автоматического исправления?\nНет – игнорировать предупреждение."
+msgstr ""
+"Включить адаптацию к соплу и расходу для автоматического исправления?\n"
+"Нет – игнорировать предупреждение."
msgid "Start retraction length: "
msgstr "Начальная длина отката: "
@@ -20341,9 +20469,6 @@ msgstr "Физический принтер"
msgid "Print Host upload"
msgstr "Загрузка на хост печати"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Реализация сетевого агента для обмена информацией с принтером. Доступные реализации определяются при запуске."
-
msgid "Select a Flashforge printer"
msgstr "Выберите принтер Flashforge"
@@ -21202,9 +21327,6 @@ msgstr "При попытке войти произошла какая-то ош
msgid "User canceled."
msgstr "Отменено пользователем."
-msgid "Head diameter"
-msgstr "Диаметр уха"
-
msgid "Max angle"
msgstr "Макс. угол"
@@ -21959,6 +22081,22 @@ msgstr ""
"Предотвращение коробления материала\n"
"Знаете ли вы, что при печати материалами, склонными к короблению, таких как ABS, повышение температуры подогреваемого стола может снизить эту вероятность?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "Высота слоя слишком мала.\n"
+#~ "Будет установлено значение min_layer_height\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "Высота слоя не может превышать ограничения, установленные в настройках принтера → Экструдер → Ограничение высоты слоя. Это может вызвать проблемы с качеством печати."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "Автоматически подстроиться под заданный в настройках диапазон?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Диаметр уха"
+
#~ msgid "Print order within a single layer."
#~ msgstr "Последовательность печати моделей в пределах одного слоя."
diff --git a/localization/i18n/sv/OrcaSlicer_sv.po b/localization/i18n/sv/OrcaSlicer_sv.po
index 5686fb7d8f..432000f96d 100644
--- a/localization/i18n/sv/OrcaSlicer_sv.po
+++ b/localization/i18n/sv/OrcaSlicer_sv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -5213,6 +5213,23 @@ msgstr "Kammarens aktuella temperatur är högre än materialets säkra temperat
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "Kammarens minimitemperatur (%d℃) är högre än kammarens måltemperatur (%d℃). Minimivärdet är tröskeln där utskriften startar medan kammaren fortsätter värmas mot målet, så det bör inte överstiga målet. Värdet begränsas till måltemperaturen."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "Lagerhöjden är för liten. Den kommer att sättas till minimivärdet (%g mm)."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "Lagerhöjden ligger utanför gränserna som anges i Skrivarinställningar -> Extruder -> Lagerhöjds gränser, detta kan orsaka problem med utskriftskvaliteten."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "Justera automatiskt till gränsvärdet (%g mm)?"
+
+msgid "Adjust"
+msgstr "Justera"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -5339,6 +5356,13 @@ msgstr ""
"Ja – Aktivera Arachne-väggeneratorn\n"
"Nej – Inaktivera Arachne-väggeneratorn och ställ in läget [Förskjutning] för ojämn yta"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Radie för brim-öra"
+
+msgid "Brim width"
+msgstr "Brim bredd"
+
# AI Translated
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "Spiralläget fungerar bara när antal väggar är 1, support är avstängt, detektering av klumpbildning med sondering är avstängd, antal översta skallager är 0, sparsam ifyllnadsdensitet är 0 och timelapse-typen är traditionell."
@@ -5645,6 +5669,14 @@ msgstr "Misslyckades med att generera cali G kod"
msgid "Calibration error"
msgstr "Fel vid kalibrering"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "Den här skrivaren är inte konfigurerad med den maskinvara som den här kontrollen kräver."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Den här kontrollen stöds inte på den här skrivaren."
+
# AI Translated
msgid "Network unavailable"
msgstr "Nätverket är inte tillgängligt"
@@ -6596,7 +6628,7 @@ msgid "Size:"
msgstr "Storlek:"
# AI Translated
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "Konflikter mellan G-code-banor hittades på lager %d, Z = %.2lfmm. Placera de objekt som krockar längre ifrån varandra (%s <-> %s)."
@@ -6798,6 +6830,10 @@ msgstr "Flera enheter"
msgid "Project"
msgstr "Projekt"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Enhet (Webb)"
+
msgid "Yes"
msgstr "Ja"
@@ -9088,22 +9124,22 @@ msgid "Replaced with 3D files from directory:\n"
msgstr "Ersatt med 3D-filer från mappen:\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Hoppade över %s: samma fil.\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Hoppade över %s: filen finns inte.\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Hoppade över %s: det gick inte att ersätta.\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Ersatte %s.\n"
@@ -9933,6 +9969,18 @@ msgstr "Med det här alternativet aktiverat kan du skicka en uppgift till flera
msgid "Pop up to select filament grouping mode"
msgstr "Visa dialogruta för val av filamentgrupperingsläge"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Synliga insticksmodulsidor"
+
+# AI Translated
+msgid "pages"
+msgstr "sidor"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Antal insticksmodulsidor som visas som fasta flikar innan de återstående sidorna fälls ihop i en rullgardinsmeny på den sista fliken."
+
# AI Translated
msgid "Behaviour"
msgstr "Beteende"
@@ -10357,6 +10405,18 @@ msgstr "Visa förinställningar som inte stöds"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Visa inkompatibla förinställningar och förinställningar som inte stöds i rullgardinslistorna för skrivare och filament. Dessa förinställningar kan inte väljas."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Experimentellt) Använd skrivaragenter i stället för utskriftsvärdar"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Skickar utskriftsjobb för icke-Bambu-skrivare via skrivarens insticksmodulagenter i stället för det klassiska uppladdningsflödet till utskriftsvärden.\n"
+"När detta är avaktiverat använder OrcaSlicer det äldre beteendet för utskriftsvärdar."
+
# AI Translated
msgid "Experimental Features"
msgstr "Experimentella funktioner"
@@ -10637,10 +10697,26 @@ msgstr "Användar förinställning"
msgid "Preset Inside Project"
msgstr "Projekt förinställning"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Kopierar alla ärvda värden från den överordnade förinställningen till den här förinställningen och tar bort arvsrelationen. Förinställningar som endast är kompatibla med den överordnade förinställningen kan sluta stödjas."
+
# AI Translated
msgid "Detach from parent"
msgstr "Koppla loss från överordnad"
+# AI Translated
+msgid "Unique preset"
+msgstr "Unik förinställning"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Överordnad förinställning"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Den här förinställningen ärver inte från någon annan förinställning."
+
msgid "Name is unavailable."
msgstr "Namnet ej tillgängligt."
@@ -11459,23 +11535,6 @@ msgstr "Är du säker på att du vill aktivera det här alternativet?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "Ifyllnadsmönster är oftast konstruerade för att hantera rotation automatiskt så att de skrivs ut korrekt och ger avsedd effekt (t.ex. Gyroid, Kubisk). Att rotera det aktuella sparsamma ifyllnadsmönstret kan ge otillräckligt stöd. Var försiktig och kontrollera noga om det uppstår utskriftsproblem. Är du säker på att du vill aktivera det här alternativet?"
-# AI Translated
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"Lagerhöjden är för liten.\n"
-"Den ställs in på min_layer_height\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "Lagerhöjden överskrider gränsen i Skrivarinställningar -> Extruder -> Lagerhöjds gränser, detta kan orsaka problem med utskriftskvaliteten."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "Justera automatiskt till det inställda området?\n"
-
-msgid "Adjust"
-msgstr "Justera"
-
# AI Translated
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "Experimentell funktion: Filamentet dras tillbaka och kapas på ett längre avstånd vid filamentbyten för att minimera rensningen. Det kan minska rensningen avsevärt, men kan också öka risken för igensatt nozzel eller andra utskriftsproblem."
@@ -11707,6 +11766,9 @@ msgstr "Hittade reserverade nyckelord"
msgid "Setting Overrides"
msgstr "Åsidosätter inställningar"
+msgid "Retraction when switching material"
+msgstr "Reduktion vid material byte"
+
msgid "Basic information"
msgstr "Allmän information"
@@ -11848,6 +11910,14 @@ msgstr "Kompatibla process profiler"
msgid "Printable space"
msgstr "Utskriftsbar yta"
+# AI Translated
+msgid "Printer Agent"
+msgstr "Skrivaragent"
+
+# AI Translated
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Välj vilken nätverksagentimplementation som ska användas för kommunikation med skrivaren. Tillgängliga agenter registreras vid start."
+
# AI Translated
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
@@ -11992,9 +12062,6 @@ msgstr "Lagerhöjds begränsning"
msgid "Z-Hop"
msgstr "Z-Hop"
-msgid "Retraction when switching material"
-msgstr "Reduktion vid material byte"
-
# AI Translated
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
@@ -13486,6 +13553,10 @@ msgstr " är för nära uteslutningsområdet, och kollisioner kommer att orsakas
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " ligger för nära området för klumpdetektering, vilket kommer att orsaka kollisioner.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " är delvis utanför det utskrivbara området och kan inte skrivas ut.\n"
+
# AI Translated
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "De valda nozzeltemperaturerna är inkompatibla. Varje filaments nozzeltemperatur måste ligga inom de andra filamentens rekommenderade nozzeltemperaturintervall. Annars kan nozzeln sättas igen eller skrivaren skadas."
@@ -13856,10 +13927,6 @@ msgstr "Använd 3MF i stället för G-code"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Aktivera detta om skrivaren tar emot en 3MF-fil som utskriftsjobb. När det är aktiverat skickar Orca Slicer den beredda filen som en .gcode.3mf i stället för en vanlig .gcode-fil."
-# AI Translated
-msgid "Printer Agent"
-msgstr "Skrivaragent"
-
# AI Translated
msgid "Select the network agent implementation for printer communication."
msgstr "Välj vilken nätverksagentimplementation som ska användas för kommunikation med skrivaren."
@@ -14616,9 +14683,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "Hastighet för inre bridges. Om värdet anges i procent beräknas det utifrån bridge_speed. Standardvärdet är 150 %."
-msgid "Brim width"
-msgstr "Brim bredd"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Avståndet från modellen till yttersta brim linjen"
@@ -14707,6 +14771,14 @@ msgstr ""
"Geometrin decimeras innan skarpa vinklar detekteras. Den här parametern anger avvikelsens minsta längd för decimeringen.\n"
"0 för att avaktivera."
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Brim-öron endast utvändigt"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Genererar musöron endast på modellens yttre kontur, exklusive hål och slutna sektioner."
+
msgid "upward compatible machine"
msgstr "uppåt kompatibel maskin"
@@ -16039,6 +16111,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "Gyroid"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Utjämningsfaktor för sparsam ifyllnad"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Styr hur kraftigt hörnen i den sparsamma ifyllnaden rundas av. 0% behåller den ursprungliga skarpa banan, medan 100% ger största möjliga kurvor mellan intilliggande ifyllnadslinjer."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Acceleration av fyllning av toppytan. Att använda ett lägre värde kan förbättra ytkvaliteten"
@@ -16651,6 +16731,14 @@ msgstr "Vilken typ av G-kod är skrivaren kompatibel med"
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "Hoppa över G-code-konfigurationsblocket"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "Skriver inte CONFIG_BLOCK (nyckel/värde-paren för slicerkonfigurationen) till G-code-filen. Detta kan hjälpa med skrivare vars firmware kraschar när dessa kommentarrader tolkas (t.ex. Anycubic go-klipper). Obs: G-code-filen kommer inte längre att innehålla slicerinställningarna, så att importera den tillbaka till OrcaSlicer återställer inte konfigurationen."
+
# AI Translated
msgid "Pellet Modded Printer"
msgstr "Skrivare ombyggd för pellets"
@@ -17868,6 +17956,14 @@ msgstr "Lång reduktion vid extruderbyte"
msgid "Retraction distance when extruder change"
msgstr "Reduktionssträcka vid extruderbyte"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Reduktionslängd (Verktygsbyte)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "När reduktionen utlöses före ett verktygsbyte dras filamentet tillbaka med den angivna mängden (längden mäts på det obearbetade filamentet, innan det når extrudern)."
+
# AI Translated
msgid "Z-hop height"
msgstr "Z-hop-höjd"
@@ -17983,6 +18079,10 @@ msgstr "Extra längd vid omstart"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "När reduktionen kompenseras efter flyttrörelsen trycker extrudern fram den här extra mängden filament. Den här inställningen behövs sällan."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Extra längd vid omstart (Verktygsbyte)"
+
# AI Translated
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "När reduktionen kompenseras efter verktygsbyte trycker extrudern fram den här extra mängden filament."
@@ -18477,6 +18577,14 @@ msgstr "Verktygsbyte vid prime tornet"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "Tvinga verktygshuvudet att flytta till prime tornet innan verktygsbyteskommandot (Tx) skickas. Endast relevant för skrivare med flera extrudrar (flera verktygshuvuden) som använder ett prime torn av typ 2. Som standard hoppar Orca över flytten på maskiner med flera verktygshuvuden, eftersom den fasta programvaran hanterar huvudbytet, vilket kan leda till att Tx-kommandot skickas ovanför den utskrivna delen. Aktivera det här alternativet om du vill att verktygsbytet alltid ska ske ovanför prime tornet i stället."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Vänta på temperatur vid prime tornet"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Hämtar det nya verktyget utan att vänta på att det ska nå utskriftstemperatur, förflyttar sig till prime tornet och väntar på temperaturen där, precis före rensningen. Materialet som droppar under uppvärmningen hamnar på tornet i stället för på modellen, och förflyttningen sker samtidigt som uppvärmningen. Endast relevant för skrivare med flera extrudrar (flera verktygshuvuden) som använder ett prime torn av typ 2. Firmware eller verktygsbytesmakrot får inte vänta på temperaturen själv. När detta är avaktiverat utfärdas temperaturväntan direkt efter verktygsbyteskommandot."
+
# AI Translated
msgid "No sparse layers (beta)"
msgstr "Inga glesa lager (beta)"
@@ -22101,10 +22209,6 @@ msgstr "Fysisk printer"
msgid "Print Host upload"
msgstr "Uppladdning utskriftsvärd"
-# AI Translated
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Välj vilken nätverksagentimplementation som ska användas för kommunikation med skrivaren. Tillgängliga agenter registreras vid start."
-
# AI Translated
msgid "Select a Flashforge printer"
msgstr "Välj en Flashforge-skrivare"
@@ -23181,10 +23285,6 @@ msgstr "Något oväntat hände vid inloggningen, försök igen."
msgid "User canceled."
msgstr "Användaren avbröt."
-# AI Translated
-msgid "Head diameter"
-msgstr "Huvuddiameter"
-
# AI Translated
msgid "Max angle"
msgstr "Maxvinkel"
@@ -24071,6 +24171,24 @@ msgstr ""
"Undvik vridning\n"
"Visste du att när du skriver ut material som är benägna att vrida, såsom ABS, kan en lämplig ökning av värmebäddens temperatur minska sannolikheten för vridning?"
+# AI Translated
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "Lagerhöjden är för liten.\n"
+#~ "Den ställs in på min_layer_height\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "Lagerhöjden överskrider gränsen i Skrivarinställningar -> Extruder -> Lagerhöjds gränser, detta kan orsaka problem med utskriftskvaliteten."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "Justera automatiskt till det inställda området?\n"
+
+# AI Translated
+#~ msgid "Head diameter"
+#~ msgstr "Huvuddiameter"
+
# AI Translated
#~ msgid "Print order within a single layer."
#~ msgstr "Utskriftsordning inom ett enskilt lager."
diff --git a/localization/i18n/th/OrcaSlicer_th.po b/localization/i18n/th/OrcaSlicer_th.po
index a419ba320e..a0c0079125 100644
--- a/localization/i18n/th/OrcaSlicer_th.po
+++ b/localization/i18n/th/OrcaSlicer_th.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: 2026-06-19 13:40+0700\n"
"Last-Translator: Icezaza\n"
"Language-Team: Thai\n"
@@ -4720,6 +4720,23 @@ msgstr "อุณหภูมิห้องพิมพ์ปัจจุบั
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "อุณหภูมิห้องพิมพ์ต่ำสุด (%d℃) สูงกว่าอุณหภูมิห้องพิมพ์เป้าหมาย (%d℃) ค่าต่ำสุดคือเกณฑ์ที่การพิมพ์จะเริ่มต้นในขณะที่ห้องพิมพ์ยังคงร้อนขึ้นไปสู่เป้าหมาย จึงไม่ควรเกินค่าเป้าหมาย ระบบจะจำกัดค่าให้เท่ากับเป้าหมาย"
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "ความสูงเลเยอร์น้อยเกินไป จะถูกตั้งค่าเป็นค่าต่ำสุด (%g mm)"
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "ความสูงเลเยอร์อยู่นอกขีดจำกัดที่ตั้งไว้ใน การตั้งค่าเครื่องพิมพ์ -> ชุดดันเส้น -> การจำกัดความสูงของเลเยอร์ ซึ่งอาจทำให้เกิดปัญหาคุณภาพการพิมพ์"
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "ปรับเป็นค่าขีดจำกัด (%g mm) โดยอัตโนมัติหรือไม่?"
+
+msgid "Adjust"
+msgstr "ปรับ"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4840,6 +4857,13 @@ msgstr ""
"ใช่ - เปิดใช้งาน Arachne Wall Generator\n"
"ไม่ - ปิดการใช้งาน Arachne Wall Generator และตั้งค่าโหมด [Displacement] ของ Fuzzy Skin"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "รัศมีของหูขอบยึดชิ้นงาน"
+
+msgid "Brim width"
+msgstr "ความกว้าง ขอบยึดชิ้นงาน"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "โหมดเกลียวจะทำงานเฉพาะเมื่อลูปติดผนังเป็น 1, ปิดใช้งานส่วนรองรับ, การตรวจจับการจับตัวเป็นก้อนโดยการตรวจวัดถูกปิดใช้งาน, ชั้นเปลือกด้านบนเป็น 0, ความหนาแน่นของไส้ในแบบกระจายเป็น 0 และประเภทไทม์แลปส์เป็นแบบดั้งเดิม"
@@ -5094,6 +5118,14 @@ msgstr "ไม่สามารถสร้าง cali G-code"
msgid "Calibration error"
msgstr "ข้อผิดพลาดในการสอบเทียบ"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "เครื่องพิมพ์นี้ไม่ได้ตั้งค่าฮาร์ดแวร์ที่ตัวควบคุมนี้ต้องการ"
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "ตัวควบคุมนี้ไม่รองรับบนเครื่องพิมพ์นี้"
+
# AI Translated
msgid "Network unavailable"
msgstr "เครือข่ายไม่พร้อมใช้งาน"
@@ -5952,7 +5984,7 @@ msgstr "ปริมาณ:"
msgid "Size:"
msgstr "ขนาด:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "พบความขัดแย้งของเส้นทางรหัส G ที่เลเยอร์ %d, Z = %.2lfmm โปรดแยกวัตถุที่ขัดแย้งกันให้ไกลออกไป (%s <-> %s)"
@@ -6133,6 +6165,10 @@ msgstr "หลายอุปกรณ์"
msgid "Project"
msgstr "โปรเจกต์"
+# AI Translated
+msgid "Device (Web)"
+msgstr "อุปกรณ์ (เว็บ)"
+
msgid "Yes"
msgstr "ใช่"
@@ -8199,19 +8235,19 @@ msgstr "ไม่ได้เลือกไดเรกทอรีสำหร
msgid "Replaced with 3D files from directory:\n"
msgstr "แทนที่ด้วยไฟล์ 3D จากไดเรกทอรี:\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ ข้าม %s: ไฟล์เดียวกัน\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ ข้าม %s: ไม่มีไฟล์อยู่\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ ข้าม %s: ไม่สามารถแทนที่ได้\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔แทนที่ %s\n"
@@ -8945,6 +8981,18 @@ msgstr "เมื่อเปิดใช้งานตัวเลือกน
msgid "Pop up to select filament grouping mode"
msgstr "ปรากฏขึ้นเพื่อเลือกโหมดการจัดกลุ่มเส้นพลาสติก"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "หน้าปลั๊กอินที่แสดง"
+
+# AI Translated
+msgid "pages"
+msgstr "หน้า"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "จำนวนหน้าปลั๊กอินที่แสดงเป็นแท็บถาวร ก่อนที่หน้าที่เหลือจะถูกยุบรวมเป็นเมนูแบบเลื่อนลงในแท็บสุดท้าย"
+
msgid "Behaviour"
msgstr "พฤติกรรม"
@@ -9299,6 +9347,18 @@ msgstr "แสดงค่าที่ตั้งไว้ล่วงหน้
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "แสดงค่าที่ตั้งไว้ล่วงหน้าที่ไม่เข้ากันหรือไม่รองรับในรายการเลือกเครื่องพิมพ์และเส้นพลาสติก ไม่สามารถเลือกค่าที่ตั้งไว้ล่วงหน้าเหล่านี้ได้"
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(ทดลอง) ใช้เอเจนต์เครื่องพิมพ์แทนโฮสต์การพิมพ์"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"ส่งงานพิมพ์ของเครื่องพิมพ์ที่ไม่ใช่ Bambu ผ่านเอเจนต์ปลั๊กอินของเครื่องพิมพ์ แทนการอัพโหลดไปยังโฮสต์การพิมพ์แบบเดิม\n"
+"เมื่อปิดใช้ OrcaSlicer จะใช้พฤติกรรมโฮสต์การพิมพ์แบบเดิม"
+
# AI Translated
msgid "Experimental Features"
msgstr "ฟีเจอร์ทดลอง"
@@ -9563,9 +9623,25 @@ msgstr "พรีเซ็ตผู้ใช้"
msgid "Preset Inside Project"
msgstr "พรีเซ็ตภายในโปรเจ็กต์"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "คัดลอกค่าที่สืบทอดมาจากพรีเซ็ตแม่ทั้งหมดมาไว้ในพรีเซ็ตนี้ และตัดความสัมพันธ์กับพรีเซ็ตแม่ พรีเซ็ตที่เข้ากันได้กับพรีเซ็ตแม่เท่านั้นอาจไม่ได้รับการรองรับอีกต่อไป"
+
msgid "Detach from parent"
msgstr "แยกออกจากพรีเซ็ตแม่"
+# AI Translated
+msgid "Unique preset"
+msgstr "พรีเซ็ตอิสระ"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "พรีเซ็ตแม่"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "พรีเซ็ตนี้ไม่ได้สืบทอดมาจากพรีเซ็ตอื่น"
+
msgid "Name is unavailable."
msgstr "ชื่อไม่พร้อมใช้งาน"
@@ -10305,22 +10381,6 @@ msgstr "คุณแน่ใจหรือไม่ว่าต้องกา
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "โดยทั่วไปรูปแบบไส้ในได้รับการออกแบบให้รองรับการหมุนโดยอัตโนมัติเพื่อให้แน่ใจว่าการพิมพ์ถูกต้องและบรรลุผลตามที่ต้องการ (เช่น Gyroid, ลูกบาศก์) การหมุนรูปแบบ ไส้ใน แบบกระจัดกระจายในปัจจุบันอาจทำให้ส่วนรองรับไม่เพียงพอ โปรดดำเนินการด้วยความระมัดระวังและตรวจสอบปัญหาการพิมพ์ที่อาจเกิดขึ้นอย่างละเอียด คุณแน่ใจหรือไม่ว่าต้องการเปิดใช้งานตัวเลือกนี้"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"ความสูงของเลเยอร์น้อยเกินไป\n"
-"มันจะตั้งค่าเป็น min_layer_height\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "ความสูงของเลเยอร์เกินขีดจำกัดในการตั้งค่าเครื่องพิมพ์ -> ชุดดันเส้น -> ขีดจำกัดความสูงของเลเยอร์ ซึ่งอาจทำให้เกิดปัญหาคุณภาพการพิมพ์"
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "ปรับเป็นช่วงที่ตั้งไว้อัตโนมัติ?\n"
-
-msgid "Adjust"
-msgstr "ปรับ"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "คุณลักษณะการทดลอง: การดึงกลับและตัดเส้นพลาสติกออกในระยะห่างที่มากขึ้นระหว่างการเปลี่ยนเส้นพลาสติกเพื่อลดการไล่เส้น แม้ว่าจะสามารถลดการไล่เส้นได้อย่างเห็นได้ชัด แต่ก็อาจเพิ่มความเสี่ยงของการอุดตันของหัวฉีดหรือภาวะแทรกซ้อนในการพิมพ์อื่นๆ อีกด้วย"
@@ -10513,6 +10573,9 @@ msgstr "พบคีย์เวิร์ดที่สงวนไว้"
msgid "Setting Overrides"
msgstr "การตั้งค่าการแทนที่"
+msgid "Retraction when switching material"
+msgstr "การร่นกลับเมื่อเปลี่ยนวัสดุ"
+
msgid "Basic information"
msgstr "ข้อมูลพื้นฐาน"
@@ -10642,6 +10705,12 @@ msgstr "โปรไฟล์กระบวนการที่เข้าก
msgid "Printable space"
msgstr "พื้นที่ที่สามารถพิมพ์ได้"
+msgid "Printer Agent"
+msgstr "ตัวแทนเครื่องพิมพ์"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "เลือกการใช้งานตัวแทนเครือข่ายสำหรับการสื่อสารของเครื่องพิมพ์ ตัวแทนที่มีอยู่จะได้รับการลงทะเบียนเมื่อเริ่มต้น"
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10767,9 +10836,6 @@ msgstr "การจำกัดความสูงของเลเยอร
msgid "Z-Hop"
msgstr "ยกแกน Z"
-msgid "Retraction when switching material"
-msgstr "การร่นกลับเมื่อเปลี่ยนวัสดุ"
-
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
"\n"
@@ -12111,6 +12177,10 @@ msgstr "อยู่ใกล้เขตหวงห้ามมากเกิ
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr "อยู่ใกล้พื้นที่การตรวจจับการจับตัวกันมากเกินไป และจะเกิดการชนกัน\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr "อยู่นอกพื้นที่การพิมพ์บางส่วน จึงไม่สามารถพิมพ์ได้\n"
+
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "อุณหภูมิหัวฉีดที่เลือกเข้ากันไม่ได้ อุณหภูมิหัวฉีดของเส้นพลาสติกแต่ละเส้นต้องอยู่ในช่วงอุณหภูมิหัวฉีดที่แนะนำของเส้นพลาสติกอื่นๆ มิฉะนั้นอาจเกิดการอุดตันของหัวฉีดหรือเครื่องพิมพ์เสียหายได้"
@@ -12426,9 +12496,6 @@ msgstr "ใช้ 3MF แทน G-code"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "เปิดใช้งานหากเครื่องพิมพ์รับไฟล์ 3MF เป็นงานพิมพ์ เมื่อเปิดใช้งาน OrcaSlicer จะส่งไฟล์ที่สไลซ์แล้วเป็น .gcode.3mf แทนไฟล์ .gcode ธรรมดา"
-msgid "Printer Agent"
-msgstr "ตัวแทนเครื่องพิมพ์"
-
msgid "Select the network agent implementation for printer communication."
msgstr "เลือกการใช้งานตัวแทนเครือข่ายสำหรับการสื่อสารของเครื่องพิมพ์"
@@ -13103,9 +13170,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "ความเร็วของสะพานภายใน หากค่าแสดงเป็นเปอร์เซ็นต์ ค่าดังกล่าวจะถูกคำนวณตาม bridge_speed ค่าเริ่มต้นคือ 150%"
-msgid "Brim width"
-msgstr "ความกว้าง ขอบยึดชิ้นงาน"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "ระยะห่างจากแบบจำลองถึงเส้นขอบยึดชิ้นงานด้านนอกสุด"
@@ -13185,6 +13249,14 @@ msgstr ""
"รูปทรงจะถูกทำลายก่อนที่จะตรวจจับมุมแหลม พารามิเตอร์นี้ระบุความยาวขั้นต่ำของการเบี่ยงเบนสำหรับการทำลาย\n"
"0 เพื่อปิดการใช้งาน"
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "หูขอบยึดชิ้นงานเฉพาะด้านนอก"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "สร้างหูหนูเฉพาะบนคอนทัวร์ด้านนอกของโมเดล โดยไม่รวมรูและส่วนที่ปิดล้อม"
+
msgid "upward compatible machine"
msgstr "เครื่องที่รองรับขึ้นไป"
@@ -14351,6 +14423,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "ไจรอยด์"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "ค่าความเรียบของไส้ในแบบโปร่ง"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "ควบคุมระดับความมนของมุมไส้ในแบบโปร่ง ค่า 0% จะคงเส้นทางเดิมที่เป็นมุมแหลม ส่วน 100% จะสร้างส่วนโค้งที่ใหญ่ที่สุดเท่าที่เป็นไปได้ระหว่างเส้นไส้ในที่อยู่ติดกัน"
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "ความเร่งของไส้ในพื้นผิวด้านบน การใช้ค่าที่ต่ำกว่าอาจปรับปรุงคุณภาพพื้นผิวด้านบนได้"
@@ -14893,6 +14973,14 @@ msgstr "เครื่องพิมพ์ G-code ชนิดใดที่
msgid "Klipper"
msgstr "คลิปเปอร์"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "ข้ามบล็อกการตั้งค่าใน G-code"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "ไม่เขียน CONFIG_BLOCK (คู่คีย์/ค่าของการตั้งค่าโปรแกรมสไลซ์) ลงในไฟล์ G-code ซึ่งอาจช่วยได้กับเครื่องพิมพ์ที่เฟิร์มแวร์ขัดข้องเมื่ออ่านบรรทัดคอมเมนต์เหล่านี้ (เช่น Anycubic go-klipper) หมายเหตุ: ไฟล์ G-code จะไม่มีการตั้งค่าโปรแกรมสไลซ์อีกต่อไป ดังนั้นการนำเข้ากลับมาใน OrcaSlicer จะไม่คืนค่าการตั้งค่า"
+
msgid "Pellet Modded Printer"
msgstr "เครื่องพิมพ์ Modded เม็ด"
@@ -15945,6 +16033,14 @@ msgstr "การถอยกลับนานเมื่อเปลี่ย
msgid "Retraction distance when extruder change"
msgstr "ระยะการดึงกลับเมื่อชุดดันเส้นเปลี่ยน"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "ความยาวการดึงกลับ (การเปลี่ยนเครื่องมือ)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "เมื่อการดึงกลับทำงานก่อนการเปลี่ยนเครื่องมือ เส้นพลาสติกจะถูกดึงกลับตามระยะที่กำหนด (วัดความยาวบนเส้นพลาสติกดิบ ก่อนเข้าสู่ชุดดันเส้น)"
+
msgid "Z-hop height"
msgstr "ความสูงยกแกน Z"
@@ -16039,6 +16135,10 @@ msgstr "ความยาวพิเศษเมื่อรีสตาร์
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "เมื่อชดเชยการดึงกลับหลังการเคลื่อนที่เดินทาง ชุดดันเส้นจะดันเส้นพลาสติกเพิ่มเติมในปริมาณนี้ การตั้งค่านี้ไม่ค่อยจำเป็น"
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "ความยาวพิเศษเมื่อรีสตาร์ท (การเปลี่ยนเครื่องมือ)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "เมื่อชดเชยการดึงกลับหลังเปลี่ยนเครื่องมือ ชุดดันเส้นจะดันเส้นพลาสติกเพิ่มเติมในปริมาณนี้"
@@ -16451,6 +16551,14 @@ msgstr "การเปลี่ยนเครื่องมือบน Wipe
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "บังคับให้หัวเครื่องมือเคลื่อนที่ไปที่ Wipe Tower ก่อนที่จะออกคำสั่งเปลี่ยนเครื่องมือ (Tx) เกี่ยวข้องเฉพาะกับเครื่องพิมพ์ที่มีชุดดันเส้นหลายเครื่อง (หลายหัวเครื่องมือ) ที่ใช้แผ่นเช็ดแบบ Type 2 ตามค่าเริ่มต้น Orca จะข้ามการเดินทางบนเครื่องที่มีหัวเครื่องมือหลายหัวเนื่องจากเฟิร์มแวร์จัดการการสลับหัว ซึ่งอาจส่งผลให้มีการออกคำสั่ง Tx เหนือส่วนที่พิมพ์ เปิดใช้งานตัวเลือกนี้หากคุณต้องการให้ทำการเปลี่ยนแปลงเครื่องมือเหนือ Wipe Tower แทนเสมอ"
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "รอให้ถึงอุณหภูมิที่ Wipe Tower"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "รับเครื่องมือใหม่โดยไม่รอให้ถึงอุณหภูมิการพิมพ์ แล้วเคลื่อนที่ไปยัง Wipe Tower และรออุณหภูมิที่นั่นก่อนไล่เส้นทันที เส้นพลาสติกที่ซึมออกมาระหว่างการอุ่นจะตกลงบน Wipe Tower แทนที่จะตกบนโมเดล และการเคลื่อนที่จะเกิดขึ้นพร้อมกับการอุ่น ใช้ได้เฉพาะกับเครื่องพิมพ์แบบหลายชุดดันเส้น (หลายหัวพิมพ์) ที่ใช้ Wipe Tower ชนิดที่ 2 เฟิร์มแวร์หรือแมโครการเปลี่ยนเครื่องมือต้องไม่รออุณหภูมิเอง เมื่อปิดใช้ คำสั่งรออุณหภูมิจะถูกส่งทันทีหลังคำสั่งเปลี่ยนเครื่องมือ"
+
msgid "No sparse layers (beta)"
msgstr "ไม่มีชั้นกระจัดกระจาย (เบต้า)"
@@ -19681,9 +19789,6 @@ msgstr "เครื่องพิมพ์ทางกายภาพ"
msgid "Print Host upload"
msgstr "อัพโหลดโฮสต์การพิมพ์"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "เลือกการใช้งานตัวแทนเครือข่ายสำหรับการสื่อสารของเครื่องพิมพ์ ตัวแทนที่มีอยู่จะได้รับการลงทะเบียนเมื่อเริ่มต้น"
-
msgid "Select a Flashforge printer"
msgstr "เลือกเครื่องพิมพ์ Flashforge"
@@ -20575,9 +20680,6 @@ msgstr "เกิดสิ่งที่ไม่คาดคิดขณะพ
msgid "User canceled."
msgstr "ผู้ใช้ยกเลิก"
-msgid "Head diameter"
-msgstr "เส้นผ่านศูนย์กลางหัว"
-
msgid "Max angle"
msgstr "มุมสูงสุด"
@@ -21361,6 +21463,22 @@ msgstr ""
"หลีกเลี่ยงการบิดเบี้ยว\n"
"คุณรู้หรือไม่ว่าเมื่อพิมพ์วัสดุที่มีแนวโน้มที่จะเกิดการบิดเบี้ยว เช่น ABS การเพิ่มอุณหภูมิฐานพิมพ์อย่างเหมาะสมสามารถลดความน่าจะเป็นของการบิดเบี้ยวได้"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "ความสูงของเลเยอร์น้อยเกินไป\n"
+#~ "มันจะตั้งค่าเป็น min_layer_height\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "ความสูงของเลเยอร์เกินขีดจำกัดในการตั้งค่าเครื่องพิมพ์ -> ชุดดันเส้น -> ขีดจำกัดความสูงของเลเยอร์ ซึ่งอาจทำให้เกิดปัญหาคุณภาพการพิมพ์"
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "ปรับเป็นช่วงที่ตั้งไว้อัตโนมัติ?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "เส้นผ่านศูนย์กลางหัว"
+
#~ msgid "Print order within a single layer."
#~ msgstr "สั่งพิมพ์ภายในชั้นเดียว"
diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po
index 467b3c355b..c3deff8bd8 100644
--- a/localization/i18n/tr/OrcaSlicer_tr.po
+++ b/localization/i18n/tr/OrcaSlicer_tr.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
-"PO-Revision-Date: 2026-08-01 20:32+0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
+"PO-Revision-Date: 2026-08-21 23:18+0300\n"
"Last-Translator: GlauTech\n"
"Language-Team: \n"
"Language: tr\n"
@@ -14,27 +14,21 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
"X-Generator: Poedit 3.9\n"
-# AI Translated
msgid "Main Extruder"
msgstr "Ana Ekstruder"
-# AI Translated
msgid "Main extruder"
msgstr "Ana ekstruder"
-# AI Translated
msgid "main extruder"
msgstr "ana ekstruder"
-# AI Translated
msgid "Auxiliary Extruder"
msgstr "Yardımcı Ekstruder"
-# AI Translated
msgid "Auxiliary extruder"
msgstr "Yardımcı ekstruder"
-# AI Translated
msgid "auxiliary extruder"
msgstr "yardımcı ekstruder"
@@ -56,27 +50,21 @@ msgstr "Sağ ekstruder"
msgid "right extruder"
msgstr "sağ ekstruder"
-# AI Translated
msgid "Main Nozzle"
msgstr "Ana Nozul"
-# AI Translated
msgid "Main nozzle"
msgstr "Ana nozul"
-# AI Translated
msgid "main nozzle"
msgstr "ana nozul"
-# AI Translated
msgid "Auxiliary Nozzle"
msgstr "Yardımcı Nozul"
-# AI Translated
msgid "Auxiliary nozzle"
msgstr "Yardımcı nozul"
-# AI Translated
msgid "auxiliary nozzle"
msgstr "yardımcı nozul"
@@ -106,59 +94,45 @@ msgstr "Ana Hotend"
msgid "Main hotend"
msgstr "Ana hotend"
-# AI Translated
msgid "main hotend"
msgstr "ana hotend"
-# AI Translated
msgid "Auxiliary Hotend"
msgstr "Yardımcı Hotend"
-# AI Translated
msgid "Auxiliary hotend"
msgstr "Yardımcı hotend"
-# AI Translated
msgid "auxiliary hotend"
msgstr "yardımcı hotend"
-# AI Translated
msgid "Left Hotend"
msgstr "Sol Hotend"
-# AI Translated
msgid "Left hotend"
msgstr "Sol hotend"
-# AI Translated
msgid "left hotend"
msgstr "sol hotend"
-# AI Translated
msgid "Right Hotend"
msgstr "Sağ Hotend"
-# AI Translated
msgid "Right hotend"
msgstr "Sağ hotend"
-# AI Translated
msgid "right hotend"
msgstr "sağ hotend"
-# AI Translated
msgid "main"
msgstr "ana"
-# AI Translated
msgid "auxiliary"
msgstr "yardımcı"
-# AI Translated
msgid "Main"
msgstr "Ana"
-# AI Translated
msgid "Auxiliary"
msgstr "Yardımcı"
@@ -738,9 +712,8 @@ msgstr "Sabit adım sürükleme"
msgid "Context Menu"
msgstr "Bağlam Menüsü"
-# AI Translated
msgid "Toggle Auto-Drop"
-msgstr "Otomatik Bırakmayı Aç/Kapat"
+msgstr "Otomatik düşürmeyi aç / kapat"
msgid "Single sided scaling"
msgstr "Tek taraflı ölçekleme"
@@ -791,9 +764,8 @@ msgstr "Nesne"
msgid "Part"
msgstr "Parça"
-# AI Translated
msgid "Relative"
-msgstr "Göreli"
+msgstr "Göreceli"
# AI Translated
msgid "Coordinate system used for transform actions."
@@ -1239,7 +1211,7 @@ msgid "Text move"
msgstr "Metin taşıma"
msgid "Set Mirror"
-msgstr "Aynayı Ayarla"
+msgstr "Aynalamayı ayarla"
msgid "Embossed text"
msgstr "Kabartmalı metin"
@@ -1786,10 +1758,10 @@ msgid "Lock/unlock rotation angle when dragging above the surface."
msgstr "Yüzeyin üzerinde sürüklerken dönüş açısını kilitleyin/kilidini açın."
msgid "Mirror vertically"
-msgstr "Dikey olarak yansıt"
+msgstr "Dikey aynala"
msgid "Mirror horizontally"
-msgstr "Yatay olarak yansıt"
+msgstr "Yatay aynala"
#. TRN: This is the name of the action that shows in undo/redo stack (changing part type from SVG to something else).
msgid "Change SVG Type"
@@ -1797,7 +1769,7 @@ msgstr "SVG Türünü Değiştir"
#. TRN - Input label. Be short as possible
msgid "Mirror"
-msgstr "Ayna"
+msgstr "Aynala"
msgid "Choose SVG file for emboss:"
msgstr "Kabartma için SVG dosyasını seçin:"
@@ -2074,10 +2046,10 @@ msgid "3MF files"
msgstr "3MF dosyaları"
msgid "G-code 3MF files"
-msgstr "Gcode 3MF dosyaları"
+msgstr "G-code 3MF dosyaları"
msgid "G-code files"
-msgstr "G kodu dosyaları"
+msgstr "G-code dosyaları"
msgid "Supported files"
msgstr "Desteklenen dosyalar"
@@ -2306,7 +2278,7 @@ msgid "new or open project file is not allowed during the slicing process!"
msgstr "dilimleme işlemi sırasında yeni veya açık proje dosyasına izin verilmez!"
msgid "Open Project"
-msgstr "Projeyi Aç"
+msgstr "Projeyi aç"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Orca Slicer'ın sürümü çok düşük ve normal şekilde kullanılabilmesi için en son sürüme güncellenmesi gerekiyor."
@@ -2571,7 +2543,7 @@ msgid "Ongoing uploads"
msgstr "Devam eden yüklemeler"
msgid "Select a G-code file:"
-msgstr "G kodu dosyası seçin:"
+msgstr "G-code dosyası seçin:"
msgid "Could not start URL download. Destination folder is not set. Please choose destination folder in Configuration Wizard."
msgstr "URL indirme işlemi başlatılamadı. Hedef klasör ayarlanmamış. Lütfen Yapılandırma Sihirbazı’nda hedef klasörü seçin."
@@ -2665,7 +2637,7 @@ msgid "Add Negative Part"
msgstr "Negatif parça ekle"
msgid "Add Modifier"
-msgstr "Değiştirici Ekle"
+msgstr "Değiştirici ekle"
msgid "Add Support Blocker"
msgstr "Destek engelleyici ekle"
@@ -2734,16 +2706,15 @@ msgstr "Simit"
msgid "Orca Cube"
msgstr "Orca Küpü"
-# AI Translated
msgid "OrcaSliced Combo"
-msgstr "OrcaSliced Combo"
+msgstr "Orca Dilimleme Paketi"
# AI Translated
msgid "Orca Badge"
msgstr "Orca Rozeti"
msgid "Orca Tolerance Test"
-msgstr "Orca tolerans testi"
+msgstr "Orca Tolerans Testi"
msgid "3DBenchy"
msgstr "3DBenchy"
@@ -2807,17 +2778,16 @@ msgid "Set as Individual Objects"
msgstr "Bireysel nesneler olarak ayarla"
msgid "Fill bed with copies"
-msgstr "Yatağı kopyalarla doldurun"
+msgstr "Yatağı kopyalarla doldur"
msgid "Fill the remaining area of bed with copies of the selected object"
-msgstr "Yatağın kalan alanını seçilen nesnenin kopyalarıyla doldurun"
+msgstr "Yatağın kalan alanını seçili nesnenin kopyalarıyla doldur"
msgid "Printable"
msgstr "Yazdırılabilir"
-# AI Translated
msgid "Auto Drop"
-msgstr "Otomatik Bırakma"
+msgstr "Otomatik düşür"
# AI Translated
msgid "Automatically drops the selected object to the build plate."
@@ -2925,19 +2895,19 @@ msgid "Along X Axis"
msgstr "X ekseni boyunca"
msgid "Mirror along the X Axis"
-msgstr "X ekseni boyunca aynalama"
+msgstr "X ekseni boyunca aynala"
msgid "Along Y Axis"
msgstr "Y ekseni boyunca"
msgid "Mirror along the Y Axis"
-msgstr "Y ekseni boyunca aynalama"
+msgstr "Y ekseni boyunca aynala"
msgid "Along Z Axis"
msgstr "Z ekseni boyunca"
msgid "Mirror along the Z Axis"
-msgstr "Z ekseni boyunca aynalama"
+msgstr "Z ekseni boyunca aynala"
msgid "Mirror object"
msgstr "Nesneyi aynala"
@@ -2967,7 +2937,7 @@ msgid "Add Models"
msgstr "Model ekle"
msgid "Show Labels"
-msgstr "Etiketleri Göster"
+msgstr "Etiketleri göster"
msgid "To Objects"
msgstr "Nesnelere"
@@ -3009,7 +2979,7 @@ msgid "Select all objects on the current plate"
msgstr "Mevcut plakadaki tüm nesneleri seç"
msgid "Select All Plates"
-msgstr "Tüm Plakaları Seç"
+msgstr "Tüm plakaları seç"
msgid "Select all objects on all plates"
msgstr "Tüm plakalardaki tüm nesneleri seç"
@@ -3045,28 +3015,28 @@ msgid "Remove the selected plate"
msgstr "Seçilen plakayı kaldır"
msgid "Add instance"
-msgstr "Örnek ekle"
+msgstr "Eş kopya ekle"
msgid "Add one more instance of the selected object"
-msgstr "Seçilen nesnenin bir örneğini daha ekle"
+msgstr "Seçili nesneye bir eş kopya ekle"
msgid "Remove instance"
-msgstr "Örneği kaldır"
+msgstr "Eş kopyayı kaldır"
msgid "Remove one instance of the selected object"
-msgstr "Seçilen nesnenin bir örneğini kaldır"
+msgstr "Seçili nesnenin bir eş kopyasını kaldır"
msgid "Set number of instances"
-msgstr "Örnek sayısını ayarlayın"
+msgstr "Eş kopya sayısını ayarla"
msgid "Change the number of instances of the selected object"
-msgstr "Seçilen nesnenin örnek sayısını değiştirme"
+msgstr "Seçili nesnenin eş kopya sayısını değiştir"
msgid "Fill bed with instances"
-msgstr "Yatağı örneklerle doldurun"
+msgstr "Yatağı eş kopyalarla doldur"
msgid "Fill the remaining area of bed with instances of the selected object"
-msgstr "Yatağın kalan alanını seçilen nesnenin örnekleriyle doldurun"
+msgstr "Yatağın kalan alanını seçili nesnenin eş kopyalarıyla doldur"
msgid "Clone"
msgstr "Klon oluştur"
@@ -3075,7 +3045,7 @@ msgid "Simplify Model"
msgstr "Modeli basitleştir"
msgid "Subdivision mesh"
-msgstr "Alt bölüm ağı"
+msgstr "Poligon artırma"
msgid "(Lost color)"
msgstr "(Renk kaybı)"
@@ -3090,10 +3060,10 @@ msgid "Edit Process Settings"
msgstr "İşlem ayarlarını düzenle"
msgid "Copy Process Settings"
-msgstr "İşlem Ayarlarını Kopyala"
+msgstr "İşlem ayarlarını kopyala"
msgid "Paste Process Settings"
-msgstr "İşlem Ayarlarını Yapıştır"
+msgstr "İşlem ayarlarını yapıştır"
msgid "Edit print parameters for a single object"
msgstr "Tek bir nesne için yazdırma parametrelerini düzenleme"
@@ -3325,7 +3295,7 @@ msgid "Part manipulation"
msgstr "Parça manipülasyonu"
msgid "Instance manipulation"
-msgstr "Örnek manipülasyonu"
+msgstr "Eş kopya manipülasyonu"
msgid "Height ranges"
msgstr "Yükseklik aralıkları"
@@ -3361,7 +3331,7 @@ msgstr "Parça tipini seçin"
# AI Translated
msgid "Instances to Separated Objects"
-msgstr "Örnekleri Ayrı Nesnelere Dönüştür"
+msgstr "Eş Kopyaları Ayrı Nesnelere Dönüştür"
msgid "Enter new name"
msgstr "Yeni adı girin"
@@ -3478,7 +3448,7 @@ msgid "More"
msgstr "Daha"
msgid "Open Preferences"
-msgstr "Tercihleri Aç"
+msgstr "Tercihleri aç"
msgid "Open next tip"
msgstr "Sonraki ipucunu aç"
@@ -3505,13 +3475,13 @@ msgid "Custom Template:"
msgstr "Özel Şablon:"
msgid "Custom G-code:"
-msgstr "Özel G kodu:"
+msgstr "Özel G-code:"
msgid "Custom G-code"
-msgstr "Özel G kodu"
+msgstr "Özel G-code"
msgid "Enter Custom G-code used on current layer:"
-msgstr "Geçerli katmanda kullanılan Özel G kodunu girin:"
+msgstr "Geçerli katmanda kullanılan Özel G-code'u girin:"
msgid "Jump to layer"
msgstr "Katmana Atla"
@@ -3526,16 +3496,16 @@ msgid "Insert a pause command at the beginning of this layer."
msgstr "Bu katmanın başına bir duraklatma komutu ekleyin."
msgid "Add Custom G-code"
-msgstr "Özel G Kodu Ekle"
+msgstr "Özel G-code Ekle"
msgid "Insert custom G-code at the beginning of this layer."
-msgstr "Bu katmanın başına özel G kodunu ekleyin."
+msgstr "Bu katmanın başına özel G-code'u ekleyin."
msgid "Add Custom Template"
msgstr "Özel Şablon Ekle"
msgid "Insert template custom G-code at the beginning of this layer."
-msgstr "Bu katmanın başlangıcına şablon özel G kodunu ekleyin."
+msgstr "Bu katmanın başlangıcına şablon özel G-code'u ekleyin."
# AI Translated
msgid "Filament "
@@ -3551,10 +3521,10 @@ msgid "Delete Custom Template"
msgstr "Özel Şablonu Sil"
msgid "Edit Custom G-code"
-msgstr "Özel G Kodunu Düzenle"
+msgstr "Özel G-code'u Düzenle"
msgid "Delete Custom G-code"
-msgstr "Özel G Kodunu Sil"
+msgstr "Özel G-code'u Sil"
msgid "Delete Filament Change"
msgstr "Filament Değişikliğini Sil"
@@ -4069,10 +4039,10 @@ msgid "Encountered an unknown error with the Storage status. Please try again."
msgstr "Depolama durumuyla ilgili bilinmeyen bir hatayla karşılaşıldı. Lütfen tekrar deneyin."
msgid "Sending G-code file over LAN"
-msgstr "LAN üzerinden gcode dosyası gönderiliyor"
+msgstr "LAN üzerinden G-code dosyası gönderiliyor"
msgid "Sending G-code file to SD card"
-msgstr "Gcode dosyası sdcard'a gönderiliyor"
+msgstr "G-code dosyası sdcard'a gönderiliyor"
#, c-format, boost-format
msgid "Successfully sent. Close current page in %s s"
@@ -4082,7 +4052,7 @@ msgid "Storage needs to be inserted before sending to printer."
msgstr "Yazıcıya göndermeden önce depolama biriminin eklenmesi gerekir."
msgid "Sending G-code file over LAN, but the Storage in the printer is abnormal and print-issues may be caused by this."
-msgstr "G kodu dosyası LAN üzerinden gönderiliyor ancak yazıcıdaki Depolama anormal ve yazdırma sorunları bundan kaynaklanabilir."
+msgstr "G-code dosyası LAN üzerinden gönderiliyor ancak yazıcıdaki Depolama anormal ve yazdırma sorunları bundan kaynaklanabilir."
msgid "The Storage in the printer is abnormal. Please replace it with a normal Storage before sending to printer."
msgstr "Yazıcıdaki Depolama anormal. Lütfen yazıcıya göndermeden önce normal bir Depolama ile değiştirin."
@@ -4622,7 +4592,7 @@ msgid "Please save your project and restart the application."
msgstr "Lütfen projeyi kaydedin ve programı yeniden başlatın."
msgid "Processing G-Code from previous file…"
-msgstr "Önceki dosyadan G-Kodu işleniyor…"
+msgstr "Önceki dosyadan G-code işleniyor…"
msgid "Slicing complete"
msgstr "Dilimleme tamamlandı"
@@ -4655,35 +4625,35 @@ msgid "Successfully executed post-processing script"
msgstr "İşlem sonrası komut dosyası başarıyla çalıştırıldı"
msgid "Unknown error occurred during exporting G-code."
-msgstr "G kodu dışa aktarılırken bilinmeyen bir hata oluştu."
+msgstr "G-code dışa aktarılırken bilinmeyen bir hata oluştu."
#, boost-format
msgid ""
"Copying of the temporary G-code to the output G-code failed. Maybe the SD card is write locked?\n"
"Error message: %1%"
msgstr ""
-"Geçici G kodunun çıkış G koduna kopyalanması başarısız oldu. Belki SD kart yazma kilitlidir.\n"
+"Geçici G-code'un çıkış G-code'a kopyalanması başarısız oldu. Belki SD kart yazma kilitlidir.\n"
"Hata mesajı: %1%"
#, boost-format
msgid "Copying of the temporary G-code to the output G-code failed. There might be problem with target device, please try exporting again or using different device. The corrupted output G-code is at %1%.tmp."
-msgstr "Geçici G kodunun çıkış G koduna kopyalanması başarısız oldu. Hedef cihazda sorun olabilir, lütfen tekrar dışa aktarmayı veya farklı bir cihaz kullanmayı deneyin. Bozuk çıktı G kodu %1%.tmp konumunda."
+msgstr "Geçici G-code'un çıkış G-code'a kopyalanması başarısız oldu. Hedef cihazda sorun olabilir, lütfen tekrar dışa aktarmayı veya farklı bir cihaz kullanmayı deneyin. Bozuk çıktı G-code %1%.tmp konumunda."
#, boost-format
msgid "Renaming of the G-code after copying to the selected destination folder has failed. Current path is %1%.tmp. Please try exporting again."
-msgstr "Seçilen hedef klasöre kopyalandıktan sonra G kodunun yeniden adlandırılması başarısız oldu. Geçerli yol: %1%.tmp. Lütfen dışa aktarmayı tekrar deneyin."
+msgstr "Seçilen hedef klasöre kopyalandıktan sonra G-code'un yeniden adlandırılması başarısız oldu. Geçerli yol: %1%.tmp. Lütfen dışa aktarmayı tekrar deneyin."
#, boost-format
msgid "Copying of the temporary G-code has finished but the original code at %1% couldn't be opened during copy check. The output G-code is at %2%.tmp."
-msgstr "Geçici G kodunun kopyalanması tamamlandı ancak %1% konumundaki orijinal kod kopyalama kontrolü sırasında açılamadı. Çıkış G kodu %2%.tmp konumundadır."
+msgstr "Geçici G-code'un kopyalanması tamamlandı ancak %1% konumundaki orijinal kod kopyalama kontrolü sırasında açılamadı. Çıkış G-code %2%.tmp konumundadır."
#, boost-format
msgid "Copying of the temporary G-code has finished but the exported code couldn't be opened during copy check. The output G-code is at %1%.tmp."
-msgstr "Geçici G kodunun kopyalanması tamamlandı ancak kopya kontrolü sırasında dışa aktarılan kod açılamadı. Çıkış G kodu %1%.tmp konumundadır."
+msgstr "Geçici G-code'un kopyalanması tamamlandı ancak kopya kontrolü sırasında dışa aktarılan kod açılamadı. Çıkış G-code %1%.tmp konumundadır."
#, boost-format
msgid "G-code file exported to %1%"
-msgstr "G kodu dosyası %1%’e aktarıldı"
+msgstr "G-code dosyası %1%’e aktarıldı"
msgid "Unknown error with G-code export"
msgstr "G-code dışa aktarımında bilinmeyen hata"
@@ -4694,12 +4664,12 @@ msgid ""
"Error message: %1%.\n"
"Source file %2%."
msgstr ""
-"Gcode dosyası kaydedilemedi.\n"
+"G-code dosyası kaydedilemedi.\n"
"Hata mesajı: %1%.\n"
"Kaynak dosya %2%."
msgid "Copying of the temporary G-code to the output G-code failed."
-msgstr "Geçici G-kodu dosyasının çıktı G-kodu dosyasına kopyalanması başarısız oldu."
+msgstr "Geçici G-code dosyasının çıktı G-code dosyasına kopyalanması başarısız oldu."
#, boost-format
msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue"
@@ -4712,7 +4682,7 @@ msgid "Size in X and Y of the rectangular plate."
msgstr "Dikdörtgen plakanın X ve Y boyutları."
msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle."
-msgstr "0,0 G kodu koordinatının dikdörtgenin sol ön köşesinden uzaklığı."
+msgstr "0,0 G-code koordinatının dikdörtgenin sol ön köşesinden uzaklığı."
msgid "Diameter of the print bed. It is assumed that origin (0,0) is located in the center."
msgstr "Baskı yatağının çapı. Orjinin (0,0) merkezde olduğu varsayılmaktadır."
@@ -4812,6 +4782,23 @@ msgstr "Mevcut hazne sıcaklığı malzemenin güvenli sıcaklığından yüksek
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "Minimum oda sıcaklığı (%d℃), hedef oda sıcaklığından (%d℃) yüksek. Minimum değer, oda hedefe doğru ısınmaya devam ederken baskının başladığı eşiktir; bu nedenle hedefi aşmamalıdır. Değer hedefe sınırlandırılacak."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "Katman yüksekliği çok küçük. Minimum değere (%g mm) ayarlanacak."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "Katman yüksekliği, Yazıcı Ayarları -> Ekstruder -> Katman yüksekliği sınırları bölümünde ayarlanan sınırların dışında, bu durum baskı kalitesi sorunlarına neden olabilir."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "Otomatik olarak sınır değerine (%g mm) ayarlansın mı?"
+
+msgid "Adjust"
+msgstr "Ayarla"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4932,6 +4919,13 @@ msgstr ""
"Evet - Arachne Duvarı Oluşturucusunu Etkinleştir\n"
"Hayır - Arachne Duvarı Oluşturucusunu Devre Dışı Bırak ve Pütürlü Yüzey [Yer Değiştirme] modunu ayarla"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Kenar kulak yarıçapı"
+
+msgid "Brim width"
+msgstr "Kenar genişliği"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "Spiral mod yalnızca duvar döngüleri 1 olduğunda, destek devre dışı bırakıldığında, problama yoluyla topaklanma tespiti devre dışı bırakıldığında, üst kabuk katmanları 0 olduğunda, seyrek dolgu yoğunluğu 0 olduğunda ve hızlandırılmış tip geleneksel olduğunda çalışır."
@@ -5038,7 +5032,7 @@ msgid "Cooling chamber"
msgstr "Soğutma haznesi"
msgid "Pause (G-code inserted by user)"
-msgstr "Duraklat (Kullanıcı tarafından eklenen G kodu)"
+msgstr "Duraklat (Kullanıcı tarafından eklenen G-code)"
msgid "Motor noise showoff"
msgstr "Motor gürültü gösterimi"
@@ -5186,6 +5180,14 @@ msgstr "Cali G-code oluşturma başarısız oldu"
msgid "Calibration error"
msgstr "Kalibrasyon hatası"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "Bu yazıcı, bu denetimin ihtiyaç duyduğu donanımla yapılandırılmamış."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Bu denetim bu yazıcıda desteklenmiyor."
+
# AI Translated
msgid "Network unavailable"
msgstr "Ağ kullanılamıyor"
@@ -5278,16 +5280,16 @@ msgstr "varsayılan"
#, boost-format
msgid "Edit Custom G-code (%1%)"
-msgstr "Özel G Kodunu Düzenle (%1%)"
+msgstr "Özel G-code'u Düzenle (%1%)"
msgid "Built-in placeholders (Double click item to add to G-code)"
-msgstr "Yerleşik yer tutucular (G koduna eklemek için öğeye çift tıklayın)"
+msgstr "Yerleşik yer tutucular (G-code'a eklemek için öğeye çift tıklayın)"
msgid "Search G-code placeholders"
-msgstr "Gcode yer tutucularını arayın"
+msgstr "G-code yer tutucularını arayın"
msgid "Add selected placeholder to G-code"
-msgstr "Seçili yer tutucuyu G koduna ekle"
+msgstr "Seçili yer tutucuyu G-code'a ekle"
msgid "Select placeholder"
msgstr "Yer tutucuyu seçin"
@@ -5450,10 +5452,10 @@ msgid "Acceleration"
msgstr "Hızlanma"
msgid "Jerk"
-msgstr "Jerk"
+msgstr "Sarsıntı"
msgid "Fan Speed"
-msgstr "Fan hızı"
+msgstr "Fan Hızı"
msgid "Flow"
msgstr "Akış"
@@ -5468,7 +5470,7 @@ msgid "Layer Time"
msgstr "Katman Süresi"
msgid "Layer Time (log)"
-msgstr "Katman Süresi (günlük)"
+msgstr "Katman Süresi (log)"
msgid "Pressure Advance"
msgstr "Basınç İlerlemesi"
@@ -5477,10 +5479,10 @@ msgid "Noop"
msgstr "Hayır"
msgid "Retract"
-msgstr "Geri Çekme"
+msgstr "Geri çekme"
msgid "Unretract"
-msgstr "İleri İtme"
+msgstr "İleri itme"
msgid "Seam"
msgstr "Dikiş"
@@ -5578,7 +5580,7 @@ msgid "Acceleration: "
msgstr "İvme: "
msgid "Jerk: "
-msgstr "Jerk: "
+msgstr "Sarsıntı: "
msgid "PA: "
msgstr "PA: "
@@ -5608,7 +5610,7 @@ msgid "Actual speed profile"
msgstr "Gerçek hız profili"
msgid "Statistics of All Plates"
-msgstr "Tüm Plakaların İstatistikleri"
+msgstr "Tüm plakaların istatistikleri"
msgid "Display"
msgstr "Ekran"
@@ -5708,7 +5710,7 @@ msgid "Acceleration (mm/s²)"
msgstr "İvme (mm/s²)"
msgid "Jerk (mm/s)"
-msgstr "Jerk (mm/s)"
+msgstr "Sarsıntı (mm/s)"
msgid "Fan speed (%)"
msgstr "Fan hızı (%)"
@@ -5759,9 +5761,8 @@ msgstr "Normal mod"
msgid "Total Filament"
msgstr "Toplam filament"
-# AI Translated
msgid "Model Filament"
-msgstr "Model Filamenti"
+msgstr "Model filamenti"
msgid "Prepare time"
msgstr "Hazırlık süresi"
@@ -6050,18 +6051,18 @@ msgstr "Hacim:"
msgid "Size:"
msgstr "Boyut:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
-msgstr "%d katmanında gcode yollarında çakışmalar bulundu, Z = %.2lfmm. Lütfen çakışan nesneleri daha uzağa ayırın (%s <-> %s)."
+msgstr "%d katmanında G-code yollarında çakışmalar bulundu, Z = %.2lfmm. Lütfen çakışan nesneleri daha uzağa ayırın (%s <-> %s)."
msgid "An object is laid over the plate boundaries."
msgstr "Plakanın sınırına bir nesne serilir."
msgid "A G-code path goes beyond the max print height."
-msgstr "Bir G kodu yolu maksimum baskı yüksekliğinin ötesine geçer."
+msgstr "Bir G-code yolu maksimum baskı yüksekliğinin ötesine geçer."
msgid "A G-code path goes beyond plate boundaries."
-msgstr "Bir G kodu yolu plakanın sınırlarının ötesine geçer."
+msgstr "Bir G-code yolu plakanın sınırlarının ötesine geçer."
msgid "Not support printing 2 or more TPU filaments."
msgstr "2 veya daha fazla TPU filamentinin yazdırılmasını desteklemez."
@@ -6072,19 +6073,19 @@ msgstr "Araç %d"
#, c-format, boost-format
msgid "Filament %s is placed in the %s, but the generated G-code path exceeds the printable range of the %s."
-msgstr "%s filamenti %s içine yerleştirildi, ancak oluşturulan G kodu yolu %s'nin yazdırılabilir aralığını aşıyor."
+msgstr "%s filamenti %s içine yerleştirildi, ancak oluşturulan G-code yolu %s'nin yazdırılabilir aralığını aşıyor."
#, c-format, boost-format
msgid "Filaments %s are placed in the %s, but the generated G-code path exceeds the printable range of the %s."
-msgstr "%s filamentleri %s içine yerleştirildi, ancak oluşturulan G kodu yolu %s'nin yazdırılabilir aralığını aşıyor."
+msgstr "%s filamentleri %s içine yerleştirildi, ancak oluşturulan G-code yolu %s'nin yazdırılabilir aralığını aşıyor."
#, c-format, boost-format
msgid "Filament %s is placed in the %s, but the generated G-code path exceeds the printable height of the %s."
-msgstr "%s filamenti %s'e yerleştirildi, ancak oluşturulan G kodu yolu %s'nin yazdırılabilir yüksekliğini aşıyor."
+msgstr "%s filamenti %s'e yerleştirildi, ancak oluşturulan G-code yolu %s'nin yazdırılabilir yüksekliğini aşıyor."
#, c-format, boost-format
msgid "Filaments %s are placed in the %s, but the generated G-code path exceeds the printable height of the %s."
-msgstr "%s filamentleri %s'e yerleştirildi, ancak oluşturulan G kodu yolu %s'nin yazdırılabilir yüksekliğini aşıyor."
+msgstr "%s filamentleri %s'e yerleştirildi, ancak oluşturulan G-code yolu %s'nin yazdırılabilir yüksekliğini aşıyor."
msgid "Open wiki for more information."
msgstr "Daha fazla bilgi için wiki'yi açın."
@@ -6232,6 +6233,10 @@ msgstr "Çoklu cihaz"
msgid "Project"
msgstr "Proje"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Cihaz (Web)"
+
msgid "Yes"
msgstr "Evet"
@@ -6248,7 +6253,7 @@ msgid "Print plate"
msgstr "Plakayı Yazdır"
msgid "Export G-code file"
-msgstr "G-kod dosyasını dışa aktar"
+msgstr "G-code dosyasını dışa aktar"
msgctxt "Verb"
msgid "Print"
@@ -6282,20 +6287,19 @@ msgid "Setup Wizard"
msgstr "Kurulum sihirbazı"
msgid "Show Configuration Folder"
-msgstr "Yapılandırma Klasörünü Göster"
+msgstr "Yapılandırma klasörünü göster"
-# AI Translated
msgid "Troubleshoot Center"
-msgstr "Sorun Giderme Merkezi"
+msgstr "Sorun giderme merkezi"
msgid "Open Network Test"
-msgstr "Ağ Testini Aç"
+msgstr "Ağ testini aç"
msgid "Show Tip of the Day"
-msgstr "Günün İpucunu Göster"
+msgstr "Günün ipucunu göster"
msgid "Check for Updates"
-msgstr "Güncellemeleri Kontrol Et"
+msgstr "Güncellemeleri kontrol et"
#, c-format, boost-format
msgid "&About %s"
@@ -6349,7 +6353,7 @@ msgid "Recent files"
msgstr "Son dosyalar"
msgid "Save Project"
-msgstr "Projeyi Kaydet"
+msgstr "Projeyi kaydet"
msgid "Save current project to file"
msgstr "Mevcut projeyi dosyaya kaydet"
@@ -6406,22 +6410,22 @@ msgid "Export all plate sliced file"
msgstr "Dilimlenmiş tüm plaka dosyalarını dışa aktar"
msgid "Export G-code"
-msgstr "G-kodunu dışa aktar"
+msgstr "G-code'u dışa aktar"
msgid "Export current plate as G-code"
-msgstr "Geçerli plakayı G kodu olarak dışa aktar"
+msgstr "Geçerli plakayı G-code olarak dışa aktar"
msgid "Export toolpaths as OBJ"
msgstr "Takımyollarını OBJ olarak dışa aktar"
msgid "Export Preset Bundle"
-msgstr "Ön Ayar Paketini Dışa Aktar"
+msgstr "Ön ayar paketini dışa aktar"
msgid "Export current configuration to files"
msgstr "Geçerli yapılandırmayı dosyalara aktar"
msgid "Export"
-msgstr "Dışa Aktar"
+msgstr "Dışa aktar"
msgid "Quit"
msgstr "Çıkış"
@@ -6478,13 +6482,13 @@ msgid "Deselects all objects"
msgstr "Tüm nesnelerin seçimini kaldırır"
msgid "Use Perspective View"
-msgstr "Perspektif Görünüm"
+msgstr "Perspektif görünüm"
msgid "Use Orthogonal View"
-msgstr "Ortogonal Görünüm"
+msgstr "Ortogonal görünüm"
msgid "Auto Perspective"
-msgstr "Otomatik Perspektif"
+msgstr "Otomatik perspektif"
msgid "Automatically switch between orthographic and perspective when changing from top/bottom/side views."
msgstr "Üst/Alt/Yan görünümler arasında geçiş yaparken ortografik ve perspektif arasında otomatik olarak geçiş yapın."
@@ -6493,40 +6497,40 @@ msgid "Show &G-code Window"
msgstr "&G-code Penceresini Göster"
msgid "Show G-code window in Preview scene."
-msgstr "Previce sahnesinde G-kodu penceresini göster."
+msgstr "Previce sahnesinde G-code penceresini göster."
msgid "Show 3D Navigator"
-msgstr "3D Gezgini Göster"
+msgstr "3D gezgini göster"
msgid "Show 3D navigator in Prepare and Preview scene."
msgstr "Hazırlama ve Önizleme sahnesinde 3D gezgini göster."
msgid "Show Gridlines"
-msgstr "Kılavuz Çizgilerini Göster"
+msgstr "Kılavuz çizgilerini göster"
msgid "Show Gridlines on plate"
msgstr "Kılavuz Çizgilerini plaka üzerinde göster"
msgid "Reset Window Layout"
-msgstr "Pencere Düzenini Sıfırla"
+msgstr "Pencere düzenini sıfırla"
msgid "Reset to default window layout"
msgstr "Varsayılan pencere düzenine sıfırla"
msgid "Show &Labels"
-msgstr "Etiketleri Göster"
+msgstr "Etiketleri göster"
msgid "Show object labels in 3D scene."
msgstr "3B sahnede nesne etiketlerini göster."
msgid "Show &Overhang"
-msgstr "Çıkıntıyı Göster"
+msgstr "Çıkıntıyı göster"
msgid "Show object overhang highlight in 3D scene."
msgstr "3B sahnede nesne çıkıntısı vurgusunu göster."
msgid "Show Selected Outline (beta)"
-msgstr "Seçilen Taslağı Göster (Deneysel)"
+msgstr "Seçilen taslağı göster (deneysel)"
msgid "Show outline around selected object in 3D scene."
msgstr "3D sahnede seçilen nesnenin etrafındaki ana hatları göster."
@@ -6542,13 +6546,11 @@ msgstr "Düzen"
msgid "View"
msgstr "Görünüm"
-# AI Translated
msgid "Preset Bundle"
-msgstr "Ön Ayar Paketi"
+msgstr "Ön ayar paketi"
-# AI Translated
msgid "Sync Presets"
-msgstr "Ön Ayarları Eşitle"
+msgstr "Ön ayarları eşitle"
# AI Translated
msgid "Pull and apply the latest presets from OrcaCloud"
@@ -6590,10 +6592,10 @@ msgid "Cornering calibration"
msgstr "Viraj kalibrasyonu"
msgid "Input Shaping Frequency"
-msgstr "Input shaping Frekansı"
+msgstr "Input shaping frekansı"
msgid "Input Shaping Damping/zeta factor"
-msgstr "Input shaping Sönümleme/zeta faktörü"
+msgstr "Input shaping sönümleme/zeta faktörü"
msgid "Input Shaping"
msgstr "Input shaping"
@@ -6601,15 +6603,14 @@ msgstr "Input shaping"
msgid "VFA"
msgstr "VFA"
-# AI Translated
msgid "Calibration Guide"
-msgstr "Kalibrasyon Kılavuzu"
+msgstr "Kalibrasyon kılavuzu"
msgid "&Open G-code"
-msgstr "&G kodunu aç"
+msgstr "&G-code'u aç"
msgid "Open a G-code file"
-msgstr "G kodu dosyası aç"
+msgstr "G-code dosyası aç"
msgid "Re&load from Disk"
msgstr "Diskten yeniden yükle"
@@ -6900,7 +6901,7 @@ msgid "Failed to parse model information."
msgstr "Model bilgileri ayrıştırılamadı."
msgid "The .gcode.3mf file contains no G-code data. Please slice it with Orca Slicer and export a new .gcode.3mf file."
-msgstr ".gcode.3mf dosyası hiçbir G kodu verisi içermiyor. Lütfen dosyayı Bambu Studio ile dilimleyin ve yeni bir .gcode.3mf dosyasını dışa aktarın."
+msgstr ".gcode.3mf dosyası hiçbir G-code verisi içermiyor. Lütfen dosyayı Bambu Studio ile dilimleyin ve yeni bir .gcode.3mf dosyasını dışa aktarın."
#, c-format, boost-format
msgid "File '%s' was lost! Please download it again."
@@ -7602,7 +7603,7 @@ msgid "Your model needs support! Please enable support material."
msgstr "Modelinizin desteğe ihtiyacı var! Lütfen destek materyalini etkinleştirin."
msgid "G-code path overlap"
-msgstr "Gcode yolu çakışması"
+msgstr "G-code yolu çakışması"
msgid "Cut connectors"
msgstr "Konektörleri kes"
@@ -8153,19 +8154,19 @@ msgid "Please correct them in the Param tabs"
msgstr "Lütfen bunları parametre sekmelerinde düzeltin"
msgid "The 3MF has the following modified G-code in filament or printer presets:"
-msgstr "3mf dosyasında filament veya yazıcı ön ayarlarında şu değiştirilmiş G-kodları bulunmaktadır:"
+msgstr "3mf dosyasında filament veya yazıcı ön ayarlarında şu değiştirilmiş G-code'ları bulunmaktadır:"
msgid "Please confirm that all modified G-code is safe to prevent any damage to the machine!"
-msgstr "Lütfen bu değiştirilmiş G-kodlarının makineye herhangi bir zarar vermemesi için güvenli olduğunu onaylayın!"
+msgstr "Lütfen bu değiştirilmiş G-code'larının makineye herhangi bir zarar vermemesi için güvenli olduğunu onaylayın!"
msgid "Modified G-code"
-msgstr "G-kodları Değişti"
+msgstr "G-code'ları Değişti"
msgid "The 3MF has the following customized filament or printer presets:"
msgstr "3mf dosyasında şu özel filament veya yazıcı ayarları bulunmaktadır:"
msgid "Please confirm that the G-code within these presets is safe to prevent any damage to the machine!"
-msgstr "Lütfen bu ön ayarlar içindeki G-kodlarının makineye herhangi bir zararı önlemek için güvenli olduğunu onaylayın!"
+msgstr "Lütfen bu ön ayarlar içindeki G-code'larının makineye herhangi bir zararı önlemek için güvenli olduğunu onaylayın!"
msgid "Customized Preset"
msgstr "Özel Ayar"
@@ -8219,9 +8220,8 @@ msgstr "Bu dosyalar birden fazla parçadan oluşan tek bir nesne olarak mı yük
msgid "An object with multiple parts was detected"
msgstr "Birden fazla parçaya sahip nesne algılandı"
-# AI Translated
msgid "Auto-Drop"
-msgstr "Otomatik Bırakma"
+msgstr "Otomatik düşür"
#, c-format, boost-format
msgid "Connected printer is %s. It must match the project preset for printing.\n"
@@ -8296,9 +8296,8 @@ msgstr "Seçilen nesne bölünemedi."
msgid "Split to Objects"
msgstr "Nesnelere Ayır"
-# AI Translated
msgid "Disable Auto-Drop to preserve Z positioning?\n"
-msgstr "Z konumunu korumak için Otomatik Bırakma devre dışı bırakılsın mı?\n"
+msgstr "Z konumunu korumak için Otomatik düşürme devre dışı bırakılsın mı?\n"
# AI Translated
msgid "Object with floating parts was detected"
@@ -8335,19 +8334,19 @@ msgstr "Değiştirme için dizin seçilmedi"
msgid "Replaced with 3D files from directory:\n"
msgstr "Dizindeki 3D dosyalarla değiştirildi:\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ %s atlandı: aynı dosya.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ %s atlandı: dosya mevcut değil.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ %s atlandı: değiştirilemedi.\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ %s değiştirildi.\n"
@@ -8412,7 +8411,7 @@ msgid ""
"The loaded file contains G-code only, cannot enter the Prepare page."
msgstr ""
"Yalnızca önizleme modu:\n"
-"Yüklenen dosya yalnızca Gcode içeriyor, hazırlama sayfasına girilemiyor."
+"Yüklenen dosya yalnızca G-code içeriyor, hazırlama sayfasına girilemiyor."
msgid ""
"The nozzle type and AMS quantity information has not been synced from the connected printer.\n"
@@ -8433,7 +8432,7 @@ msgid "Creating a new project"
msgstr "Yeni bir proje oluşturma"
msgid "Load project"
-msgstr "Projeyi Aç"
+msgstr "Projeyi aç"
msgid ""
"Failed to save the project.\n"
@@ -8483,7 +8482,7 @@ msgid "The selected file"
msgstr "Seçili dosya"
msgid "Does not contain valid G-code."
-msgstr "Geçerli bir G-kodu içermiyor."
+msgstr "Geçerli bir G-code içermiyor."
msgid "An Error has occurred while loading the G-code file."
msgstr "G-code dosyası yüklenirken bir hata oluştu."
@@ -8515,13 +8514,13 @@ msgid "Import geometry only"
msgstr "Yalnızca geometriyi içe aktar"
msgid "Only one G-code file can be opened at a time."
-msgstr "Aynı anda yalnızca bir G kodu dosyası açılabilir."
+msgstr "Aynı anda yalnızca bir G-code dosyası açılabilir."
msgid "G-code loading"
-msgstr "G-kod yükleniyor"
+msgstr "G-code yükleniyor"
msgid "G-code files and models cannot be loaded together!"
-msgstr "G kodu dosyaları modellerle birlikte yüklenemez!"
+msgstr "G-code dosyaları modellerle birlikte yüklenemez!"
msgid "Unable to add models in preview mode"
msgstr "Önizleme modundayken model ekleyemezsiniz"
@@ -8539,7 +8538,7 @@ msgid "Copies of the selected object"
msgstr "Seçilen nesnenin kopyaları"
msgid "Save G-code file as:"
-msgstr "G-kod dosyasını şu şekilde kaydedin:"
+msgstr "G-code dosyasını şu şekilde kaydedin:"
msgid "Save SLA file as:"
msgstr "SLA dosyasını farklı bir isimle kaydet:"
@@ -8610,7 +8609,7 @@ msgstr ""
"Yazdırma sırasında çarpışmaları önlemek için otomatik düzenlemeyi kullanmanızı önerin."
msgid "Send G-code"
-msgstr "G-kodu gönder"
+msgstr "G-code gönder"
msgid "Send to printer"
msgstr "Yazıcıya gönder"
@@ -8899,13 +8898,13 @@ msgid "Enable dark Mode"
msgstr "Karanlık modu etkinleştir"
msgid "Allow only one OrcaSlicer instance"
-msgstr "Yalnızca bir orca slicer örneğine izin ver"
+msgstr "Yalnızca tek bir OrcaSlicer örneğine izin ver"
msgid "On OSX there is always only one instance of app running by default. However it is allowed to run multiple instances of same app from the command line. In such case this settings will allow only one instance."
-msgstr "OSX’te her zaman varsayılan olarak çalışan tek bir uygulama örneği vardır. Ancak aynı uygulamanın birden fazla örneğinin komut satırından çalıştırılmasına izin verilir. Böyle bir durumda bu ayarlar yalnızca bir örneğe izin verecektir."
+msgstr "macOS'ta varsayılan olarak her zaman uygulamanın yalnızca tek bir örneği çalışır. Ancak komut satırından aynı uygulamanın birden fazla örneğinin çalıştırılmasına izin verilir. Böyle bir durumda bu ayar, yalnızca tek bir örneğe izin verecektir."
msgid "If this is enabled, when starting OrcaSlicer and another instance of the same OrcaSlicer is already running, that instance will be reactivated instead."
-msgstr "Bu etkinleştirilirse, OrcaSlicer başlatıldığında ve aynı OrcaSlicer’ın başka bir örneği zaten çalışıyorken, bunun yerine bu örnek yeniden etkinleştirilecektir."
+msgstr "Bu seçenek etkinleştirildiğinde; OrcaSlicer başlatılırken aynı OrcaSlicer'ın başka bir örneği zaten çalışıyorsa, yeni bir pencere yerine o örnek yeniden etkinleştirilir."
msgid "Show splash screen"
msgstr "Açılış ekranını göster"
@@ -8960,7 +8959,7 @@ msgid "Add STL/STEP files to recent files list"
msgstr "STL/STEP dosyalarını son dosyalar listesine ekle"
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"
+msgstr "Değiştirilmiş G-code'ları içeren 3MF dosyalarını yüklerken uyarma"
msgid "Show options when importing STEP file"
msgstr "STEP dosyasını içe aktarırken seçenekleri göster"
@@ -9087,6 +9086,18 @@ msgstr "Bu seçenek etkinleştirildiğinde, aynı anda birden fazla cihaza bir g
msgid "Pop up to select filament grouping mode"
msgstr "Filament gruplama modunu seçmek için açılır pencere"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Görünür eklenti sayfaları"
+
+# AI Translated
+msgid "pages"
+msgstr "sayfa"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Kalan sayfalar son sekmedeki açılır listeye toplanmadan önce sabit sekme olarak gösterilen eklenti sayfalarının sayısı."
+
msgid "Behaviour"
msgstr "Davranış"
@@ -9477,6 +9488,18 @@ msgstr "Desteklenmeyen ön ayarları göster"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Yazıcı ve filament açılır listelerinde uyumsuz/desteklenmeyen ön ayarları gösterir. Bu ön ayarlar seçilemez."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Deneysel) Baskı sunucuları yerine yazıcı aracılarını kullan"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Bambu olmayan yazıcıların baskı işlerini, klasik baskı sunucusuna yükleme akışı yerine yazıcı eklenti aracıları üzerinden yönlendirir.\n"
+"Devre dışı bırakıldığında OrcaSlicer eski baskı sunucusu davranışını kullanır."
+
# AI Translated
msgid "Experimental Features"
msgstr "Deneysel Özellikler"
@@ -9744,9 +9767,25 @@ msgstr "Kullanıcı Ön Ayarı"
msgid "Preset Inside Project"
msgstr "Ön ayar içerisinde proje"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Üst ön ayardan devralınan tüm değerleri bu ön ayara kopyalar ve üst ön ayarla olan ilişkiyi kaldırır. Yalnızca üst ön ayarla uyumlu olan ön ayarlar desteklenmeyebilir."
+
msgid "Detach from parent"
msgstr "Ebeveynden ayrıl"
+# AI Translated
+msgid "Unique preset"
+msgstr "Bağımsız ön ayar"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Üst ön ayar"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Bu ön ayar başka bir ön ayardan devralmıyor."
+
msgid "Name is unavailable."
msgstr "Ad kullanılamıyor."
@@ -9968,7 +10007,7 @@ msgid "The filament type setting of external spool is different from the filamen
msgstr "Harici makaranın filament türü ayarı, dilimleme dosyasındaki filamentden farklıdır."
msgid "The printer type selected when generating G-code is not consistent with the currently selected printer. It is recommended that you use the same printer type for slicing."
-msgstr "G Kodu oluşturulurken seçilen yazıcı türü mevcut seçili yazıcıyla tutarlı değil. Dilimleme için aynı yazıcı tipini kullanmanız tavsiye edilir."
+msgstr "G-code oluşturulurken seçilen yazıcı türü mevcut seçili yazıcıyla tutarlı değil. Dilimleme için aynı yazıcı tipini kullanmanız tavsiye edilir."
msgid "There are some unknown filaments in the AMS mappings. Please check whether they are the required filaments. If they are okay, click \"Confirm\" to start printing."
msgstr "AMS eşlemelerinde bazı bilinmeyen filamentler var. Lütfen bunların gerekli filamentler olup olmadığını kontrol edin. Sorun yoksa, yazdırmayı başlatmak için \"Onayla\"ya basın."
@@ -10496,22 +10535,6 @@ msgstr "Bu seçeneği etkinleştirmek istediğinizden emin misiniz?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "Dolgu desenleri genellikle, doğru baskı alınmasını ve istenen etkilerin (ör. Gyroid, Kübik) elde edilmesini sağlamak için döndürme işlemini otomatik olarak yapacak şekilde tasarlanmıştır. Mevcut seyrek dolgu desenini döndürmek, yetersiz destekle sonuçlanabilir. Lütfen dikkatli ilerleyin ve olası baskı sorunlarını iyice kontrol edin. Bu seçeneği etkinleştirmek istediğinizden emin misiniz?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"Katman yüksekliği çok küçük.\n"
-"min_layer_height olarak ayarlanacak\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "Katman yüksekliği, Yazıcı Ayarları -> Ekstruder -> Katman yüksekliği sınırları bölümündeki sınırı aşıyor bu durum baskı kalitesi sorunlarına neden olabilir."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "Ayarlanan aralığa otomatik olarak ayarlansın mı?\n"
-
-msgid "Adjust"
-msgstr "Ayarla"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "Deneysel özellik: Filament değişiklikleri sırasında, floşu en aza indirmek için filamenti daha büyük bir mesafeden geri çekmek ve kesmek. Flush’u önemli ölçüde azaltabilmesine rağmen, aynı zamanda nozul tıkanmaları veya diğer yazdırma komplikasyonları riskini de artırabilir."
@@ -10668,10 +10691,10 @@ msgid "Special mode"
msgstr "Özel Mod"
msgid "G-code output"
-msgstr "G Kodu Çıktısı"
+msgstr "G-code Çıktısı"
msgid "Change extrusion role G-code"
-msgstr "Ekstrüzyon Rolü G-kodu Değiştirme"
+msgstr "Ekstrüzyon Rolü G-code Değiştirme"
msgid "Post-processing Scripts"
msgstr "İşlem Sonrası Komut Dosyaları"
@@ -10699,16 +10722,19 @@ msgid_plural ""
"Please remove them, or G-code visualization and print time estimation will be broken."
msgstr[0] ""
"Aşağıdaki %s satırı ayrılmış anahtar kelimeler içeriyor.\n"
-"Lütfen onu kaldırın, aksi takdirde G kodu görselleştirmesini ve yazdırma süresi tahminini geçeceksiniz."
+"Lütfen onu kaldırın, aksi takdirde G-code görselleştirmesini ve yazdırma süresi tahminini geçeceksiniz."
msgstr[1] ""
"Aşağıdaki satırlar %s ayrılmış anahtar sözcükler içeriyor.\n"
-"Lütfen bunları kaldırın, aksi takdirde G kodu görselleştirmesini ve yazdırma süresi tahminini geçeceksiniz."
+"Lütfen bunları kaldırın, aksi takdirde G-code görselleştirmesini ve yazdırma süresi tahminini geçeceksiniz."
msgid "Reserved keywords found"
msgstr "Ayrılmış anahtar kelimeler bulundu"
msgid "Setting Overrides"
-msgstr "Ayarların Üzerine Yazma"
+msgstr "Ayarların Üzerine Yaz"
+
+msgid "Retraction when switching material"
+msgstr "Malzemeyi Değiştirirken Geri Çekme"
msgid "Basic information"
msgstr "Temel Bilgiler"
@@ -10811,10 +10837,10 @@ msgid "Complete print"
msgstr "Baskı tamamlanınca"
msgid "Filament start G-code"
-msgstr "Filament Başlangıç G Kodu"
+msgstr "Filament Başlangıç G-code"
msgid "Filament end G-code"
-msgstr "Filament Bitiş G Kodu"
+msgstr "Filament Bitiş G-code"
msgid "Wipe tower parameters"
msgstr "Silme Kulesi Parametreleri"
@@ -10843,13 +10869,19 @@ msgstr "Uyumlu süreç profilleri"
msgid "Printable space"
msgstr "Plaka Ayarı"
+msgid "Printer Agent"
+msgstr "Yazıcı Aracısı"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Yazıcı iletişimi için ağ aracısı uygulamasını seçin. Kullanılabilir aracılar başlangıçta kaydedilir."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
msgstr "%1% parametresi için geçersiz değer sağlandı: %2%"
msgid "G-code flavor is switched"
-msgstr "G-kod çeşidi değiştirildi"
+msgstr "G-code çeşidi değiştirildi"
msgid "Cooling Fan"
msgstr "Soğutucu Fan"
@@ -10867,40 +10899,40 @@ msgid "Accessory"
msgstr "Aksesuar"
msgid "Machine G-code"
-msgstr "Yazıcı G-kod"
+msgstr "Yazıcı G-code"
msgid "File header G-code"
-msgstr "Dosya başlığı G kodu"
+msgstr "Dosya başlığı G-code"
msgid "Machine start G-code"
-msgstr "Yazıcı Başlangıç G-kod"
+msgstr "Yazıcı Başlangıç G-code"
msgid "Machine end G-code"
-msgstr "Yazıcı Bitiş G-kod"
+msgstr "Yazıcı Bitiş G-code"
msgid "Printing by object G-code"
-msgstr "Nesneye Göre Yazdırma G-kod"
+msgstr "Nesneye Göre Yazdırma G-code"
msgid "Before layer change G-code"
-msgstr "Katman Değişimi Öncesi G-kod"
+msgstr "Katman Değişimi Öncesi G-code"
msgid "Layer change G-code"
-msgstr "Katman Değişimi G-kod"
+msgstr "Katman Değişimi G-code"
msgid "Timelapse G-code"
-msgstr "Timelapse G-kod"
+msgstr "Timelapse G-code"
msgid "Clumping Detection G-code"
-msgstr "Topaklanma Tespiti G Kodu"
+msgstr "Topaklanma Tespiti G-code"
msgid "Change filament G-code"
-msgstr "Filament Değişimi G-kod"
+msgstr "Filament Değişimi G-code"
msgid "Pause G-code"
-msgstr "Duraklatma G-Kod"
+msgstr "Duraklatma G-code"
msgid "Template Custom G-code"
-msgstr "Şablon Özel G-kod"
+msgstr "Şablon Özel G-code"
msgid "Motion ability"
msgstr "Hareket"
@@ -10973,9 +11005,6 @@ msgstr "Katman Yüksekliği Sınırları"
msgid "Z-Hop"
msgstr "Z Sıçraması"
-msgid "Retraction when switching material"
-msgstr "Malzemeyi Değiştirirken Geri Çekme"
-
# AI Translated
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
@@ -11919,7 +11948,7 @@ msgid "On/Off one layer mode of the vertical slider"
msgstr "Dikey kaydırıcının tek katman modunu açma/kapama"
msgid "On/Off G-code window"
-msgstr "G-kodu penceresini aç/kapat"
+msgstr "G-code penceresini aç/kapat"
msgid "Move slider 5x faster"
msgstr "Kaydırıcıyı 5 kat daha hızlı hareket ettirin"
@@ -12153,7 +12182,7 @@ msgid " updated to "
msgstr " güncellendi "
msgid "Open G-code file:"
-msgstr "G kodu dosyasını açın:"
+msgstr "G-code dosyasını açın:"
msgid "One object has an empty first layer and can't be printed. Please Cut the bottom or enable supports."
msgstr "Bir nesnenin ilk katmanı boş ve yazdırılamıyor. Lütfen alt kısmı kesin veya destekleri etkinleştirin."
@@ -12187,15 +12216,15 @@ msgid ""
"Failed to generate G-code for invalid custom G-code.\n"
"\n"
msgstr ""
-"Geçersiz özel G kodu için gcode oluşturulamadı.\n"
+"Geçersiz özel G-code için G-code oluşturulamadı.\n"
"\n"
msgid "Please check the custom G-code or use the default custom G-code."
-msgstr "Lütfen özel G kodunu kontrol edin veya varsayılan özel G kodunu kullanın."
+msgstr "Lütfen özel G-code'u kontrol edin veya varsayılan özel G-code'u kullanın."
#, boost-format
msgid "Generating G-code: layer %1%"
-msgstr "G kodu oluşturuluyor: katman %1%"
+msgstr "G-code oluşturuluyor: katman %1%"
msgid "Flush volumes matrix do not match to the correct size!"
msgstr "Yıkama hacimleri matrisi doğru boyutla eşleşmiyor!"
@@ -12227,7 +12256,7 @@ msgid "Group error in manual mode. Please check nozzle count or regroup."
msgstr "Elle modda gruplama hatası. Lütfen nozul sayısını denetleyin veya yeniden gruplayın."
msgid "Internal Bridge"
-msgstr "İç Köprü"
+msgstr "İç köprü"
msgid "undefined error"
msgstr "bilinmeyen hata"
@@ -12353,6 +12382,10 @@ msgstr " dışlama alanına çok yakın ve çarpışmalara neden olacak.\n"
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " topaklanma algılama alanına çok yakın, çarpışmalar meydana gelecektir.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " yazdırılabilir alanın kısmen dışında ve yazdırılamaz.\n"
+
# AI Translated
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "Seçilen nozul sıcaklıkları uyumsuz. Her filamentin nozul sıcaklığı, diğer filamentlerin önerilen nozul sıcaklığı aralığında olmalıdır. Aksi hâlde nozul tıkanması veya yazıcıda hasar oluşabilir."
@@ -12414,7 +12447,7 @@ msgid "Ooze prevention is only supported with the wipe tower when 'single_extrud
msgstr "Sızıntı önleme yalnızca ‘tek ekstruder çoklu malzeme’ kapalıyken silme kulesiyle desteklenir."
msgid "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, RepRapFirmware and Repetier G-code flavors."
-msgstr "Prime tower şu anda yalnızca Marlin, RepRap/Sprinter, RepRapFirmware ve Repetier G kodu türleri için desteklenmektedir."
+msgstr "Prime tower şu anda yalnızca Marlin, RepRap/Sprinter, RepRapFirmware ve Repetier G-code türleri için desteklenmektedir."
msgid "A prime tower is not supported in “By object” print."
msgstr "Prime tower, \"Nesneye göre\" yazdırmada desteklenmez."
@@ -12569,10 +12602,10 @@ msgstr ""
"Nesneleri birbirinden uzaklaştırın, kenar/etek boyutunu küçültün, Etek tipini Birleşik olarak değiştirin veya Yazdırma sırasını Katmana göre olarak değiştirin."
msgid "Exporting G-code"
-msgstr "G kodu dışa aktarılıyor"
+msgstr "G-code dışa aktarılıyor"
msgid "Generating G-code"
-msgstr "G kodu oluşturuluyor"
+msgstr "G-code oluşturuluyor"
# AI Translated
msgid "Processing of the filename_format template failed."
@@ -12688,9 +12721,6 @@ msgstr "G-code yerine 3MF kullan"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Yazıcı, baskı işi olarak 3MF dosyası kabul ediyorsa bunu etkinleştirin. Etkinleştirildiğinde Orca Slicer, dilimlenmiş dosyayı düz bir .gcode dosyası yerine .gcode.3mf olarak gönderir."
-msgid "Printer Agent"
-msgstr "Yazıcı Aracısı"
-
msgid "Select the network agent implementation for printer communication."
msgstr "Yazıcı iletişimi için ağ aracısı uygulamasını seçin."
@@ -12698,7 +12728,7 @@ msgid "Hostname, IP or URL"
msgstr "Ana bilgisayar adı, IP veya URL"
msgid "Orca Slicer can upload G-code files to a printer host. This field should contain the hostname, IP address or URL of the printer host instance. Print host behind HAProxy with basic auth enabled can be accessed by putting the user name and password into the URL in the following format: https://username:password@your-octopi-address/"
-msgstr "Orca Slicer, G kodu dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. Bu alan, yazıcı ana bilgisayar örneğinin ana bilgisayar adını, IP adresini veya URL'sini içermelidir. Temel kimlik doğrulamanın etkin olduğu HAProxy'nin arkasındaki yazdırma ana bilgisayarına, kullanıcı adı ve parolanın aşağıdaki biçimdeki URL'ye girilmesiyle erişilebilir: https://username:password@your-octopi-address/"
+msgstr "OrcaSlicer, G-code dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. Bu alan; yazıcı ana bilgisayarı örneğinin ana bilgisayar adını, IP adresini veya URL'sini içermelidir. Temel kimlik doğrulaması etkin ve HAProxy arkasında çalışan yazıcı ana bilgisayarlarına URL içine kullanıcı adı ve parola şu biçimde eklenerek erişilebilir: https://kullaniciadi:parola@octopi-adresiniz/"
msgid "Device UI"
msgstr "Cihaz kullanıcı arayüzü"
@@ -12710,7 +12740,7 @@ msgid "API Key / Password"
msgstr "API Anahtarı / Şifre"
msgid "Orca Slicer can upload G-code files to a printer host. This field should contain the API Key or the password required for authentication."
-msgstr "Orca Slicer, G kodu dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. Bu alan, kimlik doğrulama için gereken API Anahtarını veya şifreyi içermelidir."
+msgstr "Orca Slicer, G-code dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. Bu alan, kimlik doğrulama için gereken API Anahtarını veya şifreyi içermelidir."
# AI Translated
msgid "Serial Number"
@@ -12839,7 +12869,7 @@ msgid "Other layers filament sequence"
msgstr "Diğer katmanlar filament dizisi"
msgid "This G-code is inserted at every layer change before the Z lift."
-msgstr "Bu G kodu, z'yi kaldırmadan önce her katman değişikliğinde eklenir."
+msgstr "Bu G-code, z'yi kaldırmadan önce her katman değişikliğinde eklenir."
msgid "Bottom shell layers"
msgstr "Alt katmanlar"
@@ -12920,7 +12950,6 @@ msgstr "Çıkıntı bu belirtilen eşiği aştığında, soğutma fanını aşa
msgid "External bridge infill direction"
msgstr "Dış köprü dolgu yönü"
-# AI Translated
#, no-c-format, no-boost-format
msgid ""
"External Bridging angle override.\n"
@@ -12937,14 +12966,13 @@ msgstr ""
"Aksi hâlde verilen açı şuna göre kullanılır:\n"
" - Mutlak koordinatlar\n"
" - Mutlak koordinatlar + Model dönüşü: Yönleri modele hizala etkinse\n"
-" - En uygun otomatik açı + bu değer: 'Göreli Köprü Açısı' etkinse\n"
+" - En uygun otomatik açı + bu değer: ‘Göreceli Köprü Açısı' etkinse\n"
"\n"
"Sıfır mutlak açı için 180° kullanın."
msgid "Internal bridge infill direction"
msgstr "İç köprü dolgu yönü"
-# AI Translated
msgid ""
"Internal Bridging angle override.\n"
"If left to zero, the bridging angle will be calculated automatically for each specific bridge.\n"
@@ -12960,13 +12988,12 @@ msgstr ""
"Aksi hâlde verilen açı şuna göre kullanılır:\n"
" - Mutlak koordinatlar\n"
" - Mutlak koordinatlar + Model dönüşü: Yönleri modele hizala etkinse\n"
-" - En uygun otomatik açı + bu değer: 'Göreli Köprü Açısı' etkinse\n"
+" - En uygun otomatik açı + bu değer: 'Göreceli Köprü Açısı' etkinse\n"
"\n"
"Sıfır mutlak açı için 180° kullanın."
-# AI Translated
msgid "Relative bridge angle"
-msgstr "Göreli köprü açısı"
+msgstr "Göreceli köprü açısı"
# AI Translated
msgid "When enabled, the bridge angle values are added to the automatically calculated bridge direction instead of overriding it."
@@ -13376,9 +13403,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "İç köprülerin hızı. Değer yüzde olarak ifade edilirse köprü hızına göre hesaplanacaktır. Varsayılan değer %150’dir."
-msgid "Brim width"
-msgstr "Kenar genişliği"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Modelden en dış kenar çizgisine kadar olan mesafe."
@@ -13413,7 +13437,7 @@ msgstr ""
"Not: Elde edilen değer ilk katman akış oranından etkilenmez."
msgid "Brim follows compensated outline"
-msgstr "Kenar telafi edilen taslağı takip ediyor"
+msgstr "Kenar toleranslı dış sınırı takip etsin"
# AI Translated
msgid ""
@@ -13463,6 +13487,14 @@ msgstr ""
"Keskin açılar algılanmadan önce geometri azaltılacaktır. Bu parametre, azaltma için minimum sapma uzunluğunu belirtir.\n"
"Devre dışı bırakmak için 0."
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Kenar kulakları yalnızca dışta"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Fare kulaklarını yalnızca modelin dış konturunda oluşturur, delikleri ve kapalı bölümleri hariç tutar."
+
msgid "upward compatible machine"
msgstr "yukarı doğru uyumlu makine"
@@ -13487,7 +13519,6 @@ msgstr "Nesneye göre"
msgid "Intra-layer order"
msgstr "Katman içi sıra"
-# AI Translated
msgid ""
"Order in which object instances are visited within a single layer, which controls how much travel is spent moving between them.\n"
"\n"
@@ -13498,14 +13529,17 @@ msgid ""
"\n"
"With multiple filaments or tools in the same layer, minimizing tool changes takes priority: objects are grouped by filament first and this setting only orders the instances within each filament group, so the overall sequence may not look like the shortest path across the plate."
msgstr ""
-"Tek bir katman içinde nesne örneklerinin hangi sırayla ziyaret edileceği; bu da aralarında ne kadar seyahat harcanacağını belirler.\n"
+"Tek bir katman içinde nesne eş kopyalarının (instances) basılma sırasıdır; bunlar arasındaki seyahat mesafesini ve süresini kontrol eder.\n"
"\n"
-"Varsayılan: en yakın komşu zincirlemesi, 2-opt ve kesişim giderme ile iyileştirilir. İyi bir genel seçim.\n"
-"Nesne listesi olarak: örnekler, herhangi bir yol optimizasyonu olmadan nesne listesindeki sırayla yazdırılır. Öngörülebilir, elle denetlenen bir sıraya ihtiyacınız olduğunda kullanın.\n"
-"Hepsinin en iyisi (en kısa yol): her strateji değerlendirilir ve en kısa olanı kullanılır. Nesne örneklerinin sırası tüm baskı için bir kez belirlenir, tek tek adaların sırası ise her katman için ayrı belirlenir; bu nedenle farklı katmanlar farklı stratejiler kullanabilir. Dilimleme biraz daha yavaştır.\n"
-"Yılankavi: satır satır ilerleyen yılankavi geçiş, 2-opt ile iyileştirilir. Çok sayıda küçük parçadan oluşan düzenli ızgaralar için çok uygundur.\n"
+"Varsayılan (Default): 2-opt algoritması ve hat kesişimi giderme ile iyileştirilmiş en yakın komşu zincirleme yöntemi. Genel kullanım için dengeli ve ideal bir tercihtir.\n"
"\n"
-"Aynı katmanda birden fazla filament veya araç varsa, araç değişimlerini en aza indirmek önceliklidir: nesneler önce filamente göre gruplanır ve bu ayar yalnızca her filament grubu içindeki örnekleri sıralar; bu nedenle genel sıra, tabla genelindeki en kısa yol gibi görünmeyebilir."
+"Nesne listesi olarak (As object list): Eş kopyalar (instances), herhangi bir rota optimizasyonu yapılmadan doğrudan nesne listesindeki sıralamayla basılır. Manuel ve öngörülebilir bir sıra istendiğinde kullanılır.\n"
+"\n"
+"Hepsinin en iyisi (en kısa yol): Mevcut tüm stratejiler hesaplanır ve en kısa mesafe sunan rota seçilir. Nesne eş kopyalarının sırası tüm baskı için tek seferde kararlaştırılırken, bağımsız adacıkların sıralaması katman bazında hesaplanır (farklı katmanlarda farklı stratejiler devreye girebilir). Dilimleme süresini biraz uzatabilir.\n"
+"\n"
+"Yılankavi (Snake): 2-opt ile optimize edilmiş satır satır kıvrımlı (serpantin) tarama rotası. Yatağa ızgara şeklinde dizilmiş çok sayıda küçük parçalı baskılar için son derece uygundur.\n"
+"\n"
+"Aynı katmanda birden fazla filament veya nozül/takım kullanıldığında, takım değişimlerini en aza indirmek önceliklidir: Nesneler önce filamente göre gruplanır; bu ayar ise sadece ilgili filament grubu içindeki eş kopyaları (instances) sıralar. Bu nedenle genel hareket sırası plakanın tamamına bakıldığında her zaman en kısa rota gibi görünmeyebilir."
msgid "As object list"
msgstr "Nesne listesi olarak"
@@ -13568,7 +13602,7 @@ msgid "Activate air filtration"
msgstr "Hava filtrelemesini etkinleştirin"
msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)"
-msgstr "Daha iyi hava filtrasyonu için etkinleştirin. G-kodu komutu: M106 P3 S(0-255)"
+msgstr "Daha iyi hava filtrasyonu için etkinleştirin. G-code komutu: M106 P3 S(0-255)"
# AI Translated
msgid "Enable this to override the fan speed set in custom G-code during print."
@@ -13583,7 +13617,7 @@ msgid "Enable this to override the fan speed set in custom G-code after print co
msgstr "Baskı tamamlandıktan sonra özel G-code'da ayarlanan fan hızını geçersiz kılmak için bunu etkinleştirin."
msgid "Speed of exhaust fan during printing. This speed will override the speed in filament custom G-code."
-msgstr "Baskı sırasında egzoz fanının hızı. Bu hız, filament özel gcode'undaki hızın üzerine yazılacaktır."
+msgstr "Baskı sırasında egzoz fanının hızı. Bu hız, filament özel G-code'undaki hızın üzerine yazılacaktır."
msgid "Speed of exhaust fan after printing completes."
msgstr "Baskı tamamlandıktan sonra egzoz fanının hızı."
@@ -13697,19 +13731,19 @@ msgid "This is the maximum length of bridges that don't need support. Set it to
msgstr "Desteğe ihtiyaç duymayan maksimum köprü uzunluğu. Tüm köprülerin desteklenmesini istiyorsanız bunu 0'a, hiçbir köprünün desteklenmesini istemiyorsanız çok büyük bir değere ayarlayın."
msgid "End G-code"
-msgstr "Bitiş G kodu"
+msgstr "Bitiş G-code"
msgid "Add end G-Code when finishing the entire print."
-msgstr "Tüm yazdırmayı tamamladığında çalışacak olan G Kodu."
+msgstr "Tüm yazdırmayı tamamladığında çalışacak olan G-code."
msgid "Between Object G-code"
-msgstr "Nesne Arası Gcode"
+msgstr "Nesne Arası G-code"
msgid "Insert G-code between objects. This parameter will only come into effect when you print your models object by object."
-msgstr "Nesnelerin arasına Gcode ekleyin. Bu parametre yalnızca modellerinizi nesne nesne yazdırdığınızda etkili olacaktır."
+msgstr "Nesnelerin arasına G-code ekleyin. Bu parametre yalnızca modellerinizi nesne nesne yazdırdığınızda etkili olacaktır."
msgid "Add end G-code when finishing the printing of this filament."
-msgstr "Bu filament ile baskı bittiğinde çalışacak G kod."
+msgstr "Bu filament ile baskı bittiğinde çalışacak G-code."
msgid "Ensure vertical shell thickness"
msgstr "Dikey kabuk kalınlığını koru"
@@ -13724,13 +13758,13 @@ msgid ""
msgstr ""
"Dikey kabuk kalınlığını garanti etmek için eğimli yüzeylerin yakınına katı dolgu ekleyin (üst + alt katı katmanlar)\n"
"Yok: Hiçbir yere katı dolgu eklenmez. Dikkat: Modelinizin eğimli yüzeyleri varsa bu seçeneği dikkatli kullanın.\n"
-"Yalnızca kritik: Duvarlar için katı dolgu eklemekten kaçının\n"
+"Kritik: Duvarlar için katı dolgu eklemekten kaçının\n"
"Orta: Yalnızca çok eğimli yüzeyler için katı dolgu ekleyin\n"
"Hepsi: Tüm uygun eğimli yüzeyler için katı dolgu ekleyin\n"
"Varsayılan değer Tümü'dür."
msgid "Critical Only"
-msgstr "Yalnızca kritik"
+msgstr "Kritik"
msgid "Moderate"
msgstr "Orta"
@@ -14031,14 +14065,14 @@ msgid "Extruder offset"
msgstr "Ekstruder konumu"
msgid "The material may have volumetric change after switching between molten and crystalline states. This setting changes all extrusion flow of this filament in G-code proportionally. The recommended value range is between 0.95 and 1.05. You may be able to tune this value to get a nice flat surface if there is slight overflow or underflow."
-msgstr "Malzeme, erimiş hal ile kristal hal arasında geçiş yaptıktan sonra hacimsel değişime sahip olabilir. Bu ayar, bu filamentin gcode'daki tüm ekstrüzyon akışını orantılı olarak değiştirir. Önerilen değer aralığı 0,95 ile 1,05 arasındadır. Belki hafif taşma veya taşma olduğunda güzel düz bir yüzey elde etmek için bu değeri ayarlayabilirsiniz."
+msgstr "Malzeme, erimiş hal ile kristal hal arasında geçiş yaptıktan sonra hacimsel değişime sahip olabilir. Bu ayar, bu filamentin G-code'daki tüm ekstrüzyon akışını orantılı olarak değiştirir. Önerilen değer aralığı 0,95 ile 1,05 arasındadır. Belki hafif taşma veya taşma olduğunda güzel düz bir yüzey elde etmek için bu değeri ayarlayabilirsiniz."
msgid ""
"The material may have volumetric change after switching between molten and crystalline states. This setting changes all extrusion flow of this filament in G-code proportionally. The recommended value range is between 0.95 and 1.05. You may be able to tune this value to get a nice flat surface if there is slight overflow or underflow.\n"
"\n"
"The final object flow ratio is this value multiplied by the filament flow ratio."
msgstr ""
-"Malzeme, erimiş hal ile kristal hal arasında geçiş yaptıktan sonra hacimsel değişime sahip olabilir. Bu ayar, bu filamentin gcode’daki tüm ekstrüzyon akışını orantılı olarak değiştirir. Önerilen değer aralığı 0,95 ile 1,05 arasındadır. Belki hafif taşma veya taşma olduğunda güzel düz bir yüzey elde etmek için bu değeri ayarlayabilirsiniz.\n"
+"Malzeme, erimiş hal ile kristal hal arasında geçiş yaptıktan sonra hacimsel değişime sahip olabilir. Bu ayar, bu filamentin G-code’daki tüm ekstrüzyon akışını orantılı olarak değiştirir. Önerilen değer aralığı 0,95 ile 1,05 arasındadır. Belki hafif taşma veya taşma olduğunda güzel düz bir yüzey elde etmek için bu değeri ayarlayabilirsiniz.\n"
"\n"
"Nihai nesne akış oranı, bu değerin filament akış oranıyla çarpılmasıyla elde edilir."
@@ -14247,10 +14281,10 @@ msgid "By First filament"
msgstr "İlk filamente göre"
msgid "By Highest Temp"
-msgstr "En Yüksek Sıcaklığa Göre"
+msgstr "En yüksek sıcaklığa göre"
msgid "Filament diameter is used to calculate extrusion variables in G-code, so it is important that this is accurate and precise."
-msgstr "Filament çapı, gcode'da ekstrüzyonu hesaplamak için kullanılır; bu nedenle önemlidir ve doğru olmalıdır."
+msgstr "Filament çapı, G-code'da ekstrüzyonu hesaplamak için kullanılır; bu nedenle önemlidir ve doğru olmalıdır."
msgid "Pellet flow coefficient"
msgstr "Pelet akış katsayısı"
@@ -14647,6 +14681,14 @@ msgstr "Tpms-fk"
msgid "Gyroid"
msgstr "Jiroid"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Dolgu yumuşatma faktörü"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Dolgu köşelerinin ne kadar yuvarlatılacağını belirler. 0% özgün keskin yolu korur, 100% ise komşu dolgu çizgileri arasında mümkün olan en büyük eğrileri üretir."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Üst yüzey dolgusunun hızlandırılması. Daha düşük bir değerin kullanılması üst yüzey kalitesini iyileştirebilir."
@@ -14685,30 +14727,29 @@ msgid "Marlin Firmware Junction Deviation (replaces the traditional XY Jerk sett
msgstr "Marlin Firmware Köşe Sapması (geleneksel XY Sarsıntı ayarının yerini alır)"
msgid "Jerk of outer walls."
-msgstr "Dış duvar JERK değeri."
+msgstr "Dış duvar sarsıntı değeri."
msgid "Jerk of inner walls."
-msgstr "İç duvarlar JERK değeri."
+msgstr "İç duvarlar sarsıntı değeri."
msgid "Jerk for top surface."
-msgstr "Üst yüzey için JERK değeri."
+msgstr "Üst yüzey için Sarsıntı değeri."
msgid "Jerk for infill."
-msgstr "Dolgu için JERK değeri."
+msgstr "Dolgu için Sarsıntı değeri."
msgid "Jerk for the first layer."
-msgstr "İlk katman için JERK değeri."
+msgstr "İlk katman için Sarsıntı değeri."
msgid "Jerk for travel."
-msgstr "Seyahat için JERK değeri."
+msgstr "Seyahat için Sarsıntı değeri."
-# AI Translated
msgid ""
"Travel jerk of first layer.\n"
"The percentage value is relative to Travel Jerk."
msgstr ""
-"İlk katmanın seyahat jerk'i.\n"
-"Yüzde değeri Seyahat Jerk'ine göredir."
+"İlk katmanın seyahat sarsıntısı (travel jerk).\n"
+"Yüzde değeri, Seyahat Sarsıntısı (Travel Jerk) değerine bağlıdır."
msgid "Line width of the first layer. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "İlk katmanın çizgi genişliği. % olarak ifade edilirse Nozul çapı üzerinden hesaplanacaktır."
@@ -15027,7 +15068,7 @@ msgid ""
"\n"
"Note: For Klipper machines, this option is recommended to be disabled. Klipper does not benefit from arc commands as these are split again into line segments by the firmware. This results in a reduction in surface quality as line segments are converted to arcs by the slicer and then back to line segments by the firmware."
msgstr ""
-"G2 ve G3 hareketlerine sahip bir G kodu dosyası elde etmek için bunu etkinleştirin. Montaj toleransı çözünürlükle aynıdır.\n"
+"G2 ve G3 hareketlerine sahip bir G-code dosyası elde etmek için bunu etkinleştirin. Montaj toleransı çözünürlükle aynıdır.\n"
"\n"
"Not: Klipper makineler için bu seçeneğin devre dışı bırakılması önerilir. Klipper, yazılım tarafından tekrar çizgi bölümlerine bölündüğü için yay komutlarından faydalanmaz. Bu, çizgi bölümlerinin dilimleyici tarafından yaylara dönüştürülmesi ve ardından donanım yazılımı tarafından tekrar çizgi bölümlerine dönüştürülmesi nedeniyle yüzey kalitesinde bir azalmaya neden olur."
@@ -15035,7 +15076,7 @@ msgid "Add line number"
msgstr "Satır numarası ekle"
msgid "Enable this to add line number(Nx) at the beginning of each G-code line."
-msgstr "Her G Kodu satırının başına satır numarası (Nx) eklemek için bunu etkinleştirin."
+msgstr "Her G-code satırının başına satır numarası (Nx) eklemek için bunu etkinleştirin."
msgid "Scan first layer"
msgstr "İlk katmanı tara"
@@ -15047,7 +15088,7 @@ msgid "Power Loss Recovery"
msgstr "Güç Kaybının Geri Kazanımı"
msgid "Choose how to control power loss recovery. When set to Printer configuration, the slicer will not emit power loss recovery G-code and will leave the printer's configuration unchanged. Applicable to Bambu Lab or Marlin 2 firmware based printers."
-msgstr "Güç kaybı kurtarmanın nasıl kontrol edileceğini seçin. Yazıcı yapılandırması olarak ayarlandığında, dilimleyici güç kaybı kurtarma G kodunu yayınlamayacak ve yazıcının yapılandırmasını değiştirmeden bırakacaktır. Bambu Lab veya Marlin 2 ürün yazılımı tabanlı yazıcılar için geçerlidir."
+msgstr "Güç kaybı kurtarmanın nasıl kontrol edileceğini seçin. Yazıcı yapılandırması olarak ayarlandığında, dilimleyici güç kaybı kurtarma G-code'u yayınlamayacak ve yazıcının yapılandırmasını değiştirmeden bırakacaktır. Bambu Lab veya Marlin 2 ürün yazılımı tabanlı yazıcılar için geçerlidir."
msgid "Printer configuration"
msgstr "Yazıcı yapılandırması"
@@ -15123,7 +15164,7 @@ msgid ""
msgstr ""
"Fanı hedef başlangıç zamanından bu kadar saniye önce başlatın (kesirli saniyeleri kullanabilirsiniz). Bu süre tahmini için sonsuz ivme varsayar ve yalnızca G1 ve G0 hareketlerini hesaba katar (yay uydurma desteklenmez).\n"
"Fan komutlarını özel kodlardan taşımaz (bir çeşit 'bariyer' görevi görürler).\n"
-"'Yalnızca özel başlangıç gcode'u etkinleştirilmişse, fan komutları başlangıç gcode'una taşınmayacaktır.\n"
+"'Yalnızca özel başlangıç G-code'u etkinleştirilmişse, fan komutları başlangıç G-code'una taşınmayacaktır.\n"
"Devre dışı bırakmak için 0'ı kullanın."
msgid "Only overhangs"
@@ -15200,11 +15241,19 @@ msgid "G-code flavor"
msgstr "G-code türü"
msgid "What kind of G-code the printer is compatible with."
-msgstr "Yazıcının ne tür bir gcode ile uyumlu olduğu."
+msgstr "Yazıcının ne tür bir G-code ile uyumlu olduğu."
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "G-code yapılandırma bloğunu atla"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "CONFIG_BLOCK bloğunu (dilimleyici yapılandırmasının anahtar/değer çiftlerini) G-code dosyasına yazmaz. Bu, bu yorum satırlarını ayrıştırırken donanım yazılımı çöken yazıcılarda yardımcı olabilir (ör. Anycubic go-klipper). Not: G-code dosyası artık dilimleyici ayarlarını içermeyeceğinden, dosyayı OrcaSlicer'a geri aktarmak yapılandırmayı geri yüklemez."
+
msgid "Pellet Modded Printer"
msgstr "Pelet modlu yazıcı"
@@ -15227,13 +15276,13 @@ msgid "Exclude objects"
msgstr "Nesneleri hariç tut"
msgid "Enable this option to add EXCLUDE OBJECT command in G-code."
-msgstr "G koduna EXCLUDE OBJECT komutunu eklemek için bu seçeneği etkinleştirin."
+msgstr "G-code'a EXCLUDE OBJECT komutunu eklemek için bu seçeneği etkinleştirin."
msgid "Verbose G-code"
msgstr "Ayrıntılı G-code"
msgid "Enable this to get a commented G-code file, with each line explained by a descriptive text. If you print from SD card, the additional weight of the file could make your firmware slow down."
-msgstr "Her satırın açıklayıcı bir metinle açıklandığı, yorumlu bir G kodu dosyası almak için bunu etkinleştirin. SD karttan yazdırırsanız dosyanın ilave ağırlığı ürün yazılımınızın yavaşlamasına neden olabilir."
+msgstr "Her satırın açıklayıcı bir metinle açıklandığı, yorumlu bir G-code dosyası almak için bunu etkinleştirin. SD karttan yazdırırsanız dosyanın ilave ağırlığı ürün yazılımınızın yavaşlamasına neden olabilir."
msgid "Infill combination"
msgstr "Dolgu kombinasyonu"
@@ -15598,10 +15647,10 @@ msgstr ""
"Ayrıca dilimleme düzlemini de denetler."
msgid "This G-code is inserted at every layer change after the Z lift."
-msgstr "Bu gcode kısmı, z kaldırma işleminden sonra her katman değişikliğinde eklenir."
+msgstr "Bu G-code kısmı, z kaldırma işleminden sonra her katman değişikliğinde eklenir."
msgid "Clumping detection G-code"
-msgstr "Topaklanma tespiti G kodu"
+msgstr "Topaklanma tespiti G-code"
# AI Translated
msgid "Silent Mode"
@@ -15611,7 +15660,7 @@ msgid "Whether the machine supports silent mode in which machine uses lower acce
msgstr "Daha sessiz baskı için ivmelenmeyi düşüren sessiz mod desteği"
msgid "Emit limits to G-code"
-msgstr "G-kod sınırları"
+msgstr "G-code sınırları"
msgid "Machine limits"
msgstr "Yazıcı sınırları"
@@ -15620,14 +15669,14 @@ msgid ""
"If enabled, the machine limits will be emitted to G-code file.\n"
"This option will be ignored if the G-code flavor is set to Klipper."
msgstr ""
-"Etkinleştirilirse, makine sınırları G kodu dosyasına aktarılacaktır.\n"
-"G kodu tadı Klipper olarak ayarlandığında bu seçenek göz ardı edilecektir."
+"Etkinleştirilirse, makine sınırları G-code dosyasına aktarılacaktır.\n"
+"G-code tadı Klipper olarak ayarlandığında bu seçenek göz ardı edilecektir."
msgid "This G-code will be used as a code for the pause print. Users can insert pause G-code in the G-code viewer."
-msgstr "Bu G kodu duraklatma yazdırması için bir kod olarak kullanılacaktır. Kullanıcı gcode görüntüleyiciye duraklatma G kodunu ekleyebilir."
+msgstr "Bu G-code duraklatma yazdırması için bir kod olarak kullanılacaktır. Kullanıcı G-code görüntüleyiciye duraklatma G-code'u ekleyebilir."
msgid "This G-code will be used as a custom code."
-msgstr "Bu G kodu özel kod olarak kullanılacak."
+msgstr "Bu G-code özel kod olarak kullanılacak."
msgid "Small area flow compensation (beta)"
msgstr "Küçük alan akış telafisi (beta)"
@@ -15721,7 +15770,7 @@ msgid ""
"If your Marlin 2 printer uses Classic Jerk set this value to 0.)"
msgstr ""
"Maksimum bağlantı sapması (M205 J, yalnızca Marlin Aygıt Yazılımı için JD > 0 ise geçerlidir)\n"
-"Marlin 2 yazıcınız Classic Jerk kullanıyorsa bu değeri 0 olarak ayarlayın.)"
+"Marlin 2 yazıcınız Classic sarsıntı kullanıyorsa bu değeri 0 olarak ayarlayın.)"
msgid "Minimum speed for extruding"
msgstr "Ekstrüzyon için minimum hız"
@@ -15969,7 +16018,7 @@ msgid ""
"\n"
"Allowed values: 0.5-5"
msgstr ""
-"Daha düşük bir değer, daha düzgün ekstrüzyon hızı geçişleriyle sonuçlanır. Ancak bu, önemli ölçüde daha büyük bir gcode dosyasına ve yazıcının işlemesi için daha fazla talimata neden olur.\n"
+"Daha düşük bir değer, daha düzgün ekstrüzyon hızı geçişleriyle sonuçlanır. Ancak bu, önemli ölçüde daha büyük bir G-code dosyasına ve yazıcının işlemesi için daha fazla talimata neden olur.\n"
"\n"
"Varsayılan 3 değeri çoğu durumda işe yarar. Yazıcınız tutukluk yapıyorsa, yapılan ayarlama sayısını azaltmak için bu değeri artırın\n"
"\n"
@@ -16026,13 +16075,13 @@ msgid "Configuration notes"
msgstr "Yapılandırma notları"
msgid "You can put here your personal notes. This text will be added to the G-code header comments."
-msgstr "Buraya kişisel notlarınızı yazabilirsiniz. Bu not G-kodu başlık yorumlarına eklenecektir."
+msgstr "Buraya kişisel notlarınızı yazabilirsiniz. Bu not G-code başlık yorumlarına eklenecektir."
msgid "Host Type"
msgstr "Bağlantı Türü"
msgid "Orca Slicer can upload G-code files to a printer host. This field must contain the kind of the host."
-msgstr "Orca Slicer, G kodu dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. Bu alan ana bilgisayarın türünü içermelidir."
+msgstr "Orca Slicer, G-code dosyalarını bir yazıcı ana bilgisayarına yükleyebilir. Bu alan ana bilgisayarın türünü içermelidir."
msgid "Nozzle volume"
msgstr "Nozul hacmi"
@@ -16081,7 +16130,7 @@ msgstr "Dolguda geri çekmeyi azalt"
# AI Translated
msgid "Don't retract when the travel is entirely within an infill area. That means the oozing can't been seen. This can reduce times of retraction for complex model and save printing time, but make slicing and G-code generating slower. Note that z-hop is also not performed in areas where retraction is skipped."
-msgstr "Hareket tamamen dolgu alanı içindeyken geri çekme yapılmaz. Bu, sızıntının görülemeyeceği anlamına gelir. Bu, karmaşık modellerde geri çekme sayısını azaltabilir ve yazdırma süresinden tasarruf sağlayabilir, ancak dilimlemeyi ve G kodu oluşturmayı yavaşlatır. Geri çekmenin atlandığı alanlarda z-hop'un da uygulanmadığını unutmayın."
+msgstr "Hareket tamamen dolgu alanı içindeyken geri çekme yapılmaz. Bu, sızıntının görülemeyeceği anlamına gelir. Bu, karmaşık modellerde geri çekme sayısını azaltabilir ve yazdırma süresinden tasarruf sağlayabilir, ancak dilimlemeyi ve G-code oluşturmayı yavaşlatır. Geri çekmenin atlandığı alanlarda z-hop'un da uygulanmadığını unutmayın."
msgid "This option will drop the temperature of the inactive extruders to prevent oozing."
msgstr "Bu seçenek sızıntıyı önlemek için aktif olmayan ekstrüderlerin sıcaklığını düşürecektir."
@@ -16167,7 +16216,7 @@ msgstr ""
"İlave çevrelerin sabitleneceği dolgu sınırlı olduğundan, bu seçenekle birlikte yıldırım dolgusunun kullanılması önerilmez."
msgid "If you want to process the output G-code through custom scripts, just list their absolute paths here. Separate multiple scripts with a semicolon. Scripts will be passed the absolute path to the G-code file as the first argument, and they can access the Orca Slicer config settings by reading environment variables."
-msgstr "Çıktı G-kodunu özel komut dosyaları aracılığıyla işlemek istiyorsanız, mutlak yollarını burada listeleyin. Birden fazla betiği noktalı virgülle ayırın. Betiklere ilk argüman olarak G-code dosyasının mutlak yolu aktarılır ve ortam değişkenlerini okuyarak Orca Slicer yapılandırma ayarlarına erişebilirler."
+msgstr "Çıktı G-code'u özel komut dosyaları aracılığıyla işlemek istiyorsanız, mutlak yollarını burada listeleyin. Birden fazla betiği noktalı virgülle ayırın. Betiklere ilk argüman olarak G-code dosyasının mutlak yolu aktarılır ve ortam değişkenlerini okuyarak Orca Slicer yapılandırma ayarlarına erişebilirler."
# AI Translated
msgid "Change extrusion role G-code (process)"
@@ -16235,7 +16284,7 @@ msgid "Object will be raised by this number of support layers. Use this function
msgstr "Nesne bu sayıdaki destek katmanı tarafından yükseltilecektir. ABS yazdırırken sarmayı önlemek için bu işlevi kullanın."
msgid "The G-code path is generated after simplifying the contour of models to avoid too many points and G-code lines. Smaller values mean higher resolution and more time required to slice."
-msgstr "Gcode dosyasında çok fazla nokta ve gcode çizgisinin olmaması için modelin konturu basitleştirildikten sonra G-code yolu oluşturulur. Daha küçük değer, daha yüksek çözünürlük ve dilimleme için daha fazla zaman anlamına gelir."
+msgstr "G-code dosyasında çok fazla nokta ve G-code çizgisinin olmaması için modelin konturu basitleştirildikten sonra G-code yolu oluşturulur. Daha küçük değer, daha yüksek çözünürlük ve dilimleme için daha fazla zaman anlamına gelir."
msgid "Travel distance threshold"
msgstr "Seyahat mesafesi"
@@ -16292,6 +16341,14 @@ msgstr "Ekstruder değiştiğinde uzun geri çekilme"
msgid "Retraction distance when extruder change"
msgstr "Ekstruder değiştiğinde geri çekilme mesafesi"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Geri çekme uzunluğu (Takım değişimi)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Takım değişiminden önce geri çekme tetiklendiğinde, filament belirtilen miktarda geri çekilir (uzunluk, ekstrudere girmeden önce ham filament üzerinde ölçülür)."
+
msgid "Z-hop height"
msgstr "Z-Sıçrama yüksekliği"
@@ -16391,6 +16448,10 @@ msgstr "Yeniden başlatma sırasında ekstra uzunluk"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "İlerleme hareketinden sonra geri çekilme telafi edildiğinde, ekstruder bu ek filament miktarını itecektir. Bu ayara nadiren ihtiyaç duyulur."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Yeniden başlatma sırasında ekstra uzunluk (Takım değişimi)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Takım değiştirildikten sonra geri çekilme telafi edildiğinde, ekstruder bu ilave filament miktarını itecektir."
@@ -16427,7 +16488,7 @@ msgid "Disable set remaining print time"
msgstr "Kalan yazdırma süresini ayarlamayı devre dışı bırak"
msgid "Disable generating of the M73: Set remaining print time in the final G-code."
-msgstr "M73'ün oluşturulmasını devre dışı bırakın: Son gcode'da kalan yazdırma süresini ayarlayın."
+msgstr "M73'ün oluşturulmasını devre dışı bırakın: Son G-code'da kalan yazdırma süresini ayarlayın."
msgid "Seam position"
msgstr "Dikiş konumu"
@@ -16648,7 +16709,7 @@ msgstr ""
"Nihai döngü sayısı, nesnelerin mesafesini düzenlerken veya doğrularken dikkate alınmaz. Böyle bir durumda döngü sayısını artırın."
msgid "The printing speed in exported G-code will be slowed down when the estimated layer time is shorter than this value in order to get better cooling for these layers."
-msgstr "Tahmini katman süresi bu değerden kısa olduğunda, bu katmanlar için daha iyi soğutma sağlamak amacıyla, dışa aktarılan gcode'daki yazdırma hızı yavaşlatılacaktır."
+msgstr "Tahmini katman süresi bu değerden kısa olduğunda, bu katmanlar için daha iyi soğutma sağlamak amacıyla, dışa aktarılan G-code'daki yazdırma hızı yavaşlatılacaktır."
msgid "Minimum sparse infill threshold"
msgstr "Minimum seyrek dolgu"
@@ -16756,16 +16817,16 @@ msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL.
msgstr "Birden fazla ön ısıtma komutu ekleyin (örn. M104.1). Yalnızca Prusa XL için kullanışlıdır. Diğer yazıcılar için lütfen 1’e ayarlayın."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
-msgstr "G kodu, çıktı dosyasının en üstünde, diğer içeriklerden önce yazılır. Yazıcı ürün yazılımının dosyanın ilk satırlarından okuduğu meta verileri (ör. tahmini yazdırma süresi, filament kullanımı) eklemek için kullanışlıdır. {print_time_sec} ve {used_filament_length} gibi yer tutucuları destekler."
+msgstr "G-code, çıktı dosyasının en üstünde, diğer içeriklerden önce yazılır. Yazıcı ürün yazılımının dosyanın ilk satırlarından okuduğu meta verileri (ör. tahmini yazdırma süresi, filament kullanımı) eklemek için kullanışlıdır. {print_time_sec} ve {used_filament_length} gibi yer tutucuları destekler."
msgid "Start G-code"
-msgstr "Başlangıç G Kodu"
+msgstr "Başlangıç G-code"
msgid "G-code added when starting a print."
-msgstr "Baskı başladığında çalışacak G Kodu."
+msgstr "Baskı başladığında çalışacak G-code."
msgid "G-code added when the printer starts using this filament"
-msgstr "Bu filament kullanılırken yazıcı başladığında eklenen G-kodu"
+msgstr "Bu filament kullanılırken yazıcı başladığında eklenen G-code"
msgid "Single Extruder Multi Material"
msgstr "Tek ekstruder çoklu malzeme"
@@ -16777,7 +16838,7 @@ msgid "Manual Filament Change"
msgstr "Manuel filament değişimi"
msgid "Enable this option to omit the custom Change filament G-code only at the beginning of the print. The tool change command (e.g., T0) will be skipped throughout the entire print. This is useful for manual multi-material printing, where we use M600/PAUSE to trigger the manual filament change action."
-msgstr "Sadece baskının başında özel Filament Değiştirme G-kodu'nu atlamak için bu seçeneği etkinleştirin. Aracı değiştirme komutu (örneğin, T0), baskının tamamı boyunca atlanacaktır. Bu, manuel çoklu malzeme baskısı için kullanışlıdır, burada manuel filament değişim eylemini tetiklemek için M600/PAUSE kullanırız."
+msgstr "Sadece baskının başında özel Filament Değiştirme G-code'u atlamak için bu seçeneği etkinleştirin. Aracı değiştirme komutu (örneğin, T0), baskının tamamı boyunca atlanacaktır. Bu, manuel çoklu malzeme baskısı için kullanışlıdır, burada manuel filament değişim eylemini tetiklemek için M600/PAUSE kullanırız."
msgid "Wipe tower type"
msgstr "Temizleme kulesi tipi"
@@ -16808,6 +16869,14 @@ msgstr "Silme kulesinde takım değişimi"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "Takım değişimi komutu (Tx) verilmeden önce baskı kafasını silme kulesine gitmeye zorlar. Yalnızca Tip 2 silme kulesi kullanan çok ekstruderli (çok baskı kafalı) yazıcılar için geçerlidir. Orca, çok baskı kafalı makinelerde bu seyahati varsayılan olarak atlar çünkü kafa değişimini ürün yazılımı yönetir; bu da Tx komutunun yazdırılan parçanın üzerinde verilmesine yol açabilir. Takım değişiminin her zaman silme kulesinin üzerinde verilmesini istiyorsanız bu seçeneği etkinleştirin."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Silme kulesinde sıcaklığı bekle"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Yeni takımı baskı sıcaklığına ulaşmasını beklemeden alır, silme kulesine gider ve sıcaklığı orada, yıkamadan hemen önce bekler. Isınma sırasında sızan malzeme modele değil kuleye düşer ve hareket ısınmayla çakışır. Yalnızca 2. tip silme kulesi kullanan çok ekstruderli (çok baskı kafalı) yazıcılar için geçerlidir. Donanım yazılımı veya takım değişimi makrosu sıcaklığı kendisi beklememelidir. Devre dışı bırakıldığında, sıcaklık bekleme komutu takım değişimi komutundan hemen sonra verilir."
+
msgid "No sparse layers (beta)"
msgstr "Seyrek katman yok (beta)"
@@ -16866,7 +16935,7 @@ msgid "Z offset"
msgstr "Z ofseti"
msgid "This value will be added (or subtracted) from all the Z coordinates in the output G-code. It is used to compensate for bad Z endstop position: for example, if your endstop zero actually leaves the nozzle 0.3mm far from the print bed, set this to -0.3 (or fix your endstop)."
-msgstr "Bu değer, çıkış G-kodu içindeki tüm Z koordinatlarına eklenir (veya çıkarılır).Bu, kötü Z endstop konumunu telafi etmek için kullanılır: örneğin, endstop sıfır noktanız aslında nozulu baskı plakasından 0.3mm uzakta bırakıyorsa, bu değeri -0.3 olarak ayarlayın (veya endstop'unuzu düzeltin)."
+msgstr "Bu değer, çıkış G-code içindeki tüm Z koordinatlarına eklenir (veya çıkarılır).Bu, kötü Z endstop konumunu telafi etmek için kullanılır: örneğin, endstop sıfır noktanız aslında nozulu baskı plakasından 0.3mm uzakta bırakıyorsa, bu değeri -0.3 olarak ayarlayın (veya endstop'unuzu düzeltin)."
msgid "Enable support"
msgstr "Desteği etkinleştir"
@@ -16914,7 +16983,7 @@ msgid "This setting only generates supports that begin on the build plate."
msgstr "Model yüzeyinde destek oluşturmayın, yalnızca baskı plakasında."
msgid "Support critical regions only"
-msgstr "Yalnızca kritik bölgeleri destekleyin"
+msgstr "Kritik bölgeleri destekleyin"
msgid "Only create support for critical regions including sharp tail, cantilever, etc."
msgstr "Yalnızca keskin kuyruk, konsol vb. gibi kritik bölgeler için destek oluşturun."
@@ -17217,7 +17286,7 @@ msgstr ""
"\n"
"PLA, PETG, TPU, PVA ve diğer düşük sıcaklıktaki malzemeler için, ısı kırılmasında malzemenin yumuşamasından kaynaklanan ekstrüderin tıkanmasını önlemek için oda sıcaklığının düşük olması gerektiğinden bu seçenek devre dışı bırakılmalıdır (0’a ayarlanmalıdır).\n"
"\n"
-"Etkinleştirilirse, bu parametre aynı zamanda istenen oda sıcaklığını yazdırma başlatma makronuza veya şuna benzer bir ısı emme makrosuna iletmek için kullanılabilecek Chamber_temperature adlı bir gcode değişkenini de ayarlar: PRINT_START (diğer değişkenler) CHAMBER_TEMP=[chamber_temperature]. Yazıcınız M141/M191 komutlarını desteklemiyorsa veya aktif oda ısıtıcısı takılı değilse yazdırma başlatma makrosunda ısı bekletme işlemini gerçekleştirmek istiyorsanız bu yararlı olabilir."
+"Etkinleştirilirse, bu parametre aynı zamanda istenen oda sıcaklığını yazdırma başlatma makronuza veya şuna benzer bir ısı emme makrosuna iletmek için kullanılabilecek Chamber_temperature adlı bir G-code değişkenini de ayarlar: PRINT_START (diğer değişkenler) CHAMBER_TEMP=[chamber_temperature]. Yazıcınız M141/M191 komutlarını desteklemiyorsa veya aktif oda ısıtıcısı takılı değilse yazdırma başlatma makrosunda ısı bekletme işlemini gerçekleştirmek istiyorsanız bu yararlı olabilir."
# AI Translated
msgid ""
@@ -17247,10 +17316,10 @@ msgid "This detects thin walls which can’t contain two lines and uses a single
msgstr "İki çizgi genişliğini içeremeyen ince duvarı tespit edin. Ve yazdırmak için tek satır kullanın. Kapalı döngü olmadığından pek iyi basılmamış olabilir."
msgid "This G-code is inserted when filament is changed, including T commands to trigger tool change."
-msgstr "Bu gcode, takım değişimini tetiklemek için T komutu da dahil olmak üzere filament değiştirildiğinde eklenir."
+msgstr "Bu G-code, takım değişimini tetiklemek için T komutu da dahil olmak üzere filament değiştirildiğinde eklenir."
msgid "This G-code is inserted when the extrusion role is changed."
-msgstr "Bu gcode, ekstrüzyon rolü değiştirildiğinde eklenir."
+msgstr "Bu G-code, ekstrüzyon rolü değiştirildiğinde eklenir."
# AI Translated
msgid "Change extrusion role G-code (filament)"
@@ -17602,10 +17671,10 @@ msgid "Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the f
msgstr "Resim boyutları aşağıdaki formatta bir .gcode ve .sl1 / .sl1s dosyalarında saklanacaktır: \"XxY, XxY, ...\""
msgid "Format of G-code thumbnails"
-msgstr "G kodu küçük resimlerinin formatı"
+msgstr "G-code küçük resimlerinin formatı"
msgid "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, QOI for low memory firmware."
-msgstr "G kodu küçük resimlerinin formatı: En iyi kalite için PNG, en küçük boyut için JPG, düşük bellekli donanım yazılımı için QOI."
+msgstr "G-code küçük resimlerinin formatı: En iyi kalite için PNG, en küçük boyut için JPG, düşük bellekli donanım yazılımı için QOI."
msgid "Use relative E distances"
msgstr "Göreceli (relative) E mesafelerini kullan"
@@ -17855,7 +17924,7 @@ msgid "No check"
msgstr "Kontrol yok"
msgid "Do not run any validity checks, such as G-code path conflicts check."
-msgstr "Gcode yol çakışmaları kontrolü gibi herhangi bir geçerlilik kontrolü çalıştırmayın."
+msgstr "G-code yol çakışmaları kontrolü gibi herhangi bir geçerlilik kontrolü çalıştırmayın."
msgid "Normative check"
msgstr "Normatif kontrol"
@@ -18019,10 +18088,10 @@ msgid "If enabled, this slicing will be considered using timelapse."
msgstr "Etkinleştirilirse, bu dilimleme hızlandırılmış çekim kullanılarak değerlendirilecektir."
msgid "Load custom G-code"
-msgstr "Özel gcode yükle"
+msgstr "Özel G-code yükle"
msgid "Load custom G-code from json."
-msgstr "Json'dan özel gcode yükleyin."
+msgstr "Json'dan özel G-code yükleyin."
msgid "Load filament IDs"
msgstr "Filament kimliklerini yükle"
@@ -18049,10 +18118,10 @@ msgid "If enabled, Arrange will avoid extrusion calibrate region when placing ob
msgstr "Etkinleştirilirse, nesne yerleştirildiğinde düzenleme ekstrüzyon kalibrasyon bölgesini önleyecektir."
msgid "Skip modified G-code in 3MF"
-msgstr "3mf’de değiştirilmiş gcode’ları atla"
+msgstr "3mf’de değiştirilmiş G-code’ları atla"
msgid "Skip the modified G-code in 3MF from printer or filament presets."
-msgstr "Yazıcı veya filament Ön Ayarlarından 3mf’deki değiştirilmiş gcode’ları atlayın."
+msgstr "Yazıcı veya filament Ön Ayarlarından 3mf’deki değiştirilmiş G-code’ları atlayın."
msgid "MakerLab name"
msgstr "MakerLab adı"
@@ -18089,13 +18158,13 @@ msgid "Current Z-hop"
msgstr "Mevcut z-hop"
msgid "Contains Z-hop present at the beginning of the custom G-code block."
-msgstr "Özel G kodu bloğunun başında bulunan z-hop'u içerir."
+msgstr "Özel G-code bloğunun başında bulunan z-hop'u içerir."
msgid "Position of the extruder at the beginning of the custom G-code block. If the custom G-code travels somewhere else, it should write to this variable so OrcaSlicer knows where it travels from when it gets control back."
-msgstr "Ekstruderin özel G kodu bloğunun başlangıcındaki konumu. Özel G kodu başka bir yere seyahat ederse, Slicer'ın kontrolü geri aldığında nereden seyahat ettiğini bilmesi için bu değişkene yazması gerekir."
+msgstr "Ekstruderin özel G-code bloğunun başlangıcındaki konumu. Özel G-code başka bir yere seyahat ederse, Slicer'ın kontrolü geri aldığında nereden seyahat ettiğini bilmesi için bu değişkene yazması gerekir."
msgid "Retraction state at the beginning of the custom G-code block. If the custom G-code moves the extruder axis, it should write to this variable so OrcaSlicer de-retracts correctly when it gets control back."
-msgstr "Özel G kodu bloğunun başlangıcındaki geri çekilme durumu. Özel G kodu ekstruder eksenini hareket ettirirse, Slicer'ın kontrolü geri aldığında doğru şekilde geri çekme yapması için bu değişkene yazması gerekir."
+msgstr "Özel G-code bloğunun başlangıcındaki geri çekilme durumu. Özel G-code ekstruder eksenini hareket ettirirse, Slicer'ın kontrolü geri aldığında doğru şekilde geri çekme yapması için bu değişkene yazması gerekir."
msgid "Extra de-retraction"
msgstr "Ekstra deretraksiyon"
@@ -18248,10 +18317,10 @@ msgid "Total number of objects in the print."
msgstr "Baskıdaki toplam nesne sayısı."
msgid "Number of instances"
-msgstr "Örnek sayısı"
+msgstr "Eş kopya sayısı"
msgid "Total number of object instances in the print, summed over all objects."
-msgstr "Tüm nesneler üzerinden toplanan, yazdırmadaki nesne örneklerinin toplam sayısı."
+msgstr "Tüm nesneler genelinde toplanmış, baskıdaki toplam nesne eş kopyası (instance) sayısı."
msgid "Scale per object"
msgstr "Nesne başına ölçeklendirme"
@@ -19288,13 +19357,13 @@ msgid ""
"To test Classic Jerk, set 'Maximum Junction Deviation' in Motion ability to 0."
msgstr ""
"Marlin 2 Kavşak Sapması tespit edildi:\n"
-"Classic Jerk'i test etmek için Hareket yeteneğinde 'Maksimum Kavşak Sapması'nı 0'a ayarlayın."
+"Classic sarsıntıyı test etmek için Hareket yeteneğinde 'Maksimum Kavşak Sapması'nı 0'a ayarlayın."
msgid ""
"Marlin 2 Classic Jerk detected:\n"
"To test Junction Deviation, set 'Maximum Junction Deviation' in Motion ability to a value > 0."
msgstr ""
-"Marlin 2 Classic Jerk tespit edildi:\n"
+"Marlin 2 Classic sarsıntı tespit edildi:\n"
"Kavşak Sapmasını test etmek için Hareket yeteneğinde 'Maksimum Kavşak Sapması'nı > 0 değerine ayarlayın."
msgid ""
@@ -19356,7 +19425,7 @@ msgid "Only materials of the same type can be selected."
msgstr "Yalnızca aynı tipteki malzemeler seçilebilir."
msgid "Send G-code to printer host"
-msgstr "G Kodunu yazıcı ana bilgisayarına gönder"
+msgstr "G-code'u yazıcı ana bilgisayarına gönder"
msgid "Upload to Printer Host with the following filename:"
msgstr "Yazıcıya aşağıdaki dosya adıyla yükleyin:"
@@ -19538,7 +19607,7 @@ msgid "Start Test Single-Thread"
msgstr "Tek İş Parçacığı Testini Başlat"
msgid "Export Log"
-msgstr "Logu Dışa Aktar"
+msgstr "Logu dışa aktar"
msgid "OrcaSlicer Version:"
msgstr "OrcaSlicer Sürümü:"
@@ -20092,9 +20161,6 @@ msgstr "Fiziksel Yazıcı"
msgid "Print Host upload"
msgstr "Yazıcı Bağlantı Ayarları"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Yazıcı iletişimi için ağ aracısı uygulamasını seçin. Kullanılabilir aracılar başlangıçta kaydedilir."
-
# AI Translated
msgid "Select a Flashforge printer"
msgstr "Bir Flashforge yazıcısı seçin"
@@ -20265,9 +20331,8 @@ msgstr "İletişim kutusunu kapatıp projeyi incelemek için HAYIR'ı seçin."
msgid "No project file on current session. Only logs will be included to package"
msgstr "Geçerli oturumda proje dosyası yok. Pakete yalnızca günlükler eklenecek"
-# AI Translated
msgid "Please make sure any instances of OrcaSlicer are not running"
-msgstr "Lütfen çalışan bir OrcaSlicer örneği olmadığından emin olun"
+msgstr "Lütfen hiçbir OrcaSlicer örneğinin çalışmadığından emin olun"
# AI Translated
msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again."
@@ -20281,7 +20346,6 @@ msgstr "Sistem klasörü silinemedi..."
msgid "Failed to determine executable path."
msgstr "Yürütülebilir dosya yolu belirlenemedi."
-# AI Translated
msgid "Failed to launch a new instance."
msgstr "Yeni bir örnek başlatılamadı."
@@ -21037,9 +21101,6 @@ msgstr "Giriş yapmaya çalışırken beklenmeyen bir şey oldu, lütfen tekrar
msgid "User canceled."
msgstr "Kullanıcı iptal edildi."
-msgid "Head diameter"
-msgstr "Kafa çapı"
-
msgid "Max angle"
msgstr "Maksimum açı"
@@ -21610,8 +21671,8 @@ msgid ""
"G-code window\n"
"You can turn on/off the G-code window by pressing the C key."
msgstr ""
-"G-kodu penceresi\n"
-"C tuşuna basarak G*kodu penceresini açabilir/kapatabilirsiniz."
+"G-code penceresi\n"
+"C tuşuna basarak G-code penceresini açabilir/kapatabilirsiniz."
#: resources/data/hints.ini: [hint:Switch workspaces]
msgid ""
@@ -21857,6 +21918,22 @@ msgstr ""
"Eğilmeyi önleyin\n"
"ABS gibi bükülmeye yatkın malzemelere baskı yaparken, ısıtma yatağı sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını azaltabileceğini biliyor muydunuz?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "Katman yüksekliği çok küçük.\n"
+#~ "min_layer_height olarak ayarlanacak\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "Katman yüksekliği, Yazıcı Ayarları -> Ekstruder -> Katman yüksekliği sınırları bölümündeki sınırı aşıyor bu durum baskı kalitesi sorunlarına neden olabilir."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "Ayarlanan aralığa otomatik olarak ayarlansın mı?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Kafa çapı"
+
#~ msgid "Print order within a single layer."
#~ msgstr "Tek bir katmanda yazdırma sırası."
diff --git a/localization/i18n/uk/OrcaSlicer_uk.po b/localization/i18n/uk/OrcaSlicer_uk.po
index 9204a67ec3..9f57b6b71a 100644
--- a/localization/i18n/uk/OrcaSlicer_uk.po
+++ b/localization/i18n/uk/OrcaSlicer_uk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: orcaslicerua\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: 2026-07-17 16:25+0300\n"
"Last-Translator: Andrij Mizyk \n"
"Language-Team: Ukrainian\n"
@@ -4142,10 +4142,10 @@ msgid "PA Profile"
msgstr "Профіль PA"
msgid "Factor K"
-msgstr "Коэф. K"
+msgstr "Коеф. K"
msgid "Factor N"
-msgstr "Коэф. N"
+msgstr "Коеф. N"
msgid "Setting AMS slot information while printing is not supported"
msgstr "Зміна інформації про слоти AMS під час друку не підтримується"
@@ -4716,6 +4716,23 @@ msgstr "Поточна температура камери вища, ніж бе
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "Мінімальна температура камери (%d℃) вища за цільову температуру камери (%d℃). Мінімальне значення — це поріг, за якого починається друк, поки камера продовжує нагріватися до цільової температури, тому воно не повинно її перевищувати. Значення буде обмежено цільовим."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "Висота шару занадто мала. Буде встановлено мінімальне значення (%g мм)."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "Висота шару виходить за межі, задані в Налаштуваннях принтера -> Екструдер -> Ліміти висоти шару, це може призвести до проблем з якістю друку."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "Автоматично налаштувати до межі (%g мм)?"
+
+msgid "Adjust"
+msgstr "Налаштувати"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4839,6 +4856,13 @@ msgstr ""
"Так - Увімкнути генератор стінок Arachne\n"
"Ні - Вимкнути генератор стінок Arachne і встановити режим [Зміщення] для шорсткої поверхні"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Радіус вушка кайми"
+
+msgid "Brim width"
+msgstr "Ширина кайми"
+
# AI Translated
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "Спіральний режим працює лише тоді, коли кількість стінок дорівнює 1, підтримки вимкнено, виявлення налипання зондуванням вимкнено, кількість верхніх шарів оболонки дорівнює 0, щільність часткового заповнення дорівнює 0, а тип таймлапсу — традиційний."
@@ -5104,6 +5128,14 @@ msgstr "Не вдалося згенерувати калібрувальний
msgid "Calibration error"
msgstr "Помилка калібрування"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "На цьому принтері не налаштовано обладнання, потрібне для цього елемента керування."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Цей елемент керування не підтримується на цьому принтері."
+
# AI Translated
msgid "Network unavailable"
msgstr "Мережа недоступна"
@@ -5978,7 +6010,7 @@ msgid "Size:"
msgstr "Розмір:"
# AI Translated
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "Виявлено конфлікти шляхів G-коду на шарі %d, Z = %.2lf мм. Будь ласка, рознесіть конфліктуючі обʼєкти далі один від одного (%s <-> %s)."
@@ -6170,6 +6202,10 @@ msgstr "Багато пристроїв"
msgid "Project"
msgstr "Проєкт"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Пристрій (Веб)"
+
msgid "Yes"
msgstr "Так"
@@ -8306,19 +8342,19 @@ msgstr "Каталог для заміни не вибрано"
msgid "Replaced with 3D files from directory:\n"
msgstr "Замінено 3D-файлами з каталогу:\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Пропущено %s: той самий файл.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Пропущено %s: файл не існує.\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Пропущено %s: не вдалося замінити.\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Замінено %s.\n"
@@ -9069,6 +9105,18 @@ msgstr "З цією опцією ввімкненою, ви можете від
msgid "Pop up to select filament grouping mode"
msgstr "Показувати вікно вибору режиму групування філаментів"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Видимі сторінки плагінів"
+
+# AI Translated
+msgid "pages"
+msgstr "стор."
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Кількість сторінок плагінів, що показуються як закріплені вкладки, перш ніж решта сторінок згорнеться у випадний список на останній вкладці."
+
msgid "Behaviour"
msgstr "Поведінка"
@@ -9446,6 +9494,18 @@ msgstr "Показати непідтримувані пресети"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Показати несумісні/непідтримувані пресети у випадаючому списку принтера і філаменту. Ці пресети не можна вибрати."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Експериментально) Використовувати агентів принтера замість хостів друку"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Спрямовує завдання друку для принтерів, відмінних від Bambu, через агентів плагінів принтера замість класичного завантаження на хост друку.\n"
+"Коли вимкнено, OrcaSlicer використовує попередню поведінку хоста друку."
+
msgid "Experimental Features"
msgstr "Експериментальні функції"
@@ -9710,10 +9770,26 @@ msgstr "Пресети користувача"
msgid "Preset Inside Project"
msgstr "Налаштування проекту всередині"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Копіює в цей пресет усі значення, успадковані від батьківського пресета, і видаляє звʼязок успадкування. Пресети, сумісні лише з батьківським, можуть стати непідтримуваними."
+
# AI Translated
msgid "Detach from parent"
msgstr "Відʼєднати від батьківського"
+# AI Translated
+msgid "Unique preset"
+msgstr "Незалежний пресет"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Батьківський пресет"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Цей пресет не успадковується від іншого пресета."
+
msgid "Name is unavailable."
msgstr "Назва недоступна."
@@ -10492,22 +10568,6 @@ msgstr "Ви впевнені, що хочете ввімкнути цю опц
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "Шаблони заповнення зазвичай розроблені так, щоб автоматично враховувати обертання, забезпечувати належний друк і досягати задуманого ефекту (наприклад, Гіроїд, Кубічний). Обертання поточного шаблону часткового заповнення може призвести до недостатньої підтримки. Дійте обережно та ретельно перевіряйте можливі проблеми друку. Ви впевнені, що хочете увімкнути цю опцію?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"Висота шару занадто мала.\n"
-"Буде встановлено значення min_layer_height\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "Висота шару перевищує ліміт у Налаштуваннях принтера -> Екструдер -> Ліміти висоти шару, це може призвести до проблем з якістю друку."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "Автоматично налаштувати на встановлений діапазон?\n"
-
-msgid "Adjust"
-msgstr "Налаштувати"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "Експериментальна функція: Втягування та відрізання філаменту на більшій відстані під час зміни філаменту для мінімізації промивання. Хоча це може помітно зменшити промивання, це також може підвищити ризик засмічення сопла або інших ускладнень друку."
@@ -10711,6 +10771,9 @@ msgstr "Знайдено зарезервовані ключові слова"
msgid "Setting Overrides"
msgstr "Налаштування перевизначень"
+msgid "Retraction when switching material"
+msgstr "Втягування під час зміни матеріалу"
+
msgid "Basic information"
msgstr "Базова інформація"
@@ -10848,6 +10911,13 @@ msgstr "Сумісні профілі процесів"
msgid "Printable space"
msgstr "Місце для друку"
+msgid "Printer Agent"
+msgstr "Агент принтера"
+
+# AI Translated
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Виберіть реалізацію мережевого агента для звʼязку з принтером. Доступні агенти реєструються під час запуску."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10978,9 +11048,6 @@ msgstr "Обмеження висоти шару"
msgid "Z-Hop"
msgstr "Стрибок-Z"
-msgid "Retraction when switching material"
-msgstr "Втягування під час зміни матеріалу"
-
# AI Translated
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
@@ -12376,6 +12443,10 @@ msgstr " знаходиться надто близько до зони відч
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " розташовано занадто близько до зони виявлення налипання, і це спричинить зіткнення.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " частково знаходиться за межами області друку, і його неможливо надрукувати.\n"
+
# AI Translated
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "Вибрані температури сопла несумісні. Температура сопла кожного філаменту має входити в рекомендований діапазон температур сопла інших філаментів. Інакше можливе засмічення сопла або пошкодження принтера."
@@ -12722,9 +12793,6 @@ msgstr "Використовувати 3MF замість G-коду"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Увімкніть, якщо принтер приймає файл 3MF як завдання друку. Якщо увімкнено, Orca Slicer надсилає нарізаний файл як .gcode.3mf замість звичайного файлу .gcode."
-msgid "Printer Agent"
-msgstr "Агент принтера"
-
# AI Translated
msgid "Select the network agent implementation for printer communication."
msgstr "Виберіть реалізацію мережевого агента для звʼязку з принтером."
@@ -13438,9 +13506,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "Швидкість внутрішніх мостів. Якщо значення вказано у відсотках, воно буде розраховане на основі bridge_speed. Значення за замовчуванням: 150%."
-msgid "Brim width"
-msgstr "Ширина кайми"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Відстань від моделі до останньої зовнішньої лінії кайми"
@@ -13525,6 +13590,14 @@ msgstr ""
"Геометрія буде оброблена перед детектуванням гострих кутів. Цей параметр вказує мінімальну довжину відхилення для обробки.\n"
"0 для вимкнення"
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Вушка кайми лише ззовні"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Створювати мишачі вушка лише на зовнішньому контурі моделі, за винятком отворів і замкнених ділянок."
+
msgid "upward compatible machine"
msgstr "висхідна сумісна машина"
@@ -14734,6 +14807,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "Гіроїд"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Коефіцієнт згладжування часткового заповнення"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Визначає, наскільки сильно заокруглюються кути часткового заповнення. 0% зберігає початкову траєкторію з гострими кутами, а 100% створює максимально можливі заокруглення між сусідніми лініями заповнення."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Прискорення заповнення верхньої поверхні. Використання меншого значенняможе покращити якість верхньої поверхні"
@@ -15300,6 +15381,14 @@ msgstr "З яким gcode сумісний принтер"
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "Пропустити блок конфігурації G-code"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "Не записувати CONFIG_BLOCK (пари ключ/значення з конфігурацією слайсера) у файл G-code. Це може допомогти з принтерами, прошивка яких аварійно завершується під час розбору цих рядків коментарів (напр. Anycubic go-klipper). Примітка: файл G-code більше не міститиме налаштувань слайсера, тож зворотний імпорт до OrcaSlicer не відновить конфігурацію."
+
msgid "Pellet Modded Printer"
msgstr "Принтер модифікований гранулами"
@@ -16438,6 +16527,14 @@ msgstr "Довге втягування при зміні екструдера"
msgid "Retraction distance when extruder change"
msgstr "Відстань втягування при зміні екструдера"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Довжина втягування (Зміна інструменту)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Коли втягування спрацьовує перед зміною інструменту, філамент відтягується на вказану величину (довжина вимірюється на необробленому філаменті, до його входу в екструдер)."
+
msgid "Z-hop height"
msgstr "Висота Z-підйому"
@@ -16534,6 +16631,10 @@ msgstr "Додаткова довжина під час перезавантаж
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "Коли втягування компенсується після переміщення, екструдер проштовхуєЦе додаткова кількість нитки. Ця установка рідко потрібна."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Додаткова довжина під час перезавантаження (Зміна інструменту)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Коли втягування компенсується після заміни інструменту, екструдерпроштовхує цю додаткову кількість нитки."
@@ -16960,6 +17061,14 @@ msgstr "Зміна інструмента на вежі протирання"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "Примусово переміщати головку до вежі протирання перед видачею команди зміни інструмента (Tx). Стосується лише багатоекструдерних (багатоінструментальних) принтерів з вежею протирання типу 2. Типово Orca пропускає це переміщення на багатоінструментальних машинах, оскільки заміну головки виконує прошивка, через що команда Tx може бути видана над надрукованою деталлю. Увімкніть цю опцію, якщо хочете, щоб зміна інструмента завжди відбувалася над вежею протирання."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Очікувати температуру на вежі протирання"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Бере новий інструмент, не чекаючи, доки він досягне температури друку, переміщується до вежі протирання й чекає на температуру там, безпосередньо перед промивкою. Матеріал, що витікає під час нагрівання, потрапляє на вежу, а не на модель, а переміщення збігається з нагріванням. Актуально лише для принтерів із кількома екструдерами (кількома головками), які використовують вежу протирання типу 2. Прошивка або макрос зміни інструменту не повинні самі чекати на температуру. Коли вимкнено, команда очікування температури видається одразу після команди зміни інструменту."
+
msgid "No sparse layers (beta)"
msgstr "Без розріджених шарів (бета)"
@@ -20304,10 +20413,6 @@ msgstr "Фізичний принтер"
msgid "Print Host upload"
msgstr "Завантаження хоста друку"
-# AI Translated
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Виберіть реалізацію мережевого агента для звʼязку з принтером. Доступні агенти реєструються під час запуску."
-
msgid "Select a Flashforge printer"
msgstr "Вибрати принтер Flashforge"
@@ -21181,9 +21286,6 @@ msgstr "Під час спроби входу трапилося щось нес
msgid "User canceled."
msgstr "Користувача скасовано."
-msgid "Head diameter"
-msgstr "Діаметр голови"
-
msgid "Max angle"
msgstr "Максимальний кут"
@@ -21979,6 +22081,22 @@ msgstr ""
"Уникнення деформації\n"
"Чи знаєте ви, що при друку матеріалами, схильними до деформації, такими як ABS, відповідне підвищення температури столу може зменшити ймовірність деформації?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "Висота шару занадто мала.\n"
+#~ "Буде встановлено значення min_layer_height\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "Висота шару перевищує ліміт у Налаштуваннях принтера -> Екструдер -> Ліміти висоти шару, це може призвести до проблем з якістю друку."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "Автоматично налаштувати на встановлений діапазон?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Діаметр голови"
+
#~ msgid "Print order within a single layer."
#~ msgstr "Друк замовлення в один шар"
diff --git a/localization/i18n/vi/OrcaSlicer_vi.po b/localization/i18n/vi/OrcaSlicer_vi.po
index e6e7adf43d..00a9a558ba 100644
--- a/localization/i18n/vi/OrcaSlicer_vi.po
+++ b/localization/i18n/vi/OrcaSlicer_vi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: 2025-10-02 17:43+0700\n"
"Last-Translator: \n"
"Language-Team: hainguyen.ts13@gmail.com\n"
@@ -4975,6 +4975,23 @@ msgstr "Nhiệt độ buồng hiện tại cao hơn nhiệt độ an toàn của
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "Nhiệt độ buồng tối thiểu (%d℃) cao hơn nhiệt độ buồng mục tiêu (%d℃). Giá trị tối thiểu là ngưỡng để bắt đầu in trong khi buồng vẫn tiếp tục gia nhiệt tới mục tiêu, nên nó không được vượt quá giá trị mục tiêu. Nó sẽ được giới hạn về mức mục tiêu."
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "Chiều cao lớp quá nhỏ. Nó sẽ được đặt về giá trị tối thiểu (%g mm)."
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "Chiều cao lớp nằm ngoài giới hạn được đặt trong Cài đặt máy in -> Extruder -> Giới hạn chiều cao lớp, điều này có thể gây ra vấn đề chất lượng in."
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "Tự động điều chỉnh về giới hạn (%g mm)?"
+
+msgid "Adjust"
+msgstr "Điều chỉnh"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -5095,6 +5112,13 @@ msgstr ""
"Yes - Bật trình tạo wall Arachne\n"
"No - Tắt trình tạo wall Arachne và đặt chế độ [Displacement] của Fuzzy Skin"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "Bán kính tai brim"
+
+msgid "Brim width"
+msgstr "Độ rộng brim"
+
# AI Translated
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "Chế độ xoắn ốc chỉ hoạt động khi vòng wall bằng 1, support bị tắt, phát hiện vón cục bằng dò bị tắt, số lớp vỏ trên bằng 0, mật độ infill thưa bằng 0 và loại timelapse là truyền thống."
@@ -5399,6 +5423,14 @@ msgstr "Không thể tạo G-code hiệu chỉnh"
msgid "Calibration error"
msgstr "Lỗi hiệu chỉnh"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "Máy in này không được cấu hình phần cứng mà điều khiển này cần."
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "Điều khiển này không được hỗ trợ trên máy in này."
+
# AI Translated
msgid "Network unavailable"
msgstr "Mạng không khả dụng"
@@ -6317,7 +6349,7 @@ msgstr "Thể tích:"
msgid "Size:"
msgstr "Kích thước:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "Đã tìm thấy xung đột đường đi G-code tại lớp %d, Z = %.2lfmm. Vui lòng tách các vật thể xung đột ra xa hơn (%s <-> %s)."
@@ -6516,6 +6548,10 @@ msgstr "Nhiều thiết bị"
msgid "Project"
msgstr "Dự án"
+# AI Translated
+msgid "Device (Web)"
+msgstr "Thiết bị (Web)"
+
msgid "Yes"
msgstr "Có"
@@ -8721,22 +8757,22 @@ msgid "Replaced with 3D files from directory:\n"
msgstr "Đã thay thế bằng file 3D từ thư mục:\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ Đã bỏ qua %s: cùng một file.\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ Đã bỏ qua %s: file không tồn tại.\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ Đã bỏ qua %s: thay thế thất bại.\n"
# AI Translated
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ Đã thay thế %s.\n"
@@ -9532,6 +9568,18 @@ msgstr "Với tùy chọn này được bật, bạn có thể gửi tác vụ
msgid "Pop up to select filament grouping mode"
msgstr "Hiện cửa sổ để chọn chế độ nhóm filament"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "Số trang plugin hiển thị"
+
+# AI Translated
+msgid "pages"
+msgstr "trang"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "Số trang plugin được hiển thị dưới dạng tab cố định trước khi các trang còn lại được gom vào danh sách thả xuống ở tab cuối cùng."
+
# AI Translated
msgid "Behaviour"
msgstr "Hành vi"
@@ -9947,6 +9995,18 @@ msgstr "Hiện cài đặt sẵn không được hỗ trợ"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "Hiện các cài đặt sẵn không tương thích/không được hỗ trợ trong danh sách thả xuống máy in và filament. Không thể chọn các cài đặt sẵn này."
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(Thử nghiệm) Dùng tác nhân máy in thay cho máy chủ in"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"Định tuyến các tác vụ in của máy in không phải Bambu qua các tác nhân plugin máy in thay vì luồng tải lên máy chủ in cổ điển.\n"
+"Khi tắt, OrcaSlicer sẽ dùng hành vi máy chủ in cũ."
+
# AI Translated
msgid "Experimental Features"
msgstr "Tính năng thử nghiệm"
@@ -10223,10 +10283,26 @@ msgstr "Preset người dùng"
msgid "Preset Inside Project"
msgstr "Preset bên trong dự án"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "Sao chép tất cả các giá trị kế thừa từ preset cha vào preset này và gỡ bỏ quan hệ kế thừa. Các preset chỉ tương thích với preset cha có thể không còn được hỗ trợ."
+
# AI Translated
msgid "Detach from parent"
msgstr "Tách khỏi vật thể cha"
+# AI Translated
+msgid "Unique preset"
+msgstr "Preset độc lập"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "Preset cha"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "Preset này không kế thừa từ preset khác."
+
msgid "Name is unavailable."
msgstr "Tên không khả dụng."
@@ -11026,22 +11102,6 @@ msgstr "Bạn có chắc chắn muốn bật tùy chọn này?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "Mẫu infill thường được thiết kế để xử lý xoay tự động nhằm đảm bảo in đúng cách và đạt được hiệu quả dự kiến (ví dụ: Gyroid, Cubic). Xoay mẫu infill thưa hiện tại có thể dẫn đến support không đủ . Vui lòng tiến hành thận trọng và kiểm tra kỹ bất kỳ vấn đề in tiềm ẩn nào. Bạn có chắc chắn muốn bật tùy chọn này?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"Chiều cao lớp quá nhỏ.\n"
-"Nó sẽ được đặt thành min_layer_height\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "Chiều cao lớp vượt quá giới hạn trong Cài đặt máy in -> Extruder -> Giới hạn chiều cao lớp, điều này có thể gây ra vấn đề chất lượng in."
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "Điều chỉnh về phạm vi đặt tự động?\n"
-
-msgid "Adjust"
-msgstr "Điều chỉnh"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "Tính năng thử nghiệm: Rút và cắt filament ở khoảng cách lớn hơn trong quá trình thay filament để giảm thiểu xả. Mặc dù có thể giảm đáng kể lượng xả, nó cũng có thể làm tăng nguy cơ tắc đầu phun hoặc các vấn đề in khác."
@@ -11235,6 +11295,9 @@ msgstr "Tìm thấy từ khóa dành riêng"
msgid "Setting Overrides"
msgstr "Ghi đè cài đặt"
+msgid "Retraction when switching material"
+msgstr "Rút khi chuyển vật liệu"
+
msgid "Basic information"
msgstr "Thông tin cơ bản"
@@ -11366,6 +11429,14 @@ msgstr "Hồ sơ quy trình tương thích"
msgid "Printable space"
msgstr "Không gian in"
+# AI Translated
+msgid "Printer Agent"
+msgstr "Tác nhân máy in"
+
+# AI Translated
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "Chọn cách triển khai tác nhân mạng cho việc giao tiếp với máy in. Các tác nhân khả dụng được đăng ký khi khởi động."
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -11498,9 +11569,6 @@ msgstr "Giới hạn chiều cao lớp"
msgid "Z-Hop"
msgstr "Z-Hop"
-msgid "Retraction when switching material"
-msgstr "Rút khi chuyển vật liệu"
-
# AI Translated
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
@@ -12950,6 +13018,10 @@ msgstr " quá gần vùng loại trừ, và sẽ gây va chạm.\n"
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr " ở quá gần vùng phát hiện vón cục, và sẽ gây ra va chạm.\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr " nằm một phần ngoài vùng in được, và không thể in.\n"
+
# AI Translated
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "Nhiệt độ đầu phun đã chọn không tương thích. Nhiệt độ đầu phun của mỗi filament phải nằm trong dải nhiệt độ đầu phun được khuyến nghị của các filament còn lại. Nếu không, có thể xảy ra tắc đầu phun hoặc hư hỏng máy in."
@@ -13291,10 +13363,6 @@ msgstr "Dùng 3MF thay cho G-code"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "Bật tùy chọn này nếu máy in nhận file 3MF làm tác vụ in. Khi bật, Orca Slicer sẽ gửi file đã slice dưới dạng .gcode.3mf thay vì file .gcode thuần."
-# AI Translated
-msgid "Printer Agent"
-msgstr "Tác nhân máy in"
-
# AI Translated
msgid "Select the network agent implementation for printer communication."
msgstr "Chọn cách triển khai tác nhân mạng cho việc giao tiếp với máy in."
@@ -14002,9 +14070,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "Tốc độ của cầu bên trong. Nếu giá trị được biểu thị dưới dạng phần trăm, nó sẽ được tính dựa trên bridge_speed. Giá trị mặc định là 150%."
-msgid "Brim width"
-msgstr "Độ rộng brim"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "Khoảng cách từ model đến đường brim ngoài cùng."
@@ -14088,6 +14153,14 @@ msgstr ""
"Hình học sẽ được giảm trước khi phát hiện góc sắc. Tham số này chỉ ra độ dài tối thiểu của độ lệch cho việc giảm.\n"
"0 để vô hiệu hóa."
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "Tai brim chỉ ở mặt ngoài"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "Chỉ tạo tai chuột trên đường viền ngoài của mô hình, không tính các lỗ và phần khép kín."
+
msgid "upward compatible machine"
msgstr "máy tương thích ngược"
@@ -15305,6 +15378,14 @@ msgstr "TPMS-FK"
msgid "Gyroid"
msgstr "Gyroid"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "Hệ số làm mượt infill thưa"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "Điều chỉnh mức độ bo tròn các góc của infill thưa. 0% giữ nguyên đường đi sắc cạnh ban đầu, còn 100% tạo ra các đường cong lớn nhất có thể giữa các đường infill liền kề."
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "Gia tốc của infill bề mặt trên. Sử dụng giá trị thấp hơn có thể cải thiện chất lượng bề mặt trên."
@@ -15868,6 +15949,14 @@ msgstr "Loại G-code mà máy in tương thích."
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "Bỏ qua khối cấu hình G-code"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "Không ghi CONFIG_BLOCK (các cặp khóa/giá trị cấu hình của phần mềm slice) vào tệp G-code. Điều này có thể hữu ích với các máy in có firmware bị treo khi phân tích những dòng chú thích này (ví dụ Anycubic go-klipper). Lưu ý: tệp G-code sẽ không còn chứa các thiết lập slice, nên việc nhập lại tệp vào OrcaSlicer sẽ không khôi phục được cấu hình."
+
msgid "Pellet Modded Printer"
msgstr "Máy in Pellet đã chỉnh sửa"
@@ -16971,6 +17060,14 @@ msgstr "Rút dài khi đổi extruder"
msgid "Retraction distance when extruder change"
msgstr "Khoảng cách rút khi đổi extruder"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "Độ dài rút (Đổi công cụ)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Khi rút được kích hoạt trước khi đổi công cụ, filament sẽ bị kéo lùi lại theo lượng đã chỉ định (độ dài được đo trên filament thô, trước khi nó đi vào extruder)."
+
msgid "Z-hop height"
msgstr "Chiều cao Z-hop"
@@ -17069,6 +17166,10 @@ msgstr "Độ dài bổ sung khi khởi động lại"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "Khi rút được bù sau khi di chuyển, extruder sẽ đẩy lượng filament bổ sung này. Cài đặt này hiếm khi cần thiết."
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "Độ dài bổ sung khi khởi động lại (Đổi công cụ)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "Khi rút được bù sau khi thay công cụ, extruder sẽ đẩy lượng filament bổ sung này."
@@ -17489,6 +17590,14 @@ msgstr "Đổi công cụ trên wipe tower"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "Buộc đầu công cụ di chuyển đến wipe tower trước khi phát lệnh đổi công cụ (Tx). Chỉ liên quan đến máy in nhiều extruder (nhiều đầu công cụ) dùng wipe tower Loại 2. Theo mặc định, Orca bỏ qua bước di chuyển này trên máy nhiều đầu công cụ vì firmware tự xử lý việc đổi đầu, điều này có thể khiến lệnh Tx được phát ra ngay phía trên phần đang in. Hãy bật tùy chọn này nếu bạn muốn việc đổi công cụ luôn diễn ra phía trên wipe tower."
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "Chờ nhiệt độ tại wipe tower"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "Lấy công cụ mới mà không chờ nó đạt nhiệt độ in, di chuyển đến wipe tower và chờ nhiệt độ tại đó, ngay trước khi xả. Nhựa chảy ra trong lúc gia nhiệt sẽ rơi lên wipe tower thay vì lên mô hình, và quãng di chuyển diễn ra đồng thời với quá trình gia nhiệt. Chỉ áp dụng cho máy in nhiều extruder (nhiều đầu công cụ) dùng wipe tower loại 2. Firmware hoặc macro đổi công cụ không được tự chờ nhiệt độ. Khi tắt, lệnh chờ nhiệt độ sẽ được phát ngay sau lệnh đổi công cụ."
+
msgid "No sparse layers (beta)"
msgstr "Không có lớp thưa (beta)"
@@ -20849,10 +20958,6 @@ msgstr "Máy in vật lý"
msgid "Print Host upload"
msgstr "Tải lên máy chủ in"
-# AI Translated
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "Chọn cách triển khai tác nhân mạng cho việc giao tiếp với máy in. Các tác nhân khả dụng được đăng ký khi khởi động."
-
# AI Translated
msgid "Select a Flashforge printer"
msgstr "Chọn một máy in Flashforge"
@@ -21832,9 +21937,6 @@ msgstr "Đã xảy ra điều gì đó không mong đợi khi cố gắng đăng
msgid "User canceled."
msgstr "Người dùng đã hủy."
-msgid "Head diameter"
-msgstr "Đường kính đầu"
-
msgid "Max angle"
msgstr "Góc tối đa"
@@ -22702,6 +22804,22 @@ msgstr ""
"Tránh cong vênh\n"
"Bạn có biết rằng khi in vật liệu dễ cong vênh như ABS, tăng nhiệt độ bàn nóng một cách thích hợp có thể giảm xác suất cong vênh không?"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "Chiều cao lớp quá nhỏ.\n"
+#~ "Nó sẽ được đặt thành min_layer_height\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "Chiều cao lớp vượt quá giới hạn trong Cài đặt máy in -> Extruder -> Giới hạn chiều cao lớp, điều này có thể gây ra vấn đề chất lượng in."
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "Điều chỉnh về phạm vi đặt tự động?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Đường kính đầu"
+
#~ msgid "Print order within a single layer."
#~ msgstr "Thứ tự in trong một lớp đơn."
diff --git a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po
index 345891f250..133e0815a4 100644
--- a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po
+++ b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Slic3rPE\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: 2026-06-11 12:37-0300\n"
"Last-Translator: Handle \n"
"Language-Team: \n"
@@ -4574,6 +4574,23 @@ msgstr "当前腔体温度高于材料的安全温度,这可能导致材料软
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "最低机箱温度(%d℃)高于目标机箱温度(%d℃)。最低值是开始打印的阈值,此时机箱会持续朝目标温度加热,因此它不应超过目标值。该值将被限制到目标值。"
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "层高太小,将设置为最小值(%g mm)。"
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "层高超出了打印机设置 -> 挤出机 -> 层高限制中设置的范围,这可能导致打印质量问题。"
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "是否自动调整到限制值(%g mm)?"
+
+msgid "Adjust"
+msgstr "调整"
+
# AI Translated
msgid ""
"Layer height too small\n"
@@ -4696,6 +4713,13 @@ msgstr ""
"是 - 启用Arachne墙生成器\n"
"否 - 禁用Arachne墙生成器并将绒毛表面设置为[位移]模式"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "圆盘半径"
+
+msgid "Brim width"
+msgstr "Brim宽度"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "螺旋模式仅在壁环为 1、支撑被禁用、探测结块检测被禁用、顶部壳层为 0、稀疏填充密度为 0 且延时类型为传统时才起作用。"
@@ -4950,6 +4974,14 @@ msgstr "生成校准gcode失败"
msgid "Calibration error"
msgstr "校准错误"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "此打印机未配置该控件所需的硬件。"
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "此打印机不支持该控件。"
+
# AI Translated
msgid "Network unavailable"
msgstr "网络不可用"
@@ -5807,7 +5839,7 @@ msgstr "体积:"
msgid "Size:"
msgstr "尺寸:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "发现G-code路径在层%d,高度为%.2lf mm处有冲突。请将有冲突的对象分离得更远(%s <-> %s)。"
@@ -5988,6 +6020,10 @@ msgstr "多设备"
msgid "Project"
msgstr "项目"
+# AI Translated
+msgid "Device (Web)"
+msgstr "设备(网页)"
+
msgid "Yes"
msgstr "是"
@@ -8028,19 +8064,19 @@ msgstr "未选择替换目录"
msgid "Replaced with 3D files from directory:\n"
msgstr "替换为目录中的 3D 文件:\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ 跳过 %s:同一文件。\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ 跳过%s:文件不存在。\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ 跳过%s:替换失败。\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ 替换了 %s。\n"
@@ -8767,6 +8803,18 @@ msgstr "启用此选项后,您可以同时向多个设备发送任务并管理
msgid "Pop up to select filament grouping mode"
msgstr "弹出选择耗材丝分组模式"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "可见插件页数"
+
+# AI Translated
+msgid "pages"
+msgstr "页"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "作为固定标签显示的插件页数量,其余页面将折叠到最后一个标签的下拉菜单中。"
+
msgid "Behaviour"
msgstr "行为"
@@ -9121,6 +9169,18 @@ msgstr "显示不受支持的预设"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "在打印机和耗材下拉列表中显示不兼容/不受支持的预设。这些预设无法被选择。"
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(实验性)使用打印机代理替代打印主机"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"非 Bambu 打印机的打印任务将通过打印机插件代理发送,而不是经典的打印主机上传流程。\n"
+"禁用时,OrcaSlicer 使用旧的打印主机行为。"
+
# AI Translated
msgid "Experimental Features"
msgstr "实验性功能"
@@ -9385,9 +9445,25 @@ msgstr "用户预设"
msgid "Preset Inside Project"
msgstr "项目预设"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "将父预设继承的所有数值复制到当前预设,并解除继承关系。仅与父预设兼容的预设可能会变为不受支持。"
+
msgid "Detach from parent"
msgstr "与父级分离"
+# AI Translated
+msgid "Unique preset"
+msgstr "独立预设"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "父预设"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "此预设未继承自其它预设。"
+
msgid "Name is unavailable."
msgstr "名称不可用。"
@@ -10093,24 +10169,6 @@ msgstr "您确定要启用此选项吗?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "填充图案通常设计为自动处理旋转,以确保正确打印并实现其预期效果(例如,Gyroid、Cubic)。旋转当前的稀疏填充图案可能会导致支撑不足。请谨慎操作并彻底检查是否存在任何潜在的打印问题。您确定要启用此选项吗?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"层高太小。\n"
-"将设置为min_layer_height\n"
-"层高太小。\n"
-"将自动设置为min_layer_height的值\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "层高超出了打印机设置->挤出机->层高限制中的范围,这可能导致打印质量问题。"
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "是否自动调整到范围内?\n"
-
-msgid "Adjust"
-msgstr "调整"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "实验性选项。在更换耗材丝时,将耗材丝回抽一段距离后再切断以最小化冲刷。虽然这可以显著减少冲刷,但也可能增加喷嘴堵塞或其他打印问题的风险。"
@@ -10303,6 +10361,9 @@ msgstr "检测到保留的关键字"
msgid "Setting Overrides"
msgstr "参数覆盖"
+msgid "Retraction when switching material"
+msgstr "切换材料时的回抽量"
+
msgid "Basic information"
msgstr "基础信息"
@@ -10433,6 +10494,12 @@ msgstr "兼容的切片配置"
msgid "Printable space"
msgstr "可打印区域"
+msgid "Printer Agent"
+msgstr "打印机代理"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "为打印机通信选择网络代理。可用的代理将在启动时列出。"
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10558,9 +10625,6 @@ msgstr "层高限制"
msgid "Z-Hop"
msgstr "Z轴抬升"
-msgid "Retraction when switching material"
-msgstr "切换材料时的回抽量"
-
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
"\n"
@@ -11911,6 +11975,10 @@ msgstr "离不可打印区域太近,会发生碰撞。\n"
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr "距离聚集检测区域太近,会引起碰撞。\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr "有部分超出可打印区域,无法打印。\n"
+
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "所选的喷嘴温度不兼容。每种耗材的喷嘴温度都必须落在其他耗材的推荐喷嘴温度范围内。否则可能会发生喷嘴堵塞或打印机损坏。"
@@ -12224,9 +12292,6 @@ msgstr "使用 3MF 代替 G-code"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "如果打印机接受 3MF 文件作为打印任务,请启用此选项。启用后,Orca Slicer 将以 .gcode.3mf 格式发送切片文件,而不是普通的 .gcode 文件。"
-msgid "Printer Agent"
-msgstr "打印机代理"
-
msgid "Select the network agent implementation for printer communication."
msgstr "选择打印机通信的网络代理实施。"
@@ -12861,9 +12926,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "内部桥接的速度。如果该值以百分比表示,将基于桥接速度计算。默认值为150%。"
-msgid "Brim width"
-msgstr "Brim宽度"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "从模型到最外圈brim走线的距离"
@@ -12944,6 +13006,14 @@ msgstr ""
"在检测尖锐角度之前,几何形状将被简化。此参数表示简化的最小偏差长度。\n"
"设为0以停用"
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "仅外轮廓生成圆盘"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "仅在模型的外轮廓上生成圆盘,不包括孔洞和封闭区域。"
+
msgid "upward compatible machine"
msgstr "向上兼容的机器"
@@ -14119,6 +14189,14 @@ msgstr "TPMS-FK结构"
msgid "Gyroid"
msgstr "螺旋体"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "稀疏填充平滑系数"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "控制稀疏填充拐角的圆滑程度。0% 保持原有的尖锐路径,100% 则在相邻填充线之间生成尽可能大的圆弧。"
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "顶面填充的加速度。使用较低值可能会改善顶面质量"
@@ -14659,6 +14737,14 @@ msgstr "打印机兼容的G-code风格'"
msgid "Klipper"
msgstr "Klipper固件"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "跳过 G-code 配置块"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "不将 CONFIG_BLOCK(切片软件配置的键值对)写入 G-code 文件。这对固件在解析这些注释行时会崩溃的打印机(例如 Anycubic go-klipper)有帮助。注意:G-code 文件将不再包含切片设置,因此重新导入到 OrcaSlicer 时无法恢复配置。"
+
msgid "Pellet Modded Printer"
msgstr "颗粒改装打印机"
@@ -15704,6 +15790,14 @@ msgstr "更换挤出机时长回缩"
msgid "Retraction distance when extruder change"
msgstr "更换挤出机时的回缩距离"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "回抽长度(换工具头)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "在换工具头之前触发回抽时,耗材丝会按指定的长度回抽(长度是在耗材丝进入挤出机之前,以原始耗材丝测量的)。"
+
msgid "Z-hop height"
msgstr "Z抬升高度"
@@ -15797,6 +15891,10 @@ msgstr "额外回填长度"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "每当空驶后回抽被补偿时,挤出机将推入额外数量的耗材丝。很少需要此设置。"
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "额外回填长度(换工具头)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "当换色后回抽被补偿时,挤出机将推入额外数量的耗材丝。"
@@ -16211,6 +16309,14 @@ msgstr "在擦拭塔上换头"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "在发出换头命令 (Tx) 之前,强制打印头先移动到擦拭塔。仅与使用第 2 类擦拭塔的多挤出机(多打印头)打印机相关。默认情况下,Orca 会在多打印头机器上跳过此移动,因为固件会处理换头,这可能导致 Tx 命令在打印件上方发出。如果您希望换头命令始终在擦拭塔上方发出,请启用此选项。"
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "在擦拭塔上等待温度"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "拾取新工具头后不等待其达到打印温度,直接移动到擦拭塔,并在冲刷前于擦拭塔上等待温度。升温过程中渗出的耗材丝会落在擦拭塔上而不是模型上,且移动时间与加热过程重叠。仅适用于使用 2 型擦拭塔的多挤出机(多工具头)打印机。固件或换工具头宏本身不得等待温度。禁用时,等待温度的指令将在换工具头命令之后立即发出。"
+
msgid "No sparse layers (beta)"
msgstr "无稀疏层 (实验功能)"
@@ -19433,9 +19539,6 @@ msgstr "物理打印机"
msgid "Print Host upload"
msgstr "打印主机上传"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "为打印机通信选择网络代理。可用的代理将在启动时列出。"
-
msgid "Select a Flashforge printer"
msgstr "选择一台 Flashforge 打印机"
@@ -20325,9 +20428,6 @@ msgstr "在尝试登录时发生了异常,请重试。"
msgid "User canceled."
msgstr "用户已取消。"
-msgid "Head diameter"
-msgstr "Brim 直径"
-
msgid "Max angle"
msgstr "最大角度"
@@ -21111,6 +21211,24 @@ msgstr ""
"避免翘曲\n"
"您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "层高太小。\n"
+#~ "将设置为min_layer_height\n"
+#~ "层高太小。\n"
+#~ "将自动设置为min_layer_height的值\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "层高超出了打印机设置->挤出机->层高限制中的范围,这可能导致打印质量问题。"
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "是否自动调整到范围内?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "Brim 直径"
+
#~ msgid "Print order within a single layer."
#~ msgstr "同一层内的打印顺序"
diff --git a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po
index 9b37009978..cf6a2519c3 100644
--- a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po
+++ b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-07-29 17:40-0300\n"
+"POT-Creation-Date: 2026-08-19 14:07-0300\n"
"PO-Revision-Date: 2025-11-28 13:48-0600\n"
"Last-Translator: tntchn <15895303+tntchn@users.noreply.github.com>\n"
"Language-Team: \n"
@@ -4691,6 +4691,23 @@ msgstr "目前列印裝置內部溫度高於線材的安全溫度,可能會導
msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target."
msgstr "最低倉室溫度(%d℃)高於目標倉室溫度(%d℃)。最低值是列印開始的門檻,此時倉室會持續朝目標溫度加熱,因此不應超過目標值。系統會將其限制在目標值。"
+# AI Translated
+#, c-format, boost-format
+msgid "Layer height is too small. It will be set to the minimum (%g mm)."
+msgstr "層高過小,將設定為最小值(%g mm)。"
+
+# AI Translated
+msgid "Layer height is outside the limits set in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+msgstr "層高超出了印表裝置設定 -> 擠出機 -> 層高限制中設定的範圍,這可能會導致列印品質問題。"
+
+# AI Translated
+#, c-format, boost-format
+msgid "Adjust it to the limit (%g mm) automatically?"
+msgstr "是否自動調整至限制值(%g mm)?"
+
+msgid "Adjust"
+msgstr "調整"
+
msgid ""
"Layer height too small\n"
"It has been reset to 0.2"
@@ -4825,6 +4842,13 @@ msgstr ""
"是 - 啟用 Arachne Wall 產生器\n"
"否 - 停用 Arachne Wall 產生器,並將 Fuzzy Skin 設定為 [位移] 模式"
+# AI Translated
+msgid "Brim ear radius"
+msgstr "耳狀 Brim 半徑"
+
+msgid "Brim width"
+msgstr "Brim 寬度"
+
msgid "Spiral mode only works when wall loops is 1, support is disabled, clumping detection by probing is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional."
msgstr "花瓶模式僅適用於牆體圈數為 1、停用支撐、停用偵測堵塞、頂部外殼層數為 0、稀疏填充密度為 0,且延時攝影類型為傳統模式時。"
@@ -5079,6 +5103,14 @@ msgstr "產生校正代碼失敗"
msgid "Calibration error"
msgstr "校正錯誤"
+# AI Translated
+msgid "This printer is not configured with the hardware this control needs."
+msgstr "此列印裝置未配置此控制項所需的硬體。"
+
+# AI Translated
+msgid "This control is not supported on this printer."
+msgstr "此列印裝置不支援此控制項。"
+
# AI Translated
msgid "Network unavailable"
msgstr "網路無法使用"
@@ -5936,7 +5968,7 @@ msgstr "體積:"
msgid "Size:"
msgstr "尺寸:"
-#, c-format, boost-format
+#, boost-format
msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please separate the conflicted objects farther (%s <-> %s)."
msgstr "發現 G-code 路徑在 %d 層,Z = %.2lf mm 處的衝突。請將有衝突的物件分離得更遠(%s <-> %s)。"
@@ -6118,6 +6150,10 @@ msgstr "多臺裝置"
msgid "Project"
msgstr "專案"
+# AI Translated
+msgid "Device (Web)"
+msgstr "裝置(網頁)"
+
msgid "Yes"
msgstr "是"
@@ -8193,19 +8229,19 @@ msgstr "未選擇替換的目錄"
msgid "Replaced with 3D files from directory:\n"
msgstr "已從目錄替換為 3D 檔案:\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: same file.\n"
msgstr "✖ 已跳過 %s:相同檔案。\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: file does not exist.\n"
msgstr "✖ 已跳過 %s:檔案不存在。\n"
-#, c-format
+#, c-format, boost-format
msgid "✖ Skipped %s: failed to replace.\n"
msgstr "✖ 已跳過 %s:無法替換。\n"
-#, c-format
+#, c-format, boost-format
msgid "✔ Replaced %s.\n"
msgstr "✔ 已替換 %s。\n"
@@ -8940,6 +8976,18 @@ msgstr "啟用時可以同時傳送到並管理多個機臺。"
msgid "Pop up to select filament grouping mode"
msgstr "彈出視窗選擇線材分組模式"
+# AI Translated
+msgid "Visible plugin pages"
+msgstr "可見的外掛頁面數"
+
+# AI Translated
+msgid "pages"
+msgstr "頁"
+
+# AI Translated
+msgid "Number of plugin pages shown as fixed tabs before the remaining pages collapse into a dropdown on the last tab."
+msgstr "以固定分頁顯示的外掛頁面數量,其餘頁面會收合至最後一個分頁的下拉選單中。"
+
msgid "Behaviour"
msgstr "行為"
@@ -9294,6 +9342,18 @@ msgstr "顯示不支援的預設"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "在列印裝置和線材下拉選單中顯示不相容/不支援的預設。這些預設無法選取。"
+# AI Translated
+msgid "(Experimental) Use printer agents instead of print hosts"
+msgstr "(實驗性)使用列印裝置代理程式取代列印主機"
+
+# AI Translated
+msgid ""
+"Route print jobs for non-Bambu printers through printer plug-in agents instead of the classic print-host upload flow.\n"
+"When disabled, OrcaSlicer uses the legacy print-host behavior."
+msgstr ""
+"將非 Bambu 列印裝置的列印工作透過列印裝置外掛代理程式傳送,而非傳統的列印主機上傳流程。\n"
+"停用時,OrcaSlicer 會使用舊有的列印主機行為。"
+
# AI Translated
msgid "Experimental Features"
msgstr "實驗性功能"
@@ -9558,9 +9618,25 @@ msgstr "使用者預設"
msgid "Preset Inside Project"
msgstr "項目預設"
+# AI Translated
+msgid "Copies all inherited values from the parent into this preset and removes the parent relationship. Presets compatible only with the parent may become unsupported."
+msgstr "將父配置繼承的所有數值複製到目前的配置,並解除繼承關係。僅與父配置相容的配置可能會變成不受支援。"
+
msgid "Detach from parent"
msgstr "從父預設分離"
+# AI Translated
+msgid "Unique preset"
+msgstr "獨立配置"
+
+# AI Translated
+msgid "Parent preset"
+msgstr "父配置"
+
+# AI Translated
+msgid "This preset does not inherit from another preset."
+msgstr "此配置未繼承自其他配置。"
+
msgid "Name is unavailable."
msgstr "名稱不可用。"
@@ -10299,22 +10375,6 @@ msgstr "您確認要啟用此選項嗎?"
msgid "Infill patterns are typically designed to handle rotation automatically to ensure proper printing and achieve their intended effects (e.g., Gyroid, Cubic). Rotating the current sparse infill pattern may lead to insufficient support. Please proceed with caution and thoroughly check for any potential printing issues. Are you sure you want to enable this option?"
msgstr "填充模式通常設計為自動處理旋轉,以確保正確列印並實現其預期效果(例如:Gyroid、Cubic)。旋轉目前的稀疏填充模式可能會導致支撐不足。請謹慎操作,並仔細檢查任何潛在的列印問題。您確定要啟用此選項嗎?"
-msgid ""
-"Layer height is too small.\n"
-"It will set to min_layer_height\n"
-msgstr ""
-"層高過薄\n"
-"將改為 min_layer_height\n"
-
-msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
-msgstr "層高超過了印表裝置設定 -> 擠出機 -> 層高限制,這可能會導致列印品質問題。"
-
-msgid "Adjust to the set range automatically?\n"
-msgstr "是否自動調整至設定範圍?\n"
-
-msgid "Adjust"
-msgstr "調整"
-
msgid "Experimental feature: Retracting and cutting off the filament at a greater distance during filament changes to minimize flush. Although it can notably reduce flush, it may also elevate the risk of nozzle clogs or other printing complications."
msgstr "實驗性功能:在換線過程中以更大的距離收回並切斷線材,以減少沖洗量。儘管這可以顯著減少沖洗,但也可能增加噴嘴堵塞或其他列印問題的風險。"
@@ -10507,6 +10567,9 @@ msgstr "偵測到保留的關鍵字"
msgid "Setting Overrides"
msgstr "參數覆蓋"
+msgid "Retraction when switching material"
+msgstr "切換線材時的回抽量"
+
msgid "Basic information"
msgstr "基本資訊"
@@ -10637,6 +10700,12 @@ msgstr "相容的切片設定"
msgid "Printable space"
msgstr "可列印區域"
+msgid "Printer Agent"
+msgstr "列印裝置代理"
+
+msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
+msgstr "選擇列印裝置通訊的網路代理實施。可用代理在啟動時註冊。"
+
#. TRN: The first argument is the parameter's name; the second argument is its value.
#, boost-format
msgid "Invalid value provided for parameter %1%: %2%"
@@ -10762,9 +10831,6 @@ msgstr "層高限制"
msgid "Z-Hop"
msgstr "Z 軸抬升"
-msgid "Retraction when switching material"
-msgstr "切換線材時的回抽量"
-
msgid ""
"The Retract before wipe option could be only 100% when using the Firmware Retraction mode.\n"
"\n"
@@ -12113,6 +12179,10 @@ msgstr "離淨空區域太近,會發生碰撞。\n"
msgid " is too close to clumping detection area, and collisions will be caused.\n"
msgstr "離堵塞偵測區域太近,會發生碰撞。\n"
+# AI Translated
+msgid " is partially outside the printable area, and it cannot be printed.\n"
+msgstr "有部分超出可列印區域,無法列印。\n"
+
msgid "Selected nozzle temperatures are incompatible. Each filament's nozzle temperature must fall within the recommended nozzle temperature range of the other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr "所選的噴嘴溫度不相容。每種線材的噴嘴溫度都必須落在其他線材的建議噴嘴溫度範圍內。否則可能會發生噴嘴堵塞或列印裝置損壞。"
@@ -12426,9 +12496,6 @@ msgstr "使用 3MF 取代 G-code"
msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file."
msgstr "若列印裝置接受 3MF 檔案作為列印作業,請啟用此選項。啟用後,Orca Slicer 會將切片後的檔案以 .gcode.3mf 形式傳送,而非單純的 .gcode 檔案。"
-msgid "Printer Agent"
-msgstr "列印裝置代理"
-
msgid "Select the network agent implementation for printer communication."
msgstr "選擇用於列印裝置通訊的網路代理實作。"
@@ -13074,9 +13141,6 @@ msgstr ""
msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
msgstr "內部橋接速度。如果該值以百分比表示,將基於 bridge_speed 進行計算。預設值為 150%。"
-msgid "Brim width"
-msgstr "Brim 寬度"
-
msgid "This is the distance from the model to the outermost brim line."
msgstr "從模型到 Brim 最外圈的距離"
@@ -13157,6 +13221,14 @@ msgstr ""
"在偵測尖銳角度之前,幾何形狀將被簡化。此參數表示簡化的最小偏差長度。\n"
"設為 0 以停用"
+# AI Translated
+msgid "Brim ears outer only"
+msgstr "僅外輪廓產生耳狀 Brim"
+
+# AI Translated
+msgid "Generate mouse ears only on the outer contour of the model, excluding holes and enclosed sections."
+msgstr "僅在模型的外輪廓上產生耳狀 Brim,不包含孔洞與封閉區域。"
+
msgid "upward compatible machine"
msgstr "向上相容的裝置"
@@ -14316,6 +14388,14 @@ msgstr "TPMS-FK結構"
msgid "Gyroid"
msgstr "螺旋體"
+# AI Translated
+msgid "Sparse infill smooth factor"
+msgstr "稀疏填充平滑係數"
+
+# AI Translated
+msgid "Controls how strongly sparse infill corners are rounded. 0% keeps the original sharp path, while 100% produces the largest possible curves between adjacent infill lines."
+msgstr "控制稀疏填充轉角的圓滑程度。0% 保持原有的銳利路徑,100% 則在相鄰填充線之間產生盡可能大的圓弧。"
+
msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality."
msgstr "頂面填充的加速度。使用較低值可能會改善頂面列印品質"
@@ -14856,6 +14936,14 @@ msgstr "列印裝置相容的 G-code 樣式"
msgid "Klipper"
msgstr "Klipper"
+# AI Translated
+msgid "Skip G-code config block"
+msgstr "略過 G-code 設定區塊"
+
+# AI Translated
+msgid "Do not write the CONFIG_BLOCK (slicer configuration key/value pairs) into the G-code file. This can help with printers whose firmware crashes when parsing these comment lines (e.g. Anycubic go-klipper). Note: the G-code file will no longer contain slicer settings, so importing it back into OrcaSlicer will not restore the configuration."
+msgstr "不將 CONFIG_BLOCK(切片軟體設定的鍵值對)寫入 G-code 檔案。這對於韌體在解析這些註解行時會當機的列印裝置(例如 Anycubic go-klipper)有幫助。注意:G-code 檔案將不再包含切片設定,因此重新匯入 OrcaSlicer 時無法還原設定。"
+
msgid "Pellet Modded Printer"
msgstr "顆粒改裝列印裝置"
@@ -15909,6 +15997,14 @@ msgstr "更換擠出機時長回抽"
msgid "Retraction distance when extruder change"
msgstr "更換擠出機時的回抽距離"
+# AI Translated
+msgid "Retraction Length (Toolchange)"
+msgstr "回抽長度(換工具)"
+
+# AI Translated
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "在換工具之前觸發回抽時,線材會依指定的長度回抽(長度是在線材進入擠出機之前,以原始線材測量)。"
+
msgid "Z-hop height"
msgstr "Z 抬升高度"
@@ -16002,6 +16098,10 @@ msgstr "額外回填長度"
msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
msgstr "每當空駛後回抽被補償時,擠出機將推入額外長度的線材。很少需要此設定。"
+# AI Translated
+msgid "Extra length on restart (Toolchange)"
+msgstr "額外回填長度(換工具)"
+
msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
msgstr "當換色後回抽被補償時,擠出機將推入額外長度的線材。"
@@ -16405,6 +16505,14 @@ msgstr "在換料塔上換刀"
msgid "Force the toolhead to travel to the wipe tower before issuing the tool change command (Tx). Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. By default Orca skips the travel on multi-toolhead machines because the firmware handles the head swap, which can result in the Tx command being issued above the printed part. Enable this option if you want the tool change to always be issued above the wipe tower instead."
msgstr "強制工具頭在發出換刀指令 (Tx) 之前先移動到換料塔。僅適用於使用 Type 2 換料塔的多擠出機(多工具頭)列印裝置。預設情況下,Orca 會在多工具頭機器上略過此空駛,因為韌體會處理工具頭交換,這可能導致 Tx 指令在已列印零件上方發出。若您希望換刀一律改在換料塔上方發出,請啟用此選項。"
+# AI Translated
+msgid "Wait for temperature on wipe tower"
+msgstr "在換料塔上等待溫度"
+
+# AI Translated
+msgid "Pick up the new tool without waiting for it to reach printing temperature, travel to the wipe tower, and wait for the temperature there, right before purging. Ooze from the heat-up lands on the tower instead of the model, and the travel overlaps with the heating. Only relevant for multi-extruder (multi-toolhead) printers using a Type 2 wipe tower. The firmware or tool change macro must not wait for the temperature itself. When disabled, the temperature wait is issued right after the tool change command."
+msgstr "取用新工具時不等待其達到列印溫度,先移動到換料塔,並在清理前於換料塔上等待溫度。升溫過程中滲出的線材會落在換料塔上而非模型上,且移動時間與加熱過程重疊。僅適用於使用第 2 型換料塔的多擠出機(多工具頭)列印裝置。韌體或換工具巨集本身不得等待溫度。停用時,等待溫度的指令會在換工具命令之後立即發出。"
+
msgid "No sparse layers (beta)"
msgstr "取消稀疏層(Beta)"
@@ -19622,9 +19730,6 @@ msgstr "實體列印裝置"
msgid "Print Host upload"
msgstr "列印主機上傳"
-msgid "Select the network agent implementation for printer communication. Available agents are registered at startup."
-msgstr "選擇列印裝置通訊的網路代理實施。可用代理在啟動時註冊。"
-
msgid "Select a Flashforge printer"
msgstr "選取 Flashforge 列印裝置"
@@ -20516,9 +20621,6 @@ msgstr "嘗試登入時發生了意外錯誤,請再試一次。"
msgid "User canceled."
msgstr "使用者取消。"
-msgid "Head diameter"
-msgstr "頭直徑"
-
msgid "Max angle"
msgstr "最大角度"
@@ -21323,6 +21425,22 @@ msgstr ""
"避免翹曲\n"
"您知道嗎?當列印容易翹曲的材料(如 ABS)時,適當提高熱床溫度可以降低翹曲的機率。"
+#~ msgid ""
+#~ "Layer height is too small.\n"
+#~ "It will set to min_layer_height\n"
+#~ msgstr ""
+#~ "層高過薄\n"
+#~ "將改為 min_layer_height\n"
+
+#~ msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues."
+#~ msgstr "層高超過了印表裝置設定 -> 擠出機 -> 層高限制,這可能會導致列印品質問題。"
+
+#~ msgid "Adjust to the set range automatically?\n"
+#~ msgstr "是否自動調整至設定範圍?\n"
+
+#~ msgid "Head diameter"
+#~ msgstr "頭直徑"
+
#~ msgid "Print order within a single layer."
#~ msgstr "每一層的列印順序"
diff --git a/resources/filament_mixing/standard_color_recipes.json b/resources/filament_mixing/standard_color_recipes.json
new file mode 100644
index 0000000000..df03b49ac3
--- /dev/null
+++ b/resources/filament_mixing/standard_color_recipes.json
@@ -0,0 +1,14705 @@
+{
+ "_comment": "Simulated values (source=filament_mixer) are generated by FilamentMixer, a degree-4 polynomial regression trained to approximate Mixbox behavior (Mean Delta-E ~2.07). This file does not use Mixbox source code, binaries, or data files. See src/libslic3r/FilamentMixerModel.hpp.",
+ "entries": [
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ }
+ ],
+ "ratios": [
+ 20,
+ 80
+ ],
+ "measured_lab": [
+ 48.14,
+ 33.87,
+ -25.42
+ ],
+ "measured_rgb": "#965E9E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ }
+ ],
+ "ratios": [
+ 25,
+ 75
+ ],
+ "measured_lab": [
+ 48.2,
+ 33.11,
+ -25.85
+ ],
+ "measured_rgb": "#955F9E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ }
+ ],
+ "ratios": [
+ 30,
+ 70
+ ],
+ "measured_lab": [
+ 48.06,
+ 29.44,
+ -27.62
+ ],
+ "measured_rgb": "#8D61A1",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ }
+ ],
+ "ratios": [
+ 35,
+ 65
+ ],
+ "measured_lab": [
+ 47.82,
+ 28.45,
+ -28.19
+ ],
+ "measured_rgb": "#8A62A1",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ }
+ ],
+ "ratios": [
+ 40,
+ 60
+ ],
+ "measured_lab": [
+ 47.94,
+ 22.08,
+ -30.15
+ ],
+ "measured_rgb": "#7D67A5",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ }
+ ],
+ "ratios": [
+ 45,
+ 55
+ ],
+ "measured_lab": [
+ 47.64,
+ 24.63,
+ -30.31
+ ],
+ "measured_rgb": "#8164A4",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ }
+ ],
+ "ratios": [
+ 50,
+ 50
+ ],
+ "measured_lab": [
+ 48.28,
+ 17.77,
+ -31.76
+ ],
+ "measured_rgb": "#746BA8",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ }
+ ],
+ "ratios": [
+ 55,
+ 45
+ ],
+ "measured_lab": [
+ 48.15,
+ 16.73,
+ -32.42
+ ],
+ "measured_rgb": "#706BA9",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ }
+ ],
+ "ratios": [
+ 60,
+ 40
+ ],
+ "measured_lab": [
+ 48.57,
+ 17.11,
+ -32.94
+ ],
+ "measured_rgb": "#716CAB",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ }
+ ],
+ "ratios": [
+ 65,
+ 35
+ ],
+ "measured_lab": [
+ 48.95,
+ 13.88,
+ -33.83
+ ],
+ "measured_rgb": "#6A6FAE",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ }
+ ],
+ "ratios": [
+ 70,
+ 30
+ ],
+ "measured_lab": [
+ 49.1,
+ 13.76,
+ -34.39
+ ],
+ "measured_rgb": "#6A70AF",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ }
+ ],
+ "ratios": [
+ 75,
+ 25
+ ],
+ "measured_lab": [
+ 49.58,
+ 11.74,
+ -35.13
+ ],
+ "measured_rgb": "#6572B1",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ }
+ ],
+ "ratios": [
+ 80,
+ 20
+ ],
+ "measured_lab": [
+ 50.88,
+ 5.61,
+ -36.4
+ ],
+ "measured_rgb": "#5679B7",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 20,
+ 80
+ ],
+ "measured_lab": [
+ 70.0,
+ -35.0,
+ 56.27
+ ],
+ "measured_rgb": "#8ABA3C",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 25,
+ 75
+ ],
+ "measured_lab": [
+ 69.5,
+ -36.46,
+ 55.41
+ ],
+ "measured_rgb": "#85B93C",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 30,
+ 70
+ ],
+ "measured_lab": [
+ 67.44,
+ -38.62,
+ 50.18
+ ],
+ "measured_rgb": "#78B443",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 35,
+ 65
+ ],
+ "measured_lab": [
+ 66.34,
+ -39.72,
+ 47.6
+ ],
+ "measured_rgb": "#71B246",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 40,
+ 60
+ ],
+ "measured_lab": [
+ 65.4,
+ -40.42,
+ 42.8
+ ],
+ "measured_rgb": "#6AB04E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 45,
+ 55
+ ],
+ "measured_lab": [
+ 63.51,
+ -42.24,
+ 38.44
+ ],
+ "measured_rgb": "#5DAB52",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 50,
+ 50
+ ],
+ "measured_lab": [
+ 63.04,
+ -42.17,
+ 35.8
+ ],
+ "measured_rgb": "#59AA56",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 55,
+ 45
+ ],
+ "measured_lab": [
+ 62.21,
+ -43.03,
+ 32.64
+ ],
+ "measured_rgb": "#51A85A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 60,
+ 40
+ ],
+ "measured_lab": [
+ 60.68,
+ -43.94,
+ 27.49
+ ],
+ "measured_rgb": "#44A560",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 65,
+ 35
+ ],
+ "measured_lab": [
+ 60.36,
+ -43.76,
+ 23.75
+ ],
+ "measured_rgb": "#3FA466",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 70,
+ 30
+ ],
+ "measured_lab": [
+ 59.06,
+ -44.3,
+ 17.42
+ ],
+ "measured_rgb": "#2CA16E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 75,
+ 25
+ ],
+ "measured_lab": [
+ 58.47,
+ -44.1,
+ 14.26
+ ],
+ "measured_rgb": "#219F72",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 80,
+ 20
+ ],
+ "measured_lab": [
+ 58.09,
+ -43.7,
+ 10.53
+ ],
+ "measured_rgb": "#139E78",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 80
+ ],
+ "measured_lab": [
+ 73.74,
+ -14.74,
+ -21.41
+ ],
+ "measured_rgb": "#78BFDC",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 75
+ ],
+ "measured_lab": [
+ 71.76,
+ -15.4,
+ -24.59
+ ],
+ "measured_rgb": "#69BADC",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 70
+ ],
+ "measured_lab": [
+ 70.11,
+ -15.73,
+ -25.86
+ ],
+ "measured_rgb": "#60B6DA",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 65
+ ],
+ "measured_lab": [
+ 68.1,
+ -16.03,
+ -28.26
+ ],
+ "measured_rgb": "#53B1D8",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 60
+ ],
+ "measured_lab": [
+ 67.93,
+ -15.44,
+ -28.32
+ ],
+ "measured_rgb": "#55B0D8",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 55
+ ],
+ "measured_lab": [
+ 66.5,
+ -15.79,
+ -29.78
+ ],
+ "measured_rgb": "#4AACD6",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 50
+ ],
+ "measured_lab": [
+ 65.75,
+ -15.69,
+ -30.79
+ ],
+ "measured_rgb": "#44AAD6",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 45
+ ],
+ "measured_lab": [
+ 64.67,
+ -15.68,
+ -31.78
+ ],
+ "measured_rgb": "#3DA8D5",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 60,
+ 40
+ ],
+ "measured_lab": [
+ 62.88,
+ -16.04,
+ -34.06
+ ],
+ "measured_rgb": "#27A3D4",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 65,
+ 35
+ ],
+ "measured_lab": [
+ 62.86,
+ -15.71,
+ -34.68
+ ],
+ "measured_rgb": "#26A3D5",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 70,
+ 30
+ ],
+ "measured_lab": [
+ 62.09,
+ -15.68,
+ -35.76
+ ],
+ "measured_rgb": "#19A1D5",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 75,
+ 25
+ ],
+ "measured_lab": [
+ 60.73,
+ -15.52,
+ -36.7
+ ],
+ "measured_rgb": "#009DD3",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 80,
+ 20
+ ],
+ "measured_lab": [
+ 60.03,
+ -15.72,
+ -37.19
+ ],
+ "measured_rgb": "#009CD1",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 20,
+ 80
+ ],
+ "measured_lab": [
+ 65.7,
+ 19.56,
+ 48.15
+ ],
+ "measured_rgb": "#D69148",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 25,
+ 75
+ ],
+ "measured_lab": [
+ 63.26,
+ 25.13,
+ 42.51
+ ],
+ "measured_rgb": "#D5864E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 30,
+ 70
+ ],
+ "measured_lab": [
+ 60.24,
+ 30.06,
+ 32.69
+ ],
+ "measured_rgb": "#D17B59",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 35,
+ 65
+ ],
+ "measured_lab": [
+ 60.41,
+ 29.22,
+ 34.96
+ ],
+ "measured_rgb": "#D17C55",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 40,
+ 60
+ ],
+ "measured_lab": [
+ 57.97,
+ 35.04,
+ 26.17
+ ],
+ "measured_rgb": "#CF7160",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 45,
+ 55
+ ],
+ "measured_lab": [
+ 57.16,
+ 35.32,
+ 24.58
+ ],
+ "measured_rgb": "#CC6F60",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 50,
+ 50
+ ],
+ "measured_lab": [
+ 57.46,
+ 36.08,
+ 25.44
+ ],
+ "measured_rgb": "#CE6F60",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 55,
+ 45
+ ],
+ "measured_lab": [
+ 56.02,
+ 38.35,
+ 20.53
+ ],
+ "measured_rgb": "#CC6965",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 60,
+ 40
+ ],
+ "measured_lab": [
+ 55.1,
+ 39.69,
+ 16.16
+ ],
+ "measured_rgb": "#C9666A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 65,
+ 35
+ ],
+ "measured_lab": [
+ 54.88,
+ 41.31,
+ 15.93
+ ],
+ "measured_rgb": "#CB646A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 70,
+ 30
+ ],
+ "measured_lab": [
+ 53.45,
+ 45.1,
+ 7.0
+ ],
+ "measured_rgb": "#C85D76",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 75,
+ 25
+ ],
+ "measured_lab": [
+ 53.23,
+ 44.29,
+ 7.96
+ ],
+ "measured_rgb": "#C75D73",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 80,
+ 20
+ ],
+ "measured_lab": [
+ 53.17,
+ 45.44,
+ 5.5
+ ],
+ "measured_rgb": "#C75C77",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 80
+ ],
+ "measured_lab": [
+ 65.05,
+ 41.46,
+ -15.23
+ ],
+ "measured_rgb": "#D981BA",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 75
+ ],
+ "measured_lab": [
+ 64.76,
+ 41.42,
+ -14.99
+ ],
+ "measured_rgb": "#D881B9",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 70
+ ],
+ "measured_lab": [
+ 61.49,
+ 47.18,
+ -15.56
+ ],
+ "measured_rgb": "#D773B1",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 65
+ ],
+ "measured_lab": [
+ 62.17,
+ 44.07,
+ -15.56
+ ],
+ "measured_rgb": "#D577B3",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 60
+ ],
+ "measured_lab": [
+ 61.67,
+ 45.03,
+ -15.24
+ ],
+ "measured_rgb": "#D575B1",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 55
+ ],
+ "measured_lab": [
+ 60.38,
+ 47.58,
+ -15.12
+ ],
+ "measured_rgb": "#D56FAD",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 50
+ ],
+ "measured_lab": [
+ 57.67,
+ 51.19,
+ -15.52
+ ],
+ "measured_rgb": "#D264A7",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 45
+ ],
+ "measured_lab": [
+ 57.19,
+ 52.57,
+ -15.0
+ ],
+ "measured_rgb": "#D361A5",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 60,
+ 40
+ ],
+ "measured_lab": [
+ 57.75,
+ 52.16,
+ -14.62
+ ],
+ "measured_rgb": "#D463A6",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 65,
+ 35
+ ],
+ "measured_lab": [
+ 57.2,
+ 51.19,
+ -14.81
+ ],
+ "measured_rgb": "#D163A4",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 70,
+ 30
+ ],
+ "measured_lab": [
+ 55.57,
+ 53.66,
+ -14.82
+ ],
+ "measured_rgb": "#D05BA0",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 75,
+ 25
+ ],
+ "measured_lab": [
+ 55.51,
+ 53.08,
+ -14.46
+ ],
+ "measured_rgb": "#CF5C9F",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 80,
+ 20
+ ],
+ "measured_lab": [
+ 54.62,
+ 54.16,
+ -14.51
+ ],
+ "measured_rgb": "#CE589D",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 80
+ ],
+ "measured_lab": [
+ 87.72,
+ -15.64,
+ 55.43
+ ],
+ "measured_rgb": "#E1E26F",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 75
+ ],
+ "measured_lab": [
+ 87.51,
+ -15.48,
+ 58.85
+ ],
+ "measured_rgb": "#E2E167",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 70
+ ],
+ "measured_lab": [
+ 87.35,
+ -15.37,
+ 61.45
+ ],
+ "measured_rgb": "#E3E161",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 65
+ ],
+ "measured_lab": [
+ 87.0,
+ -14.73,
+ 63.73
+ ],
+ "measured_rgb": "#E4DF5A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 60
+ ],
+ "measured_lab": [
+ 86.76,
+ -14.25,
+ 65.47
+ ],
+ "measured_rgb": "#E4DE56",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 55
+ ],
+ "measured_lab": [
+ 86.6,
+ -13.9,
+ 67.58
+ ],
+ "measured_rgb": "#E5DD50",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 50
+ ],
+ "measured_lab": [
+ 86.23,
+ -14.03,
+ 72.5
+ ],
+ "measured_rgb": "#E5DC42",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 45
+ ],
+ "measured_lab": [
+ 86.91,
+ -12.84,
+ 74.11
+ ],
+ "measured_rgb": "#EADE3F",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 60,
+ 40
+ ],
+ "measured_lab": [
+ 86.24,
+ -13.03,
+ 75.23
+ ],
+ "measured_rgb": "#E8DC3A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 65,
+ 35
+ ],
+ "measured_lab": [
+ 86.01,
+ -12.73,
+ 76.77
+ ],
+ "measured_rgb": "#E8DB34",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 70,
+ 30
+ ],
+ "measured_lab": [
+ 85.85,
+ -12.44,
+ 78.22
+ ],
+ "measured_rgb": "#E8DA2E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 75,
+ 25
+ ],
+ "measured_lab": [
+ 85.71,
+ -12.39,
+ 81.24
+ ],
+ "measured_rgb": "#E9DA21",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 80,
+ 20
+ ],
+ "measured_lab": [
+ 87.04,
+ -10.65,
+ 83.79
+ ],
+ "measured_rgb": "#F0DC1A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 20,
+ 20,
+ 60
+ ],
+ "measured_lab": [
+ 57.59,
+ -7.31,
+ 27.59
+ ],
+ "measured_rgb": "#8F8D5A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 20,
+ 25,
+ 55
+ ],
+ "measured_lab": [
+ 56.47,
+ -5.15,
+ 29.22
+ ],
+ "measured_rgb": "#908954",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 20,
+ 30,
+ 50
+ ],
+ "measured_lab": [
+ 53.76,
+ 1.47,
+ 16.52
+ ],
+ "measured_rgb": "#8E7F64",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 20,
+ 35,
+ 45
+ ],
+ "measured_lab": [
+ 53.89,
+ 1.26,
+ 22.63
+ ],
+ "measured_rgb": "#917F5A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 20,
+ 40,
+ 40
+ ],
+ "measured_lab": [
+ 53.08,
+ 4.21,
+ 20.07
+ ],
+ "measured_rgb": "#927B5D",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 20,
+ 45,
+ 35
+ ],
+ "measured_lab": [
+ 51.5,
+ 7.8,
+ 12.87
+ ],
+ "measured_rgb": "#907565",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 20,
+ 50,
+ 30
+ ],
+ "measured_lab": [
+ 50.11,
+ 12.7,
+ 3.91
+ ],
+ "measured_rgb": "#8F6F71",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 20,
+ 55,
+ 25
+ ],
+ "measured_lab": [
+ 49.99,
+ 13.42,
+ 6.09
+ ],
+ "measured_rgb": "#916F6D",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 20,
+ 60,
+ 20
+ ],
+ "measured_lab": [
+ 49.64,
+ 14.45,
+ 6.31
+ ],
+ "measured_rgb": "#926D6C",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 25,
+ 20,
+ 55
+ ],
+ "measured_lab": [
+ 57.53,
+ -11.27,
+ 27.15
+ ],
+ "measured_rgb": "#888F5A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 25,
+ 25,
+ 50
+ ],
+ "measured_lab": [
+ 54.99,
+ -7.03,
+ 22.56
+ ],
+ "measured_rgb": "#86865C",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 25,
+ 30,
+ 45
+ ],
+ "measured_lab": [
+ 54.25,
+ -4.47,
+ 21.25
+ ],
+ "measured_rgb": "#88835D",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 25,
+ 35,
+ 40
+ ],
+ "measured_lab": [
+ 53.04,
+ -2.53,
+ 17.95
+ ],
+ "measured_rgb": "#867F60",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 25,
+ 40,
+ 35
+ ],
+ "measured_lab": [
+ 51.71,
+ 2.72,
+ 11.95
+ ],
+ "measured_rgb": "#887967",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 25,
+ 45,
+ 30
+ ],
+ "measured_lab": [
+ 50.85,
+ 5.89,
+ 10.93
+ ],
+ "measured_rgb": "#8A7567",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 25,
+ 50,
+ 25
+ ],
+ "measured_lab": [
+ 49.74,
+ 8.68,
+ 4.66
+ ],
+ "measured_rgb": "#88716F",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 25,
+ 55,
+ 20
+ ],
+ "measured_lab": [
+ 49.3,
+ 9.76,
+ 2.9
+ ],
+ "measured_rgb": "#886F71",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 30,
+ 20,
+ 50
+ ],
+ "measured_lab": [
+ 55.45,
+ -14.4,
+ 18.45
+ ],
+ "measured_rgb": "#788B64",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 30,
+ 25,
+ 45
+ ],
+ "measured_lab": [
+ 55.07,
+ -10.24,
+ 24.11
+ ],
+ "measured_rgb": "#82885A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 30,
+ 30,
+ 40
+ ],
+ "measured_lab": [
+ 53.44,
+ -6.68,
+ 18.83
+ ],
+ "measured_rgb": "#81825F",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 30,
+ 35,
+ 35
+ ],
+ "measured_lab": [
+ 52.37,
+ -3.05,
+ 13.89
+ ],
+ "measured_rgb": "#817E65",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 30,
+ 40,
+ 30
+ ],
+ "measured_lab": [
+ 51.03,
+ 0.35,
+ 11.39
+ ],
+ "measured_rgb": "#827966",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 30,
+ 45,
+ 25
+ ],
+ "measured_lab": [
+ 50.12,
+ 4.03,
+ 7.42
+ ],
+ "measured_rgb": "#83756B",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 30,
+ 50,
+ 20
+ ],
+ "measured_lab": [
+ 49.36,
+ 7.35,
+ 3.42
+ ],
+ "measured_rgb": "#847170",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 35,
+ 20,
+ 45
+ ],
+ "measured_lab": [
+ 55.52,
+ -16.34,
+ 20.5
+ ],
+ "measured_rgb": "#758C61",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 35,
+ 25,
+ 40
+ ],
+ "measured_lab": [
+ 53.19,
+ -11.0,
+ 14.49
+ ],
+ "measured_rgb": "#768466",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 35,
+ 30,
+ 35
+ ],
+ "measured_lab": [
+ 53.8,
+ -8.48,
+ 16.8
+ ],
+ "measured_rgb": "#7D8463",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 35,
+ 35,
+ 30
+ ],
+ "measured_lab": [
+ 51.71,
+ -4.82,
+ 12.37
+ ],
+ "measured_rgb": "#7C7D66",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 35,
+ 40,
+ 25
+ ],
+ "measured_lab": [
+ 49.92,
+ 7.98,
+ 2.05
+ ],
+ "measured_rgb": "#867274",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 35,
+ 45,
+ 20
+ ],
+ "measured_lab": [
+ 48.86,
+ 10.46,
+ 0.0
+ ],
+ "measured_rgb": "#866E74",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 40,
+ 20,
+ 40
+ ],
+ "measured_lab": [
+ 54.4,
+ -10.2,
+ 19.17
+ ],
+ "measured_rgb": "#7D8661",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 40,
+ 25,
+ 35
+ ],
+ "measured_lab": [
+ 52.52,
+ -4.36,
+ 12.99
+ ],
+ "measured_rgb": "#7F7F67",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 40,
+ 30,
+ 30
+ ],
+ "measured_lab": [
+ 51.21,
+ -1.28,
+ 6.49
+ ],
+ "measured_rgb": "#7D7A6F",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 40,
+ 35,
+ 25
+ ],
+ "measured_lab": [
+ 50.18,
+ 4.0,
+ 4.31
+ ],
+ "measured_rgb": "#817570",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 40,
+ 40,
+ 20
+ ],
+ "measured_lab": [
+ 48.97,
+ 7.15,
+ 1.93
+ ],
+ "measured_rgb": "#827071",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 45,
+ 20,
+ 35
+ ],
+ "measured_lab": [
+ 52.71,
+ -11.69,
+ 14.25
+ ],
+ "measured_rgb": "#738365",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 45,
+ 25,
+ 30
+ ],
+ "measured_lab": [
+ 51.33,
+ -3.15,
+ 5.87
+ ],
+ "measured_rgb": "#797C70",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 45,
+ 30,
+ 25
+ ],
+ "measured_lab": [
+ 49.87,
+ -1.14,
+ 1.5
+ ],
+ "measured_rgb": "#767774",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 45,
+ 35,
+ 20
+ ],
+ "measured_lab": [
+ 50.92,
+ -2.35,
+ 7.7
+ ],
+ "measured_rgb": "#7B7A6C",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 50,
+ 20,
+ 30
+ ],
+ "measured_lab": [
+ 52.42,
+ -12.64,
+ 11.74
+ ],
+ "measured_rgb": "#6E8369",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 50,
+ 25,
+ 25
+ ],
+ "measured_lab": [
+ 50.67,
+ -4.67,
+ -2.82
+ ],
+ "measured_rgb": "#6D7B7D",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 50,
+ 30,
+ 20
+ ],
+ "measured_lab": [
+ 49.65,
+ -0.75,
+ -0.75
+ ],
+ "measured_rgb": "#747677",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 55,
+ 20,
+ 25
+ ],
+ "measured_lab": [
+ 52.24,
+ -12.06,
+ 7.79
+ ],
+ "measured_rgb": "#6C826F",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 55,
+ 25,
+ 20
+ ],
+ "measured_lab": [
+ 50.78,
+ -8.82,
+ 4.42
+ ],
+ "measured_rgb": "#6C7D71",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 60,
+ 20,
+ 20
+ ],
+ "measured_lab": [
+ 52.04,
+ -14.16,
+ -0.63
+ ],
+ "measured_rgb": "#5F837D",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 20,
+ 60
+ ],
+ "measured_lab": [
+ 60.62,
+ 16.41,
+ -27.19
+ ],
+ "measured_rgb": "#978BC2",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 25,
+ 55
+ ],
+ "measured_lab": [
+ 58.416,
+ 18.423,
+ -27.936
+ ],
+ "measured_rgb": "#9484BD",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 30,
+ 50
+ ],
+ "measured_lab": [
+ 56.19,
+ 22.63,
+ -28.47
+ ],
+ "measured_rgb": "#967BB8",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 35,
+ 45
+ ],
+ "measured_lab": [
+ 55.817,
+ 22.511,
+ -27.942
+ ],
+ "measured_rgb": "#957AB6",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 40,
+ 40
+ ],
+ "measured_lab": [
+ 56.48,
+ 23.36,
+ -26.2
+ ],
+ "measured_rgb": "#9A7BB5",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 45,
+ 35
+ ],
+ "measured_lab": [
+ 54.683,
+ 24.228,
+ -27.087
+ ],
+ "measured_rgb": "#9676B2",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 50,
+ 30
+ ],
+ "measured_lab": [
+ 53.86,
+ 25.93,
+ -26.83
+ ],
+ "measured_rgb": "#9773AF",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 55,
+ 25
+ ],
+ "measured_lab": [
+ 52.924,
+ 27.03,
+ -27.166
+ ],
+ "measured_rgb": "#966FAD",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 60,
+ 20
+ ],
+ "measured_lab": [
+ 51.71,
+ 29.47,
+ -27.22
+ ],
+ "measured_rgb": "#976AAA",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 20,
+ 55
+ ],
+ "measured_lab": [
+ 60.566,
+ 13.416,
+ -27.029
+ ],
+ "measured_rgb": "#918CC2",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 25,
+ 50
+ ],
+ "measured_lab": [
+ 58.437,
+ 16.227,
+ -28.148
+ ],
+ "measured_rgb": "#9085BE",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 30,
+ 45
+ ],
+ "measured_lab": [
+ 55.09,
+ 20.811,
+ -29.603
+ ],
+ "measured_rgb": "#8E7AB7",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 35,
+ 40
+ ],
+ "measured_lab": [
+ 54.78,
+ 21.542,
+ -29.157
+ ],
+ "measured_rgb": "#8F78B6",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 40,
+ 35
+ ],
+ "measured_lab": [
+ 54.433,
+ 22.913,
+ -28.35
+ ],
+ "measured_rgb": "#9276B3",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 45,
+ 30
+ ],
+ "measured_lab": [
+ 53.707,
+ 23.395,
+ -28.23
+ ],
+ "measured_rgb": "#9174B1",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 50,
+ 25
+ ],
+ "measured_lab": [
+ 53.303,
+ 23.898,
+ -28.057
+ ],
+ "measured_rgb": "#9173B0",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 55,
+ 20
+ ],
+ "measured_lab": [
+ 52.606,
+ 25.673,
+ -27.911
+ ],
+ "measured_rgb": "#9270AE",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 20,
+ 50
+ ],
+ "measured_lab": [
+ 62.64,
+ 7.61,
+ -25.75
+ ],
+ "measured_rgb": "#8C95C5",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 25,
+ 45
+ ],
+ "measured_lab": [
+ 57.776,
+ 12.715,
+ -29.283
+ ],
+ "measured_rgb": "#8586BE",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 30,
+ 40
+ ],
+ "measured_lab": [
+ 54.3,
+ 18.26,
+ -31.18
+ ],
+ "measured_rgb": "#857AB8",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 35,
+ 35
+ ],
+ "measured_lab": [
+ 53.449,
+ 19.947,
+ -30.78
+ ],
+ "measured_rgb": "#8776B5",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 40,
+ 30
+ ],
+ "measured_lab": [
+ 52.15,
+ 21.92,
+ -30.78
+ ],
+ "measured_rgb": "#8772B1",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 45,
+ 25
+ ],
+ "measured_lab": [
+ 52.733,
+ 22.562,
+ -29.373
+ ],
+ "measured_rgb": "#8B72B0",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 50,
+ 20
+ ],
+ "measured_lab": [
+ 52.34,
+ 22.37,
+ -29.11
+ ],
+ "measured_rgb": "#8A72AF",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 20,
+ 45
+ ],
+ "measured_lab": [
+ 58.326,
+ 9.338,
+ -30.016
+ ],
+ "measured_rgb": "#7E89C1",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 25,
+ 40
+ ],
+ "measured_lab": [
+ 56.387,
+ 12.275,
+ -30.918
+ ],
+ "measured_rgb": "#7F83BD",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 30,
+ 35
+ ],
+ "measured_lab": [
+ 53.575,
+ 16.404,
+ -32.238
+ ],
+ "measured_rgb": "#7E79B8",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 35,
+ 30
+ ],
+ "measured_lab": [
+ 52.46,
+ 18.41,
+ -32.043
+ ],
+ "measured_rgb": "#7F75B4",
+ "source": "interpolated"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 40,
+ 25
+ ],
+ "measured_lab": [
+ 50.49,
+ 23.51,
+ -31.23
+ ],
+ "measured_rgb": "#856CAE",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 45,
+ 20
+ ],
+ "measured_lab": [
+ 49.65,
+ 26.8,
+ -30.56
+ ],
+ "measured_rgb": "#8A68AA",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 20,
+ 40
+ ],
+ "measured_lab": [
+ 55.49,
+ 12.01,
+ -31.53
+ ],
+ "measured_rgb": "#7B81BB",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 25,
+ 35
+ ],
+ "measured_lab": [
+ 54.0,
+ 18.26,
+ -30.55
+ ],
+ "measured_rgb": "#8579B6",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 30,
+ 30
+ ],
+ "measured_lab": [
+ 52.11,
+ 16.18,
+ -32.9
+ ],
+ "measured_rgb": "#7976B5",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 35,
+ 25
+ ],
+ "measured_lab": [
+ 50.58,
+ 22.22,
+ -31.81
+ ],
+ "measured_rgb": "#826EAF",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 40,
+ 20
+ ],
+ "measured_lab": [
+ 49.52,
+ 22.45,
+ -31.95
+ ],
+ "measured_rgb": "#806BAC",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 20,
+ 35
+ ],
+ "measured_lab": [
+ 55.21,
+ 10.3,
+ -31.74
+ ],
+ "measured_rgb": "#7681BB",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 25,
+ 30
+ ],
+ "measured_lab": [
+ 53.01,
+ 17.69,
+ -31.28
+ ],
+ "measured_rgb": "#8077B4",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 30,
+ 25
+ ],
+ "measured_lab": [
+ 51.1,
+ 17.85,
+ -33.01
+ ],
+ "measured_rgb": "#7972B2",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 35,
+ 20
+ ],
+ "measured_lab": [
+ 50.31,
+ 22.05,
+ -31.57
+ ],
+ "measured_rgb": "#816DAE",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 20,
+ 30
+ ],
+ "measured_lab": [
+ 53.39,
+ 8.16,
+ -34.46
+ ],
+ "measured_rgb": "#687EBB",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 25,
+ 25
+ ],
+ "measured_lab": [
+ 52.44,
+ 17.84,
+ -31.9
+ ],
+ "measured_rgb": "#7E75B4",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 30,
+ 20
+ ],
+ "measured_lab": [
+ 50.6,
+ 16.89,
+ -33.72
+ ],
+ "measured_rgb": "#7571B2",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 20,
+ 25
+ ],
+ "measured_lab": [
+ 53.48,
+ 9.63,
+ -33.29
+ ],
+ "measured_rgb": "#6D7DB9",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 25,
+ 20
+ ],
+ "measured_lab": [
+ 51.33,
+ 13.07,
+ -34.41
+ ],
+ "measured_rgb": "#6E76B5",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 60,
+ 20,
+ 20
+ ],
+ "measured_lab": [
+ 52.25,
+ 10.16,
+ -35.14
+ ],
+ "measured_rgb": "#687AB9",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 20,
+ 60
+ ],
+ "measured_lab": [
+ 74.3,
+ -35.02,
+ 32.23
+ ],
+ "measured_rgb": "#87C77A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 25,
+ 55
+ ],
+ "measured_lab": [
+ 73.72,
+ -36.25,
+ 35.28
+ ],
+ "measured_rgb": "#85C572",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 30,
+ 50
+ ],
+ "measured_lab": [
+ 73.49,
+ -37.39,
+ 44.85
+ ],
+ "measured_rgb": "#88C55E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 35,
+ 45
+ ],
+ "measured_lab": [
+ 73.18,
+ -37.11,
+ 44.81
+ ],
+ "measured_rgb": "#88C45E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 40,
+ 40
+ ],
+ "measured_lab": [
+ 73.27,
+ -36.92,
+ 47.03
+ ],
+ "measured_rgb": "#8AC459",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 45,
+ 35
+ ],
+ "measured_lab": [
+ 72.96,
+ -36.08,
+ 48.85
+ ],
+ "measured_rgb": "#8CC355",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 50,
+ 30
+ ],
+ "measured_lab": [
+ 72.86,
+ -36.19,
+ 52.04
+ ],
+ "measured_rgb": "#8DC24D",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 55,
+ 25
+ ],
+ "measured_lab": [
+ 72.69,
+ -36.31,
+ 54.47
+ ],
+ "measured_rgb": "#8EC247",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 60,
+ 20
+ ],
+ "measured_lab": [
+ 73.02,
+ -34.99,
+ 57.46
+ ],
+ "measured_rgb": "#93C241",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 20,
+ 55
+ ],
+ "measured_lab": [
+ 72.41,
+ -36.38,
+ 27.96
+ ],
+ "measured_rgb": "#7BC27D",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 25,
+ 50
+ ],
+ "measured_lab": [
+ 71.93,
+ -38.31,
+ 37.24
+ ],
+ "measured_rgb": "#7DC16A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 30,
+ 45
+ ],
+ "measured_lab": [
+ 72.08,
+ -39.6,
+ 45.03
+ ],
+ "measured_rgb": "#7FC25A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 35,
+ 40
+ ],
+ "measured_lab": [
+ 71.28,
+ -39.24,
+ 43.36
+ ],
+ "measured_rgb": "#7DC05C",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 40,
+ 35
+ ],
+ "measured_lab": [
+ 71.07,
+ -38.65,
+ 44.35
+ ],
+ "measured_rgb": "#7EBF59",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 45,
+ 30
+ ],
+ "measured_lab": [
+ 71.18,
+ -38.31,
+ 50.43
+ ],
+ "measured_rgb": "#83BF4C",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 50,
+ 25
+ ],
+ "measured_lab": [
+ 70.55,
+ -38.48,
+ 48.2
+ ],
+ "measured_rgb": "#80BD50",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 55,
+ 20
+ ],
+ "measured_lab": [
+ 71.23,
+ -37.53,
+ 52.06
+ ],
+ "measured_rgb": "#86BE49",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 20,
+ 50
+ ],
+ "measured_lab": [
+ 70.62,
+ -38.31,
+ 27.17
+ ],
+ "measured_rgb": "#70BE7A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 25,
+ 45
+ ],
+ "measured_lab": [
+ 70.27,
+ -40.7,
+ 36.95
+ ],
+ "measured_rgb": "#72BE66",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 30,
+ 40
+ ],
+ "measured_lab": [
+ 69.68,
+ -39.3,
+ 32.01
+ ],
+ "measured_rgb": "#70BB6E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 35,
+ 35
+ ],
+ "measured_lab": [
+ 69.43,
+ -40.46,
+ 39.0
+ ],
+ "measured_rgb": "#72BB60",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 40,
+ 30
+ ],
+ "measured_lab": [
+ 68.97,
+ -40.7,
+ 38.6
+ ],
+ "measured_rgb": "#70BA5F",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 45,
+ 25
+ ],
+ "measured_lab": [
+ 69.63,
+ -40.15,
+ 47.16
+ ],
+ "measured_rgb": "#79BB4F",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 50,
+ 20
+ ],
+ "measured_lab": [
+ 69.41,
+ -39.15,
+ 50.18
+ ],
+ "measured_rgb": "#7CBA48",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 20,
+ 45
+ ],
+ "measured_lab": [
+ 68.36,
+ -39.74,
+ 23.12
+ ],
+ "measured_rgb": "#62B87B",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 25,
+ 40
+ ],
+ "measured_lab": [
+ 68.0,
+ -41.34,
+ 28.71
+ ],
+ "measured_rgb": "#62B870",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 30,
+ 35
+ ],
+ "measured_lab": [
+ 67.59,
+ -41.06,
+ 29.34
+ ],
+ "measured_rgb": "#63B76E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 35,
+ 30
+ ],
+ "measured_lab": [
+ 67.99,
+ -40.51,
+ 34.43
+ ],
+ "measured_rgb": "#6AB765",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 40,
+ 25
+ ],
+ "measured_lab": [
+ 68.47,
+ -41.01,
+ 39.93
+ ],
+ "measured_rgb": "#6EB95B",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 45,
+ 20
+ ],
+ "measured_lab": [
+ 68.39,
+ -40.84,
+ 44.81
+ ],
+ "measured_rgb": "#72B851",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 20,
+ 40
+ ],
+ "measured_lab": [
+ 68.26,
+ -42.84,
+ 32.38
+ ],
+ "measured_rgb": "#62B96A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 25,
+ 35
+ ],
+ "measured_lab": [
+ 67.53,
+ -43.05,
+ 33.52
+ ],
+ "measured_rgb": "#61B765",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 30,
+ 30
+ ],
+ "measured_lab": [
+ 67.97,
+ -43.08,
+ 40.92
+ ],
+ "measured_rgb": "#68B858",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 35,
+ 25
+ ],
+ "measured_lab": [
+ 67.12,
+ -42.36,
+ 35.29
+ ],
+ "measured_rgb": "#63B661",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 40,
+ 20
+ ],
+ "measured_lab": [
+ 67.2,
+ -42.55,
+ 42.58
+ ],
+ "measured_rgb": "#69B653",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 20,
+ 35
+ ],
+ "measured_lab": [
+ 66.46,
+ -43.54,
+ 30.78
+ ],
+ "measured_rgb": "#5AB468",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 25,
+ 30
+ ],
+ "measured_lab": [
+ 67.09,
+ -43.25,
+ 40.33
+ ],
+ "measured_rgb": "#65B657",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 30,
+ 25
+ ],
+ "measured_lab": [
+ 66.18,
+ -43.88,
+ 36.56
+ ],
+ "measured_rgb": "#5EB35C",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 35,
+ 20
+ ],
+ "measured_lab": [
+ 66.19,
+ -43.23,
+ 41.16
+ ],
+ "measured_rgb": "#63B353",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 20,
+ 30
+ ],
+ "measured_lab": [
+ 64.97,
+ -43.99,
+ 23.68
+ ],
+ "measured_rgb": "#4BB172",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 25,
+ 25
+ ],
+ "measured_lab": [
+ 65.56,
+ -44.13,
+ 36.03
+ ],
+ "measured_rgb": "#5BB25C",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 30,
+ 20
+ ],
+ "measured_lab": [
+ 64.72,
+ -44.5,
+ 33.55
+ ],
+ "measured_rgb": "#55B05E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 20,
+ 25
+ ],
+ "measured_lab": [
+ 64.39,
+ -44.62,
+ 30.57
+ ],
+ "measured_rgb": "#50AF63",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 25,
+ 20
+ ],
+ "measured_lab": [
+ 64.28,
+ -44.35,
+ 33.12
+ ],
+ "measured_rgb": "#54AF5E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Cyan",
+ "rgb": "#0086D6"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 60,
+ 20,
+ 20
+ ],
+ "measured_lab": [
+ 63.99,
+ -44.5,
+ 31.36
+ ],
+ "measured_rgb": "#50AE61",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 20,
+ 60
+ ],
+ "measured_lab": [
+ 69.61,
+ 16.79,
+ 31.35
+ ],
+ "measured_rgb": "#D99E72",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 25,
+ 55
+ ],
+ "measured_lab": [
+ 68.82,
+ 19.72,
+ 31.9
+ ],
+ "measured_rgb": "#DB996F",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 30,
+ 50
+ ],
+ "measured_lab": [
+ 68.33,
+ 17.1,
+ 39.2
+ ],
+ "measured_rgb": "#D89A60",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 35,
+ 45
+ ],
+ "measured_lab": [
+ 68.46,
+ 16.11,
+ 42.41
+ ],
+ "measured_rgb": "#D89B5A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 40,
+ 40
+ ],
+ "measured_lab": [
+ 68.13,
+ 20.07,
+ 35.11
+ ],
+ "measured_rgb": "#DA9768",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 45,
+ 35
+ ],
+ "measured_lab": [
+ 67.98,
+ 17.82,
+ 41.09
+ ],
+ "measured_rgb": "#D9985C",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 50,
+ 30
+ ],
+ "measured_lab": [
+ 67.42,
+ 17.87,
+ 44.12
+ ],
+ "measured_rgb": "#D89654",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 55,
+ 25
+ ],
+ "measured_lab": [
+ 67.92,
+ 16.3,
+ 49.75
+ ],
+ "measured_rgb": "#D9994A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 60,
+ 20
+ ],
+ "measured_lab": [
+ 67.28,
+ 19.02,
+ 46.35
+ ],
+ "measured_rgb": "#DA9550",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 20,
+ 55
+ ],
+ "measured_lab": [
+ 67.5,
+ 21.75,
+ 22.94
+ ],
+ "measured_rgb": "#D7957C",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 25,
+ 50
+ ],
+ "measured_lab": [
+ 67.1,
+ 22.38,
+ 25.65
+ ],
+ "measured_rgb": "#D79376",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 30,
+ 45
+ ],
+ "measured_lab": [
+ 66.59,
+ 19.58,
+ 37.69
+ ],
+ "measured_rgb": "#D6935F",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 35,
+ 40
+ ],
+ "measured_lab": [
+ 65.65,
+ 23.82,
+ 31.58
+ ],
+ "measured_rgb": "#D78E68",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 40,
+ 35
+ ],
+ "measured_lab": [
+ 65.85,
+ 22.45,
+ 35.34
+ ],
+ "measured_rgb": "#D78F62",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 45,
+ 30
+ ],
+ "measured_lab": [
+ 66.33,
+ 18.54,
+ 46.19
+ ],
+ "measured_rgb": "#D6934E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 50,
+ 25
+ ],
+ "measured_lab": [
+ 66.54,
+ 17.79,
+ 48.57
+ ],
+ "measured_rgb": "#D69449",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 55,
+ 20
+ ],
+ "measured_lab": [
+ 66.05,
+ 22.67,
+ 41.69
+ ],
+ "measured_rgb": "#DA8F56",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 20,
+ 50
+ ],
+ "measured_lab": [
+ 65.98,
+ 25.27,
+ 25.85
+ ],
+ "measured_rgb": "#D98E73",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 25,
+ 45
+ ],
+ "measured_lab": [
+ 64.68,
+ 23.73,
+ 29.99
+ ],
+ "measured_rgb": "#D48C69",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 30,
+ 40
+ ],
+ "measured_lab": [
+ 65.13,
+ 22.9,
+ 33.41
+ ],
+ "measured_rgb": "#D58D63",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 35,
+ 35
+ ],
+ "measured_lab": [
+ 65.09,
+ 25.37,
+ 33.28
+ ],
+ "measured_rgb": "#D98B64",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 40,
+ 30
+ ],
+ "measured_lab": [
+ 63.98,
+ 23.77,
+ 34.82
+ ],
+ "measured_rgb": "#D48A5E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 45,
+ 25
+ ],
+ "measured_lab": [
+ 63.93,
+ 23.89,
+ 38.63
+ ],
+ "measured_rgb": "#D58957",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 50,
+ 20
+ ],
+ "measured_lab": [
+ 63.96,
+ 22.94,
+ 39.59
+ ],
+ "measured_rgb": "#D48A55",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 20,
+ 45
+ ],
+ "measured_lab": [
+ 64.24,
+ 30.82,
+ 10.43
+ ],
+ "measured_rgb": "#D5868B",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 25,
+ 40
+ ],
+ "measured_lab": [
+ 63.91,
+ 27.46,
+ 22.59
+ ],
+ "measured_rgb": "#D48774",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 30,
+ 35
+ ],
+ "measured_lab": [
+ 62.99,
+ 27.33,
+ 27.98
+ ],
+ "measured_rgb": "#D38568",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 35,
+ 30
+ ],
+ "measured_lab": [
+ 63.4,
+ 25.17,
+ 33.91
+ ],
+ "measured_rgb": "#D4875E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 40,
+ 25
+ ],
+ "measured_lab": [
+ 61.18,
+ 29.42,
+ 27.72
+ ],
+ "measured_rgb": "#D17E64",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 45,
+ 20
+ ],
+ "measured_lab": [
+ 59.89,
+ 31.27,
+ 25.11
+ ],
+ "measured_rgb": "#CF7966",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 20,
+ 40
+ ],
+ "measured_lab": [
+ 59.5,
+ 33.72,
+ 17.49
+ ],
+ "measured_rgb": "#CF7772",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 25,
+ 35
+ ],
+ "measured_lab": [
+ 59.49,
+ 33.87,
+ 17.34
+ ],
+ "measured_rgb": "#CF7773",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 30,
+ 30
+ ],
+ "measured_lab": [
+ 59.88,
+ 32.77,
+ 22.0
+ ],
+ "measured_rgb": "#D0786B",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 35,
+ 25
+ ],
+ "measured_lab": [
+ 58.58,
+ 33.89,
+ 21.05
+ ],
+ "measured_rgb": "#CD746A",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 40,
+ 20
+ ],
+ "measured_lab": [
+ 59.5,
+ 31.18,
+ 26.51
+ ],
+ "measured_rgb": "#CE7862",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 20,
+ 35
+ ],
+ "measured_lab": [
+ 58.96,
+ 35.14,
+ 15.3
+ ],
+ "measured_rgb": "#CE7475",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 25,
+ 30
+ ],
+ "measured_lab": [
+ 58.15,
+ 35.31,
+ 18.11
+ ],
+ "measured_rgb": "#CD726E",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 30,
+ 25
+ ],
+ "measured_lab": [
+ 58.1,
+ 36.43,
+ 15.98
+ ],
+ "measured_rgb": "#CE7172",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 35,
+ 20
+ ],
+ "measured_lab": [
+ 57.38,
+ 34.94,
+ 21.31
+ ],
+ "measured_rgb": "#CB7066",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 20,
+ 30
+ ],
+ "measured_lab": [
+ 57.08,
+ 37.78,
+ 13.15
+ ],
+ "measured_rgb": "#CB6D74",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 25,
+ 25
+ ],
+ "measured_lab": [
+ 56.95,
+ 38.09,
+ 14.5
+ ],
+ "measured_rgb": "#CC6D71",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 30,
+ 20
+ ],
+ "measured_lab": [
+ 57.03,
+ 37.09,
+ 17.89
+ ],
+ "measured_rgb": "#CC6D6C",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 20,
+ 25
+ ],
+ "measured_lab": [
+ 56.59,
+ 40.06,
+ 11.45
+ ],
+ "measured_rgb": "#CC6A76",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 25,
+ 20
+ ],
+ "measured_lab": [
+ 56.35,
+ 39.5,
+ 14.12
+ ],
+ "measured_rgb": "#CC6A71",
+ "source": "measured"
+ },
+ {
+ "mode": "CMYW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Magenta",
+ "rgb": "#EC008C"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 60,
+ 20,
+ 20
+ ],
+ "measured_lab": [
+ 56.79,
+ 44.06,
+ 0.12
+ ],
+ "measured_rgb": "#CE688A",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 20,
+ 80
+ ],
+ "measured_lab": [
+ 60.61,
+ 34.14,
+ 50.34
+ ],
+ "measured_rgb": "#DB7839",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 25,
+ 75
+ ],
+ "measured_lab": [
+ 57.92,
+ 38.03,
+ 46.93
+ ],
+ "measured_rgb": "#D86D39",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 30,
+ 70
+ ],
+ "measured_lab": [
+ 54.45,
+ 45.01,
+ 43.39
+ ],
+ "measured_rgb": "#D55D39",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 35,
+ 65
+ ],
+ "measured_lab": [
+ 52.18,
+ 47.64,
+ 41.46
+ ],
+ "measured_rgb": "#D15537",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 40,
+ 60
+ ],
+ "measured_lab": [
+ 54.08,
+ 42.25,
+ 42.36
+ ],
+ "measured_rgb": "#D05F3A",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 45,
+ 55
+ ],
+ "measured_lab": [
+ 51.19,
+ 47.93,
+ 39.54
+ ],
+ "measured_rgb": "#CE5239",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 50,
+ 50
+ ],
+ "measured_lab": [
+ 49.49,
+ 50.76,
+ 38.06
+ ],
+ "measured_rgb": "#CC4A38",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 55,
+ 45
+ ],
+ "measured_lab": [
+ 50.15,
+ 48.98,
+ 38.57
+ ],
+ "measured_rgb": "#CC4E38",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 60,
+ 40
+ ],
+ "measured_lab": [
+ 49.79,
+ 47.23,
+ 37.84
+ ],
+ "measured_rgb": "#C94F39",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 65,
+ 35
+ ],
+ "measured_lab": [
+ 46.81,
+ 51.92,
+ 34.7
+ ],
+ "measured_rgb": "#C54138",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 70,
+ 30
+ ],
+ "measured_lab": [
+ 46.58,
+ 51.44,
+ 34.56
+ ],
+ "measured_rgb": "#C34137",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 75,
+ 25
+ ],
+ "measured_lab": [
+ 46.73,
+ 51.61,
+ 33.68
+ ],
+ "measured_rgb": "#C44139",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ }
+ ],
+ "ratios": [
+ 80,
+ 20
+ ],
+ "measured_lab": [
+ 46.44,
+ 51.41,
+ 32.33
+ ],
+ "measured_rgb": "#C3413B",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 20,
+ 80
+ ],
+ "measured_lab": [
+ 28.39,
+ 4.73,
+ -17.78
+ ],
+ "measured_rgb": "#3A425E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 25,
+ 75
+ ],
+ "measured_lab": [
+ 27.99,
+ 5.7,
+ -13.75
+ ],
+ "measured_rgb": "#404057",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 30,
+ 70
+ ],
+ "measured_lab": [
+ 28.01,
+ 5.88,
+ -12.79
+ ],
+ "measured_rgb": "#414056",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 35,
+ 65
+ ],
+ "measured_lab": [
+ 28.36,
+ 7.17,
+ -7.97
+ ],
+ "measured_rgb": "#48404F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 40,
+ 60
+ ],
+ "measured_lab": [
+ 28.46,
+ 8.34,
+ -6.09
+ ],
+ "measured_rgb": "#4C3F4D",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 45,
+ 55
+ ],
+ "measured_lab": [
+ 29.18,
+ 7.99,
+ -6.06
+ ],
+ "measured_rgb": "#4D414E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 50,
+ 50
+ ],
+ "measured_lab": [
+ 29.47,
+ 9.68,
+ -3.27
+ ],
+ "measured_rgb": "#52404B",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 55,
+ 45
+ ],
+ "measured_lab": [
+ 29.14,
+ 11.96,
+ -0.91
+ ],
+ "measured_rgb": "#563E46",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 60,
+ 40
+ ],
+ "measured_lab": [
+ 29.79,
+ 10.84,
+ -2.53
+ ],
+ "measured_rgb": "#55404A",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 65,
+ 35
+ ],
+ "measured_lab": [
+ 29.84,
+ 13.65,
+ 0.54
+ ],
+ "measured_rgb": "#5B3F46",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 70,
+ 30
+ ],
+ "measured_lab": [
+ 30.46,
+ 16.09,
+ 2.93
+ ],
+ "measured_rgb": "#613E44",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 75,
+ 25
+ ],
+ "measured_lab": [
+ 31.4,
+ 20.19,
+ 7.06
+ ],
+ "measured_rgb": "#6B3D40",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 80,
+ 20
+ ],
+ "measured_lab": [
+ 32.0,
+ 21.78,
+ 8.02
+ ],
+ "measured_rgb": "#6E3D40",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 80
+ ],
+ "measured_lab": [
+ 61.58,
+ 37.37,
+ 13.91
+ ],
+ "measured_rgb": "#D8797E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 75
+ ],
+ "measured_lab": [
+ 60.1,
+ 40.18,
+ 16.87
+ ],
+ "measured_rgb": "#D97375",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 70
+ ],
+ "measured_lab": [
+ 59.12,
+ 40.19,
+ 17.09
+ ],
+ "measured_rgb": "#D67072",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 65
+ ],
+ "measured_lab": [
+ 56.42,
+ 42.46,
+ 18.74
+ ],
+ "measured_rgb": "#D26769",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 60
+ ],
+ "measured_lab": [
+ 54.17,
+ 44.16,
+ 20.38
+ ],
+ "measured_rgb": "#CE5F61",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 55
+ ],
+ "measured_lab": [
+ 53.53,
+ 44.14,
+ 20.39
+ ],
+ "measured_rgb": "#CC5D5F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 50
+ ],
+ "measured_lab": [
+ 55.16,
+ 41.55,
+ 17.38
+ ],
+ "measured_rgb": "#CC6468",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 45
+ ],
+ "measured_lab": [
+ 52.54,
+ 43.49,
+ 19.07
+ ],
+ "measured_rgb": "#C85B5F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 60,
+ 40
+ ],
+ "measured_lab": [
+ 52.43,
+ 43.2,
+ 19.01
+ ],
+ "measured_rgb": "#C75B5F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 65,
+ 35
+ ],
+ "measured_lab": [
+ 49.22,
+ 47.26,
+ 24.6
+ ],
+ "measured_rgb": "#C44E4E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 70,
+ 30
+ ],
+ "measured_lab": [
+ 48.94,
+ 47.01,
+ 23.99
+ ],
+ "measured_rgb": "#C34E4E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 75,
+ 25
+ ],
+ "measured_lab": [
+ 48.65,
+ 46.66,
+ 23.5
+ ],
+ "measured_rgb": "#C14D4F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 80,
+ 20
+ ],
+ "measured_lab": [
+ 46.24,
+ 48.73,
+ 26.28
+ ],
+ "measured_rgb": "#BD4444",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 20,
+ 80
+ ],
+ "measured_lab": [
+ 35.03,
+ -18.52,
+ -8.74
+ ],
+ "measured_rgb": "#185B60",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 25,
+ 75
+ ],
+ "measured_lab": [
+ 34.35,
+ -18.03,
+ -10.06
+ ],
+ "measured_rgb": "#145960",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 30,
+ 70
+ ],
+ "measured_lab": [
+ 36.58,
+ -19.91,
+ -5.37
+ ],
+ "measured_rgb": "#205F5E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 35,
+ 65
+ ],
+ "measured_lab": [
+ 40.4,
+ -23.93,
+ 5.19
+ ],
+ "measured_rgb": "#306956",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 40,
+ 60
+ ],
+ "measured_lab": [
+ 40.47,
+ -25.72,
+ 6.68
+ ],
+ "measured_rgb": "#2D6A54",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 45,
+ 55
+ ],
+ "measured_lab": [
+ 42.28,
+ -26.69,
+ 10.44
+ ],
+ "measured_rgb": "#346F52",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 50,
+ 50
+ ],
+ "measured_lab": [
+ 42.84,
+ -27.22,
+ 11.67
+ ],
+ "measured_rgb": "#357051",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 55,
+ 45
+ ],
+ "measured_lab": [
+ 45.25,
+ -27.6,
+ 15.74
+ ],
+ "measured_rgb": "#3F7750",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 60,
+ 40
+ ],
+ "measured_lab": [
+ 48.65,
+ -28.39,
+ 22.55
+ ],
+ "measured_rgb": "#4C7F4C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 65,
+ 35
+ ],
+ "measured_lab": [
+ 50.85,
+ -29.47,
+ 27.4
+ ],
+ "measured_rgb": "#538549",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 70,
+ 30
+ ],
+ "measured_lab": [
+ 54.25,
+ -29.09,
+ 32.92
+ ],
+ "measured_rgb": "#608E46",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 75,
+ 25
+ ],
+ "measured_lab": [
+ 49.95,
+ -30.96,
+ 23.7
+ ],
+ "measured_rgb": "#4A844D",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 80,
+ 20
+ ],
+ "measured_lab": [
+ 59.02,
+ -29.15,
+ 40.67
+ ],
+ "measured_rgb": "#719A43",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 80
+ ],
+ "measured_lab": [
+ 86.91,
+ -14.57,
+ 48.46
+ ],
+ "measured_rgb": "#DDDF7B",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 75
+ ],
+ "measured_lab": [
+ 86.88,
+ -15.04,
+ 54.18
+ ],
+ "measured_rgb": "#DFDF6F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 70
+ ],
+ "measured_lab": [
+ 86.41,
+ -15.7,
+ 60.31
+ ],
+ "measured_rgb": "#DFDE61",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 65
+ ],
+ "measured_lab": [
+ 86.06,
+ -14.91,
+ 59.87
+ ],
+ "measured_rgb": "#DFDD61",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 60
+ ],
+ "measured_lab": [
+ 85.89,
+ -14.7,
+ 63.29
+ ],
+ "measured_rgb": "#E0DC58",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 55
+ ],
+ "measured_lab": [
+ 86.91,
+ -13.69,
+ 66.56
+ ],
+ "measured_rgb": "#E6DE53",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 50
+ ],
+ "measured_lab": [
+ 85.49,
+ -13.71,
+ 65.56
+ ],
+ "measured_rgb": "#E1DA52",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 45
+ ],
+ "measured_lab": [
+ 86.77,
+ -12.65,
+ 71.25
+ ],
+ "measured_rgb": "#E9DD47",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 60,
+ 40
+ ],
+ "measured_lab": [
+ 85.39,
+ -13.63,
+ 72.72
+ ],
+ "measured_rgb": "#E3DA3F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 65,
+ 35
+ ],
+ "measured_lab": [
+ 85.21,
+ -13.5,
+ 76.71
+ ],
+ "measured_rgb": "#E4D931",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 70,
+ 30
+ ],
+ "measured_lab": [
+ 86.67,
+ -11.8,
+ 76.43
+ ],
+ "measured_rgb": "#EBDC37",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 75,
+ 25
+ ],
+ "measured_lab": [
+ 85.49,
+ -11.97,
+ 77.96
+ ],
+ "measured_rgb": "#E8D92E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 80,
+ 20
+ ],
+ "measured_lab": [
+ 85.33,
+ -12.02,
+ 80.1
+ ],
+ "measured_rgb": "#E8D925",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 80
+ ],
+ "measured_lab": [
+ 59.26,
+ -2.93,
+ -35.61
+ ],
+ "measured_rgb": "#5593CD",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 75
+ ],
+ "measured_lab": [
+ 59.41,
+ -2.35,
+ -34.23
+ ],
+ "measured_rgb": "#5B93CB",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 70
+ ],
+ "measured_lab": [
+ 53.09,
+ -0.39,
+ -40.48
+ ],
+ "measured_rgb": "#3E83C4",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 65
+ ],
+ "measured_lab": [
+ 52.81,
+ 0.36,
+ -39.81
+ ],
+ "measured_rgb": "#4281C2",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 60
+ ],
+ "measured_lab": [
+ 48.06,
+ 2.47,
+ -43.46
+ ],
+ "measured_rgb": "#2D75BB",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 55
+ ],
+ "measured_lab": [
+ 46.13,
+ 3.72,
+ -44.68
+ ],
+ "measured_rgb": "#2670B8",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 50
+ ],
+ "measured_lab": [
+ 46.04,
+ 3.98,
+ -43.55
+ ],
+ "measured_rgb": "#2D6FB6",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 45
+ ],
+ "measured_lab": [
+ 44.42,
+ 5.04,
+ -44.41
+ ],
+ "measured_rgb": "#286BB3",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 60,
+ 40
+ ],
+ "measured_lab": [
+ 44.98,
+ 5.1,
+ -42.4
+ ],
+ "measured_rgb": "#336CB1",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 65,
+ 35
+ ],
+ "measured_lab": [
+ 42.2,
+ 6.27,
+ -44.38
+ ],
+ "measured_rgb": "#2664AD",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 70,
+ 30
+ ],
+ "measured_lab": [
+ 39.63,
+ 8.04,
+ -46.0
+ ],
+ "measured_rgb": "#1C5EA9",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 75,
+ 25
+ ],
+ "measured_lab": [
+ 38.59,
+ 8.36,
+ -46.18
+ ],
+ "measured_rgb": "#175BA6",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 80,
+ 20
+ ],
+ "measured_lab": [
+ 37.5,
+ 9.22,
+ -46.13
+ ],
+ "measured_rgb": "#1858A3",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 20,
+ 20,
+ 60
+ ],
+ "measured_lab": [
+ 32.23,
+ -3.53,
+ -0.01
+ ],
+ "measured_rgb": "#464E4C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 20,
+ 25,
+ 55
+ ],
+ "measured_lab": [
+ 32.81,
+ -4.24,
+ 0.56
+ ],
+ "measured_rgb": "#464F4C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 20,
+ 30,
+ 50
+ ],
+ "measured_lab": [
+ 34.15,
+ -4.49,
+ 3.87
+ ],
+ "measured_rgb": "#4B524A",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 20,
+ 35,
+ 45
+ ],
+ "measured_lab": [
+ 37.35,
+ -6.99,
+ 11.16
+ ],
+ "measured_rgb": "#545B46",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 20,
+ 40,
+ 40
+ ],
+ "measured_lab": [
+ 36.99,
+ -4.61,
+ 9.94
+ ],
+ "measured_rgb": "#565947",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 20,
+ 45,
+ 35
+ ],
+ "measured_lab": [
+ 37.25,
+ -1.03,
+ 10.47
+ ],
+ "measured_rgb": "#5D5847",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 20,
+ 50,
+ 30
+ ],
+ "measured_lab": [
+ 42.82,
+ -4.42,
+ 20.44
+ ],
+ "measured_rgb": "#6A6643",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 20,
+ 55,
+ 25
+ ],
+ "measured_lab": [
+ 44.71,
+ -2.87,
+ 24.85
+ ],
+ "measured_rgb": "#736A40",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 20,
+ 60,
+ 20
+ ],
+ "measured_lab": [
+ 46.34,
+ -1.41,
+ 27.3
+ ],
+ "measured_rgb": "#7B6D40",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 25,
+ 20,
+ 55
+ ],
+ "measured_lab": [
+ 30.83,
+ -1.07,
+ -2.8
+ ],
+ "measured_rgb": "#45494D",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 25,
+ 25,
+ 50
+ ],
+ "measured_lab": [
+ 32.93,
+ -0.38,
+ 3.48
+ ],
+ "measured_rgb": "#4F4D48",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 25,
+ 30,
+ 45
+ ],
+ "measured_lab": [
+ 34.58,
+ -2.45,
+ 6.26
+ ],
+ "measured_rgb": "#525247",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 25,
+ 35,
+ 40
+ ],
+ "measured_lab": [
+ 36.48,
+ -2.69,
+ 10.74
+ ],
+ "measured_rgb": "#585745",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 25,
+ 40,
+ 35
+ ],
+ "measured_lab": [
+ 36.81,
+ 0.18,
+ 11.24
+ ],
+ "measured_rgb": "#5E5645",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 25,
+ 45,
+ 30
+ ],
+ "measured_lab": [
+ 40.56,
+ -1.97,
+ 18.21
+ ],
+ "measured_rgb": "#676042",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 25,
+ 50,
+ 25
+ ],
+ "measured_lab": [
+ 44.1,
+ -1.72,
+ 24.33
+ ],
+ "measured_rgb": "#736840",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 25,
+ 55,
+ 20
+ ],
+ "measured_lab": [
+ 45.28,
+ 1.15,
+ 26.65
+ ],
+ "measured_rgb": "#7C693E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 30,
+ 20,
+ 50
+ ],
+ "measured_lab": [
+ 31.65,
+ 0.49,
+ 0.75
+ ],
+ "measured_rgb": "#4C4A49",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 30,
+ 25,
+ 45
+ ],
+ "measured_lab": [
+ 34.96,
+ -1.74,
+ 8.49
+ ],
+ "measured_rgb": "#555345",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 30,
+ 30,
+ 40
+ ],
+ "measured_lab": [
+ 35.0,
+ -0.46,
+ 8.13
+ ],
+ "measured_rgb": "#575245",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 30,
+ 35,
+ 35
+ ],
+ "measured_lab": [
+ 35.49,
+ 2.18,
+ 9.86
+ ],
+ "measured_rgb": "#5D5244",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 30,
+ 40,
+ 30
+ ],
+ "measured_lab": [
+ 37.72,
+ 0.55,
+ 13.56
+ ],
+ "measured_rgb": "#625843",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 30,
+ 45,
+ 25
+ ],
+ "measured_lab": [
+ 43.18,
+ 0.87,
+ 23.69
+ ],
+ "measured_rgb": "#75643F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 30,
+ 50,
+ 20
+ ],
+ "measured_lab": [
+ 43.6,
+ 2.7,
+ 23.97
+ ],
+ "measured_rgb": "#78643F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 35,
+ 20,
+ 45
+ ],
+ "measured_lab": [
+ 33.04,
+ 2.13,
+ 3.9
+ ],
+ "measured_rgb": "#544C48",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 35,
+ 25,
+ 40
+ ],
+ "measured_lab": [
+ 33.94,
+ 2.25,
+ 7.42
+ ],
+ "measured_rgb": "#584E44",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 35,
+ 30,
+ 35
+ ],
+ "measured_lab": [
+ 33.08,
+ 7.54,
+ 8.06
+ ],
+ "measured_rgb": "#5E4941",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 35,
+ 35,
+ 30
+ ],
+ "measured_lab": [
+ 39.5,
+ -1.02,
+ 16.66
+ ],
+ "measured_rgb": "#655D42",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 35,
+ 40,
+ 25
+ ],
+ "measured_lab": [
+ 40.42,
+ 3.78,
+ 19.13
+ ],
+ "measured_rgb": "#705C40",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 35,
+ 45,
+ 20
+ ],
+ "measured_lab": [
+ 42.47,
+ 7.35,
+ 22.43
+ ],
+ "measured_rgb": "#7C5F40",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 40,
+ 20,
+ 40
+ ],
+ "measured_lab": [
+ 32.03,
+ 5.65,
+ 4.57
+ ],
+ "measured_rgb": "#574844",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 40,
+ 25,
+ 35
+ ],
+ "measured_lab": [
+ 32.62,
+ 7.5,
+ 6.94
+ ],
+ "measured_rgb": "#5C4842",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 40,
+ 30,
+ 30
+ ],
+ "measured_lab": [
+ 33.68,
+ 8.82,
+ 9.29
+ ],
+ "measured_rgb": "#624A41",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 40,
+ 35,
+ 25
+ ],
+ "measured_lab": [
+ 38.68,
+ 6.76,
+ 16.51
+ ],
+ "measured_rgb": "#6F5641",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 40,
+ 40,
+ 20
+ ],
+ "measured_lab": [
+ 38.56,
+ 10.09,
+ 17.18
+ ],
+ "measured_rgb": "#73543F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 45,
+ 20,
+ 35
+ ],
+ "measured_lab": [
+ 33.4,
+ 5.95,
+ 7.54
+ ],
+ "measured_rgb": "#5C4B43",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 45,
+ 25,
+ 30
+ ],
+ "measured_lab": [
+ 33.27,
+ 11.92,
+ 8.78
+ ],
+ "measured_rgb": "#654741",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 45,
+ 30,
+ 25
+ ],
+ "measured_lab": [
+ 39.06,
+ 7.04,
+ 17.32
+ ],
+ "measured_rgb": "#705740",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 45,
+ 35,
+ 20
+ ],
+ "measured_lab": [
+ 38.92,
+ 11.63,
+ 18.79
+ ],
+ "measured_rgb": "#77543E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 50,
+ 20,
+ 30
+ ],
+ "measured_lab": [
+ 32.56,
+ 13.56,
+ 9.0
+ ],
+ "measured_rgb": "#66443F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 50,
+ 25,
+ 25
+ ],
+ "measured_lab": [
+ 33.92,
+ 11.71,
+ 10.22
+ ],
+ "measured_rgb": "#674940",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 50,
+ 30,
+ 20
+ ],
+ "measured_lab": [
+ 35.68,
+ 13.35,
+ 13.16
+ ],
+ "measured_rgb": "#6F4C40",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 55,
+ 20,
+ 25
+ ],
+ "measured_lab": [
+ 32.37,
+ 16.51,
+ 9.16
+ ],
+ "measured_rgb": "#69423E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 55,
+ 25,
+ 20
+ ],
+ "measured_lab": [
+ 38.21,
+ 13.95,
+ 17.68
+ ],
+ "measured_rgb": "#78513E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ }
+ ],
+ "ratios": [
+ 60,
+ 20,
+ 20
+ ],
+ "measured_lab": [
+ 35.06,
+ 16.29,
+ 13.06
+ ],
+ "measured_rgb": "#71483E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 20,
+ 60
+ ],
+ "measured_lab": [
+ 60.59,
+ 34.71,
+ 26.62
+ ],
+ "measured_rgb": "#D67865",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 25,
+ 55
+ ],
+ "measured_lab": [
+ 59.65,
+ 36.54,
+ 32.53
+ ],
+ "measured_rgb": "#D87458",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 30,
+ 50
+ ],
+ "measured_lab": [
+ 60.45,
+ 34.97,
+ 33.46
+ ],
+ "measured_rgb": "#D87759",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 35,
+ 45
+ ],
+ "measured_lab": [
+ 60.48,
+ 35.03,
+ 35.45
+ ],
+ "measured_rgb": "#D97755",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 40,
+ 40
+ ],
+ "measured_lab": [
+ 60.74,
+ 35.59,
+ 37.63
+ ],
+ "measured_rgb": "#DB7752",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 45,
+ 35
+ ],
+ "measured_lab": [
+ 60.84,
+ 33.42,
+ 34.85
+ ],
+ "measured_rgb": "#D87A57",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 50,
+ 30
+ ],
+ "measured_lab": [
+ 59.98,
+ 34.25,
+ 42.34
+ ],
+ "measured_rgb": "#D87647",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 55,
+ 25
+ ],
+ "measured_lab": [
+ 59.5,
+ 34.06,
+ 45.9
+ ],
+ "measured_rgb": "#D7753F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 60,
+ 20
+ ],
+ "measured_lab": [
+ 60.73,
+ 32.52,
+ 47.98
+ ],
+ "measured_rgb": "#D97A3E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 20,
+ 55
+ ],
+ "measured_lab": [
+ 57.33,
+ 40.74,
+ 32.02
+ ],
+ "measured_rgb": "#D66A54",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 25,
+ 50
+ ],
+ "measured_lab": [
+ 57.86,
+ 38.74,
+ 32.01
+ ],
+ "measured_rgb": "#D56D55",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 30,
+ 45
+ ],
+ "measured_lab": [
+ 59.26,
+ 36.69,
+ 29.23
+ ],
+ "measured_rgb": "#D6735D",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 35,
+ 40
+ ],
+ "measured_lab": [
+ 57.69,
+ 38.61,
+ 37.53
+ ],
+ "measured_rgb": "#D66D4B",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 40,
+ 35
+ ],
+ "measured_lab": [
+ 58.84,
+ 37.53,
+ 35.54
+ ],
+ "measured_rgb": "#D77151",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 45,
+ 30
+ ],
+ "measured_lab": [
+ 58.26,
+ 36.31,
+ 36.61
+ ],
+ "measured_rgb": "#D4704E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 50,
+ 25
+ ],
+ "measured_lab": [
+ 58.63,
+ 36.73,
+ 43.16
+ ],
+ "measured_rgb": "#D77142",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 55,
+ 20
+ ],
+ "measured_lab": [
+ 58.5,
+ 37.1,
+ 43.64
+ ],
+ "measured_rgb": "#D87041",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 20,
+ 50
+ ],
+ "measured_lab": [
+ 56.37,
+ 41.44,
+ 30.12
+ ],
+ "measured_rgb": "#D46755",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 25,
+ 45
+ ],
+ "measured_lab": [
+ 55.61,
+ 41.45,
+ 34.19
+ ],
+ "measured_rgb": "#D2654C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 30,
+ 40
+ ],
+ "measured_lab": [
+ 55.53,
+ 41.59,
+ 37.12
+ ],
+ "measured_rgb": "#D36447",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 35,
+ 35
+ ],
+ "measured_lab": [
+ 56.91,
+ 39.02,
+ 32.21
+ ],
+ "measured_rgb": "#D36A53",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 40,
+ 30
+ ],
+ "measured_lab": [
+ 57.16,
+ 38.42,
+ 33.48
+ ],
+ "measured_rgb": "#D36C51",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 45,
+ 25
+ ],
+ "measured_lab": [
+ 56.26,
+ 39.43,
+ 40.55
+ ],
+ "measured_rgb": "#D36842",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 50,
+ 20
+ ],
+ "measured_lab": [
+ 56.61,
+ 38.72,
+ 43.85
+ ],
+ "measured_rgb": "#D4693C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 20,
+ 45
+ ],
+ "measured_lab": [
+ 54.0,
+ 44.02,
+ 32.55
+ ],
+ "measured_rgb": "#D05E4B",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 25,
+ 40
+ ],
+ "measured_lab": [
+ 53.03,
+ 44.01,
+ 34.64
+ ],
+ "measured_rgb": "#CE5B45",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 30,
+ 35
+ ],
+ "measured_lab": [
+ 53.36,
+ 44.2,
+ 37.81
+ ],
+ "measured_rgb": "#D05C41",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 35,
+ 30
+ ],
+ "measured_lab": [
+ 55.03,
+ 40.44,
+ 32.66
+ ],
+ "measured_rgb": "#CF644D",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 40,
+ 25
+ ],
+ "measured_lab": [
+ 54.828,
+ 42.215,
+ 34.274
+ ],
+ "measured_rgb": "#D1624A",
+ "source": "interpolated"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 45,
+ 20
+ ],
+ "measured_lab": [
+ 55.474,
+ 41.194,
+ 34.226
+ ],
+ "measured_rgb": "#D2654C",
+ "source": "interpolated"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 20,
+ 40
+ ],
+ "measured_lab": [
+ 52.99,
+ 45.97,
+ 30.69
+ ],
+ "measured_rgb": "#CF594C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 25,
+ 35
+ ],
+ "measured_lab": [
+ 54.026,
+ 44.398,
+ 31.429
+ ],
+ "measured_rgb": "#D15E4D",
+ "source": "interpolated"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 30,
+ 30
+ ],
+ "measured_lab": [
+ 53.48,
+ 44.5,
+ 33.71
+ ],
+ "measured_rgb": "#D05C48",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 35,
+ 25
+ ],
+ "measured_lab": [
+ 53.875,
+ 43.798,
+ 34.292
+ ],
+ "measured_rgb": "#D05E48",
+ "source": "interpolated"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 40,
+ 20
+ ],
+ "measured_lab": [
+ 53.05,
+ 44.39,
+ 35.65
+ ],
+ "measured_rgb": "#CF5B44",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 20,
+ 35
+ ],
+ "measured_lab": [
+ 52.053,
+ 47.001,
+ 31.923
+ ],
+ "measured_rgb": "#CE5548",
+ "source": "interpolated"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 25,
+ 30
+ ],
+ "measured_lab": [
+ 51.938,
+ 46.902,
+ 33.508
+ ],
+ "measured_rgb": "#CE5545",
+ "source": "interpolated"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 30,
+ 25
+ ],
+ "measured_lab": [
+ 51.974,
+ 46.493,
+ 35.433
+ ],
+ "measured_rgb": "#CE5642",
+ "source": "interpolated"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 35,
+ 20
+ ],
+ "measured_lab": [
+ 52.243,
+ 45.967,
+ 35.487
+ ],
+ "measured_rgb": "#CE5742",
+ "source": "interpolated"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 20,
+ 30
+ ],
+ "measured_lab": [
+ 51.23,
+ 48.13,
+ 31.57
+ ],
+ "measured_rgb": "#CD5247",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 25,
+ 25
+ ],
+ "measured_lab": [
+ 51.072,
+ 48.014,
+ 34.379
+ ],
+ "measured_rgb": "#CD5242",
+ "source": "interpolated"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 30,
+ 20
+ ],
+ "measured_lab": [
+ 50.05,
+ 49.01,
+ 38.06
+ ],
+ "measured_rgb": "#CC4D39",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 20,
+ 25
+ ],
+ "measured_lab": [
+ 50.014,
+ 48.998,
+ 33.907
+ ],
+ "measured_rgb": "#CB4E40",
+ "source": "interpolated"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 25,
+ 20
+ ],
+ "measured_lab": [
+ 50.106,
+ 48.917,
+ 34.856
+ ],
+ "measured_rgb": "#CB4E3F",
+ "source": "interpolated"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 60,
+ 20,
+ 20
+ ],
+ "measured_lab": [
+ 48.46,
+ 50.2,
+ 35.77
+ ],
+ "measured_rgb": "#C84839",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 20,
+ 60
+ ],
+ "measured_lab": [
+ 43.95,
+ 12.77,
+ -5.1
+ ],
+ "measured_rgb": "#796171",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 25,
+ 55
+ ],
+ "measured_lab": [
+ 42.04,
+ 9.64,
+ -8.16
+ ],
+ "measured_rgb": "#6D5E71",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 30,
+ 50
+ ],
+ "measured_lab": [
+ 41.99,
+ 8.57,
+ -9.11
+ ],
+ "measured_rgb": "#6B5F72",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 35,
+ 45
+ ],
+ "measured_lab": [
+ 37.82,
+ 7.98,
+ -12.1
+ ],
+ "measured_rgb": "#5D566D",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 40,
+ 40
+ ],
+ "measured_lab": [
+ 37.04,
+ 10.17,
+ -6.18
+ ],
+ "measured_rgb": "#635261",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 45,
+ 35
+ ],
+ "measured_lab": [
+ 35.88,
+ 6.85,
+ -11.4
+ ],
+ "measured_rgb": "#575267",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 50,
+ 30
+ ],
+ "measured_lab": [
+ 34.82,
+ 8.38,
+ -8.59
+ ],
+ "measured_rgb": "#594E60",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 55,
+ 25
+ ],
+ "measured_lab": [
+ 33.2,
+ 9.06,
+ -8.11
+ ],
+ "measured_rgb": "#574A5B",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 60,
+ 20
+ ],
+ "measured_lab": [
+ 32.07,
+ 8.43,
+ -9.28
+ ],
+ "measured_rgb": "#52485A",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 20,
+ 55
+ ],
+ "measured_lab": [
+ 43.13,
+ 13.68,
+ -2.83
+ ],
+ "measured_rgb": "#7A5E6B",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 25,
+ 50
+ ],
+ "measured_lab": [
+ 40.14,
+ 12.29,
+ -4.61
+ ],
+ "measured_rgb": "#6F5866",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 30,
+ 45
+ ],
+ "measured_lab": [
+ 37.63,
+ 10.55,
+ -7.27
+ ],
+ "measured_rgb": "#645364",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 35,
+ 40
+ ],
+ "measured_lab": [
+ 38.38,
+ 9.16,
+ -8.16
+ ],
+ "measured_rgb": "#635668",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 40,
+ 35
+ ],
+ "measured_lab": [
+ 35.95,
+ 10.58,
+ -5.28
+ ],
+ "measured_rgb": "#624F5D",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 45,
+ 30
+ ],
+ "measured_lab": [
+ 34.42,
+ 9.15,
+ -7.21
+ ],
+ "measured_rgb": "#5A4C5C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 50,
+ 25
+ ],
+ "measured_lab": [
+ 34.05,
+ 8.82,
+ -7.67
+ ],
+ "measured_rgb": "#594C5C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 55,
+ 20
+ ],
+ "measured_lab": [
+ 31.57,
+ 8.0,
+ -9.3
+ ],
+ "measured_rgb": "#504759",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 20,
+ 50
+ ],
+ "measured_lab": [
+ 42.67,
+ 15.13,
+ -1.45
+ ],
+ "measured_rgb": "#7C5C68",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 25,
+ 45
+ ],
+ "measured_lab": [
+ 38.88,
+ 13.65,
+ -2.95
+ ],
+ "measured_rgb": "#6F5461",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 30,
+ 40
+ ],
+ "measured_lab": [
+ 36.38,
+ 12.23,
+ -5.02
+ ],
+ "measured_rgb": "#664F5E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 35,
+ 35
+ ],
+ "measured_lab": [
+ 36.56,
+ 10.6,
+ -6.32
+ ],
+ "measured_rgb": "#635160",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 40,
+ 30
+ ],
+ "measured_lab": [
+ 33.78,
+ 10.4,
+ -5.72
+ ],
+ "measured_rgb": "#5C4A59",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 45,
+ 25
+ ],
+ "measured_lab": [
+ 33.68,
+ 9.66,
+ -5.71
+ ],
+ "measured_rgb": "#5B4A58",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 50,
+ 20
+ ],
+ "measured_lab": [
+ 31.46,
+ 8.64,
+ -7.9
+ ],
+ "measured_rgb": "#524656",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 20,
+ 45
+ ],
+ "measured_lab": [
+ 37.64,
+ 16.45,
+ -0.45
+ ],
+ "measured_rgb": "#724F5A",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 25,
+ 40
+ ],
+ "measured_lab": [
+ 35.97,
+ 14.23,
+ -2.54
+ ],
+ "measured_rgb": "#694D59",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 30,
+ 35
+ ],
+ "measured_lab": [
+ 33.12,
+ 14.21,
+ -3.07
+ ],
+ "measured_rgb": "#624653",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 35,
+ 30
+ ],
+ "measured_lab": [
+ 34.92,
+ 11.2,
+ -4.87
+ ],
+ "measured_rgb": "#614C5A",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 40,
+ 25
+ ],
+ "measured_lab": [
+ 32.77,
+ 11.87,
+ -3.19
+ ],
+ "measured_rgb": "#5D4752",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 45,
+ 20
+ ],
+ "measured_lab": [
+ 30.53,
+ 13.08,
+ -1.32
+ ],
+ "measured_rgb": "#5B414A",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 20,
+ 40
+ ],
+ "measured_lab": [
+ 39.18,
+ 16.47,
+ 0.67
+ ],
+ "measured_rgb": "#76535C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 25,
+ 35
+ ],
+ "measured_lab": [
+ 33.52,
+ 16.44,
+ 0.11
+ ],
+ "measured_rgb": "#68454F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 30,
+ 30
+ ],
+ "measured_lab": [
+ 33.8,
+ 14.01,
+ -1.98
+ ],
+ "measured_rgb": "#644853",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 35,
+ 25
+ ],
+ "measured_lab": [
+ 32.67,
+ 16.81,
+ 2.7
+ ],
+ "measured_rgb": "#674349",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 40,
+ 20
+ ],
+ "measured_lab": [
+ 31.2,
+ 13.76,
+ -0.59
+ ],
+ "measured_rgb": "#5E424B",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 20,
+ 35
+ ],
+ "measured_lab": [
+ 37.08,
+ 19.55,
+ 3.74
+ ],
+ "measured_rgb": "#774B52",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 25,
+ 30
+ ],
+ "measured_lab": [
+ 32.33,
+ 16.27,
+ -0.27
+ ],
+ "measured_rgb": "#64434D",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 30,
+ 25
+ ],
+ "measured_lab": [
+ 32.15,
+ 14.65,
+ -1.47
+ ],
+ "measured_rgb": "#61434E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 35,
+ 20
+ ],
+ "measured_lab": [
+ 31.51,
+ 13.89,
+ -1.21
+ ],
+ "measured_rgb": "#5E424C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 20,
+ 30
+ ],
+ "measured_lab": [
+ 36.64,
+ 20.21,
+ 4.79
+ ],
+ "measured_rgb": "#774A4F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 25,
+ 25
+ ],
+ "measured_lab": [
+ 33.48,
+ 17.53,
+ 2.16
+ ],
+ "measured_rgb": "#6A444C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 30,
+ 20
+ ],
+ "measured_lab": [
+ 32.33,
+ 15.16,
+ 0.23
+ ],
+ "measured_rgb": "#63434C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 20,
+ 25
+ ],
+ "measured_lab": [
+ 34.44,
+ 20.68,
+ 5.02
+ ],
+ "measured_rgb": "#72444A",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 25,
+ 20
+ ],
+ "measured_lab": [
+ 31.82,
+ 18.04,
+ 1.96
+ ],
+ "measured_rgb": "#674048",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Red",
+ "rgb": "#C12E1F"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 60,
+ 20,
+ 20
+ ],
+ "measured_lab": [
+ 33.8,
+ 20.81,
+ 5.55
+ ],
+ "measured_rgb": "#714248",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 20,
+ 60
+ ],
+ "measured_lab": [
+ 61.95,
+ -24.93,
+ 11.39
+ ],
+ "measured_rgb": "#6CA181",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 25,
+ 55
+ ],
+ "measured_lab": [
+ 58.64,
+ -24.28,
+ 6.71
+ ],
+ "measured_rgb": "#609881",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 30,
+ 50
+ ],
+ "measured_lab": [
+ 53.18,
+ -26.38,
+ 5.24
+ ],
+ "measured_rgb": "#4A8B75",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 35,
+ 45
+ ],
+ "measured_lab": [
+ 48.85,
+ -26.53,
+ 1.34
+ ],
+ "measured_rgb": "#388071",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 40,
+ 40
+ ],
+ "measured_lab": [
+ 47.76,
+ -25.67,
+ 0.94
+ ],
+ "measured_rgb": "#377D6F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 45,
+ 35
+ ],
+ "measured_lab": [
+ 47.71,
+ -23.33,
+ -0.88
+ ],
+ "measured_rgb": "#3B7C72",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 50,
+ 30
+ ],
+ "measured_lab": [
+ 45.3,
+ -23.42,
+ -3.16
+ ],
+ "measured_rgb": "#307670",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 55,
+ 25
+ ],
+ "measured_lab": [
+ 42.32,
+ -22.68,
+ -5.37
+ ],
+ "measured_rgb": "#256E6C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 20,
+ 60,
+ 20
+ ],
+ "measured_lab": [
+ 40.66,
+ -22.75,
+ -6.54
+ ],
+ "measured_rgb": "#1C6A6A",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 20,
+ 55
+ ],
+ "measured_lab": [
+ 58.19,
+ -28.22,
+ 13.86
+ ],
+ "measured_rgb": "#5C9973",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 25,
+ 50
+ ],
+ "measured_lab": [
+ 57.54,
+ -26.75,
+ 11.39
+ ],
+ "measured_rgb": "#5C9675",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 30,
+ 45
+ ],
+ "measured_lab": [
+ 54.04,
+ -25.84,
+ 7.96
+ ],
+ "measured_rgb": "#518D73",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 35,
+ 40
+ ],
+ "measured_lab": [
+ 49.15,
+ -27.67,
+ 5.27
+ ],
+ "measured_rgb": "#3B816B",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 40,
+ 35
+ ],
+ "measured_lab": [
+ 50.78,
+ -24.99,
+ 5.57
+ ],
+ "measured_rgb": "#48846F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 45,
+ 30
+ ],
+ "measured_lab": [
+ 46.19,
+ -27.43,
+ 6.2
+ ],
+ "measured_rgb": "#367962",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 50,
+ 25
+ ],
+ "measured_lab": [
+ 44.25,
+ -26.25,
+ 2.19
+ ],
+ "measured_rgb": "#2D7464",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 25,
+ 55,
+ 20
+ ],
+ "measured_lab": [
+ 43.05,
+ -25.29,
+ -0.35
+ ],
+ "measured_rgb": "#297166",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 20,
+ 50
+ ],
+ "measured_lab": [
+ 60.51,
+ -27.72,
+ 13.78
+ ],
+ "measured_rgb": "#649F79",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 25,
+ 45
+ ],
+ "measured_lab": [
+ 56.39,
+ -27.38,
+ 13.6
+ ],
+ "measured_rgb": "#5A936F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 30,
+ 40
+ ],
+ "measured_lab": [
+ 55.04,
+ -26.57,
+ 11.27
+ ],
+ "measured_rgb": "#56906F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 35,
+ 35
+ ],
+ "measured_lab": [
+ 50.22,
+ -27.61,
+ 7.99
+ ],
+ "measured_rgb": "#428469",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 40,
+ 30
+ ],
+ "measured_lab": [
+ 48.43,
+ -28.67,
+ 10.95
+ ],
+ "measured_rgb": "#3F7F60",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 45,
+ 25
+ ],
+ "measured_lab": [
+ 46.49,
+ -27.7,
+ 8.65
+ ],
+ "measured_rgb": "#397A5F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 30,
+ 50,
+ 20
+ ],
+ "measured_lab": [
+ 45.03,
+ -26.36,
+ 4.91
+ ],
+ "measured_rgb": "#347662",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 20,
+ 45
+ ],
+ "measured_lab": [
+ 60.7,
+ -28.15,
+ 21.36
+ ],
+ "measured_rgb": "#6A9F6C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 25,
+ 40
+ ],
+ "measured_lab": [
+ 58.01,
+ -27.55,
+ 16.4
+ ],
+ "measured_rgb": "#60986E",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 30,
+ 35
+ ],
+ "measured_lab": [
+ 53.3,
+ -28.62,
+ 14.7
+ ],
+ "measured_rgb": "#508C65",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 35,
+ 30
+ ],
+ "measured_lab": [
+ 51.14,
+ -28.08,
+ 12.6
+ ],
+ "measured_rgb": "#498663",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 40,
+ 25
+ ],
+ "measured_lab": [
+ 48.27,
+ -28.82,
+ 13.08
+ ],
+ "measured_rgb": "#407F5C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 35,
+ 45,
+ 20
+ ],
+ "measured_lab": [
+ 44.97,
+ -27.91,
+ 6.3
+ ],
+ "measured_rgb": "#31765F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 20,
+ 40
+ ],
+ "measured_lab": [
+ 59.26,
+ -29.58,
+ 23.49
+ ],
+ "measured_rgb": "#659C64",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 25,
+ 35
+ ],
+ "measured_lab": [
+ 55.03,
+ -29.9,
+ 20.19
+ ],
+ "measured_rgb": "#569160",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 30,
+ 30
+ ],
+ "measured_lab": [
+ 52.18,
+ -28.85,
+ 16.83
+ ],
+ "measured_rgb": "#4F895F",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 35,
+ 25
+ ],
+ "measured_lab": [
+ 51.03,
+ -30.5,
+ 17.18
+ ],
+ "measured_rgb": "#48865B",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 40,
+ 40,
+ 20
+ ],
+ "measured_lab": [
+ 50.23,
+ -27.11,
+ 13.19
+ ],
+ "measured_rgb": "#4A8360",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 20,
+ 35
+ ],
+ "measured_lab": [
+ 59.6,
+ -28.48,
+ 25.96
+ ],
+ "measured_rgb": "#6A9C61",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 25,
+ 30
+ ],
+ "measured_lab": [
+ 56.1,
+ -28.9,
+ 21.55
+ ],
+ "measured_rgb": "#5D9360",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 30,
+ 25
+ ],
+ "measured_lab": [
+ 52.36,
+ -29.7,
+ 18.82
+ ],
+ "measured_rgb": "#4F8A5C",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 45,
+ 35,
+ 20
+ ],
+ "measured_lab": [
+ 50.32,
+ -30.46,
+ 18.03
+ ],
+ "measured_rgb": "#478558",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 20,
+ 30
+ ],
+ "measured_lab": [
+ 58.9,
+ -29.55,
+ 28.26
+ ],
+ "measured_rgb": "#689A5B",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 25,
+ 25
+ ],
+ "measured_lab": [
+ 55.52,
+ -29.56,
+ 25.37
+ ],
+ "measured_rgb": "#5D9258",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 50,
+ 30,
+ 20
+ ],
+ "measured_lab": [
+ 51.61,
+ -30.92,
+ 22.57
+ ],
+ "measured_rgb": "#4D8853",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 20,
+ 25
+ ],
+ "measured_lab": [
+ 57.98,
+ -30.58,
+ 31.16
+ ],
+ "measured_rgb": "#659853",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 55,
+ 25,
+ 20
+ ],
+ "measured_lab": [
+ 55.14,
+ -30.46,
+ 27.15
+ ],
+ "measured_rgb": "#5B9153",
+ "source": "measured"
+ },
+ {
+ "mode": "RYBW",
+ "material": "PLA Basic",
+ "components": [
+ {
+ "key": "Yellow",
+ "rgb": "#F4EE2A"
+ },
+ {
+ "key": "Blue",
+ "rgb": "#0A2989"
+ },
+ {
+ "key": "White",
+ "rgb": "#FFFFFF"
+ }
+ ],
+ "ratios": [
+ 60,
+ 20,
+ 20
+ ],
+ "measured_lab": [
+ 57.58,
+ -31.03,
+ 33.45
+ ],
+ "measured_rgb": "#65974D",
+ "source": "measured"
+ }
+ ]
+}
diff --git a/resources/profiles/Qidi.json b/resources/profiles/Qidi.json
index 08a2d6a230..ecceff5a8a 100644
--- a/resources/profiles/Qidi.json
+++ b/resources/profiles/Qidi.json
@@ -1,6 +1,6 @@
{
"name": "Qidi",
- "version": "02.04.00.10",
+ "version": "02.04.00.11",
"force_update": "0",
"description": "Qidi configurations",
"machine_model_list": [
diff --git a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json
index e217915579..e268f6081c 100644
--- a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json
+++ b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json
@@ -20,6 +20,9 @@
"close_fan_the_first_x_layers": [
"3"
],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
"fan_cooling_layer_time": [
"10"
],
diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json
index 83cd3e27cb..2bf1ca53fc 100644
--- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json
+++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json
@@ -20,6 +20,9 @@
"close_fan_the_first_x_layers": [
"3"
],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
"fan_cooling_layer_time": [
"10"
],
diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json
index 8a35c7330b..37afc97c29 100644
--- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json
+++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json
@@ -20,6 +20,9 @@
"close_fan_the_first_x_layers": [
"3"
],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
"fan_cooling_layer_time": [
"10"
],
diff --git a/resources/profiles/Snapmaker.json b/resources/profiles/Snapmaker.json
index ab2433242e..9a6fab7942 100644
--- a/resources/profiles/Snapmaker.json
+++ b/resources/profiles/Snapmaker.json
@@ -1,6 +1,6 @@
{
"name": "Snapmaker",
- "version": "02.04.00.08",
+ "version": "02.04.00.09",
"force_update": "0",
"description": "Snapmaker configurations",
"machine_model_list": [
diff --git a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.2 nozzle).json
index aebc032855..183e125c73 100644
--- a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.2 nozzle).json
+++ b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.2 nozzle).json
@@ -186,7 +186,6 @@
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\nTIMELAPSE_TAKE_FRAME\nDEFECT_DETECTION_DETECT",
"machine_pause_gcode": "M600",
"nozzle_volume": "143",
- "support_multi_bed_types": "0",
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]\nSET_PRINT_STATS_INFO TOTAL_LAYER={total_layer_count} CURRENT_LAYER={layer_num+1}",
"default_print_profile": "0.10 Standard @Snapmaker U1 (0.2 nozzle)"
}
diff --git a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4 nozzle).json
index 28ccfd0a29..6d2ec2cfe6 100644
--- a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4 nozzle).json
+++ b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4 nozzle).json
@@ -186,7 +186,6 @@
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\nTIMELAPSE_TAKE_FRAME\nDEFECT_DETECTION_DETECT",
"default_print_profile": "0.20 Standard @Snapmaker U1 (0.4 nozzle)",
"machine_pause_gcode": "M600",
- "default_bed_type": "Textured PEI Plate",
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]\nSET_PRINT_STATS_INFO TOTAL_LAYER={total_layer_count} CURRENT_LAYER={layer_num+1}",
"nozzle_volume": "143",
"resonance_avoidance": "1",
diff --git a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.6 nozzle).json
index f4dff2f357..a6cb0d0bd3 100644
--- a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.6 nozzle).json
+++ b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.6 nozzle).json
@@ -187,6 +187,5 @@
"machine_pause_gcode": "M600",
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]\nSET_PRINT_STATS_INFO TOTAL_LAYER={total_layer_count} CURRENT_LAYER={layer_num+1}",
"nozzle_volume": "143",
- "support_multi_bed_types": "0",
"default_print_profile": "0.30 Standard @Snapmaker U1 (0.6 nozzle)"
}
diff --git a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.8 nozzle).json
index e356f4264b..ef4da1a516 100644
--- a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.8 nozzle).json
+++ b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.8 nozzle).json
@@ -187,6 +187,5 @@
"machine_pause_gcode": "M600",
"layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]\nSET_PRINT_STATS_INFO TOTAL_LAYER={total_layer_count} CURRENT_LAYER={layer_num+1}",
"nozzle_volume": "143",
- "support_multi_bed_types": "0",
"default_print_profile": "0.40 Standard @Snapmaker U1 (0.8 nozzle)"
}
diff --git a/resources/profiles/Snapmaker/machine/fdm_U1.json b/resources/profiles/Snapmaker/machine/fdm_U1.json
index 7ee65878e6..717215b507 100644
--- a/resources/profiles/Snapmaker/machine/fdm_U1.json
+++ b/resources/profiles/Snapmaker/machine/fdm_U1.json
@@ -183,7 +183,8 @@
"scan_first_layer": "0",
"nozzle_type": "undefine",
"auxiliary_fan": "0",
- "default_bed_type": "Textured PEI Plate",
+ "support_multi_bed_types": "1",
+ "default_bed_type": "4",
"printable_area": [
"0.5x1",
"270.5x1",
diff --git a/scripts/build_preset_cache.bat b/scripts/build_preset_cache.bat
new file mode 100644
index 0000000000..82f3e02723
--- /dev/null
+++ b/scripts/build_preset_cache.bat
@@ -0,0 +1,141 @@
+@echo off
+rem Build the per-vendor system preset caches (one .opc per vendor) by
+rem running the generate_system_cache.exe dev tool against a profiles directory,
+rem and make every profiles directory named on the command line ship-ready:
+rem install the caches into it and delete the preset JSONs they replace, so a
+rem build ships one copy of its presets instead of two.
+rem
+rem scripts\build_preset_cache.bat [build_dir] [target_dir ...]
+rem
+rem build_dir defaults to "build"
+rem target_dir profiles directories to ship into. Caches are generated into
+rem the source tree's resources\profiles, which is what every
+rem packaging step copies from; a target may be that same
+rem directory, which then only gets pruned.
+rem --prune-source
+rem allow a target that is the directory the caches were generated
+rem into (resources\profiles). Pruning it deletes the checkout's
+rem own preset JSONs, which is a packaging step - not something a
+rem build should do to a working tree by surprise. CI passes it.
+rem
+rem Shipping deletes, so it is a CI packaging step. A vendor's own .json
+rem goes along with its preset JSONs: the cache carries the vendor profile and
+rem the version it was built at, so discovery, version checks and installing all
+rem read it there. Only a vendor that has a cache is pruned, so non-vendor JSONs
+rem (blacklist.json) are left alone, as are the vendor directories themselves -
+rem thumbnails, covers and bed models still live there.
+rem
+rem set CONFIG= to pin the build config for multi-config generators
+rem (default: the config of the tool already in the build tree, else Release)
+setlocal enabledelayedexpansion
+
+set "REPO_ROOT=%~dp0.."
+
+set "PRUNE_SOURCE="
+:parse_flags
+if /i "%~1"=="--prune-source" (
+ set "PRUNE_SOURCE=1"
+ shift
+ goto :parse_flags
+)
+
+set "BUILD_DIR=%~1"
+if "%BUILD_DIR%"=="" set "BUILD_DIR=build"
+if not exist "%BUILD_DIR%\" (
+ echo ERROR: build tree not found: %BUILD_DIR% 1>&2
+ exit /b 1
+)
+if not "%~1"=="" shift
+
+rem Newest match wins: a stale binary silently produces a stale cache layout.
+call :find_tool
+if not defined CONFIG (
+ for %%c in (Debug Release RelWithDebInfo MinSizeRel) do (
+ echo !TOOL! | findstr /i "\\%%c\\" >nul && set "CONFIG=%%c"
+ )
+)
+if not defined CONFIG set "CONFIG=Release"
+
+echo Building generate_system_cache in %BUILD_DIR% (%CONFIG%)
+cmake --build "%BUILD_DIR%" --config %CONFIG% --target generate_system_cache
+if errorlevel 1 (
+ echo ERROR: could not build generate_system_cache - configure the build tree with -DORCA_TOOLS=ON: 1>&2
+ echo cmake -S "%REPO_ROOT%" -B "%BUILD_DIR%" -DORCA_TOOLS=ON 1>&2
+ exit /b 1
+)
+call :find_tool
+if not defined TOOL (
+ echo ERROR: generate_system_cache.exe not found under %BUILD_DIR% - build with -DORCA_TOOLS=ON 1>&2
+ exit /b 1
+)
+
+set "PROFILES=%REPO_ROOT%\resources\profiles"
+if not exist "%PROFILES%\" (
+ echo ERROR: profiles directory not found: %PROFILES% 1>&2
+ exit /b 1
+)
+for %%d in ("%PROFILES%") do set "PROFILES=%%~fd"
+
+rem Add the slicer's runtime DLL directory to PATH so generate_system_cache.exe
+rem can resolve its dependencies (TKernel.dll etc.) without a full install step.
+set "DLL_DIR="
+for /f "delims=" %%f in ('dir /s /b "%BUILD_DIR%\TKernel.dll" 2^>nul') do (
+ if not defined DLL_DIR set "DLL_DIR=%%~dpf"
+)
+if defined DLL_DIR set "PATH=%DLL_DIR%;%PATH%"
+
+echo Generating per-vendor preset caches in %PROFILES%
+rem Start clean so vendors that went away - and caches written by older tool
+rem versions - don't linger next to the freshly generated ones.
+del /q "%PROFILES%\*.opc" 2>nul
+del /q "%PROFILES%\*.cache" 2>nul
+"%TOOL%" --path "%PROFILES%" --log_level 2
+if errorlevel 1 exit /b %errorlevel%
+
+:next_target
+if "%~1"=="" exit /b 0
+call :ship "%~1"
+if errorlevel 1 exit /b 1
+shift
+goto :next_target
+
+:ship
+set "TARGET=%~1"
+if not exist "%TARGET%\" (
+ echo ERROR: profiles directory not found: %TARGET% 1>&2
+ exit /b 1
+)
+for %%d in ("%TARGET%") do set "TARGET=%%~fd"
+if /i "%TARGET%"=="%PROFILES%" if not defined PRUNE_SOURCE (
+ echo %TARGET%: skipped - this is where the caches were generated.
+ echo Pass --prune-source to prune it; that deletes this checkout's preset JSONs.
+ exit /b 0
+)
+if /i not "%TARGET%"=="%PROFILES%" copy /y "%PROFILES%\*.opc" "%TARGET%\" >nul
+
+set /a SHIPPED=0
+set /a PRUNED=0
+for %%c in ("%PROFILES%\*.opc") do (
+ set /a SHIPPED+=1
+ set "VENDOR=%%~nc"
+ if exist "%TARGET%\!VENDOR!.json" (
+ del /q "%TARGET%\!VENDOR!.json"
+ set /a PRUNED+=1
+ )
+ if exist "%TARGET%\!VENDOR!\" (
+ for /f %%n in ('dir /s /b "%TARGET%\!VENDOR!\*.json" 2^>nul ^| find /c /v ""') do set /a PRUNED+=%%n
+ del /s /q "%TARGET%\!VENDOR!\*.json" >nul 2>&1
+ rem Deepest first, so a directory the delete above emptied goes too; rd
+ rem refuses the ones still holding covers or meshes.
+ for /f "delims=" %%d in ('dir /s /b /ad "%TARGET%\!VENDOR!" 2^>nul ^| sort /r') do rd "%%d" 2>nul
+ )
+)
+echo %TARGET%: !SHIPPED! caches, dropped !PRUNED! preset JSONs
+exit /b 0
+
+:find_tool
+set "TOOL="
+for /f "delims=" %%f in ('dir /s /b /o-d "%BUILD_DIR%\generate_system_cache.exe" 2^>nul') do (
+ if not defined TOOL set "TOOL=%%f"
+)
+exit /b 0
diff --git a/scripts/build_preset_cache.sh b/scripts/build_preset_cache.sh
new file mode 100755
index 0000000000..7a874f7e06
--- /dev/null
+++ b/scripts/build_preset_cache.sh
@@ -0,0 +1,161 @@
+#!/usr/bin/env bash
+# Build the per-vendor system preset caches (one .opc per vendor) by
+# running the generate_system_cache dev tool against a profiles directory, and
+# make every profiles directory named on the command line ship-ready: install
+# the caches into it and delete the preset JSONs they replace, so a build ships
+# one copy of its presets instead of two.
+#
+# ./scripts/build_preset_cache.sh # caches into resources/profiles
+# ./scripts/build_preset_cache.sh -b build/arm64 # search this build tree for the tool
+# ./scripts/build_preset_cache.sh [ ...] # and ship into these profiles dirs
+#
+# Caches are generated into the source tree's resources/profiles, which is what
+# every packaging step copies from. Shipping deletes, so it is a CI packaging
+# step: pass packaged output directories, or the checkout of a build that is
+# about to be packaged from it.
+#
+# A vendor's own .json goes along with its preset JSONs: the cache
+# carries the vendor profile and the version it was built at, so discovery,
+# version checks and installing all read it there. A shipped vendor is its cache
+# and nothing else. Only a vendor that has a cache is pruned, so an ungenerated
+# vendor keeps its JSONs and is simply parsed at startup; non-vendor JSONs
+# (blacklist.json) are left alone, as are the vendor directories themselves —
+# thumbnails, covers and bed models still live there.
+#
+# -b build tree holding the tool
+# (default: build/arm64, build/x86_64, or build — first that exists)
+# -p profiles directory to generate caches into
+# (default: /resources/profiles)
+# -c build config for multi-config generators
+# (default: the config of the tool already in the build tree, else
+# the build tree's CMAKE_BUILD_TYPE)
+# -n skip the rebuild and run the tool already in the build tree
+# -l tool log level (default: 2)
+# --prune-source
+# allow a target that is the directory the caches were generated
+# into (resources/profiles). Pruning it deletes the checkout's own
+# preset JSONs, which is a packaging step - not something a build
+# should do to a working tree by surprise.
+set -euo pipefail
+
+repo_root="$(cd "$(dirname "$0")/.." && pwd -P)"
+build_dir=""
+profiles_dir=""
+config=""
+build_tool=1
+log_level=2
+prune_source=0
+
+# getopts does not do long options; pull this one out first.
+args=()
+for arg in "$@"; do
+ if [ "$arg" = "--prune-source" ]; then prune_source=1; else args+=("$arg"); fi
+done
+set -- ${args+"${args[@]}"}
+
+while getopts "b:p:c:l:nh" opt; do
+ case $opt in
+ b) build_dir="$OPTARG" ;;
+ p) profiles_dir="$OPTARG" ;;
+ c) config="$OPTARG" ;;
+ n) build_tool=0 ;;
+ l) log_level="$OPTARG" ;;
+ h) sed -n '2,${/^#/!q;p;}' "$0" | sed 's/^# \{0,1\}//'; exit 0 ;;
+ *) exit 1 ;;
+ esac
+done
+shift $((OPTIND - 1))
+
+if [ -z "$build_dir" ]; then
+ for candidate in "$repo_root/build/arm64" "$repo_root/build/x86_64" "$repo_root/build"; do
+ if [ -d "$candidate" ]; then build_dir="$candidate"; break; fi
+ done
+fi
+if [ -z "$build_dir" ] || [ ! -d "$build_dir" ]; then
+ echo "ERROR: build tree not found (pass -b )" >&2
+ exit 1
+fi
+
+# Newest match wins: multi-config trees keep one binary per config, and a stale
+# one silently produces a stale cache layout.
+find_tool() {
+ local best="" f
+ while IFS= read -r f; do
+ [ -n "$f" ] || continue
+ if [ -z "$best" ] || [ "$f" -nt "$best" ]; then best="$f"; fi
+ done < <(find "$build_dir" -name generate_system_cache -type f 2>/dev/null)
+ printf '%s' "$best"
+}
+
+tool=$(find_tool)
+if [ -z "$config" ]; then
+ case "$tool" in
+ */Debug/*) config=Debug ;;
+ */Release/*) config=Release ;;
+ */RelWithDebInfo/*) config=RelWithDebInfo ;;
+ */MinSizeRel/*) config=MinSizeRel ;;
+ *) config=$(sed -n 's/^CMAKE_BUILD_TYPE:[A-Z]*=\(.\+\)$/\1/p' "$build_dir/CMakeCache.txt" 2>/dev/null | head -1 || true) ;;
+ esac
+fi
+
+if [ "$build_tool" = 1 ]; then
+ echo "Building generate_system_cache in $build_dir${config:+ ($config)}"
+ build_args=(--build "$build_dir" --target generate_system_cache)
+ if [ -n "$config" ]; then build_args+=(--config "$config"); fi
+ if ! cmake "${build_args[@]}"; then
+ echo "ERROR: could not build generate_system_cache — configure the build tree with -DORCA_TOOLS=ON:" >&2
+ echo " cmake -S \"$repo_root\" -B \"$build_dir\" -DORCA_TOOLS=ON" >&2
+ exit 1
+ fi
+ tool=$(find_tool)
+fi
+
+if [ -z "$tool" ]; then
+ echo "ERROR: generate_system_cache not found under $build_dir — build with -DORCA_TOOLS=ON" >&2
+ exit 1
+fi
+
+if [ -z "$profiles_dir" ]; then profiles_dir="$repo_root/resources/profiles"; fi
+if [ ! -d "$profiles_dir" ]; then
+ echo "ERROR: profiles directory not found: $profiles_dir" >&2
+ exit 1
+fi
+profiles_dir=$(cd "$profiles_dir" && pwd -P)
+
+# Start clean so vendors that went away — and caches written by older tool
+# versions — don't linger next to the freshly generated ones.
+echo "Generating per-vendor preset caches in $profiles_dir"
+rm -f "$profiles_dir"/*.opc "$profiles_dir"/*.cache
+"$tool" --path "$profiles_dir" --log_level "$log_level"
+
+for target in "$@"; do
+ resolved=$(cd "$target" 2>/dev/null && pwd -P) || {
+ echo "ERROR: profiles directory not found: $target" >&2
+ exit 1
+ }
+ if [ "$resolved" = "$profiles_dir" ] && [ "$prune_source" -eq 0 ]; then
+ echo "$resolved: skipped - this is where the caches were generated."
+ echo " Pass --prune-source to prune it; that deletes this checkout's preset JSONs."
+ continue
+ fi
+ if [ "$resolved" != "$profiles_dir" ]; then
+ cp "$profiles_dir"/*.opc "$resolved"/
+ fi
+
+ pruned=0
+ shipped=0
+ for cache in "$profiles_dir"/*.opc; do
+ vendor=$(basename "$cache" .opc)
+ shipped=$(( shipped + 1 ))
+ if [ -f "$resolved/$vendor.json" ]; then
+ rm -f "$resolved/$vendor.json"
+ pruned=$(( pruned + 1 ))
+ fi
+ [ -d "$resolved/$vendor" ] || continue
+ n=$(find "$resolved/$vendor" -name '*.json' | wc -l)
+ find "$resolved/$vendor" -name '*.json' -delete
+ find "$resolved/$vendor" -type d -empty -delete
+ pruned=$(( pruned + n ))
+ done
+ echo "$resolved: $shipped caches, dropped $pruned preset JSONs"
+done
diff --git a/scripts/flatpak/com.orcaslicer.OrcaSlicer.yml b/scripts/flatpak/com.orcaslicer.OrcaSlicer.yml
index 3cbd311fcd..a3efaced8c 100644
--- a/scripts/flatpak/com.orcaslicer.OrcaSlicer.yml
+++ b/scripts/flatpak/com.orcaslicer.OrcaSlicer.yml
@@ -276,6 +276,12 @@ modules:
sha256: 27b72ba2d5ff3d0a9814ad40d4cb88f8dc89a35491c0866d952473f8f9416b77
dest: external-packages/Draco
+ # Assimp 5.4.3
+ - type: file
+ url: https://github.com/assimp/assimp/archive/refs/tags/v5.4.3.tar.gz
+ sha256: 66dfbaee288f2bc43172440a55d0235dfc7bf885dda6435c038e8000e79582cb
+ dest: external-packages/Assimp
+
# OpenSSL 1.1.1w (GNOME SDK has 3.x; OrcaSlicer requires 1.1.x)
- type: file
url: https://github.com/openssl/openssl/archive/OpenSSL_1_1_1w.tar.gz
@@ -353,6 +359,7 @@ modules:
- |
cmake . -B build_flatpak \
-DFLATPAK=ON \
+ -DORCA_TOOLS=ON \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_PREFIX_PATH=/app \
-DCMAKE_INSTALL_PREFIX=/app \
@@ -363,6 +370,13 @@ modules:
- ./scripts/run_gettext.sh
- cmake --build build_flatpak --target install -j$FLATPAK_BUILDER_N_JOBS
+ # Per-vendor preset caches. On the other platforms CI runs this script
+ # itself; the flatpak is built inside flatpak-builder and the generator
+ # only exists in here, so the swap is a build step instead, against the
+ # profiles the install above copied into /app.
+ - cmake --build build_flatpak --target generate_system_cache -j$FLATPAK_BUILDER_N_JOBS
+ - ./scripts/build_preset_cache.sh -n -b build_flatpak /app/share/OrcaSlicer/profiles
+
cleanup:
- /include
@@ -409,6 +423,9 @@ modules:
- type: file
path: ../run_gettext.sh
dest: scripts
+ - type: file
+ path: ../build_preset_cache.sh
+ dest: scripts
# AppData metainfo for GNOME Software & Co.
- type: file
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 4a381663e9..0036af0a8c 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -256,14 +256,6 @@ if (WIN32)
VERBATIM
)
endforeach ()
-
- if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
- orcaslicer_copy_dlls(COPY_DLLS "Debug" "d" output_dlls_Debug)
- elseif("${CMAKE_BUILD_TYPE}" STREQUAL "RelWithDebInfo")
- orcaslicer_copy_dlls(COPY_DLLS "RelWithDebInfo" "" output_dlls_Release)
- else()
- orcaslicer_copy_dlls(COPY_DLLS "Release" "" output_dlls_Release)
- endif()
else ()
file(TO_NATIVE_PATH "${CMAKE_CURRENT_BINARY_DIR}/resources" WIN_RESOURCES_SYMLINK)
add_custom_command(TARGET OrcaSlicer POST_BUILD
@@ -279,6 +271,27 @@ if (WIN32)
COMMENT "Copying Python runtime into the build tree"
VERBATIM)
+ if (CMAKE_CONFIGURATION_TYPES)
+ # Multi-config generators (Visual Studio, Ninja Multi-Config): copy per config.
+ foreach (cfg ${CMAKE_CONFIGURATION_TYPES})
+ if ("${cfg}" STREQUAL "Debug")
+ orcaslicer_copy_dlls(COPY_DLLS "Debug" "d" output_dlls_Debug)
+ elseif("${cfg}" STREQUAL "RelWithDebInfo")
+ orcaslicer_copy_dlls(COPY_DLLS "RelWithDebInfo" "" output_dlls_RelWithDebInfo)
+ else()
+ orcaslicer_copy_dlls(COPY_DLLS "${cfg}" "" output_dlls_${cfg})
+ endif()
+ endforeach()
+ else()
+ # Single-config generators (Ninja): use CMAKE_BUILD_TYPE.
+ if ("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
+ orcaslicer_copy_dlls(COPY_DLLS "Debug" "d" output_dlls_Debug)
+ elseif("${CMAKE_BUILD_TYPE}" STREQUAL "RelWithDebInfo")
+ orcaslicer_copy_dlls(COPY_DLLS "RelWithDebInfo" "" output_dlls_RelWithDebInfo)
+ else()
+ orcaslicer_copy_dlls(COPY_DLLS "Release" "" output_dlls_Release)
+ endif()
+ endif()
else ()
if (NOT APPLE)
diff --git a/src/OrcaSlicer.cpp b/src/OrcaSlicer.cpp
index 71d6ffde80..8176e9f444 100644
--- a/src/OrcaSlicer.cpp
+++ b/src/OrcaSlicer.cpp
@@ -3,7 +3,9 @@
#define _WIN32_WINNT 0x0502
// The standard Windows includes.
#define WIN32_LEAN_AND_MEAN
+ #ifndef NOMINMAX
#define NOMINMAX
+ #endif
#include
#include
#include
diff --git a/src/OrcaSlicer_app_msvc.cpp b/src/OrcaSlicer_app_msvc.cpp
index b1e498f4e4..35568a9cfa 100644
--- a/src/OrcaSlicer_app_msvc.cpp
+++ b/src/OrcaSlicer_app_msvc.cpp
@@ -2,7 +2,9 @@
#define _WIN32_WINNT 0x0502
// The standard Windows includes.
#define WIN32_LEAN_AND_MEAN
+#ifndef NOMINMAX
#define NOMINMAX
+#endif
#include
#include
#include
diff --git a/src/dev-utils/BaseException.cpp b/src/dev-utils/BaseException.cpp
index f33c8f635f..efb7a98245 100644
--- a/src/dev-utils/BaseException.cpp
+++ b/src/dev-utils/BaseException.cpp
@@ -69,7 +69,7 @@ void CBaseException::OutputString(LPCTSTR lpszFormat, ...)
//WriteConsole(GetStdHandle(STD_OUTPUT_HANDLE), szBuf, _tcslen(szBuf), NULL, NULL);
//output it to the current directory of binary
- std::string output_str = textconv_helper::T2A_(szBuf);
+ std::string output_str = static_cast(textconv_helper::T2A_(szBuf));
*output_file << output_str;
output_file->flush();
}
diff --git a/src/dev-utils/CMakeLists.txt b/src/dev-utils/CMakeLists.txt
index e3534a024a..2cfce6a7c5 100644
--- a/src/dev-utils/CMakeLists.txt
+++ b/src/dev-utils/CMakeLists.txt
@@ -20,6 +20,16 @@ if (SLIC3R_ENC_CHECK)
)
endif()
+if (ORCA_TOOLS)
+ set(_DEV_DEFS -DBOOST_ALL_NO_LIB -DBOOST_USE_WINAPI_VERSION=0x602 -DBOOST_SYSTEM_USE_UTF8)
+
+ # generate_system_cache: pre-generates per-vendor .opc files under resources/profiles for CI bundling.
+ add_executable(generate_system_cache generate_system_cache.cpp)
+ target_link_libraries(generate_system_cache libslic3r boost_headeronly)
+ target_compile_definitions(generate_system_cache PRIVATE ${_DEV_DEFS})
+
+endif()
+
# Function that adds source file encoding check to a target
# using the above encoding-check binary
diff --git a/src/dev-utils/generate_system_cache.cpp b/src/dev-utils/generate_system_cache.cpp
new file mode 100644
index 0000000000..426ccee997
--- /dev/null
+++ b/src/dev-utils/generate_system_cache.cpp
@@ -0,0 +1,84 @@
+#include "libslic3r/PresetBundle.hpp"
+#include "libslic3r/Preset.hpp"
+#include "libslic3r/Utils.hpp"
+
+#include
+#include
+#include
+#include
+#include
+
+using namespace Slic3r;
+namespace fs = boost::filesystem;
+namespace po = boost::program_options;
+
+int main(int argc, char* argv[])
+{
+ po::options_description desc("OrcaSlicer System Cache Generator\nUsage");
+ // clang-format off
+ desc.add_options()
+ ("help,h", "Show help")
+#ifdef __APPLE__
+ ("path,p", po::value()->default_value("../../../../../../../resources/profiles"), "Path to profiles directory")
+#else
+ ("path,p", po::value()->default_value("../../../resources/profiles"), "Path to profiles directory")
+#endif
+ ("log_level,l", po::value()->default_value(2), "Log level (0=trace, 2=info, 4=error)");
+ // clang-format on
+
+ po::variables_map vm;
+ try {
+ po::store(po::parse_command_line(argc, argv, desc), vm);
+ if (vm.count("help")) { std::cout << desc << "\n"; return 0; }
+ po::notify(vm);
+ } catch (const po::error& e) {
+ std::cerr << "Error: " << e.what() << "\n" << desc << "\n";
+ return 1;
+ }
+
+ const std::string profiles_path = vm["path"].as();
+ const int log_level = vm["log_level"].as();
+
+ if (!fs::exists(profiles_path) || !fs::is_directory(profiles_path)) {
+ std::cerr << "Error: '" << profiles_path << "' is not a valid directory\n";
+ return 1;
+ }
+
+ set_logging_level(log_level);
+ set_data_dir(profiles_path);
+ set_resources_dir(fs::path(profiles_path).parent_path().make_preferred().string());
+
+ const fs::path user_dir = fs::path(data_dir()) / PRESET_USER_DIR;
+ if (!fs::exists(user_dir))
+ fs::create_directories(user_dir);
+
+ AppConfig app_config;
+ app_config.set("preset_folder", "default");
+
+ auto preset_bundle = std::make_unique();
+ preset_bundle->set_is_validation_mode(true);
+ preset_bundle->set_default_suppressed(true);
+ preset_bundle->set_generate_vendor_caches(true);
+
+ std::cout << "Loading system presets from: " << profiles_path << "\n";
+
+ try {
+ // In validation mode data_dir() is the profiles directory set above, so the
+ // loader writes each .opc next to its .json as it parses it.
+ preset_bundle->load_presets(app_config, ForwardCompatibilitySubstitutionRule::EnableSilent);
+ } catch (const std::exception& ex) {
+ std::cerr << "Failed to load presets: " << ex.what() << "\n";
+ return 1;
+ }
+
+ size_t cache_count = 0;
+ for (auto& entry : fs::directory_iterator(profiles_path))
+ if (boost::iends_with(entry.path().string(), ".opc"))
+ ++ cache_count;
+ if (cache_count == 0) {
+ std::cerr << "No vendor cache files were generated under " << profiles_path << "\n";
+ return 1;
+ }
+ std::cout << "Generated " << cache_count << " vendor cache file(s) under " << profiles_path << "\n";
+ return 0;
+}
diff --git a/src/libslic3r/AppConfig.cpp b/src/libslic3r/AppConfig.cpp
index a5d0e24eac..2d0c6a5d8d 100644
--- a/src/libslic3r/AppConfig.cpp
+++ b/src/libslic3r/AppConfig.cpp
@@ -280,6 +280,9 @@ void AppConfig::set_defaults()
set(SETTING_OPENGL_FPS_CAP, std::to_string(fps_cap));
}
+ // The getter already defaults, parses and clamps; write back what it resolves to.
+ set(SETTING_PLUGIN_PAGES_VISIBLE_COUNT, std::to_string(get_plugin_pages_visible_count()));
+
if (get(SETTING_OPENGL_SHOW_FPS_OVERLAY).empty())
set_bool(SETTING_OPENGL_SHOW_FPS_OVERLAY, false);
@@ -853,6 +856,10 @@ std::string AppConfig::load()
local_machine.dev_ip = p["dev_ip"].get();
if (p.contains("printer_type"))
local_machine.printer_type = p["printer_type"].get();
+ if (p.contains("printer_agent_id"))
+ local_machine.printer_agent_id = p["printer_agent_id"].get();
+ if (p.contains("access_code"))
+ local_machine.access_code = p["access_code"].get();
m_local_machines[local_machine.dev_id] = local_machine;
}
} else {
@@ -1065,6 +1072,8 @@ void AppConfig::save()
m_json["dev_name"] = local_machine.second.dev_name;
m_json["dev_ip"] = local_machine.second.dev_ip;
m_json["printer_type"] = local_machine.second.printer_type;
+ m_json["printer_agent_id"] = local_machine.second.printer_agent_id;
+ m_json["access_code"] = local_machine.second.access_code;
j["local_machines"][local_machine.first] = m_json;
}
@@ -1630,6 +1639,22 @@ void AppConfig::set_network_plugin_version(const std::string& version)
set(SETTING_NETWORK_PLUGIN_VERSION, version);
}
+int AppConfig::get_plugin_pages_visible_count() const
+{
+ std::string value = get(SETTING_PLUGIN_PAGES_VISIBLE_COUNT);
+ if (value.empty())
+ return PLUGIN_PAGES_VISIBLE_COUNT_DEFAULT;
+
+ int visible_count = PLUGIN_PAGES_VISIBLE_COUNT_DEFAULT;
+ try {
+ visible_count = std::stoi(value);
+ }
+ catch (...) {
+ return PLUGIN_PAGES_VISIBLE_COUNT_DEFAULT;
+ }
+ return std::clamp(visible_count, PLUGIN_PAGES_VISIBLE_COUNT_MIN, PLUGIN_PAGES_VISIBLE_COUNT_MAX);
+}
+
std::vector AppConfig::get_skipped_network_versions() const
{
std::vector result;
diff --git a/src/libslic3r/AppConfig.hpp b/src/libslic3r/AppConfig.hpp
index 2c83ebb488..0a278f4f1f 100644
--- a/src/libslic3r/AppConfig.hpp
+++ b/src/libslic3r/AppConfig.hpp
@@ -41,6 +41,11 @@ using namespace nlohmann;
#define SETTING_OPENGL_PHONG_SSAO "opengl_phong_ssao"
#define SETTING_OPENGL_PHONG_SMOOTH_NORMALS "opengl_phong_smooth_normals"
+#define SETTING_PLUGIN_PAGES_VISIBLE_COUNT "plugin_pages_visible_count"
+#define PLUGIN_PAGES_VISIBLE_COUNT_MIN 1
+#define PLUGIN_PAGES_VISIBLE_COUNT_DEFAULT 5
+#define PLUGIN_PAGES_VISIBLE_COUNT_MAX 10
+
#if defined(_WIN32) || defined(_WIN64)
#define BAMBU_NETWORK_AGENT_VERSION_LEGACY "01.10.01.09"
#else
@@ -61,10 +66,19 @@ struct BBLocalMachine
std::string dev_ip;
std::string dev_id; /* serial number */
std::string printer_type; /* model_id */
+ std::string printer_agent_id; /* id of the IPrinterAgent that discovered/bound this device, e.g. "bbl"; empty for entries persisted before this field existed */
+ // Access code, scoped to printer_agent_id above - so a code saved while bound under one
+ // printer agent isn't treated as valid for a different, independent agent talking to the
+ // same physical dev_id. Empty for entries persisted before this field existed; those fall
+ // back to the legacy flat "access_code"/"user_access_code" AppConfig sections (BBL-only,
+ // since BBL was the only agent when they were saved) - see
+ // get_access_code_with_legacy_fallback() in DevManager.cpp.
+ std::string access_code;
bool operator==(const BBLocalMachine& other) const
{
- return dev_name == other.dev_name && dev_ip == other.dev_ip && dev_id == other.dev_id && printer_type == other.printer_type;
+ return dev_name == other.dev_name && dev_ip == other.dev_ip && dev_id == other.dev_id && printer_type == other.printer_type &&
+ printer_agent_id == other.printer_agent_id && access_code == other.access_code;
}
bool operator!=(const BBLocalMachine& other) const { return !operator==(other); }
};
@@ -374,6 +388,10 @@ public:
std::string get_network_plugin_version() const;
void set_network_plugin_version(const std::string& version);
+ // Number of plugin pages shown as fixed tabs before the rest are collapsed into a
+ // dropdown on the last tab.
+ int get_plugin_pages_visible_count() const;
+
std::vector get_skipped_network_versions() const;
void add_skipped_network_version(const std::string& version);
bool is_network_version_skipped(const std::string& version) const;
diff --git a/src/libslic3r/Arachne/WallToolPaths.cpp b/src/libslic3r/Arachne/WallToolPaths.cpp
index 0a59619560..724016bcb1 100644
--- a/src/libslic3r/Arachne/WallToolPaths.cpp
+++ b/src/libslic3r/Arachne/WallToolPaths.cpp
@@ -154,8 +154,8 @@ void simplify(Polygon &thiss, const int64_t smallest_line_segment_squared, const
//h^2 = L^2 / b^2 [factor the divisor]
const int64_t height_2 = double(area_removed_so_far) * double(area_removed_so_far) / double(base_length_2);
// Orca: The value of `height_2` is squared, so we need to compare it with the squared value
- if ((height_2 <= Slic3r::sqr(scaled(0.005)) //Almost exactly colinear (barring rounding errors).
- && Line::distance_to_infinite(current, previous, next) <= scaled(0.005))) // make sure that height_2 is not small because of cancellation of positive and negative areas
+ if ((height_2 <= Slic3r::sqr(colinear_vertex_tolerance()) //Almost exactly colinear (barring rounding errors).
+ && Line::distance_to_infinite(current, previous, next) <= double(colinear_vertex_tolerance()))) // make sure that height_2 is not small because of cancellation of positive and negative areas
continue;
if (length2 < smallest_line_segment_squared
diff --git a/src/libslic3r/Arachne/utils/ExtrusionLine.cpp b/src/libslic3r/Arachne/utils/ExtrusionLine.cpp
index eebd5d5d1c..66bb707ebe 100644
--- a/src/libslic3r/Arachne/utils/ExtrusionLine.cpp
+++ b/src/libslic3r/Arachne/utils/ExtrusionLine.cpp
@@ -133,8 +133,8 @@ void ExtrusionLine::simplify(const int64_t smallest_line_segment_squared, const
const auto height_2 = int64_t(double(area_removed_so_far) * double(area_removed_so_far) / double(base_length_2));
const int64_t extrusion_area_error = calculateExtrusionAreaDeviationError(previous, current, next);
// Orca: The value of `height_2` is squared, so we need to compare it with the squared value
- if ((height_2 <= Slic3r::sqr(scaled(0.005)) // Almost exactly colinear (barring rounding errors).
- && Line::distance_to_infinite(current.p, previous.p, next.p) <= scaled(0.005)) // Make sure that height_2 is not small because of cancellation of positive and negative areas
+ if ((height_2 <= Slic3r::sqr(colinear_vertex_tolerance()) // Almost exactly colinear (barring rounding errors).
+ && Line::distance_to_infinite(current.p, previous.p, next.p) <= double(colinear_vertex_tolerance())) // Make sure that height_2 is not small because of cancellation of positive and negative areas
// We shouldn't remove middle junctions of colinear segments if the area changed for the C-P segment is exceeding the maximum allowed
&& extrusion_area_error <= maximum_extrusion_area_deviation)
{
diff --git a/src/libslic3r/Arachne/utils/ExtrusionLine.hpp b/src/libslic3r/Arachne/utils/ExtrusionLine.hpp
index 21791000f0..72e008cef1 100644
--- a/src/libslic3r/Arachne/utils/ExtrusionLine.hpp
+++ b/src/libslic3r/Arachne/utils/ExtrusionLine.hpp
@@ -32,6 +32,14 @@ class Flow;
namespace Slic3r::Arachne
{
+// ORCA: Tolerance of the "almost exactly colinear" early-out shared by the two simplify() passes
+// (this file and WallToolPaths.cpp). That test drops a vertex regardless of the user's Maximum wall
+// resolution/deviation, so it has to stay at the scale of coordinate rounding noise. A larger value
+// silently decimates finely tessellated curves: on a circle, one vertex may be removed whenever the
+// sagitta of the resulting chord falls below the tolerance, which halves the point count and turns
+// smooth arcs into corners the firmware has to decelerate through.
+inline coord_t colinear_vertex_tolerance() { return coord_t(SCALED_EPSILON); }
+
/*!
* Represents a polyline (not just a line) that is to be extruded with variable
* line width.
diff --git a/src/libslic3r/BoundingBox.cpp b/src/libslic3r/BoundingBox.cpp
index a2a510b64c..cf5441dace 100644
--- a/src/libslic3r/BoundingBox.cpp
+++ b/src/libslic3r/BoundingBox.cpp
@@ -8,6 +8,8 @@
namespace Slic3r {
template BoundingBoxBase::BoundingBoxBase(const Points &points);
+template void BoundingBoxBase::construct<0, BoundingBox, Points::const_iterator>(BoundingBox&, Points::const_iterator, Points::const_iterator);
+template void BoundingBoxBase::construct<1, BoundingBox, Points::const_iterator>(BoundingBox&, Points::const_iterator, Points::const_iterator);
template BoundingBoxBase::BoundingBoxBase(const std::vector &points);
template BoundingBox3Base::BoundingBox3Base(const std::vector &points);
diff --git a/src/libslic3r/CMakeLists.txt b/src/libslic3r/CMakeLists.txt
index 812d28e088..2880a3cc6b 100644
--- a/src/libslic3r/CMakeLists.txt
+++ b/src/libslic3r/CMakeLists.txt
@@ -149,6 +149,8 @@ set(lisbslic3r_sources
Fill/FillConcentric.hpp
Fill/FillConcentricInternal.cpp
Fill/FillConcentricInternal.hpp
+ Fill/FillCornerSmoothing.cpp
+ Fill/FillCornerSmoothing.hpp
Fill/Fill.cpp
Fill/FillCrossHatch.cpp
Fill/FillCrossHatch.hpp
@@ -177,6 +179,17 @@ set(lisbslic3r_sources
Fill/Lightning/Layer.hpp
Fill/Lightning/TreeNode.cpp
Fill/Lightning/TreeNode.hpp
+ FilamentMixer.cpp
+ FilamentMixer.hpp
+ FilamentMixerModel.hpp
+ ColorDecomposeRecipe.cpp
+ ColorDecomposeRecipe.hpp
+ TexturePainting.hpp
+ TexturePainting.cpp
+ TextureToColor/TextureToColor.hpp
+ TextureToColor/TextureToColor.cpp
+ TextureToColor/ColorUtils.hpp
+ TextureToColor/ColorUtils.cpp
Flow.cpp
Flow.hpp
FlushVolCalc.cpp
@@ -192,6 +205,9 @@ set(lisbslic3r_sources
format.hpp
Format/OBJ.cpp
Format/OBJ.hpp
+ Format/AssimpImport.hpp
+ Format/AssimpImport.cpp
+ Format/ResourcePathUtils.hpp
Format/objparser.cpp
Format/objparser.hpp
Format/SL1.cpp
@@ -346,6 +362,8 @@ set(lisbslic3r_sources
Polyline.hpp
PresetBundle.cpp
PresetBundle.hpp
+ PresetCacheFormat.cpp
+ PresetCacheFormat.hpp
Preset.cpp
Preset.hpp
PrincipalComponents2D.cpp
@@ -505,6 +523,7 @@ cmake_policy(SET CMP0011 NEW)
set(CMAKE_POLICY_DEFAULT_CMP0167 NEW)
find_package(CGAL REQUIRED)
find_package(OpenCV REQUIRED core)
+find_package(assimp REQUIRED)
unset(CMAKE_POLICY_DEFAULT_CMP0167)
cmake_policy(POP)
@@ -545,7 +564,7 @@ target_compile_definitions(libslic3r PUBLIC -DUSE_TBB -DTBB_USE_CAPTURED_EXCEPTI
if (USE_SLIC3R_CONSOLE_LOG)
target_compile_definitions(libslic3r PRIVATE $<$:SLIC3R_CONSOLE_LOG>)
endif()
-target_include_directories(libslic3r PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} PUBLIC ${CMAKE_CURRENT_BINARY_DIR})
+target_include_directories(libslic3r PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/TextureToColor PUBLIC ${CMAKE_CURRENT_BINARY_DIR})
target_include_directories(libslic3r SYSTEM PUBLIC ${EXPAT_INCLUDE_DIRS})
# Find the OCCT and related libraries
@@ -593,6 +612,7 @@ target_link_libraries(libslic3r
libnest2d
miniz
opencv_world
+ assimp::assimp
PRIVATE
${CMAKE_DL_LIBS}
${EXPAT_LIBRARIES}
diff --git a/src/libslic3r/ColorDecomposeRecipe.cpp b/src/libslic3r/ColorDecomposeRecipe.cpp
new file mode 100644
index 0000000000..f2ceb1860a
--- /dev/null
+++ b/src/libslic3r/ColorDecomposeRecipe.cpp
@@ -0,0 +1,530 @@
+#include "ColorDecomposeRecipe.hpp"
+
+#include "FilamentMixer.hpp"
+#include "Utils.hpp"
+#include "nlohmann/json.hpp"
+
+#include
+#include
+#include
+#include
+#include
+#include
+
+namespace Slic3r {
+namespace {
+
+struct LabColor {
+ double l{0.0};
+ double a{0.0};
+ double b{0.0};
+};
+
+struct StandardRecipeEntry {
+ ColorDecomposeRecipeMode mode{ColorDecomposeRecipeMode::CMYW};
+ std::string material;
+ std::string source;
+ std::vector component_keys;
+ std::vector component_hexes;
+ std::vector ratios;
+ std::string measured_hex;
+ LabColor measured_lab;
+};
+
+static double srgb_to_linear(double v)
+{
+ v /= 255.0;
+ return v <= 0.04045 ? v / 12.92 : std::pow((v + 0.055) / 1.055, 2.4);
+}
+
+static double xyz_to_lab_component(double v)
+{
+ constexpr double eps = 216.0 / 24389.0;
+ constexpr double kappa = 24389.0 / 27.0;
+ return v > eps ? std::cbrt(v) : (kappa * v + 16.0) / 116.0;
+}
+
+static LabColor rgb_to_lab(const ColorDecomposeRgb& rgb)
+{
+ const double r = srgb_to_linear(rgb.r);
+ const double g = srgb_to_linear(rgb.g);
+ const double b = srgb_to_linear(rgb.b);
+
+ const double x = (0.4124564 * r + 0.3575761 * g + 0.1804375 * b) / 0.95047;
+ const double y = (0.2126729 * r + 0.7151522 * g + 0.0721750 * b);
+ const double z = (0.0193339 * r + 0.1191920 * g + 0.9503041 * b) / 1.08883;
+
+ const double fx = xyz_to_lab_component(x);
+ const double fy = xyz_to_lab_component(y);
+ const double fz = xyz_to_lab_component(z);
+
+ return {116.0 * fy - 16.0, 500.0 * (fx - fy), 200.0 * (fy - fz)};
+}
+
+static std::string lab_to_srgb_hex(const LabColor& lab)
+{
+ constexpr double Xn = 0.95047, Yn = 1.0, Zn = 1.08883;
+
+ auto f_inv = [](double t) -> double {
+ constexpr double eps = 216.0 / 24389.0;
+ constexpr double kappa = 24389.0 / 27.0;
+ const double t3 = t * t * t;
+ return t3 > eps ? t3 : (t * 116.0 - 16.0) / kappa;
+ };
+
+ const double fy = (lab.l + 16.0) / 116.0;
+ const double fx = lab.a / 500.0 + fy;
+ const double fz = fy - lab.b / 200.0;
+
+ const double X = Xn * f_inv(fx);
+ const double Y = Yn * f_inv(fy);
+ const double Z = Zn * f_inv(fz);
+
+ double r = 3.2406 * X - 1.5372 * Y - 0.4986 * Z;
+ double g = -0.9689 * X + 1.8758 * Y + 0.0415 * Z;
+ double b = 0.0557 * X - 0.2040 * Y + 1.0570 * Z;
+
+ auto gamma = [](double c) -> double {
+ c = std::max(0.0, std::min(1.0, c));
+ return c <= 0.0031308 ? 12.92 * c : 1.055 * std::pow(c, 1.0 / 2.4) - 0.055;
+ };
+ auto u8 = [&](double c) -> int {
+ return std::max(0, std::min(255, static_cast(std::lround(gamma(c) * 255.0))));
+ };
+
+ char buf[8];
+ std::snprintf(buf, sizeof(buf), "#%02X%02X%02X", u8(r), u8(g), u8(b));
+ return std::string(buf);
+}
+
+static double delta_e76(const LabColor& a, const LabColor& b)
+{
+ return std::sqrt(std::pow(a.l - b.l, 2.0) + std::pow(a.a - b.a, 2.0) + std::pow(a.b - b.b, 2.0));
+}
+
+static bool material_matches(const std::string& a, const std::string& b)
+{
+ if (a.empty() || b.empty())
+ return false;
+ return a == b || a == b + " Basic" || b == a + " Basic";
+}
+
+static std::vector> ratio_grid(size_t n)
+{
+ std::vector> out;
+ if (n == 2) {
+ for (int a = 20; a <= 80; a += 5)
+ out.push_back({a, 100 - a});
+ } else if (n == 3) {
+ for (int a = 20; a <= 60; a += 5)
+ for (int b = 20; b <= 80 - a; b += 5) {
+ const int c = 100 - a - b;
+ if (c >= 20)
+ out.push_back({a, b, c});
+ }
+ }
+ return out;
+}
+
+static ColorDecomposeRecipeMode parse_mode(const std::string& s)
+{
+ if (s == "RYBW" || s == "RGBY")
+ return ColorDecomposeRecipeMode::RYBW;
+ return ColorDecomposeRecipeMode::CMYW;
+}
+
+static std::vector load_standard_entries()
+{
+ std::vector entries;
+ const std::string path = resources_dir() + "/filament_mixing/standard_color_recipes.json";
+ std::ifstream ifs(path);
+ if (!ifs)
+ return entries;
+
+ nlohmann::json root = nlohmann::json::parse(ifs, nullptr, false);
+ if (root.is_discarded() || !root.contains("entries") || !root["entries"].is_array())
+ return entries;
+
+ for (const auto& item : root["entries"]) {
+ if (!item.is_object())
+ continue;
+ StandardRecipeEntry entry;
+ entry.mode = parse_mode(item.value("mode", "CMYW"));
+ entry.material = item.value("material", "");
+ entry.source = item.value("source", "");
+ entry.measured_hex = item.value("measured_rgb", "");
+
+ if (item.contains("components") && item["components"].is_array()) {
+ for (const auto& comp : item["components"]) {
+ if (comp.is_object()) {
+ entry.component_keys.push_back(comp.value("key", ""));
+ entry.component_hexes.push_back(comp.value("rgb", ""));
+ }
+ }
+ }
+ if (item.contains("ratios") && item["ratios"].is_array()) {
+ for (const auto& ratio : item["ratios"]) {
+ if (ratio.is_number_integer())
+ entry.ratios.push_back(ratio.get());
+ }
+ }
+ if (item.contains("measured_lab") && item["measured_lab"].is_array() && item["measured_lab"].size() >= 3) {
+ entry.measured_lab = {
+ item["measured_lab"][0].get(),
+ item["measured_lab"][1].get(),
+ item["measured_lab"][2].get()
+ };
+ } else {
+ ColorDecomposeRgb measured_rgb;
+ if (!color_decompose_hex_to_rgb(entry.measured_hex, measured_rgb))
+ continue;
+ entry.measured_lab = rgb_to_lab(measured_rgb);
+ }
+
+ if (entry.component_hexes.size() >= 2 && entry.component_hexes.size() == entry.ratios.size() &&
+ !entry.measured_hex.empty())
+ entries.push_back(std::move(entry));
+ }
+ return entries;
+}
+
+static const std::vector& standard_entries()
+{
+ static const std::vector entries = load_standard_entries();
+ return entries;
+}
+
+static void evaluate_candidate(const ColorDecomposeRgb& target,
+ const std::vector& hexes,
+ const std::vector& ratios,
+ const std::vector& indices,
+ ColorDecomposeRecipeMode mode,
+ double& best_score,
+ ColorDecomposeRecipeResult& best)
+{
+ const std::string mixed = blend_color_multi(hexes, ratios);
+ ColorDecomposeRgb mixed_rgb;
+ if (!color_decompose_hex_to_rgb(mixed, mixed_rgb))
+ return;
+
+ const double score = delta_e76(rgb_to_lab(target), rgb_to_lab(mixed_rgb));
+ if (score >= best_score)
+ return;
+
+ best_score = score;
+ best.valid = true;
+ best.mode = mode;
+ best.matched_color_hex = mixed;
+ best.components.clear();
+ for (size_t i = 0; i < hexes.size(); ++i) {
+ ColorDecomposeRecipeComponent comp;
+ comp.color_hex = hexes[i];
+ comp.ratio = ratios[i];
+ comp.filament_index = i < indices.size() ? indices[i] : 0;
+ best.components.push_back(comp);
+ }
+}
+
+} // namespace
+
+std::string color_decompose_rgb_to_hex(const ColorDecomposeRgb& rgb)
+{
+ char buf[8];
+ std::snprintf(buf, sizeof(buf), "#%02X%02X%02X", rgb.r, rgb.g, rgb.b);
+ return std::string(buf);
+}
+
+bool color_decompose_hex_to_rgb(const std::string& hex, ColorDecomposeRgb& out)
+{
+ if (hex.size() < 7 || hex[0] != '#')
+ return false;
+ unsigned r = 0, g = 0, b = 0;
+ if (std::sscanf(hex.c_str(), "#%02x%02x%02x", &r, &g, &b) != 3)
+ return false;
+ out = {static_cast(r), static_cast(g), static_cast(b)};
+ return true;
+}
+
+ColorDecomposeRecipeResult recommend_from_physical_filaments(
+ const ColorDecomposeRgb& target,
+ const std::vector& physical_filaments,
+ const std::string& preferred_material_type)
+{
+ std::vector candidates;
+ for (const auto& filament : physical_filaments) {
+ if (filament.is_mixed)
+ continue;
+ ColorDecomposeRgb ignored;
+ if (!color_decompose_hex_to_rgb(filament.color_hex, ignored))
+ continue;
+ if (preferred_material_type.empty() || material_matches(filament.type, preferred_material_type))
+ candidates.push_back(filament);
+ }
+
+ // Early exit: if a material-matched candidate has the exact target color,
+ // return it as 100%. Downstream rejects single-component results (no mixed
+ // slot created), which is correct -- the color already exists.
+ const std::string target_hex = color_decompose_rgb_to_hex(target);
+ for (const auto& cand : candidates) {
+ ColorDecomposeRgb cand_rgb;
+ if (!color_decompose_hex_to_rgb(cand.color_hex, cand_rgb))
+ continue;
+ if (color_decompose_rgb_to_hex(cand_rgb) == target_hex) {
+ ColorDecomposeRecipeResult exact;
+ exact.valid = true;
+ exact.mode = ColorDecomposeRecipeMode::MaterialList;
+ exact.matched_color_hex = cand.color_hex;
+ ColorDecomposeRecipeComponent comp;
+ comp.color_hex = cand.color_hex;
+ comp.ratio = 100;
+ comp.filament_index = cand.filament_index;
+ exact.components.push_back(comp);
+ return exact;
+ }
+ }
+
+ if (candidates.size() < 2)
+ candidates = physical_filaments;
+ candidates.erase(std::remove_if(candidates.begin(), candidates.end(), [](const auto& filament) {
+ if (filament.is_mixed)
+ return true;
+ ColorDecomposeRgb ignored;
+ return !color_decompose_hex_to_rgb(filament.color_hex, ignored);
+ }), candidates.end());
+
+ constexpr size_t kMaxCandidates = 8;
+ if (candidates.size() > kMaxCandidates) {
+ const LabColor target_lab = rgb_to_lab(target);
+ std::sort(candidates.begin(), candidates.end(),
+ [&target_lab](const ColorDecomposePhysicalFilament& a, const ColorDecomposePhysicalFilament& b) {
+ ColorDecomposeRgb rgb_a, rgb_b;
+ color_decompose_hex_to_rgb(a.color_hex, rgb_a);
+ color_decompose_hex_to_rgb(b.color_hex, rgb_b);
+ return delta_e76(target_lab, rgb_to_lab(rgb_a))
+ < delta_e76(target_lab, rgb_to_lab(rgb_b));
+ });
+ candidates.resize(kMaxCandidates);
+ }
+
+ ColorDecomposeRecipeResult best;
+ double best_score = std::numeric_limits::max();
+
+ for (size_t i = 0; i < candidates.size(); ++i) {
+ for (size_t j = i + 1; j < candidates.size(); ++j) {
+ const std::vector hexes = {candidates[i].color_hex, candidates[j].color_hex};
+ const std::vector indices = {candidates[i].filament_index, candidates[j].filament_index};
+ for (const auto& ratios : ratio_grid(2))
+ evaluate_candidate(target, hexes, ratios, indices, ColorDecomposeRecipeMode::MaterialList, best_score, best);
+
+ for (size_t k = j + 1; k < candidates.size(); ++k) {
+ const std::vector hexes3 = {candidates[i].color_hex, candidates[j].color_hex, candidates[k].color_hex};
+ const std::vector indices3 = {candidates[i].filament_index, candidates[j].filament_index, candidates[k].filament_index};
+ for (const auto& ratios : ratio_grid(3))
+ evaluate_candidate(target, hexes3, ratios, indices3, ColorDecomposeRecipeMode::MaterialList, best_score, best);
+ }
+ }
+ }
+
+ return best;
+}
+
+ColorDecomposeRecipeResult lookup_standard_recipe(
+ const ColorDecomposeRgb& target,
+ ColorDecomposeRecipeMode mode,
+ const std::string& preferred_material_type)
+{
+ const LabColor target_lab = rgb_to_lab(target);
+ ColorDecomposeRecipeResult best;
+ double best_score = std::numeric_limits::max();
+
+ auto consider = [&](bool require_material_match) {
+ for (const StandardRecipeEntry& entry : standard_entries()) {
+ if (entry.mode != mode)
+ continue;
+ if (require_material_match && !material_matches(entry.material, preferred_material_type))
+ continue;
+ if (!require_material_match && !preferred_material_type.empty() && material_matches(entry.material, preferred_material_type))
+ continue;
+
+ const double score = delta_e76(target_lab, entry.measured_lab);
+ if (score >= best_score)
+ continue;
+
+ best_score = score;
+ best.valid = true;
+ best.mode = mode;
+ best.matched_color_hex = entry.measured_hex;
+ best.components.clear();
+ for (size_t i = 0; i < entry.component_hexes.size(); ++i) {
+ ColorDecomposeRecipeComponent comp;
+ comp.color_hex = entry.component_hexes[i];
+ comp.base_color = i < entry.component_keys.size() ? entry.component_keys[i] : "";
+ comp.ratio = entry.ratios[i];
+ comp.filament_index = 0;
+ best.components.push_back(comp);
+ }
+ }
+ };
+
+ consider(true);
+ if (!best.valid)
+ consider(false);
+ return best;
+}
+
+std::string lookup_measured_blend_color(const std::vector& component_hexes,
+ const std::vector& ratios)
+{
+ if (component_hexes.size() < 2 || component_hexes.size() != ratios.size())
+ return {};
+
+ auto normalize_hex = [](const std::string& hex) -> std::string {
+ ColorDecomposeRgb rgb;
+ if (!color_decompose_hex_to_rgb(hex, rgb))
+ return {};
+ char buf[8];
+ std::snprintf(buf, sizeof(buf), "#%02X%02X%02X", rgb.r, rgb.g, rgb.b);
+ return std::string(buf);
+ };
+
+ // Stage 1: canonicalize input by sorting (hex, ratio) pairs so matching
+ // is independent of the caller's component order.
+ const size_t n = component_hexes.size();
+ std::vector> in_pairs;
+ in_pairs.reserve(n);
+ for (size_t i = 0; i < n; ++i) {
+ std::string nh = normalize_hex(component_hexes[i]);
+ if (nh.empty())
+ return {};
+ in_pairs.emplace_back(std::move(nh), ratios[i]);
+ }
+ std::sort(in_pairs.begin(), in_pairs.end());
+
+ std::vector in_hexes;
+ std::vector in_ratios;
+ in_hexes.reserve(n);
+ in_ratios.reserve(n);
+ for (const auto& p : in_pairs) {
+ in_hexes.push_back(p.first);
+ in_ratios.push_back(p.second);
+ }
+
+ // Normalize ratios to sum=100 (callers may pass arbitrary weights,
+ // e.g. MixedFilamentDialog uses ratio*10000).
+ {
+ int sum = 0;
+ for (int r : in_ratios) sum += r;
+ if (sum > 0 && sum != 100) {
+ int new_sum = 0;
+ for (size_t i = 0; i < in_ratios.size(); ++i) {
+ in_ratios[i] = static_cast(std::lround(
+ static_cast(in_ratios[i]) * 100.0 / static_cast(sum)));
+ new_sum += in_ratios[i];
+ }
+ if (new_sum != 100) {
+ auto it = std::max_element(in_ratios.begin(), in_ratios.end());
+ *it += (100 - new_sum);
+ }
+ }
+ }
+
+ // Fall back to polynomial model for ratios outside the measured range.
+ {
+ bool out_of_range = false;
+ if (n == 2) {
+ for (int r : in_ratios)
+ if (r < 20 || r > 80) { out_of_range = true; break; }
+ } else {
+ for (int r : in_ratios)
+ if (r < 20) { out_of_range = true; break; }
+ }
+ if (out_of_range)
+ return {};
+ }
+
+ // Stage 2: collect anchors with the same component hex set; try exact match.
+ struct Anchor {
+ std::vector ratios;
+ LabColor lab;
+ std::string hex;
+ };
+ std::vector anchors;
+
+ for (const StandardRecipeEntry& entry : standard_entries()) {
+ if (entry.source != "measured" && entry.source != "interpolated")
+ continue;
+ if (entry.component_hexes.size() != n)
+ continue;
+
+ std::vector> e_pairs;
+ e_pairs.reserve(n);
+ for (size_t i = 0; i < n; ++i)
+ e_pairs.emplace_back(normalize_hex(entry.component_hexes[i]), entry.ratios[i]);
+ std::sort(e_pairs.begin(), e_pairs.end());
+
+ bool same_set = true;
+ for (size_t i = 0; i < n; ++i)
+ if (e_pairs[i].first != in_hexes[i]) { same_set = false; break; }
+ if (!same_set)
+ continue;
+
+ Anchor a;
+ a.ratios.reserve(n);
+ for (const auto& p : e_pairs) a.ratios.push_back(p.second);
+ a.lab = entry.measured_lab;
+ a.hex = entry.measured_hex;
+
+ if (a.ratios == in_ratios)
+ return a.hex;
+
+ anchors.push_back(std::move(a));
+ }
+
+ if (anchors.size() < 2)
+ return {};
+
+ // Stage 3: interpolation in Lab space.
+ if (n == 2) {
+ // 1D linear interpolation along ratio[0].
+ std::sort(anchors.begin(), anchors.end(),
+ [](const Anchor& a, const Anchor& b) { return a.ratios[0] < b.ratios[0]; });
+ const double x = static_cast(in_ratios[0]);
+ size_t lo = 0;
+ while (lo + 2 < anchors.size() && static_cast(anchors[lo + 1].ratios[0]) <= x)
+ ++lo;
+ const Anchor& a0 = anchors[lo];
+ const Anchor& a1 = anchors[lo + 1];
+ const double span = static_cast(a1.ratios[0] - a0.ratios[0]);
+ const double t = span > 0.0 ? (x - static_cast(a0.ratios[0])) / span : 0.0;
+ return lab_to_srgb_hex({a0.lab.l + t * (a1.lab.l - a0.lab.l),
+ a0.lab.a + t * (a1.lab.a - a0.lab.a),
+ a0.lab.b + t * (a1.lab.b - a0.lab.b)});
+ }
+
+ // 3+ color: IDW (p=2) with 3 nearest anchors in the (ratio[0], ratio[1]) plane.
+ const double ra = static_cast(in_ratios[0]);
+ const double rb = static_cast(in_ratios[1]);
+ std::vector> dists;
+ dists.reserve(anchors.size());
+ for (const Anchor& a : anchors) {
+ const double d = std::sqrt(std::pow(ra - static_cast(a.ratios[0]), 2.0) +
+ std::pow(rb - static_cast(a.ratios[1]), 2.0));
+ if (d == 0.0)
+ return a.hex;
+ dists.emplace_back(d, &a);
+ }
+ const size_t k = std::min(static_cast(3), dists.size());
+ std::partial_sort(dists.begin(), dists.begin() + k, dists.end(),
+ [](const auto& a, const auto& b) { return a.first < b.first; });
+ double num_l = 0.0, num_a = 0.0, num_b = 0.0, den = 0.0;
+ for (size_t j = 0; j < k; ++j) {
+ const double w = 1.0 / (dists[j].first * dists[j].first);
+ num_l += w * dists[j].second->lab.l;
+ num_a += w * dists[j].second->lab.a;
+ num_b += w * dists[j].second->lab.b;
+ den += w;
+ }
+ return lab_to_srgb_hex({num_l / den, num_a / den, num_b / den});
+}
+
+} // namespace Slic3r
diff --git a/src/libslic3r/ColorDecomposeRecipe.hpp b/src/libslic3r/ColorDecomposeRecipe.hpp
new file mode 100644
index 0000000000..146bf322a2
--- /dev/null
+++ b/src/libslic3r/ColorDecomposeRecipe.hpp
@@ -0,0 +1,64 @@
+#ifndef SLIC3R_COLOR_DECOMPOSE_RECIPE_HPP
+#define SLIC3R_COLOR_DECOMPOSE_RECIPE_HPP
+
+#include
+#include
+
+namespace Slic3r {
+
+enum class ColorDecomposeRecipeMode {
+ MaterialList,
+ CMYW,
+ RYBW
+};
+
+struct ColorDecomposeRgb {
+ unsigned char r{0};
+ unsigned char g{0};
+ unsigned char b{0};
+};
+
+struct ColorDecomposePhysicalFilament {
+ std::string color_hex;
+ std::string name;
+ std::string type;
+ bool is_mixed{false};
+ unsigned int filament_index{0}; // 1-based physical filament index
+};
+
+struct ColorDecomposeRecipeComponent {
+ std::string color_hex;
+ std::string base_color;
+ int ratio{0};
+ unsigned int filament_index{0}; // 1-based for physical filaments, 0 for standard base colors
+};
+
+struct ColorDecomposeRecipeResult {
+ bool valid{false};
+ ColorDecomposeRecipeMode mode{ColorDecomposeRecipeMode::MaterialList};
+ std::string matched_color_hex;
+ std::vector components;
+};
+
+std::string color_decompose_rgb_to_hex(const ColorDecomposeRgb& rgb);
+bool color_decompose_hex_to_rgb(const std::string& hex, ColorDecomposeRgb& out);
+
+ColorDecomposeRecipeResult recommend_from_physical_filaments(
+ const ColorDecomposeRgb& target,
+ const std::vector& physical_filaments,
+ const std::string& preferred_material_type);
+
+ColorDecomposeRecipeResult lookup_standard_recipe(
+ const ColorDecomposeRgb& target,
+ ColorDecomposeRecipeMode mode,
+ const std::string& preferred_material_type);
+
+// Look up the measured blend color for an exact (component_hexes, ratios) match
+// in the standard color recipe table. Returns the measured hex color if found
+// with reliable source data ("measured" or "interpolated"), empty string otherwise.
+std::string lookup_measured_blend_color(const std::vector& component_hexes,
+ const std::vector& ratios);
+
+} // namespace Slic3r
+
+#endif // SLIC3R_COLOR_DECOMPOSE_RECIPE_HPP
diff --git a/src/libslic3r/Config.cpp b/src/libslic3r/Config.cpp
index a43f659be6..242e4bb146 100644
--- a/src/libslic3r/Config.cpp
+++ b/src/libslic3r/Config.cpp
@@ -2031,7 +2031,8 @@ const double& DynamicConfig::opt_float(const t_config_option_key &opt_key, unsig
return opt_floats_nullable->get_at(idx);
} else {
assert(false);
- return 0;
+ static const double zero = 0.0;
+ return zero;
}
}
diff --git a/src/libslic3r/Config.hpp b/src/libslic3r/Config.hpp
index 509095cbfc..9e4344820d 100644
--- a/src/libslic3r/Config.hpp
+++ b/src/libslic3r/Config.hpp
@@ -28,6 +28,9 @@
#include
#include
+// The serialize() members below archive ConfigOption hierarchies through
+// cereal::base_class, whose registration machinery lives in polymorphic.hpp.
+#include
namespace Slic3r {
struct FloatOrPercent
@@ -2982,6 +2985,8 @@ public:
const double & opt_float(const t_config_option_key &opt_key, unsigned int idx) const;
double & opt_float_nullable(const t_config_option_key &opt_key, unsigned int idx) { return this->option(opt_key)->get_at(idx); }
const double & opt_float_nullable(const t_config_option_key &opt_key, unsigned int idx) const { return dynamic_cast(this->option(opt_key))->get_at(idx); }
+ FloatOrPercent & opt_float_or_percent_nullable(const t_config_option_key &opt_key, unsigned int idx) { return this->option(opt_key)->get_at(idx); }
+ const FloatOrPercent & opt_float_or_percent_nullable(const t_config_option_key &opt_key, unsigned int idx) const { return dynamic_cast(this->option(opt_key))->get_at(idx); }
int& opt_int(const t_config_option_key &opt_key) { return this->option(opt_key)->value; }
int opt_int(const t_config_option_key &opt_key) const { return dynamic_cast(this->option(opt_key))->value; }
diff --git a/src/libslic3r/Feature/FuzzySkin/FuzzySkin.cpp b/src/libslic3r/Feature/FuzzySkin/FuzzySkin.cpp
index 11e2d081d2..97f8f743fb 100644
--- a/src/libslic3r/Feature/FuzzySkin/FuzzySkin.cpp
+++ b/src/libslic3r/Feature/FuzzySkin/FuzzySkin.cpp
@@ -682,7 +682,7 @@ Polygon apply_fuzzy_skin(const Polygon& polygon, const PerimeterGenerator& perim
return fuzzified;
}
-void apply_fuzzy_skin(Arachne::ExtrusionLine* extrusion, const PerimeterGenerator& perimeter_generator, const bool is_contour)
+void apply_fuzzy_skin(Arachne::ExtrusionLine* extrusion, const PerimeterGenerator& perimeter_generator, const bool is_contour, const bool closed)
{
const auto slice_z = perimeter_generator.slice_z;
const auto& regions = perimeter_generator.regions_by_fuzzify;
@@ -690,7 +690,7 @@ void apply_fuzzy_skin(Arachne::ExtrusionLine* extrusion, const PerimeterGenerato
const auto& config = regions.begin()->first;
const bool fuzzify = should_fuzzify(config, perimeter_generator.layer_id, extrusion->inset_idx, is_contour);
if (fuzzify)
- fuzzy_extrusion_line(extrusion->junctions, slice_z, config);
+ fuzzy_extrusion_line(extrusion->junctions, slice_z, config, closed);
} else {
// Merge regions that produce identical fuzzy effects (differ only in type).
// When the style (e.g. External) and a painted region (All) both fuzzify this loop
@@ -701,10 +701,19 @@ void apply_fuzzy_skin(Arachne::ExtrusionLine* extrusion, const PerimeterGenerato
// Fast path: single merged region — apply directly without splitting
if (merged_regions.size() == 1 && merged_regions.front().expolygons.empty()) {
- fuzzy_extrusion_line(extrusion->junctions, slice_z, *merged_regions.front().config);
+ fuzzy_extrusion_line(extrusion->junctions, slice_z, *merged_regions.front().config, closed);
return;
}
+ // Open path means this is a thin wall that collapsed into a single thick line, in this case the path will go exactly
+ // between the middle two sides of the object. And since the paint segmentation never goes beyond the middle line because
+ // it uses voronoi diagram, we need to expand the segmentation a little bit to make sure it covers the path.
+ if (!closed) {
+ for (auto& r : merged_regions) {
+ r.expolygons = offset_ex(r.expolygons, perimeter_generator.ext_perimeter_flow.scaled_width() / 10);
+ }
+ }
+
#ifdef DEBUG_FUZZY
{
int i = 0;
@@ -752,7 +761,7 @@ void apply_fuzzy_skin(Arachne::ExtrusionLine* extrusion, const PerimeterGenerato
// Fuzzy splitted extrusion
if (std::all_of(splitted.begin(), splitted.end(), [](const Algorithm::SplitLineJunction& j) { return j.clipped; })) {
// The entire polygon is fuzzified
- fuzzy_extrusion_line(extrusion->junctions, slice_z, *r.config);
+ fuzzy_extrusion_line(extrusion->junctions, slice_z, *r.config, closed);
continue;
} else {
const auto current_ext = extrusion->junctions;
@@ -803,7 +812,7 @@ void apply_fuzzy_skin(Arachne::ExtrusionLine* extrusion, const PerimeterGenerato
}
//Orca: ensure the loop is closed after fuzzy
- if (!extrusion->junctions.empty() && extrusion->junctions.front().p != extrusion->junctions.back().p) {
+ if (closed && !extrusion->junctions.empty() && extrusion->junctions.front().p != extrusion->junctions.back().p) {
extrusion->junctions.back().p = extrusion->junctions.front().p;
extrusion->junctions.back().w = extrusion->junctions.front().w;
}
diff --git a/src/libslic3r/Feature/FuzzySkin/FuzzySkin.hpp b/src/libslic3r/Feature/FuzzySkin/FuzzySkin.hpp
index e099139c90..51d503a3c9 100644
--- a/src/libslic3r/Feature/FuzzySkin/FuzzySkin.hpp
+++ b/src/libslic3r/Feature/FuzzySkin/FuzzySkin.hpp
@@ -16,7 +16,7 @@ void group_region_by_fuzzify(PerimeterGenerator& g);
bool should_fuzzify(const FuzzySkinConfig& config, int layer_id, size_t loop_idx, bool is_contour);
Polygon apply_fuzzy_skin(const Polygon& polygon, const PerimeterGenerator& perimeter_generator, size_t loop_idx, bool is_contour);
-void apply_fuzzy_skin(Arachne::ExtrusionLine* extrusion, const PerimeterGenerator& perimeter_generator, bool is_contour);
+void apply_fuzzy_skin(Arachne::ExtrusionLine* extrusion, const PerimeterGenerator& perimeter_generator, bool is_contour, bool closed = true);
} // namespace Slic3r::Feature::FuzzySkin
diff --git a/src/libslic3r/FilamentGroup.cpp b/src/libslic3r/FilamentGroup.cpp
index 97da94652c..07a4cc2449 100644
--- a/src/libslic3r/FilamentGroup.cpp
+++ b/src/libslic3r/FilamentGroup.cpp
@@ -1021,7 +1021,7 @@ namespace Slic3r
if (FGMode::MatchMode == ctx.group_info.mode)
return calc_filament_group_for_match(cost);
}
- catch (const FilamentGroupException& e) {
+ catch (const FilamentGroupException&) {
}
return calc_filament_group_for_flush(cost);
diff --git a/src/libslic3r/FilamentMixer.cpp b/src/libslic3r/FilamentMixer.cpp
new file mode 100644
index 0000000000..66640498e6
--- /dev/null
+++ b/src/libslic3r/FilamentMixer.cpp
@@ -0,0 +1,829 @@
+#include "FilamentMixer.hpp"
+
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+
+#include
+
+#include "ColorDecomposeRecipe.hpp"
+#include "FilamentMixerModel.hpp"
+#include "LocalesUtils.hpp"
+
+namespace Slic3r {
+namespace {
+
+inline float clamp01(float x)
+{
+ return std::max(0.0f, std::min(1.0f, x));
+}
+
+inline float srgb_to_linear(float x)
+{
+ return (x >= 0.04045f) ? std::pow((x + 0.055f) / 1.055f, 2.4f) : x / 12.92f;
+}
+
+inline float linear_to_srgb(float x)
+{
+ return (x >= 0.0031308f) ? (1.055f * std::pow(x, 1.0f / 2.4f) - 0.055f) : (12.92f * x);
+}
+
+inline unsigned char to_u8(float x)
+{
+ const float clamped = clamp01(x);
+ return static_cast(clamped * 255.0f + 0.5f);
+}
+
+inline float to_f01(unsigned char x)
+{
+ return static_cast(x) / 255.0f;
+}
+
+} // namespace
+
+void filament_mixer_lerp(unsigned char r1, unsigned char g1, unsigned char b1,
+ unsigned char r2, unsigned char g2, unsigned char b2,
+ float t,
+ unsigned char* out_r, unsigned char* out_g, unsigned char* out_b)
+{
+ ::filament_mixer::lerp(r1, g1, b1, r2, g2, b2, t, out_r, out_g, out_b);
+}
+
+void filament_mixer_lerp_float(float r1, float g1, float b1,
+ float r2, float g2, float b2,
+ float t,
+ float* out_r, float* out_g, float* out_b)
+{
+ unsigned char ur = 0, ug = 0, ub = 0;
+ filament_mixer_lerp(to_u8(r1), to_u8(g1), to_u8(b1),
+ to_u8(r2), to_u8(g2), to_u8(b2),
+ t, &ur, &ug, &ub);
+ *out_r = to_f01(ur);
+ *out_g = to_f01(ug);
+ *out_b = to_f01(ub);
+}
+
+void filament_mixer_lerp_linear_float(float r1, float g1, float b1,
+ float r2, float g2, float b2,
+ float t,
+ float* out_r, float* out_g, float* out_b)
+{
+ const float sr1 = linear_to_srgb(clamp01(r1));
+ const float sg1 = linear_to_srgb(clamp01(g1));
+ const float sb1 = linear_to_srgb(clamp01(b1));
+ const float sr2 = linear_to_srgb(clamp01(r2));
+ const float sg2 = linear_to_srgb(clamp01(g2));
+ const float sb2 = linear_to_srgb(clamp01(b2));
+
+ float out_sr = 0.0f, out_sg = 0.0f, out_sb = 0.0f;
+ filament_mixer_lerp_float(sr1, sg1, sb1, sr2, sg2, sb2, t, &out_sr, &out_sg, &out_sb);
+
+ *out_r = srgb_to_linear(clamp01(out_sr));
+ *out_g = srgb_to_linear(clamp01(out_sg));
+ *out_b = srgb_to_linear(clamp01(out_sb));
+}
+
+static bool parse_hex(const std::string &hex, unsigned char &r, unsigned char &g, unsigned char &b)
+{
+ if (hex.size() < 7 || hex[0] != '#') return false;
+ unsigned rv = 0, gv = 0, bv = 0;
+ if (std::sscanf(hex.c_str(), "#%02x%02x%02x", &rv, &gv, &bv) != 3) return false;
+ r = (unsigned char)rv; g = (unsigned char)gv; b = (unsigned char)bv;
+ return true;
+}
+
+std::string blend_color(const std::string& hex_a, const std::string& hex_b, float ratio_b)
+{
+ unsigned char r1 = 128, g1 = 128, b1 = 128;
+ unsigned char r2 = 128, g2 = 128, b2 = 128;
+ parse_hex(hex_a, r1, g1, b1);
+ parse_hex(hex_b, r2, g2, b2);
+
+ unsigned char mr = 0, mg = 0, mb = 0;
+ filament_mixer_lerp(r1, g1, b1, r2, g2, b2, ratio_b, &mr, &mg, &mb);
+
+ char buf[8];
+ std::snprintf(buf, sizeof(buf), "#%02X%02X%02X", mr, mg, mb);
+ return std::string(buf);
+}
+
+std::string blend_color_multi(const std::vector &hex_colors,
+ const std::vector &weights)
+{
+ if (hex_colors.size() >= 2 && hex_colors.size() == weights.size()) {
+ std::string measured = lookup_measured_blend_color(hex_colors, weights);
+ if (!measured.empty())
+ return measured;
+ }
+
+ if (hex_colors.empty())
+ return "#000000";
+ if (hex_colors.size() == 1) {
+ unsigned char cr = 128, cg = 128, cb = 128;
+ parse_hex(hex_colors.front(), cr, cg, cb);
+ char buf[8];
+ std::snprintf(buf, sizeof(buf), "#%02X%02X%02X", cr, cg, cb);
+ return std::string(buf);
+ }
+
+ assert(hex_colors.size() == weights.size());
+
+ unsigned char r = 128, g = 128, b = 128;
+ int accumulated = 0;
+
+ for (size_t i = 0; i < hex_colors.size() && i < weights.size(); ++i) {
+ if (weights[i] <= 0)
+ continue;
+ unsigned char cr = 128, cg = 128, cb = 128;
+ parse_hex(hex_colors[i], cr, cg, cb);
+ if (accumulated == 0) {
+ r = cr; g = cg; b = cb;
+ accumulated = weights[i];
+ } else {
+ const int new_total = accumulated + weights[i];
+ const float t = static_cast(weights[i]) / static_cast(new_total);
+ filament_mixer_lerp(r, g, b, cr, cg, cb, t, &r, &g, &b);
+ accumulated = new_total;
+ }
+ }
+
+ if (accumulated == 0)
+ return "#000000";
+
+ char buf[8];
+ std::snprintf(buf, sizeof(buf), "#%02X%02X%02X", r, g, b);
+ return std::string(buf);
+}
+
+std::vector parse_mixed_components(const std::string &str)
+{
+ std::vector components;
+ if (str.empty())
+ return components;
+ std::istringstream ss(str);
+ std::string token;
+ while (std::getline(ss, token, ',')) {
+ try {
+ int val = std::stoi(token);
+ if (val >= 0)
+ components.push_back(static_cast(val));
+ } catch (...) {}
+ }
+ return components;
+}
+
+namespace {
+
+// Parse a token that may represent a finite double or "use default" (empty / "nan").
+// Returns NaN on either explicit sentinel or any parse error.
+inline double parse_tangent_token(const std::string& tok)
+{
+ if (tok.empty()) return std::numeric_limits::quiet_NaN();
+ std::string lower(tok.size(), '\0');
+ std::transform(tok.begin(), tok.end(), lower.begin(),
+ [](unsigned char c) { return static_cast(std::tolower(c)); });
+ if (lower == "nan") return std::numeric_limits::quiet_NaN();
+ try {
+ const double v = std::stod(tok);
+ if (!std::isfinite(v)) return std::numeric_limits::quiet_NaN();
+ return v;
+ } catch (...) {
+ return std::numeric_limits::quiet_NaN();
+ }
+}
+
+// Split a "a,b,c,d" segment on commas, preserving empty tokens (so "0.5,0.4,," yields
+// {"0.5","0.4","",""}). Used by the gradient-curve parser to distinguish NaN tangents
+// from a malformed segment.
+inline std::vector split_commas(const std::string& seg)
+{
+ std::vector out;
+ size_t start = 0;
+ while (true) {
+ const size_t comma = seg.find(',', start);
+ if (comma == std::string::npos) {
+ out.emplace_back(seg.substr(start));
+ return out;
+ }
+ out.emplace_back(seg.substr(start, comma - start));
+ start = comma + 1;
+ }
+}
+
+} // namespace
+
+// Default Fritsch-Carlson PCHIP tangents for a sorted-by-x anchor list. m has size n
+// matching the anchor count; for n == 1 the tangent is 0; for n == 2 both endpoint
+// tangents equal the single secant (degenerates to linear).
+std::vector compute_pchip_default_tangents(const std::vector& pts)
+{
+ const size_t n = pts.size();
+ std::vector m(n, 0.0);
+ if (n < 2) return m;
+
+ std::vector d(n - 1);
+ for (size_t i = 0; i + 1 < n; ++i) {
+ const double h = std::max(1e-12, pts[i + 1].x - pts[i].x);
+ d[i] = (pts[i + 1].y - pts[i].y) / h;
+ }
+
+ m[0] = d[0];
+ m[n - 1] = d[n - 2];
+ for (size_t i = 1; i + 1 < n; ++i)
+ m[i] = 0.5 * (d[i - 1] + d[i]);
+
+ // Fritsch-Carlson monotonic guard: kill flats then rescale steep tangents so the
+ // resulting cubic never overshoots [min, max] of the surrounding anchors.
+ for (size_t i = 0; i + 1 < n; ++i) {
+ if (d[i] == 0.0) {
+ m[i] = 0.0;
+ m[i + 1] = 0.0;
+ continue;
+ }
+ const double a = m[i] / d[i];
+ const double b = m[i + 1] / d[i];
+ const double s = a * a + b * b;
+ if (s > 9.0) {
+ const double tau = 3.0 / std::sqrt(s);
+ m[i] = tau * a * d[i];
+ m[i + 1] = tau * b * d[i];
+ }
+ }
+ return m;
+}
+
+GradientCurve parse_gradient_curve(const std::string& s)
+{
+ GradientCurve curve;
+ if (s.empty())
+ return curve;
+
+ CNumericLocalesSetter c_locale_setter;
+ std::istringstream ss(s);
+ std::string segment;
+ while (std::getline(ss, segment, '|')) {
+ if (segment.empty())
+ continue;
+ const auto fields = split_commas(segment);
+ // 2-field legacy form -> (x, y), tangents stay NaN.
+ // 4-field form -> (x, y, m_in, m_out), empty / "nan" tokens preserved as NaN.
+ if (fields.size() != 2 && fields.size() != 4) {
+ BOOST_LOG_TRIVIAL(warning) << "parse_gradient_curve: ignoring malformed segment \""
+ << segment << "\" (expected 2 or 4 comma-separated fields, got "
+ << fields.size() << ")";
+ continue;
+ }
+ try {
+ double x = std::stod(fields[0]);
+ double y = std::stod(fields[1]);
+ x = std::max(0.0, std::min(1.0, x));
+ y = std::max(kGradientMinRatio, std::min(kGradientMaxRatio, y));
+ GradientAnchor a;
+ a.x = x;
+ a.y = y;
+ if (fields.size() == 4) {
+ a.m_in = parse_tangent_token(fields[2]);
+ a.m_out = parse_tangent_token(fields[3]);
+ }
+ curve.points.push_back(a);
+ } catch (const std::exception& e) {
+ BOOST_LOG_TRIVIAL(warning) << "parse_gradient_curve: ignoring unparseable segment \""
+ << segment << "\": " << e.what();
+ }
+ }
+
+ if (curve.points.size() < 2) {
+ if (!curve.points.empty())
+ BOOST_LOG_TRIVIAL(warning) << "parse_gradient_curve: only "
+ << curve.points.size() << " valid point(s), need at least 2; discarding";
+ curve.points.clear();
+ return curve;
+ }
+
+ std::sort(curve.points.begin(), curve.points.end(),
+ [](const GradientAnchor& a, const GradientAnchor& b) {
+ return a.x < b.x;
+ });
+ return curve;
+}
+
+std::string serialize_gradient_curve(const GradientCurve& c)
+{
+ if (c.points.empty())
+ return std::string{};
+
+ CNumericLocalesSetter c_locale_setter;
+ std::string out;
+ char buf[128];
+ for (size_t i = 0; i < c.points.size(); ++i) {
+ if (i > 0) out += '|';
+ const auto& a = c.points[i];
+ const bool has_in = std::isfinite(a.m_in);
+ const bool has_out = std::isfinite(a.m_out);
+ if (has_in || has_out) {
+ // Emit empty tokens for NaN slots so the legacy parser would still split
+ // four fields; the new parser interprets empty tokens as "use PCHIP default".
+ char in_buf[32] = {0};
+ char out_buf[32] = {0};
+ if (has_in) std::snprintf(in_buf, sizeof(in_buf), "%.4f", a.m_in);
+ if (has_out) std::snprintf(out_buf, sizeof(out_buf), "%.4f", a.m_out);
+ std::snprintf(buf, sizeof(buf), "%.4f,%.4f,%s,%s",
+ a.x, a.y, in_buf, out_buf);
+ } else {
+ // 4-field form is only emitted when at least one tangent is finite; the
+ // 2-field form is emitted otherwise so the JSON payload stays minimal
+ // and remains readable by older clients that only know (x, y) pairs.
+ std::snprintf(buf, sizeof(buf), "%.4f,%.4f", a.x, a.y);
+ }
+ out += buf;
+ }
+ return out;
+}
+
+double sample_gradient_curve(const GradientCurve& c, double t)
+{
+ const auto& pts = c.points;
+ if (pts.size() < 2)
+ return 0.5;
+ if (t <= pts.front().x)
+ return pts.front().y;
+ if (t >= pts.back().x)
+ return pts.back().y;
+
+ // PCHIP defaults are computed for every call; control point counts are typically
+ // tiny (< 16) so the allocation cost is negligible compared to any actual rendering
+ // or G-code work that drives the sampler.
+ const std::vector m_def = compute_pchip_default_tangents(pts);
+ const size_t n = pts.size();
+
+ // Linear scan to locate the interval [pts[i].x, pts[i+1].x] containing t. Cheap
+ // and avoids the upper_bound boilerplate; n is small.
+ for (size_t i = 1; i < n; ++i) {
+ const double x0 = pts[i - 1].x;
+ const double x1 = pts[i].x;
+ if (t > x1) continue;
+
+ const double y0 = pts[i - 1].y;
+ const double y1 = pts[i].y;
+ const double h = std::max(1e-12, x1 - x0);
+ const double m_left = std::isfinite(pts[i - 1].m_out) ? pts[i - 1].m_out : m_def[i - 1];
+ const double m_right = std::isfinite(pts[i].m_in) ? pts[i].m_in : m_def[i];
+
+ const double u = (t - x0) / h;
+ const double u2 = u * u;
+ const double u3 = u2 * u;
+ const double h00 = 2.0 * u3 - 3.0 * u2 + 1.0;
+ const double h10 = u3 - 2.0 * u2 + u;
+ const double h01 = -2.0 * u3 + 3.0 * u2;
+ const double h11 = u3 - u2;
+ double y = h00 * y0 + h10 * h * m_left
+ + h01 * y1 + h11 * h * m_right;
+ // Defensive clamp in case tangent overrides on legacy curves push the
+ // single-segment Hermite slightly outside the anchor band.
+ if (y < kGradientMinRatio) y = kGradientMinRatio;
+ if (y > kGradientMaxRatio) y = kGradientMaxRatio;
+ return y;
+ }
+ return pts.back().y;
+}
+
+std::vector parse_mixed_ratios(const std::string &str, size_t n_components)
+{
+ CNumericLocalesSetter c_locale_setter;
+ std::vector ratios;
+ if (!str.empty()) {
+ std::istringstream ss(str);
+ std::string token;
+ while (std::getline(ss, token, ',')) {
+ try {
+ double val = std::stod(token);
+ if (val > 0.0)
+ ratios.push_back(val);
+ } catch (...) {}
+ }
+ }
+
+ if (ratios.size() != n_components || n_components == 0) {
+ ratios.assign(n_components, n_components > 0 ? 1.0 / n_components : 0.0);
+ return ratios;
+ }
+
+ double sum = std::accumulate(ratios.begin(), ratios.end(), 0.0);
+ if (sum > 0.0 && std::abs(sum - 1.0) > 1e-6) {
+ for (double &r : ratios)
+ r /= sum;
+ }
+ return ratios;
+}
+
+bool has_any_mixed_filament(const std::vector &is_mixed)
+{
+ for (unsigned char v : is_mixed)
+ if (v) return true;
+ return false;
+}
+
+std::vector check_mixed_filament_integrity(
+ const std::vector &is_mixed,
+ const std::vector &comp_strs,
+ size_t num_physical)
+{
+ std::vector broken;
+ for (size_t i = 0; i < is_mixed.size(); ++i) {
+ if (!is_mixed[i]) continue;
+ if (i >= comp_strs.size() || comp_strs[i].empty()) {
+ broken.push_back(i);
+ continue;
+ }
+ auto comps = parse_mixed_components(comp_strs[i]);
+ if (comps.size() < 2) {
+ broken.push_back(i);
+ continue;
+ }
+ for (unsigned int c : comps) {
+ if (c < 1 || c > num_physical) {
+ broken.push_back(i);
+ break;
+ }
+ }
+ }
+ return broken;
+}
+
+std::vector expand_mixed_filaments(
+ const std::vector &extruders_0based,
+ const std::vector &is_mixed,
+ const std::vector &comp_strs)
+{
+ std::vector result;
+ for (unsigned int ext : extruders_0based) {
+ if (ext < is_mixed.size() && is_mixed[ext] && ext < comp_strs.size()) {
+ auto comps = parse_mixed_components(comp_strs[ext]);
+ for (unsigned int c : comps)
+ if (c >= 1) result.push_back(c - 1);
+ } else {
+ result.push_back(ext);
+ }
+ }
+ std::sort(result.begin(), result.end());
+ result.erase(std::unique(result.begin(), result.end()), result.end());
+ return result;
+}
+
+void remap_mixed_components_on_delete(
+ const std::vector &is_mixed,
+ std::vector &comp_strs,
+ unsigned int del_1based)
+{
+ for (size_t i = 0; i < is_mixed.size(); ++i) {
+ if (!is_mixed[i]) continue;
+ if (i >= comp_strs.size() || comp_strs[i].empty()) continue;
+
+ auto comps = parse_mixed_components(comp_strs[i]);
+ std::ostringstream ss;
+ for (size_t j = 0; j < comps.size(); ++j) {
+ if (j > 0) ss << ',';
+ if (comps[j] == del_1based)
+ ss << 0;
+ else if (comps[j] > del_1based)
+ ss << (comps[j] - 1);
+ else
+ ss << comps[j];
+ }
+ comp_strs[i] = ss.str();
+ }
+}
+
+std::vector check_mixed_filament_type_consistency(
+ const std::vector &is_mixed,
+ const std::vector &comp_strs,
+ const std::vector &filament_types)
+{
+ std::vector result;
+ for (size_t i = 0; i < is_mixed.size(); ++i) {
+ if (!is_mixed[i]) continue;
+ if (i >= comp_strs.size() || comp_strs[i].empty()) continue;
+ auto comps = parse_mixed_components(comp_strs[i]);
+ if (comps.size() < 2) continue;
+
+ std::string ref_type;
+ bool mismatch = false;
+ for (unsigned int c : comps) {
+ if (c == 0) continue; // sentinel for deleted component
+ size_t idx = static_cast(c) - 1; // 1-based -> 0-based
+ if (idx >= filament_types.size()) continue;
+ if (ref_type.empty())
+ ref_type = filament_types[idx];
+ else if (filament_types[idx] != ref_type) {
+ mismatch = true;
+ break;
+ }
+ }
+ if (mismatch)
+ result.push_back(i);
+ }
+ return result;
+}
+
+void expand_mixed_slots_in_unprintables(
+ std::vector> &unprintables,
+ const std::vector &is_mixed,
+ const std::vector &comp_strs)
+{
+ for (auto &unprintable_set : unprintables) {
+ std::set expanded;
+ for (int fid : unprintable_set) {
+ if (fid >= 0 && (size_t)fid < is_mixed.size() && is_mixed[fid]
+ && (size_t)fid < comp_strs.size()) {
+ auto comps = parse_mixed_components(comp_strs[fid]);
+ for (unsigned int c : comps)
+ if (c >= 1) expanded.insert((int)(c - 1));
+ } else {
+ expanded.insert(fid);
+ }
+ }
+ unprintable_set = std::move(expanded);
+ }
+}
+
+void sanitize_mixed_gradient_curve_array(std::vector& vals)
+{
+ for (size_t i = 0; i < vals.size(); ++i) {
+ if (vals[i].empty())
+ continue;
+ // parse_gradient_curve returns empty for both "empty input" and "<2 valid points";
+ // we already skipped empty, so an empty result means a corrupted single-point slot.
+ if (parse_gradient_curve(vals[i]).empty()) {
+ BOOST_LOG_TRIVIAL(warning) << "sanitize_mixed_gradient_curve_array: slot "
+ << i << " curve \"" << vals[i]
+ << "\" has fewer than 2 valid points; clearing to linear";
+ vals[i].clear();
+ }
+ }
+}
+
+bool try_parse_mixed_components_strict(const std::string &str,
+ std::vector &components,
+ std::string &err)
+{
+ components.clear();
+ if (str.empty()) {
+ err = "empty component list";
+ return false;
+ }
+ std::istringstream ss(str);
+ std::string token;
+ while (std::getline(ss, token, ',')) {
+ if (token.empty()) {
+ err = "empty component index";
+ return false;
+ }
+ try {
+ const long val = std::stol(token);
+ if (val < 1) {
+ err = "component index must be >= 1 (got " + token + ")";
+ return false;
+ }
+ components.push_back(static_cast(val));
+ } catch (...) {
+ err = "invalid component index \"" + token + "\"";
+ return false;
+ }
+ }
+ if (components.size() < 2) {
+ err = "at least 2 components required (got " + std::to_string(components.size()) + ")";
+ return false;
+ }
+ std::set seen;
+ for (unsigned int c : components) {
+ if (!seen.insert(c).second) {
+ err = "duplicate component index " + std::to_string(c);
+ return false;
+ }
+ }
+ return true;
+}
+
+bool try_parse_mixed_ratios_strict(const std::string &str,
+ size_t n_components,
+ std::string &err)
+{
+ if (str.empty())
+ return true;
+
+ CNumericLocalesSetter c_locale_setter;
+ std::vector ratios;
+ std::istringstream ss(str);
+ std::string token;
+ while (std::getline(ss, token, ',')) {
+ if (token.empty()) {
+ err = "empty ratio value";
+ return false;
+ }
+ try {
+ const double val = std::stod(token);
+ if (!(val > 0.0)) {
+ err = "ratio must be positive (got " + token + ")";
+ return false;
+ }
+ ratios.push_back(val);
+ } catch (...) {
+ err = "invalid ratio \"" + token + "\"";
+ return false;
+ }
+ }
+ if (ratios.size() != n_components) {
+ err = "expected " + std::to_string(n_components) + " ratio(s), got "
+ + std::to_string(ratios.size());
+ return false;
+ }
+ return true;
+}
+
+bool validate_gradient_range_strict(const std::string &str, std::string &err)
+{
+ if (str.empty())
+ return true;
+
+ CNumericLocalesSetter c_locale_setter;
+ float v0 = 0.f, v1 = 0.f;
+ if (std::sscanf(str.c_str(), "%f,%f", &v0, &v1) != 2) {
+ err = "expected two comma-separated floats, e.g. \"0.10,0.90\"";
+ return false;
+ }
+ if (!(v0 > 0.f && v0 < 1.f && v1 > 0.f && v1 < 1.f)) {
+ err = "start and end ratios must be in (0, 1)";
+ return false;
+ }
+ return true;
+}
+
+static void append_error(std::map &errors,
+ const std::string &key,
+ const std::string &msg)
+{
+ auto it = errors.find(key);
+ if (it == errors.end())
+ errors.emplace(key, msg);
+ else
+ it->second += "; " + msg;
+}
+
+static bool has_mixed_sub_params_specified(
+ const std::vector &comp_strs,
+ const std::vector &ratio_strs,
+ const std::vector &gradient_flags)
+{
+ for (const std::string &s : comp_strs)
+ if (!s.empty()) return true;
+ for (const std::string &s : ratio_strs)
+ if (!s.empty()) return true;
+ for (unsigned char g : gradient_flags)
+ if (g) return true;
+ return false;
+}
+
+static bool mixed_string_array_was_specified(const std::vector &vals)
+{
+ for (const std::string &s : vals)
+ if (!s.empty())
+ return true;
+ return false;
+}
+
+static bool mixed_bool_array_was_specified(const std::vector &vals)
+{
+ for (unsigned char v : vals)
+ if (v)
+ return true;
+ return false;
+}
+
+static void check_mixed_array_size_required(std::map &errors,
+ const std::string &opt_key,
+ size_t actual_size,
+ size_t expected_size)
+{
+ if (actual_size != expected_size) {
+ append_error(errors, opt_key,
+ "array size " + std::to_string(actual_size)
+ + " does not match filament slot count " + std::to_string(expected_size));
+ }
+}
+
+std::map validate_mixed_filament_params(
+ const std::vector &is_mixed,
+ const std::vector &comp_strs,
+ const std::vector &ratio_strs,
+ const std::vector &gradient_flags,
+ const std::vector &gradient_range_strs,
+ const std::vector &gradient_curve_strs)
+{
+ std::map errors;
+
+ if (has_mixed_sub_params_specified(comp_strs, ratio_strs, gradient_flags)
+ && !has_any_mixed_filament(is_mixed)) {
+ append_error(errors, "filament_is_mixed",
+ "must be set when mixed filament parameters are specified");
+ return errors;
+ }
+
+ if (!has_any_mixed_filament(is_mixed))
+ return errors;
+
+ const size_t slot_count = is_mixed.size();
+
+ // Rule 1: mixed filament model → components & ratios arrays must cover every slot.
+ check_mixed_array_size_required(errors, "filament_mixed_components", comp_strs.size(), slot_count);
+ check_mixed_array_size_required(errors, "filament_mixed_sublayer_ratios", ratio_strs.size(), slot_count);
+
+ // Rule 2: gradient passed (any slot true) → gradient & range arrays must cover every slot.
+ const bool gradient_specified = mixed_bool_array_was_specified(gradient_flags);
+ if (gradient_specified) {
+ check_mixed_array_size_required(errors, "filament_mixed_gradient", gradient_flags.size(), slot_count);
+ check_mixed_array_size_required(errors, "filament_mixed_gradient_range", gradient_range_strs.size(), slot_count);
+ }
+
+ // Rule 3: curve passed (any non-empty entry) → curve array must cover every slot.
+ const bool curve_specified = mixed_string_array_was_specified(gradient_curve_strs);
+ if (curve_specified)
+ check_mixed_array_size_required(errors, "filament_mixed_gradient_curve", gradient_curve_strs.size(), slot_count);
+
+ size_t num_physical = 0;
+ for (unsigned char v : is_mixed)
+ if (!v) ++num_physical;
+
+ for (size_t i = 0; i < is_mixed.size(); ++i) {
+ if (!is_mixed[i])
+ continue;
+
+ const std::string slot = "slot " + std::to_string(i + 1);
+ const std::string comp_str = i < comp_strs.size() ? comp_strs[i] : "";
+
+ std::vector components;
+ std::string comp_err;
+ if (!try_parse_mixed_components_strict(comp_str, components, comp_err)) {
+ append_error(errors, "filament_mixed_components", slot + ": " + comp_err);
+ continue;
+ }
+
+ for (unsigned int c : components) {
+ if (c > num_physical) {
+ append_error(errors, "filament_mixed_components",
+ slot + ": component " + std::to_string(c)
+ + " out of range (max physical filament index is "
+ + std::to_string(num_physical) + ")");
+ break;
+ }
+ if (c == i + 1) {
+ append_error(errors, "filament_mixed_components",
+ slot + ": cannot reference itself as a component");
+ break;
+ }
+ const size_t idx0 = static_cast(c - 1);
+ if (idx0 < is_mixed.size() && is_mixed[idx0]) {
+ append_error(errors, "filament_mixed_components",
+ slot + ": component " + std::to_string(c)
+ + " references a mixed filament slot");
+ break;
+ }
+ }
+
+ std::string ratio_err;
+ const std::string ratio_str = i < ratio_strs.size() ? ratio_strs[i] : "";
+ if (!try_parse_mixed_ratios_strict(ratio_str, components.size(), ratio_err))
+ append_error(errors, "filament_mixed_sublayer_ratios", slot + ": " + ratio_err);
+
+ const bool gradient_on = i < gradient_flags.size() && gradient_flags[i];
+ if (gradient_on) {
+ if (components.size() != 2) {
+ append_error(errors, "filament_mixed_gradient",
+ slot + ": gradient requires exactly 2 components");
+ }
+
+ if (gradient_specified) {
+ std::string range_err;
+ const std::string range_str = i < gradient_range_strs.size() ? gradient_range_strs[i] : "";
+ if (!validate_gradient_range_strict(range_str, range_err))
+ append_error(errors, "filament_mixed_gradient_range", slot + ": " + range_err);
+ }
+
+ if (curve_specified) {
+ const std::string curve_str = i < gradient_curve_strs.size() ? gradient_curve_strs[i] : "";
+ if (!curve_str.empty() && parse_gradient_curve(curve_str).empty())
+ append_error(errors, "filament_mixed_gradient_curve",
+ slot + ": invalid curve (need at least 2 valid control points)");
+ }
+ }
+ }
+
+ return errors;
+}
+
+} // namespace Slic3r
diff --git a/src/libslic3r/FilamentMixer.hpp b/src/libslic3r/FilamentMixer.hpp
new file mode 100644
index 0000000000..81ddd29e46
--- /dev/null
+++ b/src/libslic3r/FilamentMixer.hpp
@@ -0,0 +1,164 @@
+#ifndef SLIC3R_FILAMENT_MIXER_HPP
+#define SLIC3R_FILAMENT_MIXER_HPP
+
+#include
+#include