Compare commits

...

82 Commits

Author SHA1 Message Date
ExPikaPaka
d102ed1df4 Merge branch 'main' into feature/cache_profiles_and_optimize_loading_speed 2026-07-09 08:39:08 +02:00
Kris Austin
2194037d16 test: cover floor/ceil and the built-in function boundary in the placeholder parser (#14667)
round() already had unit coverage; floor() and ceil() had none. Add the missing
positive cases for both signs, plus round()'s half-away-from-zero tie-break, and
one negative case asserting that a name outside the grammar's built-in function
set is treated as an undefined variable and throws, rather than being passed
through to a math library.
2026-07-09 09:57:06 +08:00
Kris Austin
7d17400443 fix: dangling static lambda crashes support G-code export on repeated slices (#14677)
GCode::extrude_support declared its per-path speed helper as a function-local
static lambda that captures `this` by reference. The closure is built once, on
the first extrude_support call, and reused for the rest of the process, so a
second G-code export in the same process runs the helper against a `this` from
the first export's stack frame, which has already returned.

The stale `this` flows through NOZZLE_CONFIG(...) -> cur_extruder_index() ->
GCodeWriter::filament(), reading a garbage current-extruder id and indexing
with it. It is silent whenever the reused stack still holds a usable pointer,
and an order-dependent SIGSEGV otherwise; AddressSanitizer reports it as a
stack-use-after-return in GCodeWriter::filament(). It is the only static
capturing lambda in libslic3r.

Drop static so the closure is rebuilt each call against the live frame. Add an
fff_print regression test that slices a support object twice in one process; it
fails without the fix (stack-use-after-return under ASan) and passes with it.
2026-07-09 08:56:03 +08:00
π²
bc6ffcfb31 Anisotropic surfaces + Separated Infills (remake) (#11682)
Co-authored-by: Rodrigo Faselli <162915171+RF47@users.noreply.github.com>
Co-authored-by: Ian Bassi <ian.bassi@outlook.com>
2026-07-08 15:40:19 -03:00
Ian Bassi
378843a4da Remove unused variable (#14670) 2026-07-08 15:15:50 -03:00
Ian Bassi
20a66fa99b Top Surface Expansion (#14296)
Co-authored-by: Rodrigo Faselli <162915171+RF47@users.noreply.github.com>
2026-07-08 14:20:40 -03:00
Ian Bassi
da149ee75a Add toolchange ordering option (Standard/Cyclic). (#13582) 2026-07-08 14:18:41 -03:00
Kris Austin
781ecdc2c1 ci: run unit tests on Windows and macOS (#14443)
* ci: run unit tests on Windows and macOS

The Unit Tests CI job only ran on Linux, so platform-specific bugs
invisible to a Linux build could land undetected (e.g. the MSVC-only
NfpPlacer crash fixed in #14267). The full non-[NotWorking] suite already
builds and passes on every shipped arch, so this wires them into CI.

A reusable unit_tests.yml, called once per built arch, downloads that
arch's test artifact and runs ctest. Each build leg builds the test
executables and uploads them; a single publish_test_results job on Linux
aggregates the JUnit results into one check.

Coverage: Linux x86_64 + aarch64, Windows x64 + arm64, macOS arm64.
macOS x86_64 is deferred (cross-built on arm64, needs Rosetta).

- build_release_vs.bat: "tests" token enables BUILD_TESTS
- build_release_macos.sh: -T builds and runs tests; ORCA_TESTS_BUILD_ONLY
  builds them without running (used by CI)
- scripts/run_unit_tests.sh: parameterized test dir and build config

Addresses #11273.

* ci: bump actions/checkout to v7 in reusable unit_tests workflow

Match the actions/checkout v6->v7 bump (#14517) that upstream applied to
the inline test job this reusable workflow replaces.
2026-07-08 22:00:35 +08:00
Kris Austin
b58025575d fix: isolate calibration temp paths per user (#14619)
* fix: isolate calibration temp paths per user

The calibration temp files under <temp>/calib were file-scope statics
initialized before set_temporary_dir() runs at startup, so they kept
using the shared system temp root and missed the per-user isolation
added in #14607. On Linux every account shares /tmp, so the first user
to calibrate owns /tmp/calib and later users fail to write there, the
same cross-user collision #14607 fixed for model backups, STEP import,
and part skip.

Build the paths lazily from temporary_dir() instead, through a
calib_temp_dir() accessor and a calib_temp_file() join helper. The base
becomes <temp>/orcaslicer_<uid>/calib on Linux and is unchanged on
Windows, where the temp dir is already per user.

Also make StoreParams::path a std::string rather than a non-owning
const char*. The calibration code had to keep a std::string alive
solely to feed that pointer, and the field was uninitialized by
default; owning the string removes the lifetime hazard for all three
callers and makes the entry guard a reliable empty() check. Confined to
the 3mf project exporter (three callers, two internal reads); no
on-disk, format, or ABI impact.

Follows up on #14607 per @Noisyfox's review suggestion.
2026-07-08 21:14:05 +08:00
Mister Anderson
b37fa41742 dedupe-issues.yml remove unsupported claude_args option (#14627)
* dedupe-issues.yml remove unsupported claude_args option

claude_args: is causing an error. Only calling for "--model" anyway, so replaced with model: option.

* Merge branch 'main' into MisterAnderson91-dedupe-issues-yml-update
2026-07-08 21:12:08 +08:00
Kris Austin
dec67345be fix: prevent out-of-bounds crash in Arachne beading interpolation (#14656)
* fix: prevent out-of-bounds crash in Arachne beading interpolation

SkeletalTrapezoidation::interpolate() derives an inset index from `left` but
uses it to index the merged beading, which follows the thicker of left/right.
When the thicker side has fewer insets, the index runs past the end and the
slicer crashes during "Generating walls".

Skip the adjustment when the index is out of range, as the adjacent guards
already do. interpolate() uses no instance state, so make it static and add a
regression test that exercises it directly.

Fixes #14584
2026-07-08 20:58:39 +08:00
anjis
cf86f20ae1 Improve filament change time estimation for CC & CC2 printers and add purge length statistics. (#14663)
* Improve filament change time estimation for CC & CC2 printers and add purge length statistics.

* fix(gcode): route elegoo M6211 handling
2026-07-08 20:48:32 +08:00
anjis
cab62070b5 Fix garbled Chinese filenames when importing ZIP files. (#14633)
* Fix garbled Chinese filenames when importing ZIP files.

* fix: avoid repeated ZIP path CRC calculation
2026-07-08 20:24:55 +08:00
Ian Bassi
12b63ebe36 Localization context (verb noun adjective adverb) (#14646)
* Torre de purga capitalization

* Russian navigation back

* Inches

* verb noun adjective adverb

* Posterior

* Fix atras for camera view

* Camera view
2026-07-08 09:16:00 -03:00
mlugo-apx
1d61962ea7 Add Vertical/Horizontal axis-lock checkboxes to Support Painting (#14262)
* Support Painting: add Vertical/Horizontal axis-lock checkboxes

Adds the Vertical and Horizontal axis-lock checkboxes to the Support
Painting gizmo, matching the UI in the MMU Segmentation and Seam
Painter gizmos. The underlying constraint logic has lived in
GLGizmoPainterBase since #2424 and already applies to any
ToolType::BRUSH action — the Support gizmo was the only painter
without the UI to enable it.

The Circle and Sphere brush arms are consolidated into a single
"if (Circle || Sphere)" block matching the structure of
GLGizmoMmuSegmentation::on_render_input_window, eliminating
duplicate cursor-radius and axis-lock UI code.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

* Support Painting: keep Circle/Sphere as separate tool arms per review

Reviewer requested keeping a separate condition per tool for future
extensibility rather than merging Circle and Sphere into one branch.
This restores the upstream Circle/Sphere arm structure and adds the
Vertical/Horizontal axis-lock options to each arm, making the change
purely additive over upstream.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
Co-authored-by: yw4z <ywsyildiz@gmail.com>
2026-07-08 04:11:47 +03:00
Kris Austin
4188ed2e00 feat: add regex_replace() string transform to placeholder templates (#14650)
feat: add regex_replace() string transform to filename templates

The filename template language could test strings (=~, !~, one_of) but
never rewrite one, so there was no supported way to reshape a placeholder
value, such as dropping a file extension from {first_object_name}.

Add regex_replace(subject, /pattern/, replacement), reusing the existing
regex-literal syntax and boost::regex engine. Every placeholder keeps
returning its exact value and the template does the transform explicitly:

  {regex_replace(first_object_name, /\.[^.]*$/, "")}   strip any extension

The replacement may reference capture groups ($1, $2, ...). It is one
grammar function mirroring digits(), with the name registered as a keyword
so it is not parsed as a variable.
2026-07-08 08:58:51 +08:00
Ian Bassi
bec1ce706c Fix localization context (#14642)
Co-authored-by: Alexandre Folle de Menezes <afmenez@terra.com.br>
2026-07-07 12:15:37 -03:00
yw4z
b2adfb5c13 Fix minimize & wrapped text issue on shared profiles notification (#14604)
Update NotificationManager.cpp
2026-07-07 14:24:55 +03:00
ExPikaPaka
d7b49d9d68 Transfer all Preset fields from cache via move assignmet
apply_vendor_preset_group was copying fields manually and missed
bundle_id, user_id, base_id, sync_info, updated_time, key_values,
ini_str. Replace field-by-field copy with move assignment of the
fully-deserialized Preset, then restore the vendor pointer which
is excluded from serialization.
2026-07-07 12:10:11 +02:00
ExPikaPaka
f512872e35 Rvert from per-verndor to single cache file
Replace N per-vendor .cache files with a single system_presets.cache
that holds all vendors and presets in one serialized blob.

Cache load is now all-or-nothing: on hit all vendors are applied from
the bundle (sub-second); on miss all vendors are parsed from JSON and
a fresh bundle is written to the user cache dir.

Invalidation is driven by bundle_key - a sorted concatenation of all
vendor JSON version strings. Any vendor update invalidates the whole
cache and triggers re-parse on next launch.

Guide wizard (WebGuideDialog) loads the bundled cache into a plain
PresetBundle instead of a separate VendorGuideData struct, removing
the duplicate data model.

generate_system_cache simplified from a per-vendor loop to a single
save_system_presets_cache() call producing one output file.
2026-07-07 08:48:32 +02:00
Rodrigo Faselli
b7d0bb60d9 Update test_skirt_brim.cpp (#14630) 2026-07-07 10:41:19 +08:00
Robert J Audas
1717c0f263 Fix brim first layer speed (#14616)
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-07-06 19:04:32 -03:00
Ian Bassi
3bee58fcab Spanish Fuzzy Skin standarized (#14622) 2026-07-06 14:14:34 -03:00
Ian Bassi
6b7cfd71b1 Spanish update + Gettext for all (#14620) 2026-07-06 13:32:47 -03:00
sharanchius
ab6ec672b2 hms files translation to Lithuanian (#14578) 2026-07-06 12:51:29 -03:00
raistlin7447
29f31b9b38 fff_print: a maintainable testing framework (proposal + coverage) (#14426)
* fix: initialize Print::m_isBBLPrinter

Built outside the GUI/CLI (headless tests, embedded use) the member was read
uninitialized: is_BBL_printer()/wipe_tower_type() feed it into ToolOrdering,
which then non-deterministically dropped per-feature filament assignments.
Default it to false, the value the GUI and CLI already assign for non-Bambu
printers.

* docs(test): add the fff_print testing contract

tests/fff_print/README.md codifies how the suite is organized: one file per
subsystem (each owning both in-memory and emitted-G-code assertions), flat
behavioral test names with a single [Subsystem] tag, a robust-tests guide,
the shared helpers, and an add-a-test checklist. Linked from tests/CLAUDE.md.

* test(fff_print): reorganize the suite to the contract and add coverage

Bring every subsystem into one file per the README: rename the test_data
harness to test_helpers; consolidate skirt/brim; split multi-filament and
cooling into their own files; disperse the test_printgcode grab-bag and the
end-to-end smoke scenario into focused tests; fold test_gcode into
test_gcodewriter. Standardize names and tags, align cube tests on the cube()
helper, and de-qualify the flagship files.

New coverage: multi-filament per-feature and per-object routing; a skirt/brim
behavior matrix (the #14333 rework, including brim ears, with regression
coverage for #14319 and #14366); resolved extrusion-width and config
comments; custom-G-code placeholders; fan control and speed-marker
consumption.

Re-enable three slice tests previously tagged [NotWorking]: the clipper
"Coordinate outside allowed range" error that disabled them was specific to a
past CI runner environment and no longer reproduces.

* test(fff_print): tag arm64-flaky skirt/brim tests NotWorking

Four skirt/brim slice tests intermittently throw ClipperLib's "Coordinate
outside allowed range" on the macOS and Windows arm64 CI toolchains (an FP
divergence, not a slicing bug; see PR #14207). Linux x86_64 and aarch64 are
unaffected. Tag them [NotWorking] so ctest -LE NotWorking skips them.

* test(fff_print): re-enable the arm64 skirt/brim tests

These were tagged [NotWorking] as a stopgap when myfork's daily-driver build
combined them with the cross-platform CI on a base that predated upstream's
m_origin fix (99dea01cc3). With upstream merged in, Print::m_origin is
initialized and the "Coordinate outside allowed range" throw is gone, so the
tests pass on macOS/Windows arm64. Drop the tags.
2026-07-06 22:24:24 +08:00
SoftFever
a1ff45284c Fix version was not properly updated on non windows OS (#14617)
Fixed an issue where on non-Windows systems, the version was not properly written to the appconfig.
2026-07-06 22:16:28 +08:00
yw4z
cc89416055 Improve layout of transform gizmos (#14410)
* init

* add tooltips
2026-07-06 14:34:36 +03:00
ExPikaPaka
cb093b8fba Merge branch 'main' into feature/cache_profiles_and_optimize_loading_speed 2026-07-06 12:24:54 +02:00
ExPikaPaka
34fae25ed4 2026-07-06 12:24:47 +02:00
ExPikaPaka
c014f0403b Add a bit more tests 2026-07-06 10:20:13 +02:00
ExPikaPaka
3765549786 Add tests for Cache system 2026-07-06 09:53:58 +02:00
ExPikaPaka
d7bacd5c1c Minimize field duplication by moving Cache thing into PresetBundle 2026-07-06 08:37:32 +02:00
ExPikaPaka
fd3bee3c62 Serealize all value fields for Preset class to minimize regression later 2026-07-06 08:16:23 +02:00
Gabriel Monteiro
fd80ded5a8 fix(gui): startup crash in clang/LLVM builds, null pointer UB in create_scaled_bitmap (#14521)
fix(gui): avoid null-pointer UB in create_scaled_bitmap with win == nullptr

create_scaled_bitmap() documents that win may be nullptr, but called
win->FromDIP() on it. Calling a member function through a null pointer
is undefined behavior: clang assumes `this` is non-null and deletes the
subsequent `win ?` null check added in #13117, turning the fallback
branch into an unconditional virtual call through a null vtable.
This crashed LLVM/clang-cl builds at startup (access violation reading
0x0 in BBLTopbar creation); MSVC builds were unaffected by luck.

Use the static, null-safe wxWindow::FromDIP(x, win) overload instead,
which falls back to the primary display DPI. Behavior is unchanged for
non-null windows.
2026-07-06 11:28:03 +08:00
Kiss Lorand
db2f861a11 Fix painted mouse-ear brims snapping to wrong location (#14606)
Fix painted mouse-ear brims moving to incorrect locations when Brim follows compensated outline is enabled.
2026-07-06 09:28:41 +08:00
raistlin7447
2860353b9f fix: multi-user slicing crash on shared temp dir (#14607)
On Linux every account shares /tmp, but slicing builds temp paths there under
fixed, app-owned names via temporary_dir() (model backups, STEP import,
part-skip). The first user to slice creates and owns those dirs, so the next
user cannot write under them and slicing crashes with "No such file or
directory".

Tag the app temp root with the user id at startup (<temp>/orcaslicer_<uid>)
so every temporary_dir() consumer is isolated at once. The id stays at the
top level of the world-writable system temp so each user's dir is created
directly there; a shared parent dir would be owned by whichever user made it
first. The root is pre-created because STEP import writes into it directly.
Windows keeps the plain temp dir since it is already per-user.

Fixes #10108. Same root cause as #5969.
2026-07-06 09:18:04 +08:00
Alexandre Folle de Menezes
218ec29d74 Improve and complement ptBR translation (#14470)
Co-authored-by: yw4z <ywsyildiz@gmail.com>
2026-07-05 21:29:46 +03:00
SoftFever
8747605930 Fixes invalid inherits/compatible_printers/compatible_prints references that point at a deleted or renamed preset. (#14595)
* fix profile reference for Creality

* fix profile reference for Blocks

* fix profile reference for OrcaArena

* fix profile reference for re3D

* fix profile reference for Chuanying

* fix profile reference for Prusa

* fix profile reference for Wanhao France

* fix profile reference for MagicMaker

* fix profile reference for Afinia

Remove the ABS/ABS+/PLA/TPU/Value ABS/Value PLA filament presets that referenced the non-existent "Afinia H400 Pro" printer. The real printer is "Afinia H+1(HS)", already served by the @HS filament variants.

* fix profile reference for Comgrow

Remove the orphaned "0.20mm Standard @Comgrow T500 1.0" process preset and its process_list entry. Its only compatible printer "Comgrow T500 1.0 nozzle" never existed (the T500 model defines nozzle diameters 0.4/0.6/0.8 only).

* always run check_preset_references
2026-07-05 20:26:36 +08:00
SoftFever
ee1f4ef1d6 Show preset name in cloud sync conflict and error messages (#14592)
The 409 conflict notification, the force-push confirmation dialog, and the payload-too-large (413) dialog now name the affected preset. The name was already parsed from the conflict body but never surfaced. The account-level preset-limit message stays generic since it isn't about one specific preset.
2026-07-05 17:05:41 +08:00
SoftFever
5ba5c6672d Fix reload from disk for STEP models after reopening a project (#12992) (#14591)
* Fix reload from disk for STEP models after reopening a project (#12992)

reload_from_disk matched reloaded source volumes with an exact
source.input_file string comparison. After a project is saved and
reopened, the stored source path is only the filename (the default,
non-full-path save) while a freshly re-imported volume carries a full
path, so the comparison never matched: reload fell into fail_list and
the "locate file" dialog was effectively useless for STEP models.

Fall back to a case-insensitive filename comparison when the exact
paths differ, so the existing same-folder source lookup (and the
locate dialog) can reload the model. Projects that stored absolute
source paths still match exactly as before; no 3mf format change.

* Add Preferences option to store full source paths in projects

Expose the existing export_sources_full_pathnames setting (previously
only editable in the config file) as a checkbox under Preferences >
General > Project. Enabling it stores absolute source paths in saved
projects, so "Reload from disk" works when the source file is kept in
a different folder than the project (companion to #12992).
2026-07-05 16:40:00 +08:00
Valerii Bokhan
b68cb8b97b Adding the add:north filament profiles to OrcaFilamentLibrary (#13366)
* Adding add:north filament profiles to OrcaFilamentLibrary

* addnorth filament profiles: moving the files to the BBL folder

* addnorth filament profiles: fixing filenames and setting ids

* addnorth filament profiles: updated settings (baseed on 26-06-2026 version)

* addnorth filament profiles: removed unsupported printers

* bump version

---------

Co-authored-by: SoftFever <softfeverever@gmail.com>
2026-07-05 15:41:11 +08:00
Florian
2d4f7a7437 added option to limit polyhole edges (#12349)
Co-authored-by: Rodrigo Faselli <162915171+RF47@users.noreply.github.com>
2026-07-04 23:03:36 -03:00
SoftFever
dd99549d20 fix gcode time estimiation error (#14573)
fix gcode estimiation error
2026-07-04 15:29:19 +08:00
ExPikaPaka
b3a0c8bd40 Preserve disabled filament overrides (nil) through cloud sync (#14550) 2026-07-04 10:42:48 +08:00
Valerii Bokhan
1882861a98 Feature: Small perimeters speed for supports (#13459) 2026-07-03 17:27:57 -03:00
yw4z
65a9e655cf Add wireframe toggle to canvas menu and fix keyboard shortcut (#14469) 2026-07-03 17:27:30 -03:00
Ian Bassi
61168cdb6f Do not reduce speed for calibrations (#13658) 2026-07-03 17:27:18 -03:00
Ian Bassi
a6dd002fe7 Top and Bottom layer directions (#13631)
* Top layer direction

* Bottom layer direction

* comSimple
2026-07-03 17:27:05 -03:00
Ian Bassi
8309a9e8ee Exposing STEP import values (#14484)
Co-authored-by: yw4z <ywsyildiz@gmail.com>
2026-07-03 17:19:24 -03:00
yw4z
5a629c0199 Add OrcaSlicer Badge to Handy Models (#14487) 2026-07-03 16:54:26 -03:00
sharanchius
db48951c94 Update Lithuanian translations in text.js (#14553) 2026-07-03 15:48:02 -03:00
Wegerich
f33bf459ba Update adaptive pressure advance option labels and tooltips (#14411)
Co-authored-by: yw4z <ywsyildiz@gmail.com>
Co-authored-by: Ioannis Giannakas <59056762+igiannakas@users.noreply.github.com>
Co-authored-by: Ian Bassi <ian.bassi@outlook.com>
2026-07-03 11:42:23 -03:00
Ian Chua
aa7986b8d0 fix: add logging for refresh token flow and use local os keychain as source of truth. (#14531) 2026-07-03 22:27:17 +08:00
foXaCe
02799e68ed i18n(fr): catalog 3 untracked dialogs and complete the French catalog (#14555) 2026-07-03 09:59:06 -03:00
TheLegendTubaGuy
a564a01013 fix: preserve PA batch speed and accel overrides (#14540)
* fix: preserve PA batch speed and accel overrides

* Remove broken ModelConfig set_config_values
2026-07-03 16:28:57 +08:00
ExPikaPaka
e5ed64a307 Update check for stale cache 2026-07-03 07:46:51 +02:00
ExPikaPaka
47fd55d462 Revert json cache back 2026-07-03 07:46:06 +02:00
SoftFever
b90439adba Merge branch 'main' into feature/cache_profiles_and_optimize_loading_speed 2026-07-01 16:21:11 +08:00
ExPikaPaka
31270d4027 Fix build for windows arm64 2026-07-01 08:50:58 +02:00
Rodrigo Faselli
c9afb98ca2 Merge branch 'main' into feature/cache_profiles_and_optimize_loading_speed 2026-06-28 21:27:14 -03:00
Rodrigo Faselli
d102157138 Merge branch 'main' into feature/cache_profiles_and_optimize_loading_speed 2026-06-26 07:47:50 -03:00
ExPikaPaka
f088a18167 Remove leftover cache file 2026-06-18 10:38:05 +02:00
ExPikaPaka
f2f5bea4bf Skip invalid vendors 2026-06-18 10:37:04 +02:00
ExPikaPaka
0cd9e77e95 Remove BOM added by VSC 2026-06-18 08:52:42 +02:00
ExPikaPaka
f35c2b1ef7 Use get_vendor_cache_key() to match cache keys written by the app 2026-06-18 08:35:13 +02:00
ExPikaPaka
97dee9349b Fix use-after-free in CallAfter lambda; replace raw thread pointer with unique_ptr 2026-06-18 08:35:03 +02:00
ExPikaPaka
493597f132 Remove CachedPrinterModel/VendorProfile/Preset mirror structs from VendorCache 2026-06-18 08:34:50 +02:00
ExPikaPaka
517fa29d6f Add cereal serialize() to VendorProfile, PrinterModel, Preset, and Semver 2026-06-18 08:34:27 +02:00
ExPikaPaka
2ab9e14525 Simplify code a bit more 2026-06-17 09:17:07 +02:00
ExPikaPaka
b6a1546ff5 Merge branch 'feature/cache_profiles_and_optimize_loading_speed' of https://github.com/OrcaSlicer/OrcaSlicer into feature/cache_profiles_and_optimize_loading_speed 2026-06-17 08:50:38 +02:00
ExPikaPaka
6e36411736 Simplify code by mergin it in PresetBundle 2026-06-17 08:46:06 +02:00
ExPikaPaka
0ec6c03c83 Generate cache per vendor 2026-06-17 08:45:24 +02:00
SoftFever
7a8f5a88c9 Merge branch 'main' into feature/cache_profiles_and_optimize_loading_speed 2026-06-16 16:27:46 +08:00
ExPikaPaka
83e1712ded Add inspecting tool and fix CI cache generation 2026-06-16 08:57:33 +02:00
ExPikaPaka
80fbf3b405 Add cache to GuideDialog as previos version didn't work as expected 2026-06-16 08:57:09 +02:00
ExPikaPaka
5b80d0cc07 Handle corrupted files 2026-06-16 08:56:25 +02:00
ExPikaPaka
88901a969f Add partial cache generation when only one of the vendros is changed to speed up recalculation time 2026-06-15 09:28:59 +02:00
ExPikaPaka
5d0c640f7b Add CI\CD step to prepare cache file in ahead of time so user does not need to wait 2026-06-15 09:19:53 +02:00
ExPikaPaka
d861e8af22 Integrate caching into WebGuideDialog which speeds up time of SetupWizzard and PrinterSelection dialog 2026-06-15 08:52:55 +02:00
ExPikaPaka
6186436b23 Removing user\bundle serialization and keeping it only for system presets 2026-06-15 08:31:33 +02:00
ExPikaPaka
604f15e20d Add caching system for presets 2026-06-11 08:52:44 +02:00
350 changed files with 113415 additions and 14551 deletions

View File

@@ -122,54 +122,73 @@ jobs:
arch: universal
macos-combine-only: true
secrets: inherit
unit_tests:
name: Unit Tests
# Tests are built on the aarch64 leg by default (faster GitHub arm runner),
# so run them there; self-hosted builds them on the amd64 server instead.
runs-on: ${{ vars.SELF_HOSTED && 'orca-lnx-server' || 'ubuntu-24.04-arm' }}
# One test job per built arch, on the runner that built it.
unit_tests_linux_x86_64:
name: Linux x86_64
needs: build_linux
if: ${{ !cancelled() && success() }}
uses: ./.github/workflows/unit_tests.yml
with:
os: ${{ vars.SELF_HOSTED && 'orca-lnx-server' || 'ubuntu-24.04' }}
artifact: ${{ github.sha }}-tests-linux-x86_64
unit_tests_linux_aarch64:
name: Linux aarch64
needs: build_linux
if: ${{ !cancelled() && success() }}
uses: ./.github/workflows/unit_tests.yml
with:
os: ubuntu-24.04-arm
artifact: ${{ github.sha }}-tests-linux-aarch64
unit_tests_windows_x64:
name: Windows x64
needs: build_windows
if: ${{ !cancelled() && success() }}
uses: ./.github/workflows/unit_tests.yml
with:
os: ${{ vars.SELF_HOSTED && 'orca-win-server' || 'windows-latest' }}
artifact: ${{ github.sha }}-tests-windows-x64
unit_tests_windows_arm64:
name: Windows arm64
needs: build_windows
if: ${{ !cancelled() && success() }}
uses: ./.github/workflows/unit_tests.yml
with:
os: windows-11-arm
artifact: ${{ github.sha }}-tests-windows-arm64
test-dir: build-arm64/tests
unit_tests_macos_arm64:
name: macOS arm64
needs: build_macos_arch
if: ${{ !cancelled() && success() }}
uses: ./.github/workflows/unit_tests.yml
with:
os: ${{ vars.SELF_HOSTED && 'orca-macos-arm64' || 'macos-14' }}
artifact: ${{ github.sha }}-tests-macos-arm64
test-dir: build/arm64/tests
publish_test_results:
name: Publish Test Results
needs: [unit_tests_linux_x86_64, unit_tests_linux_aarch64, unit_tests_windows_x64, unit_tests_windows_arm64, unit_tests_macos_arm64]
if: ${{ !cancelled() }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
with:
sparse-checkout: |
.github
scripts
tests
- name: Apt-Install Dependencies
if: ${{ !vars.SELF_HOSTED }}
uses: ./.github/actions/apt-install-deps
- name: Restore Test Artifact
- name: Download Test Results
uses: actions/download-artifact@v8
with:
name: ${{ github.sha }}-tests
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~4.3.0" # use most recent 4.3.x version
useLocalCache: true # <--= Use the local cache (default is 'false').
useCloudCache: true
- name: Unpackage and Run Unit Tests
timeout-minutes: 20
run: |
tar -xvf build_tests.tar
scripts/run_unit_tests.sh
- name: Upload Test Logs
uses: actions/upload-artifact@v7
if: ${{ failure() }}
with:
name: unit-test-logs
path: build/tests/**/*.log
pattern: test-results-*
path: test-results
# Best-effort: a read-only token (e.g. fork PRs) can't write the check, so
# don't let a publish failure fail the run. The test jobs gate correctness.
- name: Publish Test Results
if: always()
continue-on-error: true
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: "ctest_results.xml"
- name: Delete Test Artifact
files: "test-results/**/*.xml"
- name: Delete Test Results
if: success()
uses: geekyeggo/delete-artifact@v6
with:
name: ${{ github.sha }}-tests
name: test-results-*
failOnError: false
flatpak:
name: "Flatpak"
container:

View File

@@ -141,8 +141,35 @@ jobs:
- name: Build slicer mac
if: runner.os == 'macOS' && !inputs.macos-combine-only
working-directory: ${{ github.workspace }}
# arm64 only: build the tests here; the unit_tests_macos job runs them.
env:
ORCA_TESTS_BUILD_ONLY: ${{ inputs.arch == 'arm64' && '1' || '' }}
run: |
./build_release_macos.sh -s -n -x ${{ !vars.SELF_HOSTED && '-1' || '' }} -a ${{ inputs.arch }} -t 10.15
./build_release_macos.sh -s -n -x ${{ !vars.SELF_HOSTED && '-1' || '' }} -a ${{ inputs.arch }} -t 10.15 ${{ inputs.arch == 'arm64' && '-T' || '' }}
- name: Pack unit tests mac
if: runner.os == 'macOS' && !inputs.macos-combine-only && inputs.arch == 'arm64'
working-directory: ${{ github.workspace }}
run: tar -cvf build_tests.tar build/arm64/tests
- name: Upload Test Artifact mac
if: runner.os == 'macOS' && !inputs.macos-combine-only && inputs.arch == 'arm64'
uses: actions/upload-artifact@v7
with:
name: ${{ github.sha }}-tests-macos-arm64
overwrite: true
path: build_tests.tar
retention-days: 5
if-no-files-found: error
- name: Generate system presets cache (macOS)
if: runner.os == 'macOS' && !inputs.macos-combine-only
working-directory: ${{ github.workspace }}
shell: bash
run: |
tool=$(find build/${{ inputs.arch }} -name generate_system_cache -type f | head -1)
profiles=$(find build/${{ inputs.arch }} -path "*/Resources/profiles" -type d | head -1)
"$tool" --path "$profiles" --log_level 2
- name: Pack macOS app bundle ${{ inputs.arch }}
if: runner.os == 'macOS' && !inputs.macos-combine-only
@@ -335,11 +362,44 @@ jobs:
# env:
# WindowsSdkDir: 'C:\Program Files (x86)\Windows Kits\10\'
# WindowsSDKVersion: '10.0.26100.0\'
# "tests" builds the unit tests too; the unit_tests_windows_* jobs run them.
run: |
$arch = "${{ inputs.arch }}"
if ($arch -eq "arm64") { .\build_release_vs.bat slicer arm64 } else { .\build_release_vs.bat slicer }
if ($arch -eq "arm64") { .\build_release_vs.bat slicer arm64 tests } else { .\build_release_vs.bat slicer tests }
shell: pwsh
- name: Generate system presets cache (Windows)
if: runner.os == 'Windows'
shell: pwsh
run: |
$buildDir = $env:BUILD_DIR
$tool = Get-ChildItem -Recurse -Path $buildDir -Filter "generate_system_cache.exe" | Select-Object -First 1
if (-not $tool) { Write-Error "generate_system_cache.exe not found in $buildDir"; exit 1 }
$profiles = Get-ChildItem -Recurse -Path $buildDir -Directory -Filter profiles |
Where-Object { $_.FullName -match 'resources' } | Select-Object -First 1
if (-not $profiles) { Write-Error "profiles directory not found in $buildDir"; exit 1 }
# Add the slicer's runtime DLL directory to PATH so generate_system_cache.exe
# can resolve its dependencies (TKernel.dll etc.) without a full install step.
$dll_dir = Get-ChildItem -Recurse -Path $buildDir -Filter "TKernel.dll" |
Select-Object -First 1 | Select-Object -ExpandProperty DirectoryName
if ($dll_dir) { $env:PATH = "$dll_dir;$env:PATH" }
& $tool.FullName --path $profiles.FullName --log_level 2
- name: Pack unit tests Win
if: runner.os == 'Windows'
working-directory: ${{ github.workspace }}
shell: pwsh
run: tar -cvf build_tests.tar ${{ env.BUILD_DIR }}/tests
- name: Upload Test Artifact Win
if: runner.os == 'Windows'
uses: actions/upload-artifact@v7
with:
name: ${{ github.sha }}-tests-windows-${{ inputs.arch }}
overwrite: true
path: build_tests.tar
retention-days: 5
if-no-files-found: error
# NSIS is x86-only; it runs (and the installer it emits runs) under ARM64's
# x86 emulation, packaging the native arm64 payload from build-arm64.
- name: Create installer Win
@@ -452,31 +512,43 @@ jobs:
if: runner.os == 'Linux'
shell: bash
run: |
# Build + tar the unit tests (-t) only on the leg that runs them: the
# aarch64 leg by default (faster GitHub arm runner), or amd64 when using
# self-hosted runners (no arm self-hosted server). unit_tests downloads
# this tarball. The profile validator is built with -s, so amd64 keeps it.
tests=${{ (!vars.SELF_HOSTED && inputs.arch == 'aarch64') || (vars.SELF_HOSTED && inputs.arch != 'aarch64') }}
if $tests; then flags=-istrlL; else flags=-isrlL; fi
./build_linux.sh "$flags"
# Build + tar the unit tests (-t) on both Linux legs so each arch
# (x86_64 + aarch64) gets tested by its own unit_tests_linux_* job.
./build_linux.sh -istrlL
./scripts/check_appimage_libs.sh ./build/package ./build/package/bin/orca-slicer
appimage=./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}${{ env.arch_suffix }}_${{ env.ver }}.AppImage
mv -n ./build/OrcaSlicer_Linux_V${{ env.ver_pure }}.AppImage "$appimage"
chmod +x "$appimage"
if $tests; then tar -cvpf build_tests.tar build/tests; fi
tar -cvf build_tests.tar build/tests
# Use tar because upload-artifacts won't always preserve directory structure
# and doesn't preserve file permissions
- name: Upload Test Artifact
if: runner.os == 'Linux' && ((!vars.SELF_HOSTED && inputs.arch == 'aarch64') || (vars.SELF_HOSTED && inputs.arch != 'aarch64'))
if: runner.os == 'Linux'
uses: actions/upload-artifact@v7
with:
name: ${{ github.sha }}-tests
name: ${{ github.sha }}-tests-linux-${{ inputs.arch == 'aarch64' && 'aarch64' || 'x86_64' }}
overwrite: true
path: build_tests.tar
retention-days: 5
if-no-files-found: error
- name: Generate system presets cache (Linux)
if: runner.os == 'Linux'
shell: bash
run: |
tool=$(find build -name generate_system_cache -type f | head -1)
if [ -z "$tool" ]; then echo "ERROR: generate_system_cache not found in build tree" >&2; exit 1; fi
"$tool" --path build/package/resources/profiles --log_level 2
# Re-pack the AppImage so the per-vendor caches are included
appimage=$(find build -maxdepth 1 -name "OrcaSlicer_Linux_AppImage*.AppImage" | head -1)
chmod +x "$appimage"
"$appimage" --appimage-extract
cp build/package/resources/profiles/*.cache 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
- name: Run external slicer regression tests
if: runner.os == 'Linux' && inputs.arch != 'aarch64'
timeout-minutes: 20

View File

@@ -41,7 +41,7 @@ jobs:
curl -L -o OrcaSlicer_profile_validator https://github.com/OrcaSlicer/OrcaSlicer/releases/download/nightly-builds/OrcaSlicer_profile_validator_Linux_Ubuntu2404_nightly
chmod +x ./OrcaSlicer_profile_validator
# validate profiles
# Validate all system profiles.
- name: validate system profiles
id: validate_system
continue-on-error: true
@@ -57,20 +57,6 @@ jobs:
set +e
./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 -v BBL -f 2>&1 | tee ${{ runner.temp }}/validate_filament_subtypes.log
exit ${PIPESTATUS[0]}
# Flag inherits/compatible_printers/compatible_prints references that point at a deleted or
# renamed preset. Opt-in per vendor for now (via -r); enabled for BBL and Qidi until other
# vendors' profiles are cleaned up. Runs before the custom-preset injection below.
- name: validate preset references for BBL and Qidi profiles
id: validate_preset_references
continue-on-error: true
run: |
set +e
rc=0
for v in BBL Qidi; do
./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 -v "$v" -r 2>&1 | tee -a ${{ runner.temp }}/validate_preset_references.log
[ ${PIPESTATUS[0]} -ne 0 ] && rc=1
done
exit $rc
- name: validate custom presets
id: validate_custom
@@ -180,7 +166,7 @@ jobs:
echo "${{ github.event.pull_request.number }}" > ${{ runner.temp }}/profile-check-results/pr_number.txt
- name: Prepare comment artifact
if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_preset_references.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
run: |
{
# Marker matched by check_profiles_comment.yml to delete prior comments.
@@ -215,15 +201,6 @@ jobs:
echo ""
fi
if [ "${{ steps.validate_preset_references.outcome }}" = "failure" ]; then
echo "### BBL/Qidi Preset Reference Validation Failed"
echo ""
echo '```'
head -c 30000 ${{ runner.temp }}/validate_preset_references.log || echo "No output captured"
echo '```'
echo ""
fi
if [ "${{ steps.validate_custom.outcome }}" = "failure" ]; then
echo "### Custom Preset Validation Failed"
echo ""
@@ -246,7 +223,7 @@ jobs:
retention-days: 1
- name: Fail if any check failed
if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_preset_references.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }}
run: |
echo "One or more profile checks failed. See above for details."
exit 1

View File

@@ -27,7 +27,7 @@ jobs:
with:
prompt: "/dedupe ${{ github.repository }}/issues/${{ github.event.issue.number || inputs.issue_number }}"
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
claude_args: "--model claude-sonnet-4-5-20250929"
model: "claude-sonnet-4-5-20250929"
claude_env: |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

73
.github/workflows/unit_tests.yml vendored Normal file
View File

@@ -0,0 +1,73 @@
name: Unit Tests
# Download a platform's test artifact, run ctest, and upload the JUnit
# results for aggregation. Called once per arch from build_all.yml.
on:
workflow_call:
inputs:
os:
required: true
type: string
artifact:
description: Test artifact uploaded by the build leg
required: true
type: string
test-dir:
description: Built tests dir; defaults to build/tests, override for arch-separated builds
required: false
type: string
default: build/tests
jobs:
unit_tests:
# Static "Unit Tests"; the per-arch label is the caller's job name, so the
# graph shows e.g. "Windows x64 / Unit Tests".
name: Unit Tests
runs-on: ${{ inputs.os }}
steps:
- name: Checkout
uses: actions/checkout@v7
with:
# tests/data is referenced by absolute path (TEST_DATA_DIR).
sparse-checkout: |
.github
scripts
tests
- name: Apt-Install Dependencies
if: runner.os == 'Linux' && !vars.SELF_HOSTED
uses: ./.github/actions/apt-install-deps
- name: Restore Test Artifact
uses: actions/download-artifact@v8
with:
name: ${{ inputs.artifact }}
- uses: lukka/get-cmake@latest
with:
cmakeVersion: "~4.3.0" # use most recent 4.3.x version
useLocalCache: true
useCloudCache: true
- name: Unpackage and Run Unit Tests
timeout-minutes: 20
shell: bash
run: |
tar -xvf build_tests.tar
# Multi-config generators (Windows/macOS) need a config; Linux is single-config.
scripts/run_unit_tests.sh "${{ inputs.test-dir }}" "${{ runner.os != 'Linux' && 'Release' || '' }}"
- name: Upload Test Logs
if: ${{ failure() }}
uses: actions/upload-artifact@v7
with:
name: unit-test-logs-${{ inputs.artifact }}
path: ${{ inputs.test-dir }}/**/*.log
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v7
with:
name: test-results-${{ inputs.artifact }}
path: ctest_results.xml
retention-days: 5
if-no-files-found: warn
- name: Delete Test Artifact
if: success()
uses: geekyeggo/delete-artifact@v6
with:
name: ${{ inputs.artifact }}

View File

@@ -710,7 +710,7 @@ endif ()
set(L10N_DIR "${SLIC3R_RESOURCES_DIR}/i18n")
set(BBL_L18N_DIR "${CMAKE_CURRENT_SOURCE_DIR}/localization/i18n")
add_custom_target(gettext_make_pot
COMMAND xgettext --keyword=L --keyword=_L --keyword=_u8L --keyword=L_CONTEXT:1,2c --keyword=_L_PLURAL:1,2 --add-comments=TRN --from-code=UTF-8 --no-location --debug --boost
COMMAND xgettext --keyword=L --keyword=_L --keyword=_u8L --keyword=L_CONTEXT:1,2c --keyword=_CTX:1,2c --keyword=_CTX_utf8:1,2c --keyword=_L_PLURAL:1,2 --add-comments=TRN --from-code=UTF-8 --no-location --debug --boost
-f "${BBL_L18N_DIR}/list.txt"
-o "${BBL_L18N_DIR}/OrcaSlicer.pot"
COMMAND hintsToPot ${SLIC3R_RESOURCES_DIR} ${BBL_L18N_DIR}

View File

@@ -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

View File

@@ -59,7 +59,7 @@ while getopts ":dpa:snt:xbc:i:1Tuh" opt; do
echo " -c: Set CMake build configuration, default is Release"
echo " -i: Add a prefix to ignore during CMake dependency discovery (repeatable), defaults to /opt/local:/usr/local:/opt/homebrew"
echo " -1: Use single job for building"
echo " -T: Build and run tests"
echo " -T: Build and run tests (set ORCA_TESTS_BUILD_ONLY=1 to build without running)"
exit 0
;;
* )
@@ -209,13 +209,10 @@ function build_slicer() {
cmake --build . --config "$BUILD_CONFIG" --target "$SLICER_BUILD_TARGET"
)
if [ "1." == "$BUILD_TESTS". ]; then
echo "Running tests for $_ARCH..."
(
set -x
cd "$PROJECT_BUILD_DIR"
ctest --build-config "$BUILD_CONFIG" --output-on-failure
)
# -T also runs the tests; ORCA_TESTS_BUILD_ONLY=1 builds them without
# running, so CI can build here and run them in a dedicated job.
if [ "1." == "$BUILD_TESTS". ] && [ "1." != "$ORCA_TESTS_BUILD_ONLY". ]; then
"$PROJECT_DIR/scripts/run_unit_tests.sh" "build/$_ARCH/tests" "$BUILD_CONFIG"
fi
echo "Verify localization with gettext..."

View File

@@ -20,6 +20,12 @@ for %%a in (%*) do (
if "%%a"=="-x" set USE_NINJA=1
)
@REM Check for unit-tests option ("tests")
set BUILD_TESTS=OFF
for %%a in (%*) do (
if /I "%%a"=="tests" set BUILD_TESTS=ON
)
if "%USE_NINJA%"=="1" (
echo Using Ninja Multi-Config generator
set CMAKE_GENERATOR="Ninja Multi-Config"
@@ -145,10 +151,10 @@ cd %build_dir%
echo on
set CMAKE_POLICY_VERSION_MINIMUM=3.5
if "%USE_NINJA%"=="1" (
cmake .. -G %CMAKE_GENERATOR% -DORCA_TOOLS=ON %SIG_FLAG% -DCMAKE_BUILD_TYPE=%build_type%
cmake .. -G %CMAKE_GENERATOR% -DORCA_TOOLS=ON %SIG_FLAG% -DBUILD_TESTS=%BUILD_TESTS% -DCMAKE_BUILD_TYPE=%build_type%
cmake --build . --config %build_type% --target ALL_BUILD
) else (
cmake .. -G %CMAKE_GENERATOR% -A %arch% -DORCA_TOOLS=ON %SIG_FLAG% -DCMAKE_BUILD_TYPE=%build_type%
cmake .. -G %CMAKE_GENERATOR% -A %arch% -DORCA_TOOLS=ON %SIG_FLAG% -DBUILD_TESTS=%BUILD_TESTS% -DCMAKE_BUILD_TYPE=%build_type%
cmake --build . --config %build_type% --target ALL_BUILD -- -m
)
@echo off

45
gen_cache.bat Normal file
View File

@@ -0,0 +1,45 @@
@echo off
setlocal
:: Usage: gen_cache.bat [Release|Debug|RelWithDebInfo]
:: Generates per-vendor .cache files into resources/profiles/
:: using generate_system_cache.exe from the local build tree.
set BUILD_CONFIG=%~1
if "%BUILD_CONFIG%"=="" set BUILD_CONFIG=Release
set REPO=%~dp0
set BUILD_DIR=%REPO%build
set EXE=%BUILD_DIR%\src\dev-utils\%BUILD_CONFIG%\generate_system_cache.exe
set PROFILES=%REPO%resources\profiles
if not exist "%EXE%" (
echo ERROR: %EXE% not found.
echo Build the project first with ORCA_TOOLS=ON, config %BUILD_CONFIG%.
exit /b 1
)
if not exist "%PROFILES%" (
echo ERROR: profiles dir not found: %PROFILES%
exit /b 1
)
:: DLLs live in the main Release output, not next to the tool exe
set PATH=%BUILD_DIR%\src\%BUILD_CONFIG%;%PATH%
echo Generating system presets cache...
echo Tool : %EXE%
echo Profiles: %PROFILES%
echo.
"%EXE%" --path "%PROFILES%" --log_level 2
if %ERRORLEVEL% neq 0 (
echo.
echo ERROR: generate_system_cache failed ^(exit %ERRORLEVEL%^).
exit /b %ERRORLEVEL%
)
echo.
echo Done. Cache files written to: %PROFILES%
dir /b "%PROFILES%\*.cache" 2>nul
endlocal

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:50-0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -325,6 +325,7 @@ msgstr ""
msgid "Optimize orientation"
msgstr ""
msgctxt "Verb"
msgid "Scale"
msgstr ""
@@ -334,6 +335,7 @@ msgstr ""
msgid "Error: Please close all toolbar menus first"
msgstr ""
msgctxt "inches"
msgid "in"
msgstr ""
@@ -367,6 +369,9 @@ msgstr ""
msgid "Object operations"
msgstr ""
msgid "Scale"
msgstr ""
msgid "Volume operations"
msgstr ""
@@ -388,25 +393,32 @@ msgstr ""
msgid "Reset rotation"
msgstr ""
msgid "Object coordinates"
msgid "World"
msgstr ""
msgid "World coordinates"
msgid "Object"
msgstr ""
msgid "Translate(Relative)"
msgid "Part"
msgstr ""
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr ""
msgid "Rotate (absolute)"
msgstr ""
msgid "Reset current rotation to real zeros."
msgstr ""
msgid "Part coordinates"
msgctxt "Noun"
msgid "Scale"
msgstr ""
#. TRN - Input label. Be short as possible
@@ -512,12 +524,6 @@ msgstr ""
msgid "Spacing"
msgstr ""
msgid "Part"
msgstr ""
msgid "Object"
msgstr ""
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1820,23 +1826,30 @@ msgstr ""
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr ""
msgid "Cloud sync conflict:"
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
@@ -1845,6 +1858,12 @@ msgid ""
"Do you want to continue?"
msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr ""
@@ -1912,7 +1931,8 @@ msgstr ""
msgid "Sync user presets"
msgstr ""
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#, possible-c-format, possible-boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, possible-c-format, possible-boost-format
@@ -2122,6 +2142,9 @@ msgstr ""
msgid "OrcaSliced Combo"
msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr ""
@@ -3484,6 +3507,7 @@ msgstr ""
msgid "Save"
msgstr ""
msgctxt "Navigation"
msgid "Back"
msgstr ""
@@ -4766,6 +4790,7 @@ msgstr ""
msgid "Color change"
msgstr ""
msgctxt "Noun"
msgid "Print"
msgstr ""
@@ -4921,11 +4946,15 @@ msgstr ""
msgid "Align to Y axis"
msgstr ""
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr ""
msgctxt "Camera View"
msgid "Left"
msgstr ""
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr ""
@@ -5004,6 +5033,9 @@ msgstr ""
msgid "Outline"
msgstr ""
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -5239,6 +5271,10 @@ msgstr ""
msgid "Export G-code file"
msgstr ""
msgctxt "Verb"
msgid "Print"
msgstr ""
msgid "Export plate sliced file"
msgstr ""
@@ -7518,6 +7554,45 @@ msgstr ""
msgid "Choose Download Directory"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate"
msgstr ""
@@ -7572,12 +7647,6 @@ msgstr ""
msgid "Show the splash screen during startup."
msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side"
msgstr ""
@@ -7608,6 +7677,12 @@ msgstr ""
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr ""
msgid "Auto backup"
msgstr ""
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr ""
msgid "Maximum recent files"
msgstr ""
@@ -7626,10 +7701,51 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr ""
msgid "Auto backup"
msgid "STEP importing: linear deflection"
msgstr ""
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr ""
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
@@ -7662,6 +7778,12 @@ msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features"
msgstr ""
@@ -7674,18 +7796,6 @@ msgstr ""
msgid "Pop up to select filament grouping mode"
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr ""
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour"
msgstr ""
@@ -7910,18 +8020,6 @@ msgstr ""
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr ""
msgid "Update built-in presets automatically."
msgstr ""
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode"
msgstr ""
@@ -7934,6 +8032,15 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Update built-in presets automatically."
msgstr ""
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in"
msgstr ""
@@ -7946,30 +8053,6 @@ msgstr ""
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
msgstr ""
@@ -8012,7 +8095,16 @@ msgstr ""
msgid "Skip AMS blacklist check"
msgstr ""
msgid "(Experimental) Keep painted feature after mesh change"
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
@@ -8020,12 +8112,6 @@ msgid ""
"Highly experimental! Slow and may create artifact."
msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage"
msgstr ""
@@ -8052,24 +8138,6 @@ msgstr ""
msgid "trace"
msgstr ""
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug"
msgstr ""
@@ -8085,24 +8153,6 @@ msgstr ""
msgid "Preferences sync"
msgstr ""
msgid "View control settings"
msgstr ""
msgid "Rotate view"
msgstr ""
msgid "Pan view"
msgstr ""
msgid "Zoom view"
msgstr ""
msgid "Other"
msgstr ""
msgid "Reverse scroll direction while zooming"
msgstr ""
msgid "Enable SSL(MQTT)"
msgstr ""
@@ -11717,6 +11767,18 @@ msgstr ""
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr ""
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr ""
@@ -11869,21 +11931,25 @@ msgid ""
"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile."
msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr ""
msgid "Pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
@@ -12240,6 +12306,22 @@ msgstr ""
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr ""
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr ""
@@ -12442,6 +12524,17 @@ msgstr ""
msgid "layer"
msgstr ""
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr ""
@@ -13845,6 +13938,9 @@ msgstr ""
msgid "Aligned back"
msgstr ""
msgid "Back"
msgstr ""
msgid "Random"
msgstr ""
@@ -14188,6 +14284,9 @@ msgstr ""
msgid "Slicing Mode"
msgstr ""
msgid "Other"
msgstr ""
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr ""
@@ -14792,6 +14891,14 @@ msgstr ""
msgid "Rotate the polyhole every layer."
msgstr ""
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr ""
@@ -17018,6 +17125,132 @@ msgstr ""
msgid "Connection to printers connected via the print host failed."
msgstr ""
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, possible-c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr ""
@@ -17100,6 +17333,19 @@ msgstr ""
msgid "Could not connect to MKS"
msgstr ""
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr ""
@@ -17841,6 +18087,12 @@ msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"PO-Revision-Date: 2025-03-15 10:55+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -332,6 +332,7 @@ msgstr "Gizmo-Rotació"
msgid "Optimize orientation"
msgstr "Optimitzar l'orientació"
msgctxt "Verb"
msgid "Scale"
msgstr "Escalar"
@@ -341,8 +342,9 @@ msgstr "Gizmo-Escalar"
msgid "Error: Please close all toolbar menus first"
msgstr "Error: Tanqueu primer tots els menús de la barra d'eines"
msgctxt "inches"
msgid "in"
msgstr "polç"
msgstr ""
msgid "mm"
msgstr "mm"
@@ -375,6 +377,9 @@ msgstr "Ràtios d'escala"
msgid "Object operations"
msgstr "Operacions amb objectes"
msgid "Scale"
msgstr "Escalar"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Volume operations"
msgstr "Operacions de volum"
@@ -402,26 +407,33 @@ msgstr "Restableix la Posició"
msgid "Reset rotation"
msgstr "Reinicialitza la rotació"
msgid "Object coordinates"
msgstr "Coordenades de l'objecte"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "Coordenades cartesianes"
msgid "Object"
msgstr "Objecte"
msgid "Translate(Relative)"
msgstr "Trasllada (relatiu)"
msgid "Part"
msgstr "Peça"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Restableix la rotació actual al valor d'quan s'ha obert l'eina de rotació."
msgid "Rotate (absolute)"
msgstr "Gira (absolut)"
msgid "Reset current rotation to real zeros."
msgstr "Restableix la rotació actual a zeros reals."
msgid "Part coordinates"
msgstr "Coordenades de la part"
msgctxt "Noun"
msgid "Scale"
msgstr "Escalar"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -526,12 +538,6 @@ msgstr ""
msgid "Spacing"
msgstr "Espaiat"
msgid "Part"
msgstr "Peça"
msgid "Object"
msgstr "Objecte"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1879,23 +1885,30 @@ msgstr "Obrir Projecte"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "La versió de l'Orca Slicer és massa antiga i s'ha d'actualitzar a la versió més recent abans que es pugui utilitzar amb normalitat"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
@@ -1904,6 +1917,12 @@ msgid ""
"Do you want to continue?"
msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr ""
@@ -1978,7 +1997,8 @@ msgstr "El nombre de perfils d'usuari emmagatzemats a memòria cau al núvol ha
msgid "Sync user presets"
msgstr "Sincronitzar perfils d'usuari"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
@@ -2200,6 +2220,9 @@ msgstr "Cub d'Orca"
msgid "OrcaSliced Combo"
msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr "Prova de tolerància d'Orca"
@@ -3637,7 +3660,7 @@ msgstr "Calibratge completat. Trobeu la línia d'extrusió més uniforme al vost
msgid "Save"
msgstr "Desar"
# TODO: Review, changed by lang refactor. PR 14254
msgctxt "Navigation"
msgid "Back"
msgstr "Darrera"
@@ -5020,6 +5043,7 @@ msgstr "Canvis d'eina"
msgid "Color change"
msgstr "Canvi de color"
msgctxt "Noun"
msgid "Print"
msgstr "Imprimir"
@@ -5183,11 +5207,15 @@ msgstr "Evitar la regió de calibratge d'extrusió"
msgid "Align to Y axis"
msgstr "Alinear a l'eix Y"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "Darrera"
msgctxt "Camera View"
msgid "Left"
msgstr "Esquerra"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "Dreta"
@@ -5266,6 +5294,9 @@ msgstr "Voladissos"
msgid "Outline"
msgstr "Contorn"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -5513,6 +5544,10 @@ msgstr "Imprimir placa d'impressió"
msgid "Export G-code file"
msgstr "Exportar el fitxer del Codi-G"
msgctxt "Verb"
msgid "Print"
msgstr "Imprimir"
msgid "Export plate sliced file"
msgstr "Exportar fitxer de la placa laminada"
@@ -7903,6 +7938,50 @@ msgstr "Trieu la carpeta per als elements descarregats"
msgid "Choose Download Directory"
msgstr "Triar el Directori de Descàrrega"
msgid "(Latest)"
msgstr "(Última)"
msgid "Network plug-in switched successfully."
msgstr "Connector de xarxa canviat correctament."
msgid "Success"
msgstr "Èxit"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "No s'ha pogut carregar el connector de xarxa. Reinicieu l'aplicació."
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"Heu seleccionat la versió %s del connector de xarxa.\n"
"\n"
"Voleu descarregar i instal·lar aquesta versió ara?\n"
"\n"
"Nota: pot ser necessari reiniciar l'aplicació després de la instal·lació."
msgid "Download Network Plug-in"
msgstr "Descarrega el connector de xarxa"
msgid "Reload the network plug-in without restarting the application"
msgstr "Recarrega el connector de xarxa sense reiniciar l'aplicació"
msgid "Network plug-in reloaded successfully."
msgstr "Connector de xarxa recarregat correctament."
msgid "Reload"
msgstr "Recarrega"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "No s'ha pogut recarregar el connector de xarxa. Reinicieu l'aplicació."
msgid "Reload Failed"
msgstr "La recàrrega ha fallat"
msgid "Associate"
msgstr "Associar"
@@ -7958,12 +8037,6 @@ msgstr "Mostrar pantalla de presentació"
msgid "Show the splash screen during startup."
msgstr "Mostra la pantalla de presentació durant l'inici."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side"
msgstr ""
@@ -7994,6 +8067,13 @@ msgstr "Carregar comportament"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "S'ha de carregar la configuració de la impressora/filament/procés en obrir un .3mf?"
msgid "Auto backup"
msgstr "Còpia de seguretat automàtica"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Feu còpies de seguretat del vostre projecte periòdicament per restaurar en cas de fallida ocasional."
msgid "Maximum recent files"
msgstr "Nombre màxim de fitxers recents"
@@ -8012,12 +8092,55 @@ msgstr "Mostra opcions en importar fitxers STEP"
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Si s'activa, apareixerà un diàleg de configuració de paràmetres durant la importació de fitxers STEP."
msgid "Auto backup"
msgstr "Còpia de seguretat automàtica"
msgid "STEP importing: linear deflection"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Feu còpies de seguretat del vostre projecte periòdicament per restaurar en cas de fallida ocasional."
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Nivell de qualitat per a l'exportació Draco"
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Controla la profunditat de bits de quantització utilitzada en comprimir la malla a format Draco.\n"
"0 = compressió sense pèrdua (la geometria es preserva a plena precisió). Els valors amb pèrdua vàlids van de 8 a 30.\n"
"Valors més baixos produeixen fitxers més petits però perden més detall geomètric; valors més alts preserven més detall a costa de fitxers més grans."
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "Perfil"
@@ -8049,6 +8172,12 @@ msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "Optimitza l'alçada màxima de l'àrea de filaments segons el nombre de filaments triat."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features"
msgstr "Funcionalitats"
@@ -8061,21 +8190,6 @@ 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"
msgid "Quality level for Draco export"
msgstr "Nivell de qualitat per a l'exportació Draco"
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Controla la profunditat de bits de quantització utilitzada en comprimir la malla a format Draco.\n"
"0 = compressió sense pèrdua (la geometria es preserva a plena precisió). Els valors amb pèrdua vàlids van de 8 a 30.\n"
"Valors més baixos produeixen fitxers més petits però perden més detall geomètric; valors més alts preserven més detall a costa de fitxers més grans."
msgid "Behaviour"
msgstr "Comportament"
@@ -8303,19 +8417,6 @@ msgstr "Comprovar només si hi ha actualitzacions estables"
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Sincronització automàtica dels perfils de l'usuari ( Impressora/Filament/Processament )"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Actualitzar els perfils de fàbrica automàticament."
msgid "Use encrypted file for token storage"
msgstr "Utilitza fitxer xifrat per a l'emmagatzematge de tokens"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Emmagatzema els tokens d'autenticació en un fitxer xifrat en lloc del clauer del sistema. (Requereix reinici)"
msgid "Filament Sync Options"
msgstr "Opcions de sincronització de filament"
msgid "Filament sync mode"
msgstr "Mode de sincronització de filament"
@@ -8328,6 +8429,16 @@ msgstr "Filament i color"
msgid "Color only"
msgstr "Només color"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Actualitzar els perfils de fàbrica automàticament."
msgid "Use encrypted file for token storage"
msgstr "Utilitza fitxer xifrat per a l'emmagatzematge de tokens"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Emmagatzema els tokens d'autenticació en un fitxer xifrat en lloc del clauer del sistema. (Requereix reinici)"
msgid "Bambu network plug-in"
msgstr ""
@@ -8340,35 +8451,6 @@ msgstr "Versió del connector de xarxa"
msgid "Select the network plug-in version to use"
msgstr "Seleccioneu la versió del connector de xarxa a utilitzar"
msgid "(Latest)"
msgstr "(Última)"
msgid "Network plug-in switched successfully."
msgstr "Connector de xarxa canviat correctament."
msgid "Success"
msgstr "Èxit"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "No s'ha pogut carregar el connector de xarxa. Reinicieu l'aplicació."
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"Heu seleccionat la versió %s del connector de xarxa.\n"
"\n"
"Voleu descarregar i instal·lar aquesta versió ara?\n"
"\n"
"Nota: pot ser necessari reiniciar l'aplicació després de la instal·lació."
msgid "Download Network Plug-in"
msgstr "Descarrega el connector de xarxa"
msgid "Associate files to OrcaSlicer"
msgstr "Associar fitxers a OrcaSlicer"
@@ -8417,7 +8499,16 @@ msgstr "Desenvolupador"
msgid "Skip AMS blacklist check"
msgstr "Omet la comprovació de la llista negra AMS"
msgid "(Experimental) Keep painted feature after mesh change"
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
@@ -8425,12 +8516,6 @@ msgid ""
"Highly experimental! Slow and may create artifact."
msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage"
msgstr "Permet emmagatzematge anormal"
@@ -8459,24 +8544,6 @@ msgstr "depurar"
msgid "trace"
msgstr "traça"
msgid "Network plug-in"
msgstr "Connector de xarxa"
msgid "Reload"
msgstr "Recarrega"
msgid "Reload the network plug-in without restarting the application"
msgstr "Recarrega el connector de xarxa sense reiniciar l'aplicació"
msgid "Network plug-in reloaded successfully."
msgstr "Connector de xarxa recarregat correctament."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "No s'ha pogut recarregar el connector de xarxa. Reinicieu l'aplicació."
msgid "Reload Failed"
msgstr "La recàrrega ha fallat"
msgid "Debug"
msgstr "Depuració"
@@ -8492,25 +8559,6 @@ msgstr "Sincronització de perfil"
msgid "Preferences sync"
msgstr "Sincronització de preferències"
msgid "View control settings"
msgstr "Veure la configuració del control"
msgid "Rotate view"
msgstr "Rotar la vista"
msgid "Pan view"
msgstr "Vista Panoràmica"
msgid "Zoom view"
msgstr "Vista amb Zoom"
msgid "Other"
msgstr "Altre"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "La roda del ratolí s'inverteix quan es fa zoom"
msgid "Enable SSL(MQTT)"
msgstr "Habilitar SSL ( MQTT )"
@@ -12416,6 +12464,18 @@ msgstr "Llindar de perímetres petits"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Això estableix el llindar per a la longitud perimetral petita. El llindar predeterminat és de 0mm"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr "Ordre d'impressió de perímetres"
@@ -12601,25 +12661,26 @@ msgstr ""
"2. Anoteu el valor de PA òptim per a cada velocitat i acceleració del cabal volumètric. Podeu trobar el número de flux seleccionant el flux al desplegable de l'esquema de colors i moveu el control lliscant horitzontal per sobre de les línies del patró PA. El número ha de ser visible a la part inferior de la pàgina. El valor de PA ideal hauria de ser decreixent com més gran sigui el cabal volumètric. Si no és així, confirmeu que la vostra extrusora funciona correctament. Com més lent i amb menys acceleració imprimiu, més gran serà el rang de valors de PA acceptables. Si no hi ha cap diferència visible, utilitzeu el valor PA de la prova més ràpida.\n"
"3. Introduïu els triplets dels valors de PA, flux i acceleracions al quadre de text aquí i deseu el vostre perfil de filament."
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Habilita l'avanç de pressió adaptativa per als voladissos (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid "Pressure advance for bridges"
msgstr "Avanç de pressió per als ponts"
msgid ""
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
"Valor d'avanç de pressió per als ponts. Establiu a 0 per desactivar.\n"
"\n"
" Un valor de PA més baix quan s'imprimeixen ponts ajuda a reduir l'aparició d'una lleugera extrusió immediatament després dels ponts. Això és causat per la caiguda de pressió al broquet quan s'imprimeix a l'aire i un PA més baix ajuda a contrarestar-ho."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Amplada de línia predeterminada si altres amplades de línia estan definides com a 0. Si s'expressa en %, es calcularà sobre el diàmetre del broquet."
@@ -13003,6 +13064,22 @@ msgstr "Direcció de farciment sòlid"
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Angle per al patró de farciment sòlid, que controla l'inici o la direcció principal de la línia"
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "Densitat de farciment poc dens"
@@ -13216,6 +13293,17 @@ msgstr "La velocitat del ventilador augmentarà linealment de zero a la capa \"c
msgid "layer"
msgstr "capa"
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr "Velocitat del ventilador a la interfície de suport"
@@ -14737,6 +14825,10 @@ msgstr "Alineat"
msgid "Aligned back"
msgstr "Alineat al darrere"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Back"
msgstr "Darrera"
msgid "Random"
msgstr "Aleatori"
@@ -15104,6 +15196,9 @@ msgstr "Les esquerdes de menys de dues vegades el radi de tancament de buits s'o
msgid "Slicing Mode"
msgstr "Mode de laminat"
msgid "Other"
msgstr "Altre"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Utilitzeu \"Parell-imparell\" per als models d'avió 3DLabPrint. Utilitzeu \"Tancar forats\" per tancar tots els forats del model."
@@ -15786,6 +15881,14 @@ msgstr "Gir del poliforat"
msgid "Rotate the polyhole every layer."
msgstr "Rotar el poliforat a cada capa."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "Mida Miniatures al Codi-G"
@@ -18182,6 +18285,132 @@ msgstr "Iniciar Sessió/Provar"
msgid "Connection to printers connected via the print host failed."
msgstr "No s'ha pogut connectar a les impressores connectades mitjançant l'amfitrió( host ) d'impressió especificat."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr ""
@@ -18264,6 +18493,19 @@ msgstr "La connexió amb MKS funciona correctament."
msgid "Could not connect to MKS"
msgstr "No s'ha pogut connectar amb MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr "La connexió amb OctoPrint funciona correctament."
@@ -19015,6 +19257,12 @@ msgstr "Nombre de cares triangulars"
msgid "Calculating, please wait..."
msgstr "Calculant, espereu..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr ""
@@ -19420,6 +19668,64 @@ 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 "Print"
#~ msgstr "Imprimir"
#~ msgid "in"
#~ msgstr "polç"
#~ msgid "Object coordinates"
#~ msgstr "Coordenades de l'objecte"
#~ msgid "World coordinates"
#~ msgstr "Coordenades cartesianes"
#~ msgid "Translate(Relative)"
#~ msgstr "Trasllada (relatiu)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Gira (absolut)"
#~ msgid "Part coordinates"
#~ msgstr "Coordenades de la part"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Habilita l'avanç de pressió adaptativa per als voladissos (beta)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Avanç de pressió per als ponts"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Valor d'avanç de pressió per als ponts. Establiu a 0 per desactivar.\n"
#~ "\n"
#~ " Un valor de PA més baix quan s'imprimeixen ponts ajuda a reduir l'aparició d'una lleugera extrusió immediatament després dels ponts. Això és causat per la caiguda de pressió al broquet quan s'imprimeix a l'aire i un PA més baix ajuda a contrarestar-ho."
#~ msgid "Filament Sync Options"
#~ msgstr "Opcions de sincronització de filament"
#~ msgid "Network plug-in"
#~ msgstr "Connector de xarxa"
#~ msgid "View control settings"
#~ msgstr "Veure la configuració del control"
#~ msgid "Rotate view"
#~ msgstr "Rotar la vista"
#~ msgid "Pan view"
#~ msgstr "Vista Panoràmica"
#~ msgid "Zoom view"
#~ msgstr "Vista amb Zoom"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "La roda del ratolí s'inverteix quan es fa zoom"
#, c-format, boost-format
#~ msgid "Left: %s"
#~ msgstr "Esquerra: %s"
@@ -20821,10 +21127,6 @@ msgstr ""
#~ msgid "Unselect"
#~ msgstr "Desmarcar"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Escalar"
#~ msgid "Lift Z Enforcement"
#~ msgstr "Forçar elevació Z"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: Jakub Hencl\n"
"Language-Team: \n"
@@ -327,6 +327,7 @@ msgstr "Gizmo-Otočit"
msgid "Optimize orientation"
msgstr "Optimalizovat orientaci"
msgctxt "Verb"
msgid "Scale"
msgstr "Měřítko"
@@ -336,8 +337,9 @@ msgstr "Gizmo-Měřítko"
msgid "Error: Please close all toolbar menus first"
msgstr "Nejprve prosím zavřete všechna menu nástrojové lišty"
msgctxt "inches"
msgid "in"
msgstr "v"
msgstr ""
msgid "mm"
msgstr "mm"
@@ -370,6 +372,9 @@ msgstr "Poměry měřítka"
msgid "Object operations"
msgstr "Operace s objektem"
msgid "Scale"
msgstr "Měřítko"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Volume operations"
msgstr "Operace s hlasitostí"
@@ -397,26 +402,33 @@ msgstr "Obnovit pozici"
msgid "Reset rotation"
msgstr "Resetovat rotaci"
msgid "Object coordinates"
msgstr "Souřadnice objektu"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "Světové souřadnice"
msgid "Object"
msgstr "Objekt"
msgid "Translate(Relative)"
msgstr "Přesunout (relativně)"
msgid "Part"
msgstr "Díl"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Obnovit aktuální rotaci na hodnotu při otevření nástroje pro rotaci."
msgid "Rotate (absolute)"
msgstr "Otočit (absolutně)"
msgid "Reset current rotation to real zeros."
msgstr "Obnovit aktuální rotaci na skutečné nuly."
msgid "Part coordinates"
msgstr "Souřadnice části"
msgctxt "Noun"
msgid "Scale"
msgstr "Měřítko"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -521,12 +533,6 @@ msgstr "Mezera"
msgid "Spacing"
msgstr "Rozestup"
msgid "Part"
msgstr "Díl"
msgid "Object"
msgstr "Objekt"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1871,23 +1877,30 @@ msgstr "Otevřít projekt"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Verze Orca Slicer je příliš stará a je nutné ji aktualizovat na nejnovější verzi, aby ji bylo možné používat."
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
@@ -1896,6 +1909,12 @@ msgid ""
"Do you want to continue?"
msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr ""
@@ -1976,8 +1995,9 @@ msgstr "Počet uživatelských předvoleb uložených v cloudu překročil povol
msgid "Sync user presets"
msgstr "Synchronizovat uživatelské předvolby"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "Obsah předvolby je příliš velký pro synchronizaci do cloudu (přesahuje 1 MB). Zmenšete velikost předvolby odstraněním vlastních nastavení nebo ji používejte pouze lokálně."
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
msgid "%s updated from %s to %s"
@@ -2197,6 +2217,9 @@ msgstr ""
msgid "OrcaSliced Combo"
msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr ""
@@ -3636,7 +3659,7 @@ msgstr "Kalibrace byla dokončena. Najděte na vyhřívané podložce nejrovnom
msgid "Save"
msgstr "Uložit"
# TODO: Review, changed by lang refactor. PR 14254
msgctxt "Navigation"
msgid "Back"
msgstr "Zpět"
@@ -5017,6 +5040,7 @@ msgstr "Výměny nástrojů"
msgid "Color change"
msgstr "Změna barvy"
msgctxt "Noun"
msgid "Print"
msgstr "Tisk"
@@ -5180,11 +5204,15 @@ msgstr "Vyhněte se kalibrační oblasti extruze"
msgid "Align to Y axis"
msgstr "Zarovnat na osu Y"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "Zpět"
msgctxt "Camera View"
msgid "Left"
msgstr "Levý"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "Pravý"
@@ -5263,6 +5291,9 @@ msgstr "Převisy"
msgid "Outline"
msgstr "Obrys"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -5509,6 +5540,10 @@ msgstr "Tisková deska"
msgid "Export G-code file"
msgstr "Exportovat G-code soubor"
msgctxt "Verb"
msgid "Print"
msgstr "Tisk"
msgid "Export plate sliced file"
msgstr "Exportovat nařezaný soubor desky"
@@ -7900,6 +7935,50 @@ msgstr "Vyberte složku pro stažené položky"
msgid "Choose Download Directory"
msgstr "Vyberte adresář pro stažení"
msgid "(Latest)"
msgstr "(Nejnovější)"
msgid "Network plug-in switched successfully."
msgstr "Síťový plugin byl úspěšně přepnut."
msgid "Success"
msgstr "Úspěch"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Nepodařilo se načíst síťový plugin. Restartujte prosím aplikaci."
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"Vybrali jste verzi síťového pluginu %s.\n"
"\n"
"Chcete tuto verzi nyní stáhnout a nainstalovat?\n"
"\n"
"Poznámka: Po instalaci může být nutné restartovat aplikaci."
msgid "Download Network Plug-in"
msgstr "Stáhnout síťový plugin"
msgid "Reload the network plug-in without restarting the application"
msgstr "Znovu načíst síťový plugin bez restartu aplikace"
msgid "Network plug-in reloaded successfully."
msgstr "Síťový plugin byl úspěšně znovu načten."
msgid "Reload"
msgstr "Znovu načíst"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Nepodařilo se znovu načíst síťový plugin. Restartujte prosím aplikaci."
msgid "Reload Failed"
msgstr "Znovunačtení selhalo"
msgid "Associate"
msgstr "Přiřadit"
@@ -7955,12 +8034,6 @@ msgstr "Zobrazit úvodní obrazovku"
msgid "Show the splash screen during startup."
msgstr "Zobrazit úvodní obrazovku při spuštění."
msgid "Show shared profiles notification"
msgstr "Zobrazit upozornění na sdílené profily"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Při změně vybrané tiskárny zobrazit upozornění s odkazem na sdílené profily."
msgid "Use window buttons on left side"
msgstr "Používat tlačítka okna na levé straně"
@@ -7991,6 +8064,13 @@ msgstr "Chování při načítání"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Mají se při otevření souboru 3MF načíst nastavení tiskárny/filamentu/procesu?"
msgid "Auto backup"
msgstr "Automatické zálohování"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Pravidelně zálohujte svůj projekt pro možnost obnovení po případném pádu."
msgid "Maximum recent files"
msgstr "Maximální počet nedávných souborů"
@@ -8009,12 +8089,55 @@ msgstr "Zobrazit možnosti při importu souboru STEP"
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Pokud je povoleno, během importu souboru STEP se zobrazí dialog nastavení parametrů."
msgid "Auto backup"
msgstr "Automatické zálohování"
msgid "STEP importing: linear deflection"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Pravidelně zálohujte svůj projekt pro možnost obnovení po případném pádu."
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Úroveň kvality pro export Draco"
msgid "bits"
msgstr "bitů"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Určuje bitovou hloubku kvantizace použitou při kompresi mesh do formátu Draco.\n"
"0 = bezztrátová komprese (geometrie je zachována v plné přesnosti). Platné ztrátové hodnoty jsou v rozsahu 8 až 30.\n"
"Nižší hodnoty vytvářejí menší soubory, ale ztrácí více geometrických detailů; vyšší hodnoty zachovávají více detailů za cenu větších souborů."
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "Předvolba"
@@ -8046,6 +8169,12 @@ msgstr "filamenty"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "Optimalizuje maximální výšku oblasti filamentů podle zvoleného počtu filamentů."
msgid "Show shared profiles notification"
msgstr "Zobrazit upozornění na sdílené profily"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Při změně vybrané tiskárny zobrazit upozornění s odkazem na sdílené profily."
msgid "Features"
msgstr "Funkce"
@@ -8058,21 +8187,6 @@ 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ů"
msgid "Quality level for Draco export"
msgstr "Úroveň kvality pro export Draco"
msgid "bits"
msgstr "bitů"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Určuje bitovou hloubku kvantizace použitou při kompresi mesh do formátu Draco.\n"
"0 = bezztrátová komprese (geometrie je zachována v plné přesnosti). Platné ztrátové hodnoty jsou v rozsahu 8 až 30.\n"
"Nižší hodnoty vytvářejí menší soubory, ale ztrácí více geometrických detailů; vyšší hodnoty zachovávají více detailů za cenu větších souborů."
msgid "Behaviour"
msgstr "Chování"
@@ -8300,19 +8414,6 @@ msgstr "Kontrolovat pouze stabilní aktualizace"
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Automatická synchronizace uživatelských předvoleb (tiskárna/filament/proces)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Automaticky aktualizovat vestavěné předvolby."
msgid "Use encrypted file for token storage"
msgstr "Použít šifrovaný soubor pro ukládání tokenů"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Ukládat autentizační tokeny do šifrovaného souboru místo systémového úložiště klíčů. (Vyžaduje restart)"
msgid "Filament Sync Options"
msgstr "Možnosti synchronizace filamentů"
msgid "Filament sync mode"
msgstr "Režim synchronizace filamentů"
@@ -8325,6 +8426,16 @@ msgstr "Filament a barva"
msgid "Color only"
msgstr "Pouze barva"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Automaticky aktualizovat vestavěné předvolby."
msgid "Use encrypted file for token storage"
msgstr "Použít šifrovaný soubor pro ukládání tokenů"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Ukládat autentizační tokeny do šifrovaného souboru místo systémového úložiště klíčů. (Vyžaduje restart)"
msgid "Bambu network plug-in"
msgstr ""
@@ -8337,35 +8448,6 @@ msgstr "Verze síťového pluginu"
msgid "Select the network plug-in version to use"
msgstr "Vyberte verzi síťového pluginu"
msgid "(Latest)"
msgstr "(Nejnovější)"
msgid "Network plug-in switched successfully."
msgstr "Síťový plugin byl úspěšně přepnut."
msgid "Success"
msgstr "Úspěch"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Nepodařilo se načíst síťový plugin. Restartujte prosím aplikaci."
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"Vybrali jste verzi síťového pluginu %s.\n"
"\n"
"Chcete tuto verzi nyní stáhnout a nainstalovat?\n"
"\n"
"Poznámka: Po instalaci může být nutné restartovat aplikaci."
msgid "Download Network Plug-in"
msgstr "Stáhnout síťový plugin"
msgid "Associate files to OrcaSlicer"
msgstr "Přiřadit soubory k OrcaSliceru"
@@ -8411,7 +8493,16 @@ msgstr "Vývojář"
msgid "Skip AMS blacklist check"
msgstr "Přeskočit kontrolu blacklistu AMS"
msgid "(Experimental) Keep painted feature after mesh change"
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
@@ -8419,12 +8510,6 @@ msgid ""
"Highly experimental! Slow and may create artifact."
msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage"
msgstr "Povolit neobvyklé úložiště"
@@ -8453,24 +8538,6 @@ msgstr "ladění"
msgid "trace"
msgstr "trasování"
msgid "Network plug-in"
msgstr "Síťový plugin"
msgid "Reload"
msgstr "Znovu načíst"
msgid "Reload the network plug-in without restarting the application"
msgstr "Znovu načíst síťový plugin bez restartu aplikace"
msgid "Network plug-in reloaded successfully."
msgstr "Síťový plugin byl úspěšně znovu načten."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Nepodařilo se znovu načíst síťový plugin. Restartujte prosím aplikaci."
msgid "Reload Failed"
msgstr "Znovunačtení selhalo"
msgid "Debug"
msgstr "Ladění"
@@ -8486,25 +8553,6 @@ msgstr "Synchronizace předvoleb"
msgid "Preferences sync"
msgstr "Synchronizace předvoleb"
msgid "View control settings"
msgstr "Zobrazit nastavení ovládání"
msgid "Rotate view"
msgstr "Otočit pohled"
msgid "Pan view"
msgstr "Posouvat pohled"
msgid "Zoom view"
msgstr "Přiblížení zobrazení"
msgid "Other"
msgstr "Ostatní"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Kolečko myši se při přiblížení otáčí opačně"
msgid "Enable SSL(MQTT)"
msgstr "Povolit SSL (MQTT)"
@@ -12420,6 +12468,18 @@ msgstr "Práh malých obvodů"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Tímto se nastavuje práh délky malého obvodu. Výchozí práh je 0 mm."
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr "Pořadí tisku stěn"
@@ -12608,25 +12668,26 @@ msgstr ""
"2. Poznamenejte si optimální hodnotu PA pro každou objemovou rychlost průtoku a zrychlení. Hodnotu průtoku zjistíte výběrem „Flow“ v rozbalovací nabídce barevného schématu a posunutím vodorovného posuvníku nad čárami PA vzoru. Číslo by mělo být viditelné dole na stránce. Ideální hodnota PA by měla s rostoucím objemovým průtokem klesat. Pokud tomu tak není, ověřte, že extruder funguje správně. Čím pomaleji a s menším zrychlením tisknete, tím větší je rozsah přijatelných hodnot PA. Pokud není vidět žádný rozdíl, použijte hodnotu PA z rychlejšího testu.\n"
"3. Zadejte trojice hodnot PA, průtoku a zrychlení do textového pole zde a uložte profil filamentu."
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Povolit adaptivní pressure advance pro převisy (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid "Pressure advance for bridges"
msgstr "Pressure advance pro mosty"
msgid ""
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
"Hodnota Pressure advance pro mosty. Nastavte na 0 pro vypnutí.\n"
"\n"
"Nižší hodnota PA při tisku mostů pomáhá omezit výskyt mírné podextruze ihned po mostech. To je způsobeno poklesem tlaku v trysce při tisku do vzduchu a nižší PA tomu pomáhá předcházet."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Výchozí šířka čáry, pokud jsou ostatní šířky čáry nastaveny na 0. Pokud je zadáno v %, bude vypočteno vůči průměru trysky."
@@ -13009,6 +13070,22 @@ msgstr "Směr plného vyplnění"
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Úhel pro vzor plného výplně, který určuje počáteční nebo hlavní směr čáry."
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "Hustota řídké výplně"
@@ -13224,6 +13301,17 @@ msgstr "Rychlost ventilátoru bude lineárně zvyšována od nuly na vrstvě \"z
msgid "layer"
msgstr "vrstva"
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr "Rychlost ventilátoru rozhraní podpory"
@@ -14784,6 +14872,10 @@ msgstr "Zarovnáno"
msgid "Aligned back"
msgstr "Zarovnat zpět"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Back"
msgstr "Zpět"
msgid "Random"
msgstr "Náhodně"
@@ -15153,6 +15245,9 @@ msgstr "Trhliny menší než 2x poloměr uzavření mezery jsou při řezání t
msgid "Slicing Mode"
msgstr "Režim slicingu"
msgid "Other"
msgstr "Ostatní"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Použijte \"Sudý-lichý\" pro modely letadel 3DLabPrint. Použijte \"Zavřít díry\" pro uzavření všech otvorů v modelu."
@@ -15827,6 +15922,14 @@ msgstr "Zkroucení polyotvoru"
msgid "Rotate the polyhole every layer."
msgstr "Otočit polyotvor každou vrstvu."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "Náhledy G-code"
@@ -18217,6 +18320,132 @@ msgstr "Přihlášení/Test"
msgid "Connection to printers connected via the print host failed."
msgstr "Připojení k tiskárnám připojeným přes hostitele tisku se nezdařilo."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr ""
@@ -18299,6 +18528,19 @@ msgstr "Připojení k MKS funguje správně."
msgid "Could not connect to MKS"
msgstr "Nepodařilo se připojit k MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr "Připojení k OctoPrint funguje správně."
@@ -19049,6 +19291,12 @@ msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr ""
@@ -19454,6 +19702,67 @@ 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 "Print"
#~ msgstr "Tisk"
#~ msgid "in"
#~ msgstr "v"
#~ msgid "Object coordinates"
#~ msgstr "Souřadnice objektu"
#~ msgid "World coordinates"
#~ msgstr "Světové souřadnice"
#~ msgid "Translate(Relative)"
#~ msgstr "Přesunout (relativně)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Otočit (absolutně)"
#~ msgid "Part coordinates"
#~ msgstr "Souřadnice části"
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#~ msgstr "Obsah předvolby je příliš velký pro synchronizaci do cloudu (přesahuje 1 MB). Zmenšete velikost předvolby odstraněním vlastních nastavení nebo ji používejte pouze lokálně."
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Povolit adaptivní pressure advance pro převisy (beta)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Pressure advance pro mosty"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Hodnota Pressure advance pro mosty. Nastavte na 0 pro vypnutí.\n"
#~ "\n"
#~ "Nižší hodnota PA při tisku mostů pomáhá omezit výskyt mírné podextruze ihned po mostech. To je způsobeno poklesem tlaku v trysce při tisku do vzduchu a nižší PA tomu pomáhá předcházet."
#~ msgid "Filament Sync Options"
#~ msgstr "Možnosti synchronizace filamentů"
#~ msgid "Network plug-in"
#~ msgstr "Síťový plugin"
#~ msgid "View control settings"
#~ msgstr "Zobrazit nastavení ovládání"
#~ msgid "Rotate view"
#~ msgstr "Otočit pohled"
#~ msgid "Pan view"
#~ msgstr "Posouvat pohled"
#~ msgid "Zoom view"
#~ msgstr "Přiblížení zobrazení"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Kolečko myši se při přiblížení otáčí opačně"
#, c-format, boost-format
#~ msgid "Left: %s"
#~ msgstr "Vlevo: %s"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: Heiko Liebscher <hliebschergmail.com>\n"
"Language-Team: \n"
@@ -327,6 +327,7 @@ msgstr "Gizmo-Drehen"
msgid "Optimize orientation"
msgstr "Optimiere Ausrichtung"
msgctxt "Verb"
msgid "Scale"
msgstr "Skalieren"
@@ -336,8 +337,9 @@ msgstr "Gizmo-Skalieren"
msgid "Error: Please close all toolbar menus first"
msgstr "Fehler: Bitte schließen sie zuerst alle Werkzeugleistenmenüs"
msgctxt "inches"
msgid "in"
msgstr "in"
msgstr ""
msgid "mm"
msgstr "mm"
@@ -370,6 +372,9 @@ msgstr "Skalierungsverhältnisse"
msgid "Object operations"
msgstr "Objekt-Operationen"
msgid "Scale"
msgstr "Skalieren"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Volume operations"
msgstr "Volumen Operationen"
@@ -397,26 +402,33 @@ msgstr "Position zurücksetzen"
msgid "Reset rotation"
msgstr "Rotation zurücksetzen"
msgid "Object coordinates"
msgstr "Objektkoordinaten"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "Weltkoordinaten"
msgid "Object"
msgstr "Objekt"
msgid "Translate(Relative)"
msgstr "Verschieben (relativ)"
msgid "Part"
msgstr "Teil"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Setze die aktuelle Rotation auf den Wert zurück, als das Rotationswerkzeug geöffnet wurde."
msgid "Rotate (absolute)"
msgstr "Rotation (absolut)"
msgid "Reset current rotation to real zeros."
msgstr "Setze die aktuelle Rotation auf die realen Nullen zurück."
msgid "Part coordinates"
msgstr "Teile Koordinaten"
msgctxt "Noun"
msgid "Scale"
msgstr "Skalieren"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -521,12 +533,6 @@ msgstr "Spalt"
msgid "Spacing"
msgstr "Abstand"
msgid "Part"
msgstr "Teil"
msgid "Object"
msgstr "Objekt"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1875,33 +1881,32 @@ msgstr "Projekt öffnen"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Die Version von Orca Slicer ist veraltet und muss auf die neueste Version aktualisiert werden, bevor sie normal verwendet werden kann"
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
"Cloud-Synchronisationskonflikt: Dieses Profil hat eine neuere Version in OrcaCloud.\n"
"Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
"Cloud-Synchronisationskonflikt: Ein Profil mit diesem Namen existiert bereits in OrcaCloud.\n"
"Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
"Cloud-Synchronisationskonflikt: Ein Profil mit demselben Namen wurde zuvor aus der Cloud gelöscht.\n"
"Delete löscht Ihr lokales Profil. Force Push überschreibt es mit Ihrem lokalen Profil."
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
"Cloud-Synchronisationskonflikt: Es gab einen unerwarteten oder nicht identifizierten Profilkonflikt.\n"
"Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
msgid ""
"Force push will overwrite the cloud copy with your local preset changes.\n"
@@ -1910,6 +1915,12 @@ msgstr ""
"Force Push überschreibt die Cloud-Kopie mit Ihren lokalen Profiländerungen.\n"
"Möchten Sie fortfahren?"
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr "Cloud-Synchronisationskonflikt lösen"
@@ -1989,7 +2000,8 @@ msgstr "Die Anzahl der im Cloud-Cache gespeicherten Benutzerprofile hat das Limi
msgid "Sync user presets"
msgstr "Benutzerprofile synchronisieren"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
@@ -2210,6 +2222,9 @@ msgstr "Orca Würfel"
msgid "OrcaSliced Combo"
msgstr "OrcaSliced Kombination"
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr "Orca Toleranz Test"
@@ -3647,7 +3662,7 @@ msgstr "Kalibrierung abgeschlossen. Bitte suchen Sie die gleichmäßigste Extrus
msgid "Save"
msgstr "Speichern"
# TODO: Review, changed by lang refactor. PR 14254
msgctxt "Navigation"
msgid "Back"
msgstr "Zurück"
@@ -5029,6 +5044,7 @@ msgstr "Werkzeugwechsel"
msgid "Color change"
msgstr "Farbwechsel"
msgctxt "Noun"
msgid "Print"
msgstr "aktuelle Platte drucken"
@@ -5192,11 +5208,15 @@ msgstr "Vermeiden Sie den Bereich der Extrusionskalibrierung"
msgid "Align to Y axis"
msgstr "An Y-Achse ausrichten"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "Zurück"
msgctxt "Camera View"
msgid "Left"
msgstr "links"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "rechts"
@@ -5275,6 +5295,9 @@ msgstr "Überhänge"
msgid "Outline"
msgstr "Umriss"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr "Realistische Ansicht"
@@ -5519,6 +5542,10 @@ msgstr "Aktuelle Platte drucken"
msgid "Export G-code file"
msgstr "G-Code als Datei exportieren"
msgctxt "Verb"
msgid "Print"
msgstr "aktuelle Platte drucken"
msgid "Export plate sliced file"
msgstr "Exportiere aktuelle Platte als STL Datei"
@@ -7915,6 +7942,50 @@ msgstr "Wählen Sie den Ordner für heruntergeladene Elemente"
msgid "Choose Download Directory"
msgstr "Wählen Sie das Download-Verzeichnis"
msgid "(Latest)"
msgstr "(Neueste)"
msgid "Network plug-in switched successfully."
msgstr "Netzwerk-Plugin erfolgreich gewechselt."
msgid "Success"
msgstr "Erfolgreich"
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"Sie haben die Netzwerk-Plugin-Version %s ausgewählt.\n"
"\n"
"Möchten Sie diese Version jetzt herunterladen und installieren?\n"
"\n"
"Hinweis: Die Anwendung muss möglicherweise nach der Installation neu gestartet werden."
msgid "Download Network Plug-in"
msgstr "Netzwerk-Plugin herunterladen"
msgid "Reload the network plug-in without restarting the application"
msgstr "Das Netzwerk-Plugin neu laden, ohne die Anwendung neu zu starten"
msgid "Network plug-in reloaded successfully."
msgstr "Netzwerk-Plugin erfolgreich neu geladen."
msgid "Reload"
msgstr "Neu laden"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Netzwerk-Plugin konnte nicht neu geladen werden. Bitte starten Sie die Anwendung neu."
msgid "Reload Failed"
msgstr "Neuladen fehlgeschlagen"
msgid "Associate"
msgstr "Zuordnen"
@@ -7970,12 +8041,6 @@ msgstr "Splash-Screen anzeigen"
msgid "Show the splash screen during startup."
msgstr "Zeige den Splash-Screen beim Start."
msgid "Show shared profiles notification"
msgstr "Benachrichtigung für geteilte Profile anzeigen"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Zeigen Sie eine Benachrichtigung mit einem Link zum Durchsuchen von geteilten Profilen an, wenn der ausgewählte Drucker geändert wird."
msgid "Use window buttons on left side"
msgstr "Windows Taste auf der linken Seite verwenden"
@@ -8006,6 +8071,13 @@ msgstr "Ladeverhalten"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "sollen Drucker/Filament/Prozess Einstellungen geladen werden beim Öffnen einer .3mf?"
msgid "Auto backup"
msgstr "Automatische Datensicherung"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Erstellen Sie regelmäßig Sicherungskopien Ihres Projekts,um es im Falle eines Absturzes wiederherstellen zu können."
msgid "Maximum recent files"
msgstr "Maximum zuletzt verwendeter Dateien"
@@ -8024,12 +8096,55 @@ msgstr "Optionen beim Importieren von STEP-Dateien anzeigen"
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Wenn aktiviert, wird während des Imports von STEP-Dateien ein Dialogfeld "
msgid "Auto backup"
msgstr "Automatische Datensicherung"
msgid "STEP importing: linear deflection"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Erstellen Sie regelmäßig Sicherungskopien Ihres Projekts,um es im Falle eines Absturzes wiederherstellen zu können."
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Qualitätsstufe für den Draco-Export"
msgid "bits"
msgstr "Bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Kontrolliert die Quantisierungs-Bittiefe, die bei der Komprimierung des Netzes in das Draco-Format verwendet wird.\n"
"0 = verlustfreie Kompression (Geometrie wird mit voller Präzision beibehalten). Gültige verlustbehaftete Werte liegen zwischen 8 und 30.\n"
"Niedrigere Werte erzeugen kleinere Dateien, verlieren jedoch mehr geometrische Details; höhere Werte bewahren mehr Details auf Kosten größerer Dateien."
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "Profil"
@@ -8061,6 +8176,12 @@ msgstr "Filamente"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "Optimiert die maximale Höhe des Filamentbereichs anhand der gewählten Filamentanzahl."
msgid "Show shared profiles notification"
msgstr "Benachrichtigung für geteilte Profile anzeigen"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Zeigen Sie eine Benachrichtigung mit einem Link zum Durchsuchen von geteilten Profilen an, wenn der ausgewählte Drucker geändert wird."
msgid "Features"
msgstr "Funktionen"
@@ -8073,21 +8194,6 @@ 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"
msgid "Quality level for Draco export"
msgstr "Qualitätsstufe für den Draco-Export"
msgid "bits"
msgstr "Bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Kontrolliert die Quantisierungs-Bittiefe, die bei der Komprimierung des Netzes in das Draco-Format verwendet wird.\n"
"0 = verlustfreie Kompression (Geometrie wird mit voller Präzision beibehalten). Gültige verlustbehaftete Werte liegen zwischen 8 und 30.\n"
"Niedrigere Werte erzeugen kleinere Dateien, verlieren jedoch mehr geometrische Details; höhere Werte bewahren mehr Details auf Kosten größerer Dateien."
msgid "Behaviour"
msgstr "Verhalten"
@@ -8332,19 +8438,6 @@ msgstr "Nur nach stabilen Updates suchen"
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Benutzerprofile automatisch synchronisieren (Drucker/Filament/Prozess)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Aktualisiere integrierte Profile automatisch."
msgid "Use encrypted file for token storage"
msgstr "Verschlüsselte Datei für die Token-Speicherung verwenden"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Speichern Sie Authentifizierungstoken in einer verschlüsselten Datei anstelle des System-Schlüsselbunds. (Erfordert Neustart)"
msgid "Filament Sync Options"
msgstr "Filament-Synchronisierungsoptionen"
msgid "Filament sync mode"
msgstr "Filament-Synchronisierungsmodus"
@@ -8357,6 +8450,16 @@ msgstr "Filament und Farbe"
msgid "Color only"
msgstr "Nur Farbe"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Aktualisiere integrierte Profile automatisch."
msgid "Use encrypted file for token storage"
msgstr "Verschlüsselte Datei für die Token-Speicherung verwenden"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Speichern Sie Authentifizierungstoken in einer verschlüsselten Datei anstelle des System-Schlüsselbunds. (Erfordert Neustart)"
msgid "Bambu network plug-in"
msgstr "Bambu Netzwerk-Plugin"
@@ -8369,35 +8472,6 @@ msgstr "Netzwerk-Plugin-Version"
msgid "Select the network plug-in version to use"
msgstr "Wählen Sie die zu verwendende Version des Netzwerk-Plugins aus"
msgid "(Latest)"
msgstr "(Neueste)"
msgid "Network plug-in switched successfully."
msgstr "Netzwerk-Plugin erfolgreich gewechselt."
msgid "Success"
msgstr "Erfolgreich"
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"Sie haben die Netzwerk-Plugin-Version %s ausgewählt.\n"
"\n"
"Möchten Sie diese Version jetzt herunterladen und installieren?\n"
"\n"
"Hinweis: Die Anwendung muss möglicherweise nach der Installation neu gestartet werden."
msgid "Download Network Plug-in"
msgstr "Netzwerk-Plugin herunterladen"
msgid "Associate files to OrcaSlicer"
msgstr "Dateien mit OrcaSlicer verknüpfen"
@@ -8446,8 +8520,17 @@ msgstr "Entwickler"
msgid "Skip AMS blacklist check"
msgstr "Überspringen der AMS Blacklist-Prüfung"
msgid "(Experimental) Keep painted feature after mesh change"
msgstr "(Experimentell) Behalte bemalte Funktionen nach Mesh-Änderung bei"
msgid "Show unsupported presets"
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."
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
"Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
@@ -8456,12 +8539,6 @@ msgstr ""
"Versuchen Sie, bemalte Funktionen (Farbe/Naht/Stütze/unscharf usw.) nach Änderung des Objekt-Meshs (z. B. schneiden/neu laden von der Festplatte/vereinfachen/reparieren usw.) beizubehalten\n"
"Sehr experimentell! Langsam und kann Artefakte erzeugen."
msgid "Show unsupported presets"
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."
msgid "Allow Abnormal Storage"
msgstr "Fehlerhaften Speicher zulassen"
@@ -8490,24 +8567,6 @@ msgstr "Fehlersuche"
msgid "trace"
msgstr "Spurensuche"
msgid "Network plug-in"
msgstr "Netzwerk-Plugin"
msgid "Reload"
msgstr "Neu laden"
msgid "Reload the network plug-in without restarting the application"
msgstr "Das Netzwerk-Plugin neu laden, ohne die Anwendung neu zu starten"
msgid "Network plug-in reloaded successfully."
msgstr "Netzwerk-Plugin erfolgreich neu geladen."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Netzwerk-Plugin konnte nicht neu geladen werden. Bitte starten Sie die Anwendung neu."
msgid "Reload Failed"
msgstr "Neuladen fehlgeschlagen"
msgid "Debug"
msgstr "Fehlersuche"
@@ -8523,25 +8582,6 @@ msgstr "Profil Synchronisation"
msgid "Preferences sync"
msgstr "Synchronisierung der Einstellungen"
msgid "View control settings"
msgstr "Ansicht-Steuerungseinstellungen"
msgid "Rotate view"
msgstr "Drehen der Ansicht"
msgid "Pan view"
msgstr "Pan-Ansicht"
msgid "Zoom view"
msgstr "Ansicht zoomen"
msgid "Other"
msgstr "Sonstiges"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Scrollrichtung beim Zoomen umkehren"
msgid "Enable SSL(MQTT)"
msgstr "SSL aktivieren (MQTT)"
@@ -12534,6 +12574,18 @@ msgstr "Schwelle für kleine Strukturen"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Dies legt die Schwelle für eine kleine Umfangslänge fest. Der Standardwert für die Schwelle beträgt 0 mm."
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr "Anordnung der Wände"
@@ -12722,27 +12774,26 @@ msgstr ""
"2. Notieren Sie den optimalen PA-Wert für jede Volumenfließgeschwindigkeit und Beschleunigung. Sie können die Fließzahl auswählen, indem Sie Fluss ausdem Farbschema-Dropdown auswählen und den horizontalen Schieberegler über den PA-Musterlinien bewegen. Die Zahl sollte am unteren Rand der Seite sichtbar sein. Der ideale PA-Wert sollte abnehmen, je höher die Volumenfließgeschwin-digkeit ist. Wenn dies nicht der Fall ist, bestätigen Sie, dass Ihr Extruder korrekt funktioniert. Je langsamer und mit weniger Beschleunigung Sie drucken, desto größer ist der Bereich der akzeptablen PA-Werte. Wenn kein Unterschied sichtbar ist, verwenden Sie den PA-Wert aus dem schnelleren Test.\n"
"3. Geben Sie die Triplets von PA-Werten, Fluss und Beschleunigungen im Textfeld hier ein und speichern Sie Ihr Filamentprofil."
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Adaptives PA für Überhänge aktivieren (experimentell)"
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
"Aktivieren Sie adaptives PA auch für Überhänge sowie bei Flussänderungen innerhalb desselben Features. Dies ist eine experimentelle Option, da sie bei ungenau eingestelltem PA-Profil zu Uniformitätsproblemen auf den äußeren Oberflächen vor und nach Überhängen führen kann.\n"
"Nicht kompatibel mit Prusa-Druckern, da diese pausieren, um PA-Änderungen zu verarbeiten, was zu Verzögerungen und Defekten führt."
msgid "Pressure advance for bridges"
msgstr "Pressure Advance für Brücken"
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
"Pressure Advance-Wert für Brücken. Auf 0 setzen, um zu deaktivieren.\n"
"\n"
"Ein niedrigerer PA-Wert beim Drucken von Brücken hilft, das Auftreten einer leichten Unterextrusion unmittelbar nach Brücken zu reduzieren. Dies wird durch den Druckabfall in der Düse beim Drucken in der Luft verursacht, und ein niedrigerer PA hilft, dem entgegenzuwirken."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Standardmäßige Linienbreite, wenn andere Linienbreiten auf 0 gesetzt sind. Wenn als Prozentsatz angegeben, wird sie in Bezug auf den Düsendurchmesser berechnet."
@@ -13123,6 +13174,22 @@ msgstr "Richtung des massiven Füllmusters"
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Winkel des massiven Füllmusters, der die Start- oder Hauptrichtung der Linie steuert."
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "Fülldichte"
@@ -13341,6 +13408,17 @@ msgstr "Die Lüftergeschwindigkeit wird linear von Null bei der Schicht\"close_f
msgid "layer"
msgstr "Schicht"
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr "Stützstruktur-Schnittstelle"
@@ -14901,6 +14979,10 @@ msgstr "Ausgerichtet"
msgid "Aligned back"
msgstr "Ausgerichtet hinten"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Back"
msgstr "Zurück"
msgid "Random"
msgstr "Zufall"
@@ -15282,6 +15364,9 @@ msgstr "Risse, die kleiner als das 2-fache des Lückenschlussradius sind, werden
msgid "Slicing Mode"
msgstr "Slicing-Modus"
msgid "Other"
msgstr "Sonstiges"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Verwenden Sie \"Gerade-ungerade\" für 3DLabPrint-Flugzeugmodelle. Verwenden Sie \"Löcher schließen\", um alle Löcher im Modell zu schließen."
@@ -15964,6 +16049,14 @@ msgstr "Polyhole verdrehen"
msgid "Rotate the polyhole every layer."
msgstr "Polyhole in jeder Schicht drehen."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "G-Code Vorschaubilder"
@@ -18363,6 +18456,132 @@ msgstr "Anmelden/Testen"
msgid "Connection to printers connected via the print host failed."
msgstr "Die Verbindung zu den über den Druck-Host verbundenen Druckern ist fehlgeschlagen."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr "3DPrinterOS Cloud-Upload-Optionen"
@@ -18445,6 +18664,19 @@ msgstr "Verbindung zu MKS funktioniert korrekt."
msgid "Could not connect to MKS"
msgstr "Konnte keine Verbindung zu MKS herstellen"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr "Verbindung zu OctoPrint funktioniert korrekt."
@@ -19195,6 +19427,12 @@ msgstr "Anzahl der dreieckigen Facetten"
msgid "Calculating, please wait..."
msgstr "Berechnung läuft, bitte warten..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr "Preset-Bündel"
@@ -19605,6 +19843,102 @@ 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 "Print"
#~ msgstr "aktuelle Platte drucken"
#~ msgid "in"
#~ msgstr "in"
#~ msgid "Object coordinates"
#~ msgstr "Objektkoordinaten"
#~ msgid "World coordinates"
#~ msgstr "Weltkoordinaten"
#~ msgid "Translate(Relative)"
#~ msgstr "Verschieben (relativ)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Rotation (absolut)"
#~ msgid "Part coordinates"
#~ msgstr "Teile Koordinaten"
#~ msgid ""
#~ "Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "Cloud-Synchronisationskonflikt: Dieses Profil hat eine neuere Version in OrcaCloud.\n"
#~ "Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
#~ msgid ""
#~ "Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "Cloud-Synchronisationskonflikt: Ein Profil mit diesem Namen existiert bereits in OrcaCloud.\n"
#~ "Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
#~ msgid ""
#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
#~ "Delete will delete your local preset. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "Cloud-Synchronisationskonflikt: Ein Profil mit demselben Namen wurde zuvor aus der Cloud gelöscht.\n"
#~ "Delete löscht Ihr lokales Profil. Force Push überschreibt es mit Ihrem lokalen Profil."
#~ msgid ""
#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "Cloud-Synchronisationskonflikt: Es gab einen unerwarteten oder nicht identifizierten Profilkonflikt.\n"
#~ "Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil."
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Adaptives PA für Überhänge aktivieren (experimentell)"
#~ msgid ""
#~ "Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
#~ msgstr ""
#~ "Aktivieren Sie adaptives PA auch für Überhänge sowie bei Flussänderungen innerhalb desselben Features. Dies ist eine experimentelle Option, da sie bei ungenau eingestelltem PA-Profil zu Uniformitätsproblemen auf den äußeren Oberflächen vor und nach Überhängen führen kann.\n"
#~ "Nicht kompatibel mit Prusa-Druckern, da diese pausieren, um PA-Änderungen zu verarbeiten, was zu Verzögerungen und Defekten führt."
#~ msgid "Pressure advance for bridges"
#~ msgstr "Pressure Advance für Brücken"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Pressure Advance-Wert für Brücken. Auf 0 setzen, um zu deaktivieren.\n"
#~ "\n"
#~ "Ein niedrigerer PA-Wert beim Drucken von Brücken hilft, das Auftreten einer leichten Unterextrusion unmittelbar nach Brücken zu reduzieren. Dies wird durch den Druckabfall in der Düse beim Drucken in der Luft verursacht, und ein niedrigerer PA hilft, dem entgegenzuwirken."
#~ msgid "Filament Sync Options"
#~ msgstr "Filament-Synchronisierungsoptionen"
#~ msgid "(Experimental) Keep painted feature after mesh change"
#~ msgstr "(Experimentell) Behalte bemalte Funktionen nach Mesh-Änderung bei"
#~ msgid "Network plug-in"
#~ msgstr "Netzwerk-Plugin"
#~ msgid "View control settings"
#~ msgstr "Ansicht-Steuerungseinstellungen"
#~ msgid "Rotate view"
#~ msgstr "Drehen der Ansicht"
#~ msgid "Pan view"
#~ msgstr "Pan-Ansicht"
#~ msgid "Zoom view"
#~ msgstr "Ansicht zoomen"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Scrollrichtung beim Zoomen umkehren"
#, c-format, boost-format
#~ msgid "Left: %s"
#~ msgstr "Links: %s"
@@ -21420,10 +21754,6 @@ msgstr ""
#~ msgid "Unselect"
#~ msgstr "Abwählen"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Skalieren"
#~ msgid "Lift Z Enforcement"
#~ msgstr "Z-Höhe einhalten"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"PO-Revision-Date: 2026-06-17 15:44-0300\n"
"Last-Translator: Alexandre Folle de Menezes\n"
"Language-Team: \n"
@@ -321,6 +321,7 @@ msgstr ""
msgid "Optimize orientation"
msgstr ""
msgctxt "Verb"
msgid "Scale"
msgstr ""
@@ -330,6 +331,7 @@ msgstr ""
msgid "Error: Please close all toolbar menus first"
msgstr ""
msgctxt "inches"
msgid "in"
msgstr ""
@@ -363,6 +365,9 @@ msgstr ""
msgid "Object operations"
msgstr ""
msgid "Scale"
msgstr ""
msgid "Volume operations"
msgstr ""
@@ -384,25 +389,32 @@ msgstr ""
msgid "Reset rotation"
msgstr ""
msgid "Object coordinates"
msgid "World"
msgstr ""
msgid "World coordinates"
msgid "Object"
msgstr ""
msgid "Translate(Relative)"
msgid "Part"
msgstr ""
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr ""
msgid "Rotate (absolute)"
msgstr ""
msgid "Reset current rotation to real zeros."
msgstr ""
msgid "Part coordinates"
msgctxt "Noun"
msgid "Scale"
msgstr ""
#. TRN - Input label. Be short as possible
@@ -508,12 +520,6 @@ msgstr ""
msgid "Spacing"
msgstr ""
msgid "Part"
msgstr ""
msgid "Object"
msgstr ""
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1816,23 +1822,30 @@ msgstr ""
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr ""
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
@@ -1841,6 +1854,12 @@ msgid ""
"Do you want to continue?"
msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr ""
@@ -1908,7 +1927,8 @@ msgstr ""
msgid "Sync user presets"
msgstr ""
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
@@ -2118,6 +2138,9 @@ msgstr ""
msgid "OrcaSliced Combo"
msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr ""
@@ -3480,6 +3503,7 @@ msgstr ""
msgid "Save"
msgstr ""
msgctxt "Navigation"
msgid "Back"
msgstr ""
@@ -4762,6 +4786,7 @@ msgstr ""
msgid "Color change"
msgstr ""
msgctxt "Noun"
msgid "Print"
msgstr ""
@@ -4917,11 +4942,15 @@ msgstr ""
msgid "Align to Y axis"
msgstr ""
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr ""
msgctxt "Camera View"
msgid "Left"
msgstr ""
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr ""
@@ -5000,6 +5029,9 @@ msgstr ""
msgid "Outline"
msgstr ""
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -5235,6 +5267,10 @@ msgstr ""
msgid "Export G-code file"
msgstr ""
msgctxt "Verb"
msgid "Print"
msgstr ""
msgid "Export plate sliced file"
msgstr ""
@@ -7514,6 +7550,45 @@ msgstr ""
msgid "Choose Download Directory"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate"
msgstr ""
@@ -7568,12 +7643,6 @@ msgstr ""
msgid "Show the splash screen during startup."
msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side"
msgstr ""
@@ -7604,6 +7673,12 @@ msgstr ""
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr ""
msgid "Auto backup"
msgstr ""
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr ""
msgid "Maximum recent files"
msgstr ""
@@ -7622,10 +7697,51 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr ""
msgid "Auto backup"
msgid "STEP importing: linear deflection"
msgstr ""
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr ""
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
@@ -7658,6 +7774,12 @@ msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features"
msgstr ""
@@ -7670,18 +7792,6 @@ msgstr ""
msgid "Pop up to select filament grouping mode"
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr ""
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour"
msgstr ""
@@ -7906,18 +8016,6 @@ msgstr ""
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr ""
msgid "Update built-in presets automatically."
msgstr ""
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode"
msgstr ""
@@ -7930,6 +8028,15 @@ msgstr ""
msgid "Color only"
msgstr ""
msgid "Update built-in presets automatically."
msgstr ""
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in"
msgstr ""
@@ -7942,30 +8049,6 @@ msgstr ""
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
msgstr ""
@@ -8008,7 +8091,16 @@ msgstr ""
msgid "Skip AMS blacklist check"
msgstr ""
msgid "(Experimental) Keep painted feature after mesh change"
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
@@ -8016,12 +8108,6 @@ msgid ""
"Highly experimental! Slow and may create artifact."
msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage"
msgstr ""
@@ -8048,24 +8134,6 @@ msgstr ""
msgid "trace"
msgstr ""
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug"
msgstr ""
@@ -8081,24 +8149,6 @@ msgstr ""
msgid "Preferences sync"
msgstr ""
msgid "View control settings"
msgstr ""
msgid "Rotate view"
msgstr ""
msgid "Pan view"
msgstr ""
msgid "Zoom view"
msgstr ""
msgid "Other"
msgstr ""
msgid "Reverse scroll direction while zooming"
msgstr ""
msgid "Enable SSL(MQTT)"
msgstr ""
@@ -11713,6 +11763,18 @@ msgstr ""
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr ""
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr ""
@@ -11865,21 +11927,25 @@ msgid ""
"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile."
msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr ""
msgid "Pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
@@ -12236,6 +12302,22 @@ msgstr ""
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr ""
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr ""
@@ -12438,6 +12520,17 @@ msgstr ""
msgid "layer"
msgstr ""
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr ""
@@ -13841,6 +13934,9 @@ msgstr ""
msgid "Aligned back"
msgstr ""
msgid "Back"
msgstr ""
msgid "Random"
msgstr ""
@@ -14184,6 +14280,9 @@ msgstr ""
msgid "Slicing Mode"
msgstr ""
msgid "Other"
msgstr ""
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr ""
@@ -14788,6 +14887,14 @@ msgstr ""
msgid "Rotate the polyhole every layer."
msgstr ""
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr ""
@@ -17014,6 +17121,132 @@ msgstr ""
msgid "Connection to printers connected via the print host failed."
msgstr ""
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr ""
@@ -17096,6 +17329,19 @@ msgstr ""
msgid "Could not connect to MKS"
msgstr ""
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr ""
@@ -17837,6 +18083,12 @@ msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -324,6 +324,7 @@ msgstr "Gizmo-Forgatás"
msgid "Optimize orientation"
msgstr "Orientáció optimalizálása"
msgctxt "Verb"
msgid "Scale"
msgstr "Átméretezés"
@@ -333,8 +334,9 @@ msgstr "Gizmo-Átméretezés"
msgid "Error: Please close all toolbar menus first"
msgstr "Hiba: Kérlek, először zárd be az összes eszköztár menüt"
msgctxt "inches"
msgid "in"
msgstr "in"
msgstr ""
msgid "mm"
msgstr "mm"
@@ -367,6 +369,9 @@ msgstr "Méretarányok"
msgid "Object operations"
msgstr "Objektum műveletek"
msgid "Scale"
msgstr "Átméretezés"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Volume operations"
msgstr "Térfogat műveletek"
@@ -394,26 +399,33 @@ msgstr "Pozíció visszaállítása"
msgid "Reset rotation"
msgstr "Forgatás visszaállítása"
msgid "Object coordinates"
msgstr "Objektum koordináták"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "Világkoordináták"
msgid "Object"
msgstr "Objektum"
msgid "Translate(Relative)"
msgstr "Eltolás (relatív)"
msgid "Part"
msgstr "Tárgy"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Az aktuális forgatás visszaállítása a forgatás eszköz megnyitásakor érvényes értékre."
msgid "Rotate (absolute)"
msgstr "Forgatás (abszolút)"
msgid "Reset current rotation to real zeros."
msgstr "Az aktuális forgatás visszaállítása valódi nullára."
msgid "Part coordinates"
msgstr "Alkatrész koordináták"
msgctxt "Noun"
msgid "Scale"
msgstr "Átméretezés"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -518,12 +530,6 @@ msgstr "Rés"
msgid "Spacing"
msgstr "Térköz"
msgid "Part"
msgstr "Tárgy"
msgid "Object"
msgstr "Objektum"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1867,23 +1873,30 @@ msgstr "Projekt megnyitása"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "A Orca Slicer ezen verziója túl régi és a legfrissebb verzióra kell frissíteni, mielőtt rendesen használható lenne"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
@@ -1892,6 +1905,12 @@ msgid ""
"Do you want to continue?"
msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr ""
@@ -1971,8 +1990,9 @@ msgstr "A felhőben tárolt felhasználói beállítások száma elérte a limit
msgid "Sync user presets"
msgstr "Felhasználói beállítások szinkronizálása"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "Az beállítás tartalom túl nagy a cloud-al való szinkronizáláshoz (több mint 1 MB). Csökkentsd a beállítás méretet az egyéni konfigurációk eltávolításával, vagy használd csak helyileg."
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
msgid "%s updated from %s to %s"
@@ -2193,6 +2213,9 @@ msgstr "Orca kocka"
msgid "OrcaSliced Combo"
msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr "Orca tolerancia teszt"
@@ -3630,7 +3653,7 @@ msgstr "A kalibrálás befejeződött. Kérlek, válaszd ki az alábbi képen l
msgid "Save"
msgstr "Mentés"
# TODO: Review, changed by lang refactor. PR 14254
msgctxt "Navigation"
msgid "Back"
msgstr "Hátul"
@@ -5011,6 +5034,7 @@ msgstr "Szerszámváltások"
msgid "Color change"
msgstr "Színváltás"
msgctxt "Noun"
msgid "Print"
msgstr "Nyomtatás"
@@ -5174,11 +5198,15 @@ msgstr "Extrudáláskalibráció környékének elkerülése"
msgid "Align to Y axis"
msgstr "Igazítás az Y-tengelyhez"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "Hátul"
msgctxt "Camera View"
msgid "Left"
msgstr "Bal"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "Jobb"
@@ -5257,6 +5285,9 @@ msgstr "Túlnyúlások"
msgid "Outline"
msgstr "Körvonal"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -5503,6 +5534,10 @@ msgstr "Nyomtatótálca"
msgid "Export G-code file"
msgstr "G-kód fájl exportálása"
msgctxt "Verb"
msgid "Print"
msgstr "Nyomtatás"
msgid "Export plate sliced file"
msgstr "Szeletelt tálca exportálása"
@@ -7886,6 +7921,50 @@ msgstr "Mappa kiválasztása a letöltött elemekhez"
msgid "Choose Download Directory"
msgstr "Válassz letöltési mappát"
msgid "(Latest)"
msgstr "(Legfrissebb)"
msgid "Network plug-in switched successfully."
msgstr "A hálózati bővítmény sikeresen átváltva."
msgid "Success"
msgstr "Sikeres"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "A hálózati bővítmény betöltése sikertelen. Indítsd újra az alkalmazást."
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"A(z) %s hálózati bővítmény verziót választottad.\n"
"\n"
"Szeretnéd most letölteni és telepíteni ezt a verziót?\n"
"\n"
"Megjegyzés: telepítés után szükséges lehet az alkalmazás újraindítása."
msgid "Download Network Plug-in"
msgstr "Hálózati bővítmény letöltése"
msgid "Reload the network plug-in without restarting the application"
msgstr "Hálózati bővítmény újratöltése az alkalmazás újraindítása nélkül"
msgid "Network plug-in reloaded successfully."
msgstr "A hálózati bővítmény újratöltése sikerült."
msgid "Reload"
msgstr "Újratöltés"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "A hálózati bővítmény újratöltése nem sikerült. Kérlek, indítsd újra az alkalmazást."
msgid "Reload Failed"
msgstr "Sikertelen újratöltés"
msgid "Associate"
msgstr "Társítás"
@@ -7941,12 +8020,6 @@ msgstr "Splash screen meglenítése"
msgid "Show the splash screen during startup."
msgstr "Indításkor nyitókép megjelenítése."
msgid "Show shared profiles notification"
msgstr "Megosztott profilok értesítésének megjelenítése"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Értesítés megjelenítése hivatkozással a megosztott profilok böngészéséhez, ha a kiválasztott nyomtató megváltozik."
msgid "Use window buttons on left side"
msgstr "Használd a bal oldalon lévő ablakgombokat"
@@ -7977,6 +8050,13 @@ msgstr "Betöltési viselkedés"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Betöltődjenek-e a nyomtató/filament/folyamat beállítások 3MF fájl megnyitásakor?"
msgid "Auto backup"
msgstr "Automatikus biztonsági mentés"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "A projekt időszakos mentése az esetleges összeomlás utáni helyreállításhoz."
msgid "Maximum recent files"
msgstr "Legutóbbi fájlok maximális száma"
@@ -7995,12 +8075,55 @@ msgstr "Beállítások megjelenítése STEP fájl importálásakor"
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Ha engedélyezve van, STEP fájl importálásakor paraméterbeállítási párbeszédablak jelenik meg."
msgid "Auto backup"
msgstr "Automatikus biztonsági mentés"
msgid "STEP importing: linear deflection"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "A projekt időszakos mentése az esetleges összeomlás utáni helyreállításhoz."
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Minőségi szint Draco exporthoz"
msgid "bits"
msgstr "bit"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"A Draco formátumú hálótömörítéskor használt kvantálási bitmélységet szabályozza.\n"
"0 = veszteségmentes tömörítés (a geometria teljes pontossággal megmarad). Az érvényes veszteséges értékek 8 és 30 között vannak.\n"
"Az alacsonyabb értékek kisebb fájlokat eredményeznek, de több geometriai részlet vész el; a magasabb értékek több részletet őriznek meg nagyobb fájlméret árán."
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "Beállítás"
@@ -8032,6 +8155,12 @@ msgstr "filamentek"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "A filamentterület maximális magasságát optimalizálja a kiválasztott filamentek száma alapján."
msgid "Show shared profiles notification"
msgstr "Megosztott profilok értesítésének megjelenítése"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Értesítés megjelenítése hivatkozással a megosztott profilok böngészéséhez, ha a kiválasztott nyomtató megváltozik."
msgid "Features"
msgstr "Funkciók"
@@ -8044,21 +8173,6 @@ 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"
msgid "Quality level for Draco export"
msgstr "Minőségi szint Draco exporthoz"
msgid "bits"
msgstr "bit"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"A Draco formátumú hálótömörítéskor használt kvantálási bitmélységet szabályozza.\n"
"0 = veszteségmentes tömörítés (a geometria teljes pontossággal megmarad). Az érvényes veszteséges értékek 8 és 30 között vannak.\n"
"Az alacsonyabb értékek kisebb fájlokat eredményeznek, de több geometriai részlet vész el; a magasabb értékek több részletet őriznek meg nagyobb fájlméret árán."
msgid "Behaviour"
msgstr "Viselkedés"
@@ -8298,19 +8412,6 @@ msgstr "Csak stabil frissítések keresése"
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Felhasználói beállítások automatikus szinkronizálása (Nyomtató/Filament/Folyamat)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Beépített beállítások automatikus frissítése."
msgid "Use encrypted file for token storage"
msgstr "Titkosított fájl használata token tároláshoz"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Hitelesítési tokenek tárolása titkosított fájlban a rendszerkulcstartó helyett. (Újraindítást igényel)"
msgid "Filament Sync Options"
msgstr "Filament szinkronizálási opciók"
msgid "Filament sync mode"
msgstr "Filament szinkronizálási mód"
@@ -8323,6 +8424,16 @@ msgstr "Filament és szín"
msgid "Color only"
msgstr "Csak szín"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Beépített beállítások automatikus frissítése."
msgid "Use encrypted file for token storage"
msgstr "Titkosított fájl használata token tároláshoz"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Hitelesítési tokenek tárolása titkosított fájlban a rendszerkulcstartó helyett. (Újraindítást igényel)"
msgid "Bambu network plug-in"
msgstr ""
@@ -8335,35 +8446,6 @@ msgstr "Hálózati bővítmény verzió"
msgid "Select the network plug-in version to use"
msgstr "A használandó hálózati bővítmény verzió kiválasztása"
msgid "(Latest)"
msgstr "(Legfrissebb)"
msgid "Network plug-in switched successfully."
msgstr "A hálózati bővítmény sikeresen átváltva."
msgid "Success"
msgstr "Sikeres"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "A hálózati bővítmény betöltése sikertelen. Indítsd újra az alkalmazást."
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"A(z) %s hálózati bővítmény verziót választottad.\n"
"\n"
"Szeretnéd most letölteni és telepíteni ezt a verziót?\n"
"\n"
"Megjegyzés: telepítés után szükséges lehet az alkalmazás újraindítása."
msgid "Download Network Plug-in"
msgstr "Hálózati bővítmény letöltése"
msgid "Associate files to OrcaSlicer"
msgstr "Fájlok társítása a OrcaSlicerhoz"
@@ -8412,8 +8494,17 @@ msgstr "Fejlesztő"
msgid "Skip AMS blacklist check"
msgstr "AMS tiltólista ellenőrzés kihagyása"
msgid "(Experimental) Keep painted feature after mesh change"
msgstr "(Kísérleti) A festett jellemző megtartása hálócsere után"
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
"Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
@@ -8422,12 +8513,6 @@ msgstr ""
"Megpróbálja tartani a festett jellemzőket (szín/varrat/támasz/fuzzy stb.) az objektumháló megváltoztatása után (például kivágás/újratöltés lemezről/egyszerűsítés/javítás stb.)\n"
"Kísérletei szint! Lassú és hibákat hozhat létre."
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage"
msgstr "Rendellenes tároló engedélyezése"
@@ -8456,24 +8541,6 @@ msgstr ""
msgid "trace"
msgstr "követés"
msgid "Network plug-in"
msgstr "Hálózati bővítmény"
msgid "Reload"
msgstr "Újratöltés"
msgid "Reload the network plug-in without restarting the application"
msgstr "Hálózati bővítmény újratöltése az alkalmazás újraindítása nélkül"
msgid "Network plug-in reloaded successfully."
msgstr "A hálózati bővítmény újratöltése sikerült."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "A hálózati bővítmény újratöltése nem sikerült. Kérlek, indítsd újra az alkalmazást."
msgid "Reload Failed"
msgstr "Sikertelen újratöltés"
msgid "Debug"
msgstr "Hibakeresés"
@@ -8489,25 +8556,6 @@ msgstr "Beállítások szinkronizálása"
msgid "Preferences sync"
msgstr "Beállítások szinkronizálása"
msgid "View control settings"
msgstr "Vezérlési beállítások megtekintése"
msgid "Rotate view"
msgstr "Nézet elforgatása"
msgid "Pan view"
msgstr "Pásztázó nézet"
msgid "Zoom view"
msgstr "Nagyítás nézet"
msgid "Other"
msgstr "Egyéb"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Görgetési irány megfordítása nagyítás közben"
msgid "Enable SSL(MQTT)"
msgstr "SSL engedélyezése (MQTT)"
@@ -12437,6 +12485,18 @@ msgstr "Kis kerületek küszöbértéke"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "A kis peremek hosszának küszöbértékét határozza meg. Az alapértelmezett érték 0 mm"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr "Falak nyomtatási sorrendje"
@@ -12625,25 +12685,26 @@ msgstr ""
"2. Jegyezd fel az optimális PA értéket minden volumetrikus áramlási sebességhez és gyorsuláshoz. Az áramlási számot úgy találhatod meg, hogy a színséma legördülő menüben az áramlást választod, majd a vízszintes csúszkát a PA mintavonalak fölé mozgatod. A számnak az oldal alján kell megjelenjen. Az ideális PA értéknek csökkennie kell a volumetrikus áramlás növekedésével. Ha nem így van, ellenőrizd, hogy az extrudered megfelelően működik-e. Minél lassabban és kisebb gyorsulással nyomtatsz, annál nagyobb az elfogadható PA értékek tartománya. Ha nincs látható különbség, használd a gyorsabb tesztből származó PA értéket\n"
"3. Add meg a PA értékek, az áramlás és a gyorsulás hármasait az itt található szövegmezőben, majd mentsd el a filamentprofilt."
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Adaptív nyomáselőtolás engedélyezése túlnyúlásokhoz (béta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid "Pressure advance for bridges"
msgstr "Nyomáselőtolás hidakhoz"
msgid ""
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
"Nyomáselőtolási érték hidakhoz. A kikapcsoláshoz állítsd 0-ra.\n"
"\n"
"Hidak nyomtatásakor az alacsonyabb PA érték segít csökkenteni a hidak után közvetlenül jelentkező enyhe alulextrudálás megjelenését. Ezt az okozza, hogy a levegőbe nyomtatás során nyomásesés lép fel a fúvókában, amit az alacsonyabb PA részben ellensúlyoz."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Alapértelmezett vonalszélesség, ha a többi vonalszélesség 0-ra van állítva. Ha százalékban van megadva, a fúvókaátmérő alapján lesz kiszámítva."
@@ -13026,6 +13087,22 @@ msgstr "Tömör kitöltés iránya"
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "A tömör kitöltési minta szöge, amely a vonalak kezdő- vagy fő irányát szabályozza."
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "Kitöltés sűrűsége"
@@ -13242,6 +13319,17 @@ msgstr "A ventilátor fordulatszáma lineárisan nő nulláról a \"close_fan_th
msgid "layer"
msgstr "réteg"
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr "Támasz érintkező felület ventilátorsebessége"
@@ -14809,6 +14897,10 @@ msgstr "Igazított"
msgid "Aligned back"
msgstr "Hátulra igazítva"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Back"
msgstr "Hátul"
msgid "Random"
msgstr "Véletlenszerû"
@@ -15182,6 +15274,9 @@ msgstr "A háromszögháló szeletelés során a szeletelési hézag lezárási
msgid "Slicing Mode"
msgstr "Szeletelési mód"
msgid "Other"
msgstr "Egyéb"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Használd a \"Páros-páratlan\" opciót a 3DLabPrint repülőgépmodellekhez. Használd a \"Hézagok lezárása\" lehetőséget a modell összes házagának lezárásához."
@@ -15865,6 +15960,14 @@ msgstr "Sokszögelt lyuk elforgatása"
msgid "Rotate the polyhole every layer."
msgstr "A sokszögelt lyuk forgatása rétegenként."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "G-kód miniatűrök"
@@ -18245,6 +18348,132 @@ msgstr "Bejelentkezés/Teszt"
msgid "Connection to printers connected via the print host failed."
msgstr "A nyomtatóállomáson keresztül csatlakoztatott nyomtatókhoz való csatlakozás sikertelen."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr ""
@@ -18327,6 +18556,19 @@ msgstr "Az MKS kapcsolata megfelelően működik."
msgid "Could not connect to MKS"
msgstr "Nem sikerült csatlakozni az MKS-hez"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr "Az OctoPrint kapcsolata megfelelően működik."
@@ -19077,6 +19319,12 @@ msgstr "Háromszögfelületek száma"
msgid "Calculating, please wait..."
msgstr "Számítás folyamatban, kérlek várj..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr ""
@@ -19485,6 +19733,70 @@ msgstr ""
"Kunkorodás elkerülése\n"
"Tudtad, hogy a kunkorodásra hajlamos anyagok (például ABS) nyomtatásakor a tárgyasztal hőmérsékletének növelése csökkentheti a kunkorodás valószínűségét?"
#~ msgid "Print"
#~ msgstr "Nyomtatás"
#~ msgid "in"
#~ msgstr "in"
#~ msgid "Object coordinates"
#~ msgstr "Objektum koordináták"
#~ msgid "World coordinates"
#~ msgstr "Világkoordináták"
#~ msgid "Translate(Relative)"
#~ msgstr "Eltolás (relatív)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Forgatás (abszolút)"
#~ msgid "Part coordinates"
#~ msgstr "Alkatrész koordináták"
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#~ msgstr "Az beállítás tartalom túl nagy a cloud-al való szinkronizáláshoz (több mint 1 MB). Csökkentsd a beállítás méretet az egyéni konfigurációk eltávolításával, vagy használd csak helyileg."
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Adaptív nyomáselőtolás engedélyezése túlnyúlásokhoz (béta)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Nyomáselőtolás hidakhoz"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Nyomáselőtolási érték hidakhoz. A kikapcsoláshoz állítsd 0-ra.\n"
#~ "\n"
#~ "Hidak nyomtatásakor az alacsonyabb PA érték segít csökkenteni a hidak után közvetlenül jelentkező enyhe alulextrudálás megjelenését. Ezt az okozza, hogy a levegőbe nyomtatás során nyomásesés lép fel a fúvókában, amit az alacsonyabb PA részben ellensúlyoz."
#~ msgid "Filament Sync Options"
#~ msgstr "Filament szinkronizálási opciók"
#~ msgid "(Experimental) Keep painted feature after mesh change"
#~ msgstr "(Kísérleti) A festett jellemző megtartása hálócsere után"
#~ msgid "Network plug-in"
#~ msgstr "Hálózati bővítmény"
#~ msgid "View control settings"
#~ msgstr "Vezérlési beállítások megtekintése"
#~ msgid "Rotate view"
#~ msgstr "Nézet elforgatása"
#~ msgid "Pan view"
#~ msgstr "Pásztázó nézet"
#~ msgid "Zoom view"
#~ msgstr "Nagyítás nézet"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Görgetési irány megfordítása nagyítás közben"
#, c-format, boost-format
#~ msgid "Left: %s"
#~ msgstr "Bal: %s"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -327,6 +327,7 @@ msgstr "Strumento di rotazione"
msgid "Optimize orientation"
msgstr "Ottimizza orientamento"
msgctxt "Verb"
msgid "Scale"
msgstr "Ridimensiona"
@@ -336,8 +337,9 @@ msgstr "Strumento di ridimensionamento"
msgid "Error: Please close all toolbar menus first"
msgstr "Errore: chiudi prima tutti i menu della barra degli strumenti"
msgctxt "inches"
msgid "in"
msgstr "in"
msgstr ""
msgid "mm"
msgstr "mm"
@@ -370,6 +372,9 @@ msgstr "Rapporti di scala"
msgid "Object operations"
msgstr "Operazioni sugli oggetti"
msgid "Scale"
msgstr "Ridimensiona"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Volume operations"
msgstr "Operazioni volume"
@@ -397,26 +402,33 @@ msgstr "Ripristina posizione"
msgid "Reset rotation"
msgstr "Reimposta rotazione"
msgid "Object coordinates"
msgstr "Coordinate oggetto"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "Coordinate reali"
msgid "Object"
msgstr "Oggetto"
msgid "Translate(Relative)"
msgstr "Trasla (relativo)"
msgid "Part"
msgstr "Parte"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Reimposta la rotazione corrente al valore di apertura dello strumento."
msgid "Rotate (absolute)"
msgstr "Ruota (assoluto)"
msgid "Reset current rotation to real zeros."
msgstr "Reimposta la rotazione corrente a zero reale."
msgid "Part coordinates"
msgstr "Coordinate della parte"
msgctxt "Noun"
msgid "Scale"
msgstr "Ridimensiona"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -521,12 +533,6 @@ msgstr ""
msgid "Spacing"
msgstr "Spaziatura"
msgid "Part"
msgstr "Parte"
msgid "Object"
msgstr "Oggetto"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1869,23 +1875,30 @@ msgstr "Apri progetto"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "La versione di OrcaSlicer è obsoleta. Devi aggiornarla all'ultima versione prima di poter utilizzare normalmente il programma."
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
@@ -1894,6 +1907,12 @@ msgid ""
"Do you want to continue?"
msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr ""
@@ -1973,8 +1992,9 @@ msgstr "Il numero di profili utente memorizzati nel cloud ha superato il limite
msgid "Sync user presets"
msgstr "Sincronizza profili utente"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "Il contenuto del profilo è troppo grande per essere sincronizzato con il cloud (supera 1 MB). Si prega di ridurre le dimensioni del profilo rimuovendo le configurazioni personalizzate oppure utilizzarlo solo in locale."
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
msgid "%s updated from %s to %s"
@@ -2195,6 +2215,9 @@ msgstr "Cubo di Orca"
msgid "OrcaSliced Combo"
msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr "Test di tolleranza di OrcaSlicer"
@@ -3631,7 +3654,7 @@ msgstr "Calibrazione completata. Trova la linea di estrusione più uniforme sul
msgid "Save"
msgstr "Salva"
# TODO: Review, changed by lang refactor. PR 14254
msgctxt "Navigation"
msgid "Back"
msgstr "Posteriore"
@@ -5012,6 +5035,7 @@ msgstr "Cambi testina"
msgid "Color change"
msgstr "Cambio colore"
msgctxt "Noun"
msgid "Print"
msgstr "Stampa"
@@ -5175,11 +5199,15 @@ msgstr "Evitare la regione di calibrazione dell'estrusione"
msgid "Align to Y axis"
msgstr "Allinea all'asse Y"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "Posteriore"
msgctxt "Camera View"
msgid "Left"
msgstr "Sinistra"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "Destra"
@@ -5258,6 +5286,9 @@ msgstr "Sporgenze"
msgid "Outline"
msgstr "Contorno"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -5504,6 +5535,10 @@ msgstr "Piatto di stampa"
msgid "Export G-code file"
msgstr "Esporta file G-code"
msgctxt "Verb"
msgid "Print"
msgstr "Stampa"
msgid "Export plate sliced file"
msgstr "Esporta il file del piatto elaborato"
@@ -7893,6 +7928,50 @@ msgstr "Scegli la cartella per gli elementi scaricati"
msgid "Choose Download Directory"
msgstr "Scegliere la directory di download"
msgid "(Latest)"
msgstr "(Ultima)"
msgid "Network plug-in switched successfully."
msgstr "Modulo di rete cambiato con successo."
msgid "Success"
msgstr "Successo"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Impossibile caricare il modulo di rete. Riavviare l'applicazione."
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"Hai selezionato la versione %s del modulo di rete.\n"
"\n"
"Vuoi scaricare e installare questa versione ora?\n"
"\n"
"Nota: potrebbe essere necessario riavviare l'applicazione dopo l'installazione."
msgid "Download Network Plug-in"
msgstr "Scarica modulo di rete"
msgid "Reload the network plug-in without restarting the application"
msgstr "Ricarica il modulo di rete senza riavviare l'applicazione"
msgid "Network plug-in reloaded successfully."
msgstr "Modulo di rete ricaricato con successo."
msgid "Reload"
msgstr "Ricarica"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Impossibile ricaricare il modulo di rete. Riavviare l'applicazione."
msgid "Reload Failed"
msgstr "Ricaricamento fallito"
msgid "Associate"
msgstr "Associa"
@@ -7948,12 +8027,6 @@ msgstr "Mostra schermata iniziale"
msgid "Show the splash screen during startup."
msgstr "Mostra la schermata iniziale durante l'avvio."
msgid "Show shared profiles notification"
msgstr "Mostra notifica profili condivisi"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Quando si cambia la stampante selezionata, viene visualizzata una notifica con un collegamento per esplorare i profili condivisi."
msgid "Use window buttons on left side"
msgstr "Utilizza i pulsanti della finestra sul lato sinistro"
@@ -7984,6 +8057,13 @@ msgstr "Comportamento di caricamento"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Quando si apre un file 3MF, è necessario caricare le impostazioni della stampante/filamento/processo?"
msgid "Auto backup"
msgstr "Backup automatico"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Esegui periodicamente una copia di sicurezza del tuo progetto per facilitarne il ripristino dopo un arresto anomalo."
msgid "Maximum recent files"
msgstr "Numero massimo file recenti"
@@ -8002,12 +8082,55 @@ msgstr "Mostra opzioni durante l'importazione di file STEP"
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Se abilitato, una finestra di dialogo per le impostazioni dei parametri apparirà durante l'importazione di file STEP."
msgid "Auto backup"
msgstr "Backup automatico"
msgid "STEP importing: linear deflection"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Esegui periodicamente una copia di sicurezza del tuo progetto per facilitarne il ripristino dopo un arresto anomalo."
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Livello di qualità per l'esportazione Draco"
msgid "bits"
msgstr "bit"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Controlla la profondità di bit della quantizzazione utilizzata durante la compressione della mesh in formato Draco.\n"
"0 = compressione senza perdita (la geometria viene preservata a piena precisione). I valori con perdita validi vanno da 8 a 30.\n"
"Valori più bassi producono file più piccoli ma perdono più dettagli geometrici; valori più alti preservano più dettagli a costo di file più grandi."
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "Profilo"
@@ -8039,6 +8162,12 @@ msgstr "filamenti"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "Ottimizza l'altezza massima dell'area filamenti in base al numero di filamenti selezionato."
msgid "Show shared profiles notification"
msgstr "Mostra notifica profili condivisi"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "Quando si cambia la stampante selezionata, viene visualizzata una notifica con un collegamento per esplorare i profili condivisi."
msgid "Features"
msgstr "Funzionalità"
@@ -8051,21 +8180,6 @@ 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"
msgid "Quality level for Draco export"
msgstr "Livello di qualità per l'esportazione Draco"
msgid "bits"
msgstr "bit"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Controlla la profondità di bit della quantizzazione utilizzata durante la compressione della mesh in formato Draco.\n"
"0 = compressione senza perdita (la geometria viene preservata a piena precisione). I valori con perdita validi vanno da 8 a 30.\n"
"Valori più bassi producono file più piccoli ma perdono più dettagli geometrici; valori più alti preservano più dettagli a costo di file più grandi."
msgid "Behaviour"
msgstr "Comportamento"
@@ -8293,19 +8407,6 @@ msgstr "Verifica solo la disponibilità di aggiornamenti stabili"
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Sincronizzazione automatica profili utente (stampante/filamento/processo)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Aggiorna automaticamente i profili."
msgid "Use encrypted file for token storage"
msgstr "Usa file crittografato per l'archiviazione dei token"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Archivia i token di autenticazione in un file crittografato invece del portachiavi di sistema. (Richiede riavvio)"
msgid "Filament Sync Options"
msgstr "Opzioni sincronizzazione filamento"
msgid "Filament sync mode"
msgstr "Modalità sincronizzazione filamento"
@@ -8318,6 +8419,16 @@ msgstr "Filamento e colore"
msgid "Color only"
msgstr "Solo colore"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Aggiorna automaticamente i profili."
msgid "Use encrypted file for token storage"
msgstr "Usa file crittografato per l'archiviazione dei token"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Archivia i token di autenticazione in un file crittografato invece del portachiavi di sistema. (Richiede riavvio)"
msgid "Bambu network plug-in"
msgstr ""
@@ -8330,35 +8441,6 @@ msgstr "Versione modulo di rete"
msgid "Select the network plug-in version to use"
msgstr "Seleziona la versione del modulo di rete da utilizzare"
msgid "(Latest)"
msgstr "(Ultima)"
msgid "Network plug-in switched successfully."
msgstr "Modulo di rete cambiato con successo."
msgid "Success"
msgstr "Successo"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Impossibile caricare il modulo di rete. Riavviare l'applicazione."
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"Hai selezionato la versione %s del modulo di rete.\n"
"\n"
"Vuoi scaricare e installare questa versione ora?\n"
"\n"
"Nota: potrebbe essere necessario riavviare l'applicazione dopo l'installazione."
msgid "Download Network Plug-in"
msgstr "Scarica modulo di rete"
msgid "Associate files to OrcaSlicer"
msgstr "Associa i file ad OrcaSlicer"
@@ -8404,7 +8486,16 @@ msgstr "Sviluppatore"
msgid "Skip AMS blacklist check"
msgstr "Salta il controllo della lista nera dell'AMS"
msgid "(Experimental) Keep painted feature after mesh change"
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
@@ -8412,12 +8503,6 @@ msgid ""
"Highly experimental! Slow and may create artifact."
msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage"
msgstr "Consenti memoria anomala"
@@ -8446,24 +8531,6 @@ msgstr ""
msgid "trace"
msgstr "traccia"
msgid "Network plug-in"
msgstr "Modulo di rete"
msgid "Reload"
msgstr "Ricarica"
msgid "Reload the network plug-in without restarting the application"
msgstr "Ricarica il modulo di rete senza riavviare l'applicazione"
msgid "Network plug-in reloaded successfully."
msgstr "Modulo di rete ricaricato con successo."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Impossibile ricaricare il modulo di rete. Riavviare l'applicazione."
msgid "Reload Failed"
msgstr "Ricaricamento fallito"
msgid "Debug"
msgstr ""
@@ -8479,25 +8546,6 @@ msgstr "Sincronizzazione profili"
msgid "Preferences sync"
msgstr "Sincronizzazione preferenze"
msgid "View control settings"
msgstr "Visualizza impostazioni di controllo"
msgid "Rotate view"
msgstr "Ruota vista"
msgid "Pan view"
msgstr "Vista panoramica"
msgid "Zoom view"
msgstr "Ingrandimento vista"
msgid "Other"
msgstr "Altro"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Lo zoom tramitie rotellina del mouse è invertito"
msgid "Enable SSL(MQTT)"
msgstr "Abilita SSL (MQTT)"
@@ -12420,6 +12468,18 @@ msgstr "Soglia perimetri piccoli"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Imposta la soglia per la lunghezza dei perimetri piccoli. La soglia predefinita è 0 mm."
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr "Ordine stampa pareti"
@@ -12608,25 +12668,26 @@ msgstr ""
"2. Prendi nota del valore AP ottimale per ogni portata volumetrica e accelerazione. Puoi trovare il numero relativo alla portata volumetrica dal menu a discesa dello schema di colori e spostando il cursore orizzontale sulle linee del modello AP. Il numero dovrebbe essere visibile nella parte inferiore della pagina. Il valore AP ideale dovrebbe decrescere all'aumentare della portata volumetrica. In caso contrario, verifica che l'estrusore funzioni correttamente. Più lentamente e con meno accelerazione stampi, più ampio è l'intervallo di valori AP accettabili. Se non è visibile alcuna differenza, usa il valore AP dal test più veloce\n"
"3. Inserisci le triplette dei valori di anticipo di pressione, portata e accelerazione nella casella di testo qui e salva il tuo profilo di filamento."
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Abilita anticipo di pressione adattiva per sporgenze (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid "Pressure advance for bridges"
msgstr "Anticipo di pressione per ponti"
msgid ""
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
"Valore di anticipo di pressione per i ponti. Impostare su 0 per disabilitare.\n"
"\n"
"Un valore AP più basso durante la stampa di ponti aiuta a ridurre la comparsa di una leggera sottoestrusione subito dopo l'estrusione dei ponti. Ciò è causato dalla caduta di pressione nell'ugello durante la stampa in aria e un anticipo di pressione più basso aiuta a contrastarla."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Larghezza di linea predefinita se le altre larghezze di linea sono impostate su 0. Se espresso come una %, verrà calcolato sul diametro del ugello."
@@ -13009,6 +13070,22 @@ msgstr "Direzione riempimento solido"
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Angolo per il motivo del riempimento solido, che controlla l'inizio o la direzione principale delle linee."
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "Densità riempimento sparso"
@@ -13224,6 +13301,17 @@ msgstr "La velocità della ventola aumenterà in modo lineare da zero nello stra
msgid "layer"
msgstr "strato"
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr "Velocità ventola interfaccia di supporto"
@@ -14783,6 +14871,10 @@ msgstr "Allineato"
msgid "Aligned back"
msgstr "Allineato dietro"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Back"
msgstr "Posteriore"
msgid "Random"
msgstr "Casuale"
@@ -15152,6 +15244,9 @@ msgstr "Le fessure più piccole di 2 volte il raggio di chiusura degli spazi vuo
msgid "Slicing Mode"
msgstr "Modalità elaborazione"
msgid "Other"
msgstr "Altro"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Usa \"Pari-dispari\" per modelli di aeroplano 3DLabPrint. Utilizza \"Chiudi fori\" per chiudere tutti i fori del modello."
@@ -15832,6 +15927,14 @@ msgstr "Torsione poliforo"
msgid "Rotate the polyhole every layer."
msgstr "Ruota il poliforo in ogni strato."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "Miniature G-code"
@@ -18227,6 +18330,132 @@ msgstr "Accesso/Test"
msgid "Connection to printers connected via the print host failed."
msgstr "Connessione alle stampanti collegate tramite l'host di stampa non riuscita."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr ""
@@ -18309,6 +18538,19 @@ msgstr "La connessione a MKS funziona correttamente."
msgid "Could not connect to MKS"
msgstr "Impossibile connettersi a MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr "La connessione con OctoPrint funziona correttamente."
@@ -19060,6 +19302,12 @@ msgstr "Numero di facce triangolari"
msgid "Calculating, please wait..."
msgstr "Calcolo in corso, attendere..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr ""
@@ -19465,6 +19713,67 @@ 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 "Print"
#~ msgstr "Stampa"
#~ msgid "in"
#~ msgstr "in"
#~ msgid "Object coordinates"
#~ msgstr "Coordinate oggetto"
#~ msgid "World coordinates"
#~ msgstr "Coordinate reali"
#~ msgid "Translate(Relative)"
#~ msgstr "Trasla (relativo)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Ruota (assoluto)"
#~ msgid "Part coordinates"
#~ msgstr "Coordinate della parte"
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#~ msgstr "Il contenuto del profilo è troppo grande per essere sincronizzato con il cloud (supera 1 MB). Si prega di ridurre le dimensioni del profilo rimuovendo le configurazioni personalizzate oppure utilizzarlo solo in locale."
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Abilita anticipo di pressione adattiva per sporgenze (beta)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Anticipo di pressione per ponti"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Valore di anticipo di pressione per i ponti. Impostare su 0 per disabilitare.\n"
#~ "\n"
#~ "Un valore AP più basso durante la stampa di ponti aiuta a ridurre la comparsa di una leggera sottoestrusione subito dopo l'estrusione dei ponti. Ciò è causato dalla caduta di pressione nell'ugello durante la stampa in aria e un anticipo di pressione più basso aiuta a contrastarla."
#~ msgid "Filament Sync Options"
#~ msgstr "Opzioni sincronizzazione filamento"
#~ msgid "Network plug-in"
#~ msgstr "Modulo di rete"
#~ msgid "View control settings"
#~ msgstr "Visualizza impostazioni di controllo"
#~ msgid "Rotate view"
#~ msgstr "Ruota vista"
#~ msgid "Pan view"
#~ msgstr "Vista panoramica"
#~ msgid "Zoom view"
#~ msgstr "Ingrandimento vista"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Lo zoom tramitie rotellina del mouse è invertito"
#, c-format, boost-format
#~ msgid "Left: %s"
#~ msgstr "Sinistra: %s"
@@ -20923,10 +21232,6 @@ msgstr ""
#~ msgid "Unselect"
#~ msgstr "Deseleziona"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Ridimensiona"
#~ msgid "Lift Z Enforcement"
#~ msgstr "Applicazione dell'ascensore Z"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -327,6 +327,7 @@ msgstr "ギズモ-回転"
msgid "Optimize orientation"
msgstr "向きを最適化"
msgctxt "Verb"
msgid "Scale"
msgstr "スケール"
@@ -336,8 +337,9 @@ msgstr "ギズモ-縮尺"
msgid "Error: Please close all toolbar menus first"
msgstr "エラー: ツールバーを閉じてください"
msgctxt "inches"
msgid "in"
msgstr ""
msgstr ""
msgid "mm"
msgstr "mm"
@@ -370,6 +372,9 @@ msgstr "倍率"
msgid "Object operations"
msgstr "オブジェクト操作"
msgid "Scale"
msgstr "スケール"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Volume operations"
msgstr "操作"
@@ -397,26 +402,33 @@ msgstr "位置をリセット"
msgid "Reset rotation"
msgstr "回転をリセット"
msgid "Object coordinates"
msgstr "オブジェクト座標"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "空間座標"
msgid "Object"
msgstr "OBJ"
msgid "Translate(Relative)"
msgstr "移動(相対)"
msgid "Part"
msgstr "パーツ"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr "回転ツールを開いた時の値にリセットします。"
msgid "Rotate (absolute)"
msgstr "回転(絶対)"
msgid "Reset current rotation to real zeros."
msgstr "現在の回転を0にリセットします。"
msgid "Part coordinates"
msgstr "パーツ座標"
msgctxt "Noun"
msgid "Scale"
msgstr "スケール"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -521,12 +533,6 @@ msgstr "ギャップ"
msgid "Spacing"
msgstr "間隔"
msgid "Part"
msgstr "パーツ"
msgid "Object"
msgstr "OBJ"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1868,23 +1874,30 @@ msgstr "プロジェクトを開く"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "現在のOrca Slicerはバージョンが古いため使用できません、アップデートしてください。"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
@@ -1893,6 +1906,12 @@ msgid ""
"Do you want to continue?"
msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr ""
@@ -1967,7 +1986,8 @@ msgstr "クラウドにキャッシュされたユーザープリセット数が
msgid "Sync user presets"
msgstr "ユーザープリセットを同期"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
@@ -2189,6 +2209,9 @@ msgstr ""
msgid "OrcaSliced Combo"
msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr "Orca公差テスト"
@@ -3614,7 +3637,7 @@ msgstr "キャリブレーションが完了しました。下の写真のよう
msgid "Save"
msgstr "保存"
# TODO: Review, changed by lang refactor. PR 14254
msgctxt "Navigation"
msgid "Back"
msgstr "背面"
@@ -4985,6 +5008,7 @@ msgstr "ツールチェンジ"
msgid "Color change"
msgstr "色変更"
msgctxt "Noun"
msgid "Print"
msgstr "造形する"
@@ -5148,11 +5172,15 @@ msgstr "押出しキャリブレーション領域を避ける"
msgid "Align to Y axis"
msgstr "Y軸に整列"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "背面"
msgctxt "Camera View"
msgid "Left"
msgstr "左"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "右"
@@ -5231,6 +5259,9 @@ msgstr "オーバーハング"
msgid "Outline"
msgstr "アウトライン"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -5471,6 +5502,10 @@ msgstr "造形開始"
msgid "Export G-code file"
msgstr "G-codeをエクスポート"
msgctxt "Verb"
msgid "Print"
msgstr "造形する"
msgid "Export plate sliced file"
msgstr "エクスポート"
@@ -7851,6 +7886,50 @@ msgstr "ダウンロードアイテムのフォルダを選択"
msgid "Choose Download Directory"
msgstr "ダウンロードフォルドを選択"
msgid "(Latest)"
msgstr "(最新)"
msgid "Network plug-in switched successfully."
msgstr "ネットワークプラグインの切り替えに成功しました。"
msgid "Success"
msgstr "成功"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "ネットワークプラグインの読み込みに失敗しました。アプリケーションを再起動してください。"
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"ネットワークプラグインバージョン%sを選択しました。\n"
"\n"
"このバージョンをダウンロードしてインストールしますか?\n"
"\n"
"注意: インストール後にアプリケーションの再起動が必要な場合があります。"
msgid "Download Network Plug-in"
msgstr "ネットワークプラグインをダウンロード"
msgid "Reload the network plug-in without restarting the application"
msgstr "アプリケーションを再起動せずにネットワークプラグインを再読み込みします"
msgid "Network plug-in reloaded successfully."
msgstr "ネットワークプラグインの再読み込みに成功しました。"
msgid "Reload"
msgstr "再読み込み"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "ネットワークプラグインの再読み込みに失敗しました。アプリケーションを再起動してください。"
msgid "Reload Failed"
msgstr "再読み込み失敗"
msgid "Associate"
msgstr "関連付け"
@@ -7906,12 +7985,6 @@ msgstr "スプラッシュ画面を表示する"
msgid "Show the splash screen during startup."
msgstr "起動時にスプラッシュスクリーンを表示します。"
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side"
msgstr ""
@@ -7942,6 +8015,13 @@ msgstr "ロード動作"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "3MFファイルを開く時にプリンター/フィラメント/プロセス設定をロードしますか?"
msgid "Auto backup"
msgstr "自動バックアップ"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "定期的にプロジェクトをバックアップして、クラッシュからの復元に備えます。"
msgid "Maximum recent files"
msgstr "最大最近のファイル数"
@@ -7960,12 +8040,55 @@ msgstr "STEPファイルインポート時にオプションを表示"
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "有効にすると、STEPファイルインポート時にパラメータ設定ダイアログが表示されます。"
msgid "Auto backup"
msgstr "自動バックアップ"
msgid "STEP importing: linear deflection"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "定期的にプロジェクトをバックアップして、クラッシュからの復元に備えます。"
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Dracoエクスポートの品質レベル"
msgid "bits"
msgstr "ビット"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"メッシュをDraco形式に圧縮する際の量子化ビット深度を制御します。\n"
"0 = 可逆圧縮ジオメトリは完全な精度で保持されます。有効な非可逆値の範囲は8〜30です。\n"
"低い値はファイルサイズが小さくなりますがジオメトリの詳細が失われます。高い値はファイルサイズが大きくなりますがより多くの詳細が保持されます。"
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "プリセット"
@@ -7997,6 +8120,12 @@ msgstr "フィラメント"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "選択したフィラメント数に応じてフィラメントエリアの最大高さを最適化します。"
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features"
msgstr "機能"
@@ -8009,21 +8138,6 @@ msgstr "このオプションを有効にすると、複数のデバイスに同
msgid "Pop up to select filament grouping mode"
msgstr "フィラメントグルーピングモード選択のポップアップ"
msgid "Quality level for Draco export"
msgstr "Dracoエクスポートの品質レベル"
msgid "bits"
msgstr "ビット"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"メッシュをDraco形式に圧縮する際の量子化ビット深度を制御します。\n"
"0 = 可逆圧縮ジオメトリは完全な精度で保持されます。有効な非可逆値の範囲は8〜30です。\n"
"低い値はファイルサイズが小さくなりますがジオメトリの詳細が失われます。高い値はファイルサイズが大きくなりますがより多くの詳細が保持されます。"
msgid "Behaviour"
msgstr "動作"
@@ -8251,19 +8365,6 @@ msgstr "安定版アップデートのみ確認"
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "ユーザープリセットの自動同期 (プリンター/フィラメント/プロセス)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "組み込みプリセットを自動更新します。"
msgid "Use encrypted file for token storage"
msgstr "トークン保存に暗号化ファイルを使用"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "認証トークンをシステムキーチェーンの代わりに暗号化ファイルに保存します。(再起動が必要)"
msgid "Filament Sync Options"
msgstr "フィラメント同期オプション"
msgid "Filament sync mode"
msgstr "フィラメント同期モード"
@@ -8276,6 +8377,16 @@ msgstr "フィラメントと色"
msgid "Color only"
msgstr "色のみ"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "組み込みプリセットを自動更新します。"
msgid "Use encrypted file for token storage"
msgstr "トークン保存に暗号化ファイルを使用"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "認証トークンをシステムキーチェーンの代わりに暗号化ファイルに保存します。(再起動が必要)"
msgid "Bambu network plug-in"
msgstr ""
@@ -8288,35 +8399,6 @@ msgstr "ネットワークプラグインのバージョン"
msgid "Select the network plug-in version to use"
msgstr "使用するネットワークプラグインのバージョンを選択"
msgid "(Latest)"
msgstr "(最新)"
msgid "Network plug-in switched successfully."
msgstr "ネットワークプラグインの切り替えに成功しました。"
msgid "Success"
msgstr "成功"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "ネットワークプラグインの読み込みに失敗しました。アプリケーションを再起動してください。"
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"ネットワークプラグインバージョン%sを選択しました。\n"
"\n"
"このバージョンをダウンロードしてインストールしますか?\n"
"\n"
"注意: インストール後にアプリケーションの再起動が必要な場合があります。"
msgid "Download Network Plug-in"
msgstr "ネットワークプラグインをダウンロード"
msgid "Associate files to OrcaSlicer"
msgstr "ファイルをOrca Slicerに関連付ける"
@@ -8365,7 +8447,16 @@ msgstr "開発者"
msgid "Skip AMS blacklist check"
msgstr "AMSブラックリストチェックをスキップ"
msgid "(Experimental) Keep painted feature after mesh change"
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
@@ -8373,12 +8464,6 @@ msgid ""
"Highly experimental! Slow and may create artifact."
msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage"
msgstr "異常なストレージを許可"
@@ -8407,24 +8492,6 @@ msgstr "デバッグ"
msgid "trace"
msgstr "トレース"
msgid "Network plug-in"
msgstr "ネットワークプラグイン"
msgid "Reload"
msgstr "再読み込み"
msgid "Reload the network plug-in without restarting the application"
msgstr "アプリケーションを再起動せずにネットワークプラグインを再読み込みします"
msgid "Network plug-in reloaded successfully."
msgstr "ネットワークプラグインの再読み込みに成功しました。"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "ネットワークプラグインの再読み込みに失敗しました。アプリケーションを再起動してください。"
msgid "Reload Failed"
msgstr "再読み込み失敗"
msgid "Debug"
msgstr "デバッグ"
@@ -8440,25 +8507,6 @@ msgstr "プリセット同期"
msgid "Preferences sync"
msgstr "設定を同期"
msgid "View control settings"
msgstr "表示設定"
msgid "Rotate view"
msgstr "回転"
msgid "Pan view"
msgstr "移動"
msgid "Zoom view"
msgstr "ズーム"
msgid "Other"
msgstr "その他"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "ズーム中にスクロール方向を反転させる"
msgid "Enable SSL(MQTT)"
msgstr "SSL(MQTT)を有効にする"
@@ -12223,6 +12271,18 @@ msgstr "小さな外周のしきい値"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr ""
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr "壁の印刷順序"
@@ -12378,21 +12438,25 @@ msgid ""
"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile."
msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr ""
msgid "Pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
@@ -12767,6 +12831,22 @@ msgstr ""
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr ""
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "充填密度"
@@ -12980,6 +13060,17 @@ msgstr ""
msgid "layer"
msgstr ""
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr ""
@@ -14428,6 +14519,10 @@ msgstr "整列"
msgid "Aligned back"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Back"
msgstr "背面"
msgid "Random"
msgstr "ランダム"
@@ -14779,6 +14874,9 @@ msgstr ""
msgid "Slicing Mode"
msgstr "スライシングモード"
msgid "Other"
msgstr "その他"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr ""
@@ -15418,6 +15516,14 @@ msgstr ""
msgid "Rotate the polyhole every layer."
msgstr ""
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "Gコードのサムネイル"
@@ -17715,6 +17821,132 @@ msgstr "ログイン/テスト"
msgid "Connection to printers connected via the print host failed."
msgstr "印刷ホスト経由のプリンターへの接続に失敗しました。"
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr ""
@@ -17797,6 +18029,19 @@ msgstr "MKSへの接続は正常に動作しています。"
msgid "Could not connect to MKS"
msgstr "MKSに接続できませんでした"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr "OctoPrintへの接続は正常に動作しています。"
@@ -18548,6 +18793,12 @@ msgstr "三角面の数"
msgid "Calculating, please wait..."
msgstr "計算中、お待ちください..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr ""
@@ -18930,6 +19181,49 @@ msgstr ""
"反りを避ける\n"
"ABSのような反りやすい素材を印刷する場合、ヒートベッドの温度を適切に上げることで、反りが発生する確率を下げることができることをご存知ですか"
#~ msgid "Print"
#~ msgstr "造形する"
#~ msgid "in"
#~ msgstr "に"
#~ msgid "Object coordinates"
#~ msgstr "オブジェクト座標"
#~ msgid "World coordinates"
#~ msgstr "空間座標"
#~ msgid "Translate(Relative)"
#~ msgstr "移動(相対)"
#~ msgid "Rotate (absolute)"
#~ msgstr "回転(絶対)"
#~ msgid "Part coordinates"
#~ msgstr "パーツ座標"
#~ msgid "Filament Sync Options"
#~ msgstr "フィラメント同期オプション"
#~ msgid "Network plug-in"
#~ msgstr "ネットワークプラグイン"
#~ msgid "View control settings"
#~ msgstr "表示設定"
#~ msgid "Rotate view"
#~ msgstr "回転"
#~ msgid "Pan view"
#~ msgstr "移動"
#~ msgid "Zoom view"
#~ msgstr "ズーム"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "ズーム中にスクロール方向を反転させる"
#, c-format, boost-format
#~ msgid "Left: %s"
#~ msgstr "左: %s"
@@ -19836,10 +20130,6 @@ msgstr ""
#~ msgid "Unselect"
#~ msgstr "選択解除"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "スケール"
#~ msgid "Z-hop when retract"
#~ msgstr "リトラクト時にZ方向調整"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"PO-Revision-Date: 2025-06-02 17:12+0900\n"
"Last-Translator: crwusiz <crwusiz@gmail.com>\n"
"Language-Team: \n"
@@ -331,6 +331,7 @@ msgstr "변형도구 - 회전"
msgid "Optimize orientation"
msgstr "방향 최적화"
msgctxt "Verb"
msgid "Scale"
msgstr "배율"
@@ -340,8 +341,9 @@ msgstr "변형도구 - 배율"
msgid "Error: Please close all toolbar menus first"
msgstr "오류: 먼저 모든 도구 모음 메뉴를 닫으십시오."
msgctxt "inches"
msgid "in"
msgstr "인치"
msgstr ""
msgid "mm"
msgstr "mm"
@@ -374,6 +376,9 @@ msgstr "배율비"
msgid "Object operations"
msgstr "객체 작업"
msgid "Scale"
msgstr "배율"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Volume operations"
msgstr "용량 작업"
@@ -401,26 +406,33 @@ msgstr "위치 초기화"
msgid "Reset rotation"
msgstr "회전 재설정"
msgid "Object coordinates"
msgstr "객체 좌표"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "영역 좌표"
msgid "Object"
msgstr "객체"
msgid "Translate(Relative)"
msgstr "이동(상대)"
msgid "Part"
msgstr "부품"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr "회전 도구를 열었을 때의 값으로 현재 회전을 초기화합니다."
msgid "Rotate (absolute)"
msgstr "회전 (절대)"
msgid "Reset current rotation to real zeros."
msgstr "현재 회전을 0으로 초기화합니다."
msgid "Part coordinates"
msgstr "파트 좌표"
msgctxt "Noun"
msgid "Scale"
msgstr "배율"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -525,12 +537,6 @@ msgstr "간격"
msgid "Spacing"
msgstr "간격"
msgid "Part"
msgstr "부품"
msgid "Object"
msgstr "객체"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1874,23 +1880,30 @@ msgstr "프로젝트 열기"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Orca Slicer의 버전이 너무 낮아 최신 버전으로 업데이트해야 정상적으로 사용 가능합니다"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
@@ -1899,6 +1912,12 @@ msgid ""
"Do you want to continue?"
msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr ""
@@ -1973,7 +1992,8 @@ msgstr "클라우드에 캐시된 사용자 사전 설정 수가 상한을 초
msgid "Sync user presets"
msgstr "사용자 사전 설정 동기화"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
@@ -2196,6 +2216,9 @@ msgstr "Orca 큐브"
msgid "OrcaSliced Combo"
msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr "Orca 공차 테스트"
@@ -3629,7 +3652,7 @@ msgstr "교정이 완료되었습니다. 당신의 고온 베드에서 아래
msgid "Save"
msgstr "저장"
# TODO: Review, changed by lang refactor. PR 14254
msgctxt "Navigation"
msgid "Back"
msgstr "뒷면"
@@ -5011,6 +5034,7 @@ msgstr ""
msgid "Color change"
msgstr "색 변경"
msgctxt "Noun"
msgid "Print"
msgstr "출력"
@@ -5174,11 +5198,15 @@ msgstr "압출 교정 영역을 피하세요"
msgid "Align to Y axis"
msgstr "Y축에 정렬"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "뒷면"
msgctxt "Camera View"
msgid "Left"
msgstr "왼쪽"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "오른쪽"
@@ -5257,6 +5285,9 @@ msgstr "오버행"
msgid "Outline"
msgstr "외곽선"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -5499,6 +5530,10 @@ msgstr "플레이트 출력"
msgid "Export G-code file"
msgstr "Gcode 파일 내보내기"
msgctxt "Verb"
msgid "Print"
msgstr "출력"
msgid "Export plate sliced file"
msgstr "플레이트 슬라이스 파일 내보내기"
@@ -7883,6 +7918,45 @@ msgstr ""
msgid "Choose Download Directory"
msgstr "다운로드 폴더 선택"
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate"
msgstr "링크"
@@ -7938,12 +8012,6 @@ msgstr "시작 화면 표시"
msgid "Show the splash screen during startup."
msgstr "시작 화면을 표시합니다."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side"
msgstr ""
@@ -7974,6 +8042,13 @@ msgstr "행동 로드"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr ".3mf를 열 때 프린터/필라멘트/프로세스 설정이 로드되어야 합니까?"
msgid "Auto backup"
msgstr "자동 백업"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "간헐적인 충돌로부터 복원하기 위해 주기적으로 프로젝트를 백업하세요."
msgid "Maximum recent files"
msgstr ""
@@ -7992,12 +8067,52 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr ""
msgid "Auto backup"
msgstr "자동 백업"
msgid "STEP importing: linear deflection"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "간헐적인 충돌로부터 복원하기 위해 주기적으로 프로젝트를 백업하세요."
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "사전 설정"
@@ -8029,6 +8144,12 @@ msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features"
msgstr ""
@@ -8041,18 +8162,6 @@ msgstr "활성화하면 여러 장치에 동시에 작업을 보내고 여러
msgid "Pop up to select filament grouping mode"
msgstr "필라멘트 그룹화 모드를 선택하기 위한 팝업"
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour"
msgstr ""
@@ -8280,19 +8389,6 @@ msgstr "안정적인 업데이트만 확인"
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "사용자 사전 설정 자동 동기화(프린터/필라멘트/프로세스)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "기본 제공 사전 설정을 자동으로 업데이트합니다."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode"
msgstr ""
@@ -8305,6 +8401,16 @@ msgstr ""
msgid "Color only"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "기본 제공 사전 설정을 자동으로 업데이트합니다."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in"
msgstr ""
@@ -8317,30 +8423,6 @@ msgstr ""
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
msgstr "파일을 OrcaSlicer에 연결"
@@ -8389,7 +8471,16 @@ msgstr ""
msgid "Skip AMS blacklist check"
msgstr "AMS 블랙리스트 확인 건너뛰기"
msgid "(Experimental) Keep painted feature after mesh change"
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
@@ -8397,12 +8488,6 @@ msgid ""
"Highly experimental! Slow and may create artifact."
msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage"
msgstr ""
@@ -8429,24 +8514,6 @@ msgstr "디버그"
msgid "trace"
msgstr "추적"
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug"
msgstr ""
@@ -8462,25 +8529,6 @@ msgstr "사전 설정 동기화"
msgid "Preferences sync"
msgstr "기본 설정 동기화"
msgid "View control settings"
msgstr "시점 컨트롤 설정"
msgid "Rotate view"
msgstr "시점 회전"
msgid "Pan view"
msgstr "시점 이동"
msgid "Zoom view"
msgstr "시점 확대/축소"
msgid "Other"
msgstr "기타"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "확대/축소 시 마우스 휠이 반전됩니다"
msgid "Enable SSL(MQTT)"
msgstr "SSL(MQTT) 활성화"
@@ -12346,6 +12394,18 @@ msgstr "작은 둘레 임계값"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "작은 둘레 길이에 대한 임계값을 설정합니다. 기본 임계값은 0mm입니다"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr "벽 출력 순서"
@@ -12530,25 +12590,26 @@ msgstr ""
"2. 각 압출 유속 및 가속도에 대한 최적의 PA 값을 기록해 두십시오. 색상 구성표 드롭다운에서 흐름을 선택하고 PA 패턴 라인 위로 수평 슬라이더를 이동하여 흐름 번호를 찾을 수 있습니다. 페이지 하단에 번호가 표시되어야 합니다. 이상적인 PA 값은 압출 압출량이 높을수록 감소해야 합니다. 그렇지 않은 경우 압출기가 올바르게 작동하는지 확인하십시오. 출력 속도가 느리고 가속도가 낮을수록 허용되는 PA 값의 범위는 더 커집니다. 차이가 보이지 않으면 더 빠른 테스트의 PA 값을 사용하십시오.\n"
"3. 여기 텍스트 상자에 PA 값, 흐름 및 가속도의 세 가지 값을 입력하고 필라멘트 프로필을 저장하세요."
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "오버행에 대한 적응형 PA 활성화(베타)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid "Pressure advance for bridges"
msgstr "브릿지를 위한 PA"
msgid ""
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
"브릿지의 PA 값입니다. 비활성화하려면 0으로 설정합니다.\n"
"\n"
" 브릿지를 프린팅할 때 PA 값이 낮으면 브릿지 직후에 약간의 언더 압출이 나타나는 것을 줄이는 데 도움이 됩니다. 이는 공중에서 출력할 때 노즐의 압력 강하로 인해 발생하며 PA가 낮을수록 이를 방지하는 데 도움이 됩니다."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "다른 선 너비가 0으로 설정된 경우 기본 선 너비입니다. %로 입력 시 노즐 직경에 대한 비율로 계산됩니다."
@@ -12924,6 +12985,22 @@ msgstr "꽉찬 채우기 방향"
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "선의 시작 또는 기본 방향을 제어하는 솔리드 채우기 패턴의 각도"
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "드문 채우기 밀도"
@@ -13137,6 +13214,17 @@ msgstr "팬 속도는 \"close_fan_the_first_x_layers\" 의 0에서 \"full_fan_sp
msgid "layer"
msgstr "레이어"
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr "서포트 접점 팬 속도"
@@ -14649,6 +14737,10 @@ msgstr "정렬"
msgid "Aligned back"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Back"
msgstr "뒷면"
msgid "Random"
msgstr "무작위"
@@ -15020,6 +15112,9 @@ msgstr "간격 폐쇄 반경의 2배보다 작은 균열은 삼각형 메시 슬
msgid "Slicing Mode"
msgstr "슬라이싱 모드"
msgid "Other"
msgstr "기타"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "3DLabPrint 비행기 모델에는 \"짝수-홀수\"를 사용하세요. \"구멍 닫기\"를 사용하여 모델의 모든 구멍을 닫습니다."
@@ -15690,6 +15785,14 @@ msgstr "폴리홀 회전"
msgid "Rotate the polyhole every layer."
msgstr "레이어마다 폴리홀을 회전시킵니다."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "Gcode 미리보기"
@@ -18063,6 +18166,132 @@ msgstr "로그인/테스트"
msgid "Connection to printers connected via the print host failed."
msgstr "출력 호스트를 통해 연결된 프린터에 연결하지 못했습니다."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr ""
@@ -18145,6 +18374,19 @@ msgstr "MKS에 대한 연결이 올바르게 작동합니다."
msgid "Could not connect to MKS"
msgstr "MKS에 연결할 수 없습니다"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr "OctoPrint에 대한 연결이 올바르게 작동합니다."
@@ -18896,6 +19138,12 @@ msgstr "삼각형 패싯 수"
msgid "Calculating, please wait..."
msgstr "계산 중, 잠시만 기다려주세요..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr ""
@@ -19301,6 +19549,58 @@ msgstr ""
"뒤틀림 방지\n"
"ABS와 같이 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 높이면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?"
#~ msgid "Print"
#~ msgstr "출력"
#~ msgid "in"
#~ msgstr "인치"
#~ msgid "Object coordinates"
#~ msgstr "객체 좌표"
#~ msgid "World coordinates"
#~ msgstr "영역 좌표"
#~ msgid "Translate(Relative)"
#~ msgstr "이동(상대)"
#~ msgid "Rotate (absolute)"
#~ msgstr "회전 (절대)"
#~ msgid "Part coordinates"
#~ msgstr "파트 좌표"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "오버행에 대한 적응형 PA 활성화(베타)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "브릿지를 위한 PA"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "브릿지의 PA 값입니다. 비활성화하려면 0으로 설정합니다.\n"
#~ "\n"
#~ " 브릿지를 프린팅할 때 PA 값이 낮으면 브릿지 직후에 약간의 언더 압출이 나타나는 것을 줄이는 데 도움이 됩니다. 이는 공중에서 출력할 때 노즐의 압력 강하로 인해 발생하며 PA가 낮을수록 이를 방지하는 데 도움이 됩니다."
#~ msgid "View control settings"
#~ msgstr "시점 컨트롤 설정"
#~ msgid "Rotate view"
#~ msgstr "시점 회전"
#~ msgid "Pan view"
#~ msgstr "시점 이동"
#~ msgid "Zoom view"
#~ msgstr "시점 확대/축소"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "확대/축소 시 마우스 휠이 반전됩니다"
#, c-format, boost-format
#~ msgid "Left: %s"
#~ msgstr "왼쪽: %s"
@@ -20743,10 +21043,6 @@ msgstr ""
#~ msgid "Unselect"
#~ msgstr "선택 취소"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "규모"
#~ msgid "Lift Z Enforcement"
#~ msgstr "강제 Z 올리기"

View File

@@ -227,11 +227,14 @@ src/slic3r/GUI/CreatePresetsDialog.cpp
src/slic3r/GUI/DailyTips.cpp
src/slic3r/Utils/CalibUtils.cpp
src/slic3r/GUI/PhysicalPrinterDialog.cpp
src/slic3r/GUI/CrealityDiscoveryDialog.cpp
src/slic3r/GUI/TroubleshootDialog.cpp
src/slic3r/Utils/3DPrinterOS.cpp
src/slic3r/Utils/AstroBox.cpp
src/slic3r/Utils/Duet.cpp
src/slic3r/Utils/FlashAir.cpp
src/slic3r/Utils/MKS.cpp
src/slic3r/Utils/Moonraker.cpp
src/slic3r/Utils/OctoPrint.cpp
src/slic3r/Utils/Repetier.cpp
src/slic3r/Utils/ProfileDescription.hpp

File diff suppressed because it is too large Load Diff

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -327,6 +327,7 @@ msgstr "Roteren"
msgid "Optimize orientation"
msgstr "Oriëntatie optimaliseren"
msgctxt "Verb"
msgid "Scale"
msgstr "Schalen"
@@ -336,8 +337,9 @@ msgstr "Verschalen"
msgid "Error: Please close all toolbar menus first"
msgstr "Fout: sluit eerst alle openstaande hulpmiddelmenu's"
msgctxt "inches"
msgid "in"
msgstr "in"
msgstr ""
msgid "mm"
msgstr "mm"
@@ -370,6 +372,9 @@ msgstr "Schaalverhoudingen"
msgid "Object operations"
msgstr "Objectbewerkingen"
msgid "Scale"
msgstr "Schalen"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Volume operations"
msgstr "Volumebewerkingen"
@@ -397,26 +402,33 @@ msgstr "Positie herstellen"
msgid "Reset rotation"
msgstr "Reset rotatie"
msgid "Object coordinates"
msgstr "Objectcoördinaten"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "Wereldcoördinaten"
msgid "Object"
msgstr "Voorwerp"
msgid "Translate(Relative)"
msgid "Part"
msgstr "Onderdeel"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr ""
msgid "Rotate (absolute)"
msgstr ""
msgid "Reset current rotation to real zeros."
msgstr ""
msgid "Part coordinates"
msgstr ""
msgctxt "Noun"
msgid "Scale"
msgstr "Schalen"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -521,12 +533,6 @@ msgstr "Kloof"
msgid "Spacing"
msgstr "Uitlijning"
msgid "Part"
msgstr "Onderdeel"
msgid "Object"
msgstr "Voorwerp"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1852,23 +1858,30 @@ msgstr "Project openen"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "De versie van Orca Slicer is te oud en dient te worden bijgewerkt naar de nieuwste versie voordat deze normaal kan worden gebruikt"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
@@ -1877,6 +1890,12 @@ msgid ""
"Do you want to continue?"
msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr ""
@@ -1944,7 +1963,8 @@ msgstr "Het aantal gebruikersvoorinstellingen dat in de cloud is opgeslagen, hee
msgid "Sync user presets"
msgstr "Synchroniseer gebruikersvoorinstellingen"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
@@ -2166,6 +2186,9 @@ msgstr "Orca-kubus"
msgid "OrcaSliced Combo"
msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr ""
@@ -3596,7 +3619,7 @@ msgstr "Kalibratie voltooid. Zoek de meest uniforme extrusielijn op uw hotbed, z
msgid "Save"
msgstr "Bewaar"
# TODO: Review, changed by lang refactor. PR 14254
msgctxt "Navigation"
msgid "Back"
msgstr "Achterzijde"
@@ -4956,6 +4979,7 @@ msgstr "Toolwisselingen"
msgid "Color change"
msgstr "Kleur veranderen"
msgctxt "Noun"
msgid "Print"
msgstr ""
@@ -5114,11 +5138,15 @@ msgstr "Vermijd het extrusie kalibratie gebied"
msgid "Align to Y axis"
msgstr "Uitlijnen op Y-as"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "Achterzijde"
msgctxt "Camera View"
msgid "Left"
msgstr "Links"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "Rechts"
@@ -5197,6 +5225,9 @@ msgstr "Overhangen"
msgid "Outline"
msgstr "Omtrek"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -5439,6 +5470,10 @@ msgstr "Printplaat"
msgid "Export G-code file"
msgstr "G-codebestand exporteren"
msgctxt "Verb"
msgid "Print"
msgstr ""
msgid "Export plate sliced file"
msgstr "Exporteer plate sliced bestand"
@@ -7800,6 +7835,45 @@ msgstr ""
msgid "Choose Download Directory"
msgstr "Kies Downloadmap"
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr "Gelukt"
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr "Herladen"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate"
msgstr "Associeer"
@@ -7855,12 +7929,6 @@ msgstr "Toon startscherm"
msgid "Show the splash screen during startup."
msgstr "Toon het opstartscherm tijdens het opstarten."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side"
msgstr ""
@@ -7891,6 +7959,13 @@ msgstr ""
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr ""
msgid "Auto backup"
msgstr "Automatisch een back-up maken"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Maak regelmatig een back-up van uw project, zodat u het kunt herstellen na een incidentele crash."
msgid "Maximum recent files"
msgstr ""
@@ -7909,12 +7984,52 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr ""
msgid "Auto backup"
msgstr "Automatisch een back-up maken"
msgid "STEP importing: linear deflection"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Maak regelmatig een back-up van uw project, zodat u het kunt herstellen na een incidentele crash."
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "Voorinstelling"
@@ -7946,6 +8061,12 @@ msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features"
msgstr "Functies"
@@ -7958,18 +8079,6 @@ msgstr ""
msgid "Pop up to select filament grouping mode"
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour"
msgstr "Gedrag"
@@ -8197,19 +8306,6 @@ msgstr "Alleen op stabiele updates controleren"
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Gebruikersvoorinstellingen automatisch synchroniseren (printer/filament/proces)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Ingebouwde voorinstellingen automatisch bijwerken."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode"
msgstr ""
@@ -8222,6 +8318,16 @@ msgstr ""
msgid "Color only"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Ingebouwde voorinstellingen automatisch bijwerken."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in"
msgstr ""
@@ -8234,30 +8340,6 @@ msgstr ""
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr "Gelukt"
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
msgstr "Koppel bestanden aan OrcaSlicer"
@@ -8306,7 +8388,16 @@ msgstr "Ontwikkelaar"
msgid "Skip AMS blacklist check"
msgstr "AMS-zwartelijstcontrole overslaan"
msgid "(Experimental) Keep painted feature after mesh change"
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
@@ -8314,12 +8405,6 @@ msgid ""
"Highly experimental! Slow and may create artifact."
msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage"
msgstr ""
@@ -8346,24 +8431,6 @@ msgstr ""
msgid "trace"
msgstr ""
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr "Herladen"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug"
msgstr "Foutopsporing"
@@ -8379,25 +8446,6 @@ msgstr "Voorinstellingen synchronizeren"
msgid "Preferences sync"
msgstr "Synchroniseer voorkeuren"
msgid "View control settings"
msgstr "Besturing instellingen weergeven"
msgid "Rotate view"
msgstr ""
msgid "Pan view"
msgstr ""
msgid "Zoom view"
msgstr ""
msgid "Other"
msgstr "Anders"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Omgekeerde scrollrichting tijdens het zoomen"
msgid "Enable SSL(MQTT)"
msgstr ""
@@ -12155,6 +12203,18 @@ msgstr ""
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Dit stelt de drempel voor kleine omtreklengte in. De standaarddrempel is 0 mm"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr ""
@@ -12310,21 +12370,25 @@ msgid ""
"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile."
msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr ""
msgid "Pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
@@ -12692,6 +12756,22 @@ msgstr ""
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr ""
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "Vulling percentage"
@@ -12905,6 +12985,17 @@ msgstr ""
msgid "layer"
msgstr "laag"
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr ""
@@ -14353,6 +14444,10 @@ msgstr "Uitgelijnd"
msgid "Aligned back"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Back"
msgstr "Achterzijde"
msgid "Random"
msgstr "Willekeurig"
@@ -14705,6 +14800,9 @@ msgstr "Scheuren kleiner dan 2x de sluitradius van de spleet worden opgevuld tij
msgid "Slicing Mode"
msgstr "Slicing-modus"
msgid "Other"
msgstr "Anders"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Gebruik „Even-Oneven” voor 3DLabPrint-vliegtuigmodellen. Gebruik „Gaten sluiten” om alle gaten in het model te sluiten."
@@ -15346,6 +15444,14 @@ msgstr ""
msgid "Rotate the polyhole every layer."
msgstr ""
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "G-code miniaturen"
@@ -17647,6 +17753,132 @@ msgstr "Inloggen/Test"
msgid "Connection to printers connected via the print host failed."
msgstr "Verbinding met printers aangesloten via de printhost mislukt."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr ""
@@ -17729,6 +17961,19 @@ msgstr ""
msgid "Could not connect to MKS"
msgstr "Kan geen verbinding maken met MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr ""
@@ -18480,6 +18725,12 @@ msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr ""
@@ -18885,6 +19136,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 "in"
#~ msgstr "in"
#~ msgid "Object coordinates"
#~ msgstr "Objectcoördinaten"
#~ msgid "World coordinates"
#~ msgstr "Wereldcoördinaten"
#~ msgid "View control settings"
#~ msgstr "Besturing instellingen weergeven"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Omgekeerde scrollrichting tijdens het zoomen"
#, c-format, boost-format
#~ msgid "Left: %s"
#~ msgstr "Links: %s"
@@ -20075,10 +20342,6 @@ msgstr ""
#~ msgid "Thick bridges"
#~ msgstr "Dikke bruggen"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Schalen"
#~ msgid "Z-hop when retract"
#~ msgstr "Z-hop tijdens terugtrekken (retraction)"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OrcaSlicer 2.3.0-rc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: Krzysztof Morga <<tlumaczeniebs@gmail.com>>\n"
"Language-Team: \n"
@@ -329,6 +329,7 @@ msgstr "Uchwyt-Obróć"
msgid "Optimize orientation"
msgstr "Optymalizuj orientację"
msgctxt "Verb"
msgid "Scale"
msgstr "Skaluj"
@@ -338,8 +339,9 @@ msgstr "Uchwyt-Skaluj"
msgid "Error: Please close all toolbar menus first"
msgstr "Błąd: Proszę najpierw zamknąć wszystkie paski narzędziowe"
msgctxt "inches"
msgid "in"
msgstr "cal"
msgstr ""
msgid "mm"
msgstr "mm"
@@ -372,6 +374,9 @@ msgstr "Współczynniki skali"
msgid "Object operations"
msgstr "Operacje na obiekcie"
msgid "Scale"
msgstr "Skaluj"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Volume operations"
msgstr "Operacje na objętości"
@@ -399,26 +404,33 @@ msgstr "Zresetuj pozycję"
msgid "Reset rotation"
msgstr "Zresetuj obrót"
msgid "Object coordinates"
msgstr "Koordynaty obiektu"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "Współrzędne"
msgid "Object"
msgstr "Obiekt"
msgid "Translate(Relative)"
msgstr "Przesunięcie równoległe (Względne)"
msgid "Part"
msgstr "Część"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Zresetuj bieżący obrót do wartości ustawionej przy otwarciu narzędzia obrotu."
msgid "Rotate (absolute)"
msgstr "Obrót (bezwzględny)"
msgid "Reset current rotation to real zeros."
msgstr "Zresetuj bieżący obrót do wartości zerowej."
msgid "Part coordinates"
msgstr "Koordynaty części"
msgctxt "Noun"
msgid "Scale"
msgstr "Skaluj"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -523,12 +535,6 @@ msgstr "Szczelina"
msgid "Spacing"
msgstr "Rozstaw"
msgid "Part"
msgstr "Część"
msgid "Object"
msgstr "Obiekt"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1875,23 +1881,30 @@ msgstr "Otwórz projekt"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Wersja Orca Slicer jest przestarzała i musi zostać uaktualniona do najnowszej wersji, aby działać normalnie"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
@@ -1900,6 +1913,12 @@ msgid ""
"Do you want to continue?"
msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr ""
@@ -1967,7 +1986,8 @@ msgstr "Liczba zapisanych w chmurze ustawień użytkownika przekroczyła maksyma
msgid "Sync user presets"
msgstr "Synchronizuj ustawienia użytkownika"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
@@ -2189,6 +2209,9 @@ msgstr "Sześcian Orca"
msgid "OrcaSliced Combo"
msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr "Test tolerancji Orca"
@@ -3634,7 +3657,7 @@ msgstr "Kalibracja zakończona. Proszę znaleźć na płycie roboczej, linie eks
msgid "Save"
msgstr "Zapisz"
# TODO: Review, changed by lang refactor. PR 14254
msgctxt "Navigation"
msgid "Back"
msgstr "Tył"
@@ -5008,6 +5031,7 @@ msgstr "Zmiany narzędzi"
msgid "Color change"
msgstr "Zmiana koloru"
msgctxt "Noun"
msgid "Print"
msgstr "Drukuj"
@@ -5171,11 +5195,15 @@ msgstr "Unikaj obszaru kalibracji ekstruzji"
msgid "Align to Y axis"
msgstr "Wyrównaj do osi Y"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "Tył"
msgctxt "Camera View"
msgid "Left"
msgstr "Lewy"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "Prawy"
@@ -5254,6 +5282,9 @@ msgstr "Nawisy"
msgid "Outline"
msgstr "kontur"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -5500,6 +5531,10 @@ msgstr "Drukuj aktualną płytę"
msgid "Export G-code file"
msgstr "Eksportuj plik G-code"
msgctxt "Verb"
msgid "Print"
msgstr "Drukuj"
msgid "Export plate sliced file"
msgstr "Eksportuj plik pociętej płyty"
@@ -7893,6 +7928,45 @@ msgstr ""
msgid "Choose Download Directory"
msgstr "Wybierz katalog pobierania"
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate"
msgstr "Powiązanie"
@@ -7948,12 +8022,6 @@ msgstr "Wyświetlanie ekranu powitalnego"
msgid "Show the splash screen during startup."
msgstr "Wyświetla ekran powitalny podczas uruchamiania."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side"
msgstr ""
@@ -7984,6 +8052,13 @@ msgstr "Zachowanie przy wczytywaniu"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Określa czy ustawienia drukarki/filamentu/procesu mają być wczytywane podczas otwierania pliku .3mf"
msgid "Auto backup"
msgstr "Automatyczne tworzenie kopii zapasowej"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Wykonuje okresowe kopie zapasowe projektu w celu przywracania po sporadycznych awariach."
msgid "Maximum recent files"
msgstr ""
@@ -8002,12 +8077,52 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr ""
msgid "Auto backup"
msgstr "Automatyczne tworzenie kopii zapasowej"
msgid "STEP importing: linear deflection"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Wykonuje okresowe kopie zapasowe projektu w celu przywracania po sporadycznych awariach."
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "Profil"
@@ -8039,6 +8154,12 @@ msgstr "filamenty"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features"
msgstr ""
@@ -8051,18 +8172,6 @@ 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"
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour"
msgstr ""
@@ -8290,19 +8399,6 @@ msgstr "Sprawdzanie aktualizacji do stabilnych wersji"
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Automatyczne synchronizowanie profili użytkownika (drukarka/filament/proces)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Automatyczne uaktualnianie wbudowanych profili"
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode"
msgstr ""
@@ -8315,6 +8411,16 @@ msgstr ""
msgid "Color only"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Automatyczne uaktualnianie wbudowanych profili"
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in"
msgstr ""
@@ -8327,30 +8433,6 @@ msgstr ""
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
msgstr "Skojarzenia plików z OrcaSlicer"
@@ -8396,7 +8478,16 @@ msgstr ""
msgid "Skip AMS blacklist check"
msgstr "Pomijanie sprawdzania czarnej listy AMS"
msgid "(Experimental) Keep painted feature after mesh change"
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
@@ -8404,12 +8495,6 @@ msgid ""
"Highly experimental! Slow and may create artifact."
msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage"
msgstr ""
@@ -8436,24 +8521,6 @@ msgstr "debugowanie"
msgid "trace"
msgstr "śledzenie"
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug"
msgstr "Debugowanie"
@@ -8469,25 +8536,6 @@ msgstr "Synchronizacja profili"
msgid "Preferences sync"
msgstr "Synchronizacja preferencji"
msgid "View control settings"
msgstr "Ustawienia kontrolowania widoku"
msgid "Rotate view"
msgstr "Obróć widok"
msgid "Pan view"
msgstr "Przesuń widok"
msgid "Zoom view"
msgstr "Przybliż widok"
msgid "Other"
msgstr "Inne"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Kierunek obracania koła myszy odwraca się podczas powiększania"
msgid "Enable SSL(MQTT)"
msgstr "Włącz SSL(MQTT)"
@@ -12365,6 +12413,18 @@ msgstr "Próg małego obrysu"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "To ustawia próg długości małych obrysów. Domyślny próg to 0 mm"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr "Kolejność drukowania ścian"
@@ -12545,25 +12605,26 @@ msgstr ""
"2. Zwróć uwagę na optymalną wartość PA dla każdej wolumetrycznej prędkości przepływu i przyspieszenia. Możesz znaleźć numer przepływu, wybierając przepływ z rozwijanego schematu kolorów i przesuwając poziomy suwak nad liniami wzoru PA. Numer powinien być widoczny na dole strony. Idealna wartość PA powinna maleć, im większy jest przepływ objętościowy. Jeśli tak nie jest, potwierdź, że ekstruder działa poprawnie. Im wolniej i z mniejszym przyspieszeniu drukujesz, tym jest większy zakres dopuszczalnych wartości PA. Jeśli różnica nie jest widoczna, należy użyć wartości PA z szybszego testu.\n"
"3. Wprowadź trójki wartości PA, przepływu i przyspieszenia w polu tekstowym tutaj i zapisz swój profil filamentu."
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Włącz adaptacyjny wzrost ciśnienia dla nawisów (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid "Pressure advance for bridges"
msgstr "Wzrost ciśnienia (PA) dla mostów"
msgid ""
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
"Wartość wzrostu ciśnienia dla mostów. Ustaw na 0, aby wyłączyć.\n"
"\n"
"Niższa wartość PA podczas drukowania mostów pomaga zredukować widoczność lekkiego niedoboru materiału, który może wystąpić bezpośrednio po ich wydruku. Jest to spowodowane spadkiem ciśnienia w dyszy podczas drukowania w powietrzu, a niższy PA pomaga temu przeciwdziałać."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Domyślna szerokość linii, jeśli inne szerokości linii są ustawione na 0. Jeśli wyrażona w %, zostanie obliczona na podstawie średnicy dyszy."
@@ -12939,6 +13000,22 @@ msgstr "Kierunek wzoru pełnego wypełnienia"
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Kąt wyznaczający główny kierunek linii dla wzoru pełnego wypełnienia"
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "Gęstość wypełnienia"
@@ -13152,6 +13229,17 @@ msgstr "Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na
msgid "layer"
msgstr "warstwa"
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr "Prędkość wentylatora dla warstwy łączącej podpory"
@@ -14667,6 +14755,10 @@ msgstr "Wyrównany"
msgid "Aligned back"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Back"
msgstr "Tył"
msgid "Random"
msgstr "Losowo"
@@ -15038,6 +15130,9 @@ msgstr "Szpary mniejsze niż dwukrotność wartości parametru „promień zamyk
msgid "Slicing Mode"
msgstr "Tryb cięcia"
msgid "Other"
msgstr "Inne"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Użyj „Parzysto-nieparzysty” dla modeli samolotów 3DLabPrint. Użyj „Zamknij otwory” do zamknięcia wszystkich otworów w modelu."
@@ -15706,6 +15801,14 @@ msgstr "Skręt poliotworu"
msgid "Rotate the polyhole every layer."
msgstr "Obracaj poliotwor co warstwę."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "Miniatury G-code"
@@ -18074,6 +18177,132 @@ msgstr "Logowanie/test"
msgid "Connection to printers connected via the print host failed."
msgstr "Połączenie z drukarkami podłączonymi przez hosta drukowania nie powiodło się."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr ""
@@ -18156,6 +18385,19 @@ msgstr "Połączenie z MKS działa poprawnie."
msgid "Could not connect to MKS"
msgstr "Nie udało się połączyć z MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr "Połączenie z OctoPrint działa poprawnie."
@@ -18907,6 +19149,12 @@ msgstr "Liczba trójkątnych faset"
msgid "Calculating, please wait..."
msgstr "Obliczanie, proszę czekać..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr ""
@@ -19315,6 +19563,58 @@ 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 "Print"
#~ msgstr "Drukuj"
#~ msgid "in"
#~ msgstr "cal"
#~ msgid "Object coordinates"
#~ msgstr "Koordynaty obiektu"
#~ msgid "World coordinates"
#~ msgstr "Współrzędne"
#~ msgid "Translate(Relative)"
#~ msgstr "Przesunięcie równoległe (Względne)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Obrót (bezwzględny)"
#~ msgid "Part coordinates"
#~ msgstr "Koordynaty części"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Włącz adaptacyjny wzrost ciśnienia dla nawisów (beta)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Wzrost ciśnienia (PA) dla mostów"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Wartość wzrostu ciśnienia dla mostów. Ustaw na 0, aby wyłączyć.\n"
#~ "\n"
#~ "Niższa wartość PA podczas drukowania mostów pomaga zredukować widoczność lekkiego niedoboru materiału, który może wystąpić bezpośrednio po ich wydruku. Jest to spowodowane spadkiem ciśnienia w dyszy podczas drukowania w powietrzu, a niższy PA pomaga temu przeciwdziałać."
#~ msgid "View control settings"
#~ msgstr "Ustawienia kontrolowania widoku"
#~ msgid "Rotate view"
#~ msgstr "Obróć widok"
#~ msgid "Pan view"
#~ msgstr "Przesuń widok"
#~ msgid "Zoom view"
#~ msgstr "Przybliż widok"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Kierunek obracania koła myszy odwraca się podczas powiększania"
#, c-format, boost-format
#~ msgid "Left: %s"
#~ msgstr "Lewy: %s"
@@ -20724,10 +21024,6 @@ msgstr ""
#~ msgid "Unselect"
#~ msgstr "Odznacz"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Skala"
#~ msgid "Lift Z Enforcement"
#~ msgstr "Wymuszenie podniesienia osi Z"

File diff suppressed because it is too large Load Diff

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OrcaSlicer V2.5.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"PO-Revision-Date: 2026-02-25 13:38+0300\n"
"Last-Translator: Felix14_v2\n"
"Language-Team: Felix14_v2 (ДС/ТГ: @felix14_v2, почта: aleks111001@list.ru), Andylg <andylg@yandex.ru>\n"
@@ -337,6 +337,7 @@ msgstr "Инструмент вращения"
msgid "Optimize orientation"
msgstr "Оптимизация положения модели"
msgctxt "Verb"
msgid "Scale"
msgstr "Масштаб"
@@ -346,8 +347,9 @@ msgstr "Инструмент изменения размера"
msgid "Error: Please close all toolbar menus first"
msgstr "Ошибка: сначала закройте текущий инструмент."
msgctxt "inches"
msgid "in"
msgstr "дюйм"
msgstr ""
msgid "mm"
msgstr "мм"
@@ -379,6 +381,9 @@ msgstr "Коэф. масштаба"
msgid "Object operations"
msgstr "Операции с моделями"
msgid "Scale"
msgstr "Масштаб"
msgid "Volume operations"
msgstr "Булевы операции с телами"
@@ -400,26 +405,33 @@ msgstr "Сброс позиции"
msgid "Reset rotation"
msgstr "Сброс вращения"
msgid "Object coordinates"
msgstr "Относительно модели"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "Относительно стола"
msgid "Object"
msgstr "Модель"
msgid "Translate(Relative)"
msgstr "Перемещение (относительное)"
msgid "Part"
msgstr "Часть"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Сбросить последние изменения ориентации"
msgid "Rotate (absolute)"
msgstr "Поворот"
msgid "Reset current rotation to real zeros."
msgstr "Сбросить ориентацию до изначальной"
msgid "Part coordinates"
msgstr "Относительно части"
msgctxt "Noun"
msgid "Scale"
msgstr "Масштаб"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -527,12 +539,6 @@ msgstr "Зазор"
msgid "Spacing"
msgstr "Отступ"
msgid "Part"
msgstr "Часть"
msgid "Object"
msgstr "Модель"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1907,23 +1913,30 @@ msgstr "Открыть проект"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Слишком старая версия Orca Slicer. Для корректной работы обновите программу до последней версии."
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
@@ -1932,6 +1945,12 @@ msgid ""
"Do you want to continue?"
msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr ""
@@ -2007,7 +2026,8 @@ msgstr "Количество пользовательских профилей,
msgid "Sync user presets"
msgstr "Синхронизировать пользовательские профили"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
@@ -2217,6 +2237,9 @@ msgstr "Куб Orca"
msgid "OrcaSliced Combo"
msgstr "Нарезанная Orca"
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr "Тест точности Orca"
@@ -3642,9 +3665,9 @@ msgstr "Калибровка завершена. Теперь найдите н
msgid "Save"
msgstr "Сохранить"
# Используется в нескольких местах: в 2 местах в значении расположения (шва и камеры), в одном на кнопке "назад" (калибровка бамбу)
msgctxt "Navigation"
msgid "Back"
msgstr "Сзади"
msgstr "Назад"
msgid "Example"
msgstr "Пример"
@@ -5050,6 +5073,7 @@ msgstr "Смена инструмента"
msgid "Color change"
msgstr "Смена цвета"
msgctxt "Noun"
msgid "Print"
msgstr "Печать"
@@ -5212,11 +5236,15 @@ msgstr "Избегать зону калибровки экструзии"
msgid "Align to Y axis"
msgstr "Выравнивать по оси Y"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "Сзади"
msgctxt "Camera View"
msgid "Left"
msgstr "Слева"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "Справа"
@@ -5299,6 +5327,9 @@ msgstr "Нависания"
msgid "Outline"
msgstr "Обводка выбранного"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -5571,6 +5602,10 @@ msgstr "Распечатать стол"
msgid "Export G-code file"
msgstr "Экспорт в G-код"
msgctxt "Verb"
msgid "Print"
msgstr "Печать"
msgid "Export plate sliced file"
msgstr "Экспорт стола в файл проекта"
@@ -7965,6 +8000,48 @@ msgstr "Укажите расположение загружаемых файл
msgid "Choose Download Directory"
msgstr "Выбор папки загрузки"
msgid "(Latest)"
msgstr "(новейшая)"
msgid "Network plug-in switched successfully."
msgstr "Сетевой плагин успешно переключён."
msgid "Success"
msgstr "Успех"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Для загрузки сетевого плагина требуется перезапуск приложения."
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"Выбрана следующая версия плагина: %s.\n"
"\n"
"Загрузить и установить её? Возможно, потребуется перезагрузка приложения."
msgid "Download Network Plug-in"
msgstr "Загрузить сетевой плагин"
msgid "Reload the network plug-in without restarting the application"
msgstr "Перезагрузить плагин без перезапуска приложения."
msgid "Network plug-in reloaded successfully."
msgstr "Плагин успешно перезагружен."
msgid "Reload"
msgstr "Перезагрузить"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Не удалось перезагрузить сетевой плагин. Требуется перезапуск приложения."
msgid "Reload Failed"
msgstr "Перезапуск не удался"
msgid "Associate"
msgstr "Ассоциация"
@@ -8019,12 +8096,6 @@ msgstr "Показывать заставку при запуске"
msgid "Show the splash screen during startup."
msgstr "Показывать окно приветствия при запуске программы."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side"
msgstr ""
@@ -8055,6 +8126,12 @@ msgstr "При загрузке файла 3MF открывать ..."
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Следует ли при открытии 3MF проекта загружать настройки принтера, печати и материала?"
msgid "Auto backup"
msgstr "Сохранение резервной копии"
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Периодическое создание резервной копии проекта для восстановления в случае непредвиденного сбоя программы."
msgid "Maximum recent files"
msgstr "Ограничение последних файлов"
@@ -8075,11 +8152,55 @@ msgstr "Показывать настройки импорта STEP"
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Если включено, во время импорта STEP файла появится диалоговое окно настроек параметров импорта."
msgid "Auto backup"
msgstr "Сохранение резервной копии"
msgid "STEP importing: linear deflection"
msgstr ""
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Периодическое создание резервной копии проекта для восстановления в случае непредвиденного сбоя программы."
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Качество при экспорте в DRC"
msgid "bits"
msgstr "бит"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Настройка глубины квантования при сжатии полигональной сетки в формат Draco.\n"
"Чем меньше глубина, тем ниже качество и размер файла. Допустимый диапазон от 8 до 30.\n"
"0 сжатие без потерь (представление с максимальной точностью)."
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "Профиль"
@@ -8111,6 +8232,12 @@ msgstr "материалов"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "Ограничить высоту секции с материалами проекта. При превышении лимита будет отображаться полоса прокрутки."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features"
msgstr "Возможности"
@@ -8124,21 +8251,6 @@ msgstr "Если включено, вы сможете управлять нес
msgid "Pop up to select filament grouping mode"
msgstr "Всплывающее окно для выбора режима группировки филаментов"
msgid "Quality level for Draco export"
msgstr "Качество при экспорте в DRC"
msgid "bits"
msgstr "бит"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Настройка глубины квантования при сжатии полигональной сетки в формат Draco.\n"
"Чем меньше глубина, тем ниже качество и размер файла. Допустимый диапазон от 8 до 30.\n"
"0 сжатие без потерь (представление с максимальной точностью)."
msgid "Behaviour"
msgstr "Автоматизация"
@@ -8373,18 +8485,6 @@ msgstr "Уведомлять только о стабильных версиях
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Синхронизация пользовательских профилей (принтера/материала/настроек)"
msgid "Update built-in presets automatically."
msgstr "Автоматически обновлять системные профили"
msgid "Use encrypted file for token storage"
msgstr "Хранить токены в зашифрованном файле"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Сохранять токены аутентификации в зашифрованном файле вместо использования системной связки ключей (требуется перезапуск)."
msgid "Filament Sync Options"
msgstr "Настройки синхронизации"
msgid "Filament sync mode"
msgstr "Режим синхронизации"
@@ -8397,6 +8497,15 @@ msgstr "Цвет и материал"
msgid "Color only"
msgstr "Цвет"
msgid "Update built-in presets automatically."
msgstr "Автоматически обновлять системные профили"
msgid "Use encrypted file for token storage"
msgstr "Хранить токены в зашифрованном файле"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Сохранять токены аутентификации в зашифрованном файле вместо использования системной связки ключей (требуется перезапуск)."
msgid "Bambu network plug-in"
msgstr ""
@@ -8409,33 +8518,6 @@ msgstr "Версия сетевого плагина"
msgid "Select the network plug-in version to use"
msgstr "Выберите версию сетевого плагина для загрузки"
msgid "(Latest)"
msgstr "(новейшая)"
msgid "Network plug-in switched successfully."
msgstr "Сетевой плагин успешно переключён."
msgid "Success"
msgstr "Успех"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Для загрузки сетевого плагина требуется перезапуск приложения."
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"Выбрана следующая версия плагина: %s.\n"
"\n"
"Загрузить и установить её? Возможно, потребуется перезагрузка приложения."
msgid "Download Network Plug-in"
msgstr "Загрузить сетевой плагин"
msgid "Associate files to OrcaSlicer"
msgstr "Открытие файлов по умолчанию"
@@ -8478,7 +8560,16 @@ msgstr "Разработка"
msgid "Skip AMS blacklist check"
msgstr "Пропуск проверки материалов в AMS из файла чёрного списка"
msgid "(Experimental) Keep painted feature after mesh change"
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
@@ -8486,12 +8577,6 @@ msgid ""
"Highly experimental! Slow and may create artifact."
msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage"
msgstr "Игнорировать неисправность хранилища"
@@ -8520,24 +8605,6 @@ msgstr "отладка"
msgid "trace"
msgstr "трассировка"
msgid "Network plug-in"
msgstr "Сетевой плагин"
msgid "Reload"
msgstr "Перезагрузить"
msgid "Reload the network plug-in without restarting the application"
msgstr "Перезагрузить плагин без перезапуска приложения."
msgid "Network plug-in reloaded successfully."
msgstr "Плагин успешно перезагружен."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Не удалось перезагрузить сетевой плагин. Требуется перезапуск приложения."
msgid "Reload Failed"
msgstr "Перезапуск не удался"
msgid "Debug"
msgstr "Отладка"
@@ -8553,24 +8620,6 @@ msgstr "Синхронизация профилей"
msgid "Preferences sync"
msgstr "Синхронизация настроек"
msgid "View control settings"
msgstr "Просмотр настроек управления"
msgid "Rotate view"
msgstr "Вращение камеры"
msgid "Pan view"
msgstr "Перемещение камеры"
msgid "Zoom view"
msgstr "Масштабирование вида"
msgid "Other"
msgstr "Прочее"
msgid "Reverse scroll direction while zooming"
msgstr "Инвертировать масштабирование с помощью колеса мыши"
msgid "Enable SSL(MQTT)"
msgstr "Включить SSL(MQTT)"
@@ -12530,6 +12579,18 @@ msgstr "Порог коротких периметров"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Пороговое значение (радиус) для расчёта длины коротких периметров (по формуле длины окружности). Значение по умолчанию 0 мм."
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr "Порядок печати периметров"
@@ -12739,27 +12800,26 @@ msgstr ""
"\n"
"3. Проверьте порядок введённых значений (PA, расход, ускорения) и сохраните профиль материала."
# Тут речь о коэффициенте PA (адаптивный коэффициент PA), а не об адаптивном
# алгоритме
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Адаптивный PA на нависаниях (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid "Pressure advance for bridges"
msgstr "Коэффициент PA на мостах"
msgid ""
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
"Коэффициент Pressure Advance для мостов. Установите значение 0, если хотите отключить функцию.\n"
"\n"
"Более низкое значение PA при печати мостов помогает уменьшить появление небольшой недоэкструзии сразу после мостов. Это вызвано падением давления в сопле при печати в воздухе, и более низкое значение PA помогает предотвратить это."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Стандартная ширина линии для отключённых (установленных на 0) значений ниже. Можно указать процент от диаметра сопла."
@@ -13146,6 +13206,22 @@ msgstr "Угол шаблона сплошного заполнения"
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Угол ориентации шаблона сплошного заполнения, который определяет начало или основное направление линий."
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "Плотность заполнения"
@@ -13402,6 +13478,17 @@ msgstr ""
msgid "layer"
msgstr "слой"
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr "Обдув связующего слоя"
@@ -15016,6 +15103,10 @@ msgstr "В углах"
msgid "Aligned back"
msgstr "В углах сзади"
# Используется в нескольких местах: в 2 местах в значении расположения (шва и камеры), в одном на кнопке "назад" (калибровка бамбу)
msgid "Back"
msgstr "Сзади"
msgid "Random"
msgstr "Случайная"
@@ -15426,6 +15517,9 @@ msgstr "Часто в импортируемых в программу моде
msgid "Slicing Mode"
msgstr "Режим нарезки"
msgid "Other"
msgstr "Прочее"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr ""
"Режим нарезки «Чётный-нечётный» применяется для моделей с намеренно нарушенной целостностью. Например, для моделей самолётов с ресурса 3DLabPrint.\n"
@@ -16166,6 +16260,14 @@ msgstr "Скручивание многогранника"
msgid "Rotate the polyhole every layer."
msgstr "Вращение многогранного отверстия на каждом слое."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "Эскизы в G-коде"
@@ -18621,6 +18723,132 @@ msgstr "Вход/Тест"
msgid "Connection to printers connected via the print host failed."
msgstr "Не удалось подключиться к принтерам, подключенным через хост печати."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr ""
@@ -18703,6 +18931,19 @@ msgstr "Подключение к MKS успешно установлено."
msgid "Could not connect to MKS"
msgstr "Не удалось подключиться к MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr "Подключение к OctoPrint успешно установлено."
@@ -19462,6 +19703,12 @@ msgstr "Количество треугольников"
msgid "Calculating, please wait..."
msgstr "Расчёт, подождите..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr ""
@@ -19870,6 +20117,65 @@ msgstr ""
"Предотвращение коробления материала\n"
"Знаете ли вы, что при печати материалами, склонными к короблению, таких как ABS, повышение температуры подогреваемого стола может снизить эту вероятность?"
#~ msgid "Print"
#~ msgstr "Печать"
#~ msgid "in"
#~ msgstr "дюйм"
#~ msgid "Object coordinates"
#~ msgstr "Относительно модели"
#~ msgid "World coordinates"
#~ msgstr "Относительно стола"
#~ msgid "Translate(Relative)"
#~ msgstr "Перемещение (относительное)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Поворот"
#~ msgid "Part coordinates"
#~ msgstr "Относительно части"
# Тут речь о коэффициенте PA (адаптивный коэффициент PA), а не об адаптивном
# алгоритме
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Адаптивный PA на нависаниях (beta)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Коэффициент PA на мостах"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Коэффициент Pressure Advance для мостов. Установите значение 0, если хотите отключить функцию.\n"
#~ "\n"
#~ "Более низкое значение PA при печати мостов помогает уменьшить появление небольшой недоэкструзии сразу после мостов. Это вызвано падением давления в сопле при печати в воздухе, и более низкое значение PA помогает предотвратить это."
#~ msgid "Filament Sync Options"
#~ msgstr "Настройки синхронизации"
#~ msgid "Network plug-in"
#~ msgstr "Сетевой плагин"
#~ msgid "View control settings"
#~ msgstr "Просмотр настроек управления"
#~ msgid "Rotate view"
#~ msgstr "Вращение камеры"
#~ msgid "Pan view"
#~ msgstr "Перемещение камеры"
#~ msgid "Zoom view"
#~ msgstr "Масштабирование вида"
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Инвертировать масштабирование с помощью колеса мыши"
#, c-format, boost-format
#~ msgid "Left: %s"
#~ msgstr "Левый: %s"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -324,6 +324,7 @@ msgstr ""
msgid "Optimize orientation"
msgstr "Optimisera placering"
msgctxt "Verb"
msgid "Scale"
msgstr "Skala"
@@ -333,8 +334,9 @@ msgstr ""
msgid "Error: Please close all toolbar menus first"
msgstr "FEL: Stäng alla verktygsmenyer först"
msgctxt "inches"
msgid "in"
msgstr "i"
msgstr ""
msgid "mm"
msgstr "mm"
@@ -367,6 +369,9 @@ msgstr "Skalnings förhållande"
msgid "Object operations"
msgstr "Objekt Åtgärder"
msgid "Scale"
msgstr "Skala"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Volume operations"
msgstr "Volym Åtgärder"
@@ -393,26 +398,33 @@ msgstr "Återställ Position"
msgid "Reset rotation"
msgstr ""
msgid "Object coordinates"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "Världskoordinater"
msgid "Object"
msgstr "Objekt"
msgid "Translate(Relative)"
msgid "Part"
msgstr "Del"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr ""
msgid "Rotate (absolute)"
msgstr ""
msgid "Reset current rotation to real zeros."
msgstr ""
msgid "Part coordinates"
msgstr ""
msgctxt "Noun"
msgid "Scale"
msgstr "Skala"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -517,12 +529,6 @@ msgstr "Glipa"
msgid "Spacing"
msgstr "Mellanrum"
msgid "Part"
msgstr "Del"
msgid "Object"
msgstr "Objekt"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1841,23 +1847,30 @@ msgstr "Öppna Projekt"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Versionen av Orca Slicer är för låg och behöver uppdateras till den senaste versionen innan den kan användas normalt"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
@@ -1866,6 +1879,12 @@ msgid ""
"Do you want to continue?"
msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr ""
@@ -1933,7 +1952,8 @@ msgstr "Antalet användar inställningar som cachats i molnet har överskridit d
msgid "Sync user presets"
msgstr "Synkronisera användar inställningar"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
@@ -2155,6 +2175,9 @@ msgstr ""
msgid "OrcaSliced Combo"
msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr ""
@@ -3588,7 +3611,7 @@ msgstr "Kalibreringen klar. Vänligen hitta den mest enhetliga extruderingslinje
msgid "Save"
msgstr "Spara"
# TODO: Review, changed by lang refactor. PR 14254
msgctxt "Navigation"
msgid "Back"
msgstr "Tillbaka"
@@ -4946,6 +4969,7 @@ msgstr ""
msgid "Color change"
msgstr "Färg byte"
msgctxt "Noun"
msgid "Print"
msgstr "Skriv ut"
@@ -5105,11 +5129,15 @@ msgstr "Undvik kalibrerings området"
msgid "Align to Y axis"
msgstr "Justera mot Y-axeln"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "Tillbaka"
msgctxt "Camera View"
msgid "Left"
msgstr "Vänster"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "Höger"
@@ -5188,6 +5216,9 @@ msgstr ""
msgid "Outline"
msgstr "Kontur"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -5430,6 +5461,10 @@ msgstr "Skriv ut byggplattan"
msgid "Export G-code file"
msgstr "Exportera G-kod filen"
msgctxt "Verb"
msgid "Print"
msgstr "Skriv ut"
msgid "Export plate sliced file"
msgstr "Exportera byggplattans beredda fil"
@@ -7789,6 +7824,45 @@ msgstr ""
msgid "Choose Download Directory"
msgstr "Välj Nedladdnings Register"
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr "Lyckades"
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr "Ladda om"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate"
msgstr ""
@@ -7844,12 +7918,6 @@ msgstr "Visa välkomstskärm"
msgid "Show the splash screen during startup."
msgstr "Visa välkomstskärmen under uppstart."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side"
msgstr ""
@@ -7880,6 +7948,13 @@ msgstr ""
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr ""
msgid "Auto backup"
msgstr "Auto säkerhetskopiera"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Säkerhetskopiera ditt projekt med jämna mellanrum för att underlätta återställning efter en tillfällig krasch."
msgid "Maximum recent files"
msgstr ""
@@ -7898,12 +7973,52 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr ""
msgid "Auto backup"
msgstr "Auto säkerhetskopiera"
msgid "STEP importing: linear deflection"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Säkerhetskopiera ditt projekt med jämna mellanrum för att underlätta återställning efter en tillfällig krasch."
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "Förinställd"
@@ -7935,6 +8050,12 @@ msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features"
msgstr "Funktioner"
@@ -7947,18 +8068,6 @@ msgstr ""
msgid "Pop up to select filament grouping mode"
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour"
msgstr ""
@@ -8183,19 +8292,6 @@ msgstr ""
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Automatisk synkronisering av användarens förinställningar (skrivare/filament/process)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Uppdatera inbyggda förinställningar automatiskt."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode"
msgstr ""
@@ -8208,6 +8304,16 @@ msgstr ""
msgid "Color only"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Uppdatera inbyggda förinställningar automatiskt."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in"
msgstr ""
@@ -8220,30 +8326,6 @@ msgstr ""
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr "Lyckades"
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
msgstr "Associerade filer till Orca Slicer"
@@ -8290,7 +8372,16 @@ msgstr "Utvecklare"
msgid "Skip AMS blacklist check"
msgstr "Hoppa över kontrollen av AMS svarta lista"
msgid "(Experimental) Keep painted feature after mesh change"
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
@@ -8298,12 +8389,6 @@ msgid ""
"Highly experimental! Slow and may create artifact."
msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage"
msgstr ""
@@ -8330,24 +8415,6 @@ msgstr "felsök"
msgid "trace"
msgstr "spåra"
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr "Ladda om"
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug"
msgstr "Felsökning"
@@ -8363,25 +8430,6 @@ msgstr "Förinställd synkronisering"
msgid "Preferences sync"
msgstr "Synkronisera inställningar"
msgid "View control settings"
msgstr "Kontroll inställningar"
msgid "Rotate view"
msgstr "Rotera vy"
msgid "Pan view"
msgstr "Panoreringsvy"
msgid "Zoom view"
msgstr "Zoomvy"
msgid "Other"
msgstr "Andra"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Reversera mushjulet för att zooma"
msgid "Enable SSL(MQTT)"
msgstr "Aktivera SSL(MQTT)"
@@ -12129,6 +12177,18 @@ msgstr ""
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Detta ställer in tröskelvärdet för liten perimeterlängd. Standardgränsen är 0mm"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr ""
@@ -12284,21 +12344,25 @@ msgid ""
"3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile."
msgstr ""
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgstr ""
msgid "Pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
@@ -12665,6 +12729,22 @@ msgstr ""
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr ""
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "Sparsam ifyllnads densitet"
@@ -12878,6 +12958,17 @@ msgstr ""
msgid "layer"
msgstr ""
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr ""
@@ -14326,6 +14417,10 @@ msgstr "Linjerad"
msgid "Aligned back"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Back"
msgstr "Tillbaka"
msgid "Random"
msgstr "Slumpmässig"
@@ -14678,6 +14773,9 @@ msgstr "Sprickor mindre än 2 x gap stängningsradie fylls under triangeln mesh
msgid "Slicing Mode"
msgstr "Berednings läge"
msgid "Other"
msgstr "Andra"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Använd ”Jämn-Udda” för 3DLabPrint flygplans modeller. Använd ”Stäng hål” för att stänga alla hål i modellen."
@@ -15317,6 +15415,14 @@ msgstr ""
msgid "Rotate the polyhole every layer."
msgstr ""
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr ""
@@ -17614,6 +17720,132 @@ msgstr ""
msgid "Connection to printers connected via the print host failed."
msgstr "Anslutningen till printrar som är anslutna via printer värden misslyckades."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr ""
@@ -17696,6 +17928,19 @@ msgstr ""
msgid "Could not connect to MKS"
msgstr "Kunde inte ansluta till MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr ""
@@ -18447,6 +18692,12 @@ msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr ""
@@ -18825,6 +19076,31 @@ 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?"
#~ msgid "Print"
#~ msgstr "Skriv ut"
#~ msgid "in"
#~ msgstr "i"
#~ msgid "World coordinates"
#~ msgstr "Världskoordinater"
#~ msgid "View control settings"
#~ msgstr "Kontroll inställningar"
#~ msgid "Rotate view"
#~ msgstr "Rotera vy"
#~ msgid "Pan view"
#~ msgstr "Panoreringsvy"
#~ msgid "Zoom view"
#~ msgstr "Zoomvy"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Reversera mushjulet för att zooma"
#~ msgid "Perform"
#~ msgstr "Utför"
@@ -19976,10 +20252,6 @@ msgstr ""
#~ msgid "Thick bridges"
#~ msgstr "Tjocka bridges"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Skala"
#~ msgid "Z-hop when retract"
#~ msgstr "Z-hopp vid retraktion"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"PO-Revision-Date: 2026-06-19 13:40+0700\n"
"Last-Translator: Icezaza\n"
"Language-Team: Thai\n"
@@ -324,6 +324,7 @@ msgstr "Gizmo-หมุน"
msgid "Optimize orientation"
msgstr "ปรับการวางแนวให้เหมาะสม"
msgctxt "Verb"
msgid "Scale"
msgstr "ปรับขนาด"
@@ -333,8 +334,9 @@ msgstr "Gizmo-ขนาด"
msgid "Error: Please close all toolbar menus first"
msgstr "ข้อผิดพลาด: โปรดปิดเมนูแถบเครื่องมือทั้งหมดก่อน"
msgctxt "inches"
msgid "in"
msgstr "นิ้ว"
msgstr ""
msgid "mm"
msgstr "มม."
@@ -366,6 +368,9 @@ msgstr "อัตราส่วนการปรับขนาด"
msgid "Object operations"
msgstr "การทำงานกับวัตถุ"
msgid "Scale"
msgstr "ปรับขนาด"
msgid "Volume operations"
msgstr "การทำงานกับวอลลุ่ม"
@@ -387,26 +392,33 @@ msgstr "รีเซ็ตตำแหน่ง"
msgid "Reset rotation"
msgstr "รีเซ็ตการหมุน"
msgid "Object coordinates"
msgstr "พิกัดวัตถุ"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "พิกัดโลก"
msgid "Object"
msgstr "วัตถุ"
msgid "Translate(Relative)"
msgstr "เลื่อนตำแหน่ง (แบบสัมพันธ์)"
msgid "Part"
msgstr "ชิ้นส่วน"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr "รีเซ็ตการหมุนปัจจุบันเป็นค่าเมื่อเปิดเครื่องมือการหมุน"
msgid "Rotate (absolute)"
msgstr "หมุน (สัมบูรณ์)"
msgid "Reset current rotation to real zeros."
msgstr "รีเซ็ตการหมุนปัจจุบันให้เป็นศูนย์จริง"
msgid "Part coordinates"
msgstr "พิกัดส่วน"
msgctxt "Noun"
msgid "Scale"
msgstr "ปรับขนาด"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -511,12 +523,6 @@ msgstr "ช่องว่าง"
msgid "Spacing"
msgstr "ระยะห่าง"
msgid "Part"
msgstr "ชิ้นส่วน"
msgid "Object"
msgstr "วัตถุ"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1850,33 +1856,32 @@ msgstr "เปิดโปรเจกต์"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Orca Slicer เวอร์ชันต่ำเกินไปและจำเป็นต้องอัปเดตเป็นเวอร์ชันล่าสุดก่อนจึงจะสามารถใช้งานได้ตามปกติ"
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
"ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้านี้มีเวอร์ชันใหม่กว่าใน Orca Cloud\n"
"ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
"ความขัดแย้งในการซิงก์ Cloud: มีค่าที่ตั้งไว้ล่วงหน้าชื่อนี้อยู่ใน Orca Cloud แล้ว\n"
"ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
"ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้าชื่อเดียวกันเคยถูกลบจากคลาวด์แล้ว\n"
"ลบจะลบค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
"ความขัดแย้งในการซิงก์ Cloud: พบความขัดแย้งของค่าที่ตั้งไว้ล่วงหน้าที่ไม่คาดคิดหรือระบุไม่ได้\n"
"ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
msgid ""
"Force push will overwrite the cloud copy with your local preset changes.\n"
@@ -1885,6 +1890,12 @@ msgstr ""
"การบังคับส่งจะเขียนทับสำเนาบนคลาวด์ด้วยการเปลี่ยนแปลงค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ\n"
"คุณต้องการดำเนินการต่อหรือไม่?"
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr "แก้ไขความขัดแย้งการซิงค์คลาวด์"
@@ -1964,8 +1975,9 @@ msgstr "จำนวนค่าที่ตั้งไว้ล่วงหน
msgid "Sync user presets"
msgstr "ซิงค์การตั้งค่าล่วงหน้าของผู้ใช้"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "เนื้อหาที่ตั้งไว้ล่วงหน้ามีขนาดใหญ่เกินกว่าจะซิงค์กับระบบคลาวด์ (เกิน 1MB) โปรดลดขนาดที่กำหนดไว้ล่วงหน้าโดยการลบการกำหนดค่าที่กำหนดเองออกหรือใช้เฉพาะในเครื่องเท่านั้น"
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
msgid "%s updated from %s to %s"
@@ -2174,6 +2186,9 @@ msgstr "ออร์ก้าคิวบ์"
msgid "OrcaSliced Combo"
msgstr "OrcaSliced Combo"
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr "การทดสอบค่าความเผื่อ Orca"
@@ -3552,6 +3567,7 @@ msgstr "การสอบเทียบเสร็จสิ้น โปร
msgid "Save"
msgstr "บันทึก"
msgctxt "Navigation"
msgid "Back"
msgstr "กลับ"
@@ -4900,6 +4916,7 @@ msgstr "การเปลี่ยนแปลงเครื่องมือ
msgid "Color change"
msgstr "เปลี่ยนสี"
msgctxt "Noun"
msgid "Print"
msgstr "พิมพ์"
@@ -5059,11 +5076,15 @@ msgstr "หลีกเลี่ยงบริเวณการสอบเท
msgid "Align to Y axis"
msgstr "จัดแนวตามแกน Y"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "กลับ"
msgctxt "Camera View"
msgid "Left"
msgstr "ซ้าย"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "ขวา"
@@ -5142,6 +5163,9 @@ msgstr "ส่วนยื่น"
msgid "Outline"
msgstr "เส้นขอบ"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr "มุมมองสมจริง"
@@ -5383,6 +5407,10 @@ msgstr "พิมพ์ฐานพิมพ์"
msgid "Export G-code file"
msgstr "ส่งออกไฟล์ G-code"
msgctxt "Verb"
msgid "Print"
msgstr "พิมพ์"
msgid "Export plate sliced file"
msgstr "ส่งออกไฟล์แผ่นสไลซ์บาง ๆ"
@@ -7711,6 +7739,50 @@ msgstr "เลือกโฟลเดอร์สำหรับรายกา
msgid "Choose Download Directory"
msgstr "เลือกดาวน์โหลดไดเรกทอรี"
msgid "(Latest)"
msgstr "(ล่าสุด)"
msgid "Network plug-in switched successfully."
msgstr "สลับปลั๊กอินเครือข่ายสำเร็จแล้ว"
msgid "Success"
msgstr "สำเร็จ"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "โหลดปลั๊กอินเครือข่ายไม่สำเร็จ กรุณารีสตาร์ทแอปพลิเคชัน"
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"คุณได้เลือกปลั๊กอินเครือข่ายเวอร์ชัน %s\n"
"\n"
"คุณต้องการดาวน์โหลดและติดตั้งเวอร์ชันนี้ทันทีหรือไม่\n"
"\n"
"หมายเหตุ: แอปพลิเคชันอาจต้องรีสตาร์ทหลังการติดตั้ง"
msgid "Download Network Plug-in"
msgstr "ดาวน์โหลดปลั๊กอินเครือข่าย"
msgid "Reload the network plug-in without restarting the application"
msgstr "โหลดปลั๊กอินเครือข่ายซ้ำโดยไม่ต้องรีสตาร์ทแอปพลิเคชัน"
msgid "Network plug-in reloaded successfully."
msgstr "โหลดปลั๊กอินเครือข่ายซ้ำสำเร็จแล้ว"
msgid "Reload"
msgstr "โหลดใหม่"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "โหลดปลั๊กอินเครือข่ายซ้ำไม่สำเร็จ กรุณารีสตาร์ทแอปพลิเคชัน"
msgid "Reload Failed"
msgstr "โหลดใหม่ล้มเหลว"
msgid "Associate"
msgstr "เชื่อมโยง"
@@ -7765,12 +7837,6 @@ msgstr "แสดงหน้าจอเริ่มต้น"
msgid "Show the splash screen during startup."
msgstr "แสดงหน้าจอเริ่มต้นระหว่างการเริ่มต้น"
msgid "Show shared profiles notification"
msgstr "แสดงการแจ้งเตือนโปรไฟล์ที่แชร์"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "แสดงการแจ้งเตือนพร้อมลิงก์เพื่อเรียกดูโปรไฟล์ที่แชร์เมื่อเครื่องพิมพ์ที่เลือกมีการเปลี่ยนแปลง"
msgid "Use window buttons on left side"
msgstr "ใช้ปุ่มหน้าต่างทางด้านซ้าย"
@@ -7801,6 +7867,12 @@ msgstr "พฤติกรรมการโหลด"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "ควรโหลดการตั้งค่าเครื่องพิมพ์/เส้นพลาสติก/กระบวนการเมื่อเปิดไฟล์ 3MF หรือไม่"
msgid "Auto backup"
msgstr "การสำรองข้อมูลอัตโนมัติ"
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "สำรองข้อมูลโปรเจ็กต์ของคุณเป็นระยะเพื่อกู้คืนจากข้อขัดข้องเป็นครั้งคราว"
msgid "Maximum recent files"
msgstr "ไฟล์ล่าสุดสูงสุด"
@@ -7819,11 +7891,55 @@ msgstr "แสดงตัวเลือกเมื่อนำเข้าไ
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "หากเปิดใช้งาน กล่องโต้ตอบการตั้งค่าพารามิเตอร์จะปรากฏขึ้นระหว่างการนำเข้าไฟล์ STEP"
msgid "Auto backup"
msgstr "การสำรองข้อมูลอัตโนมัติ"
msgid "STEP importing: linear deflection"
msgstr ""
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "สำรองข้อมูลโปรเจ็กต์ของคุณเป็นระยะเพื่อกู้คืนจากข้อขัดข้องเป็นครั้งคราว"
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "ระดับคุณภาพสำหรับการส่งออกของ Draco"
msgid "bits"
msgstr "บิต"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"ควบคุมความลึกบิตเชิงปริมาณที่ใช้ในการบีบอัด mesh เป็นรูปแบบ Draco\n"
"0 = การบีบอัดแบบไม่สูญเสีย (รูปทรงเรขาคณิตจะถูกรักษาไว้อย่างแม่นยำเต็มที่) ค่าการสูญเสียที่ถูกต้องมีตั้งแต่ 8 ถึง 30\n"
"ค่าที่ต่ำกว่าจะทำให้ไฟล์มีขนาดเล็กลง แต่สูญเสียรายละเอียดทางเรขาคณิตมากขึ้น ค่าที่สูงกว่าจะรักษารายละเอียดได้มากขึ้นโดยที่ไฟล์มีขนาดใหญ่กว่า"
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "พรีเซ็ต"
@@ -7855,6 +7971,12 @@ msgstr "เส้นพลาสติก"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "ปรับความสูงสูงสุดของพื้นที่เส้นพลาสติกให้เหมาะสมตามจำนวนเส้นพลาสติกที่เลือก"
msgid "Show shared profiles notification"
msgstr "แสดงการแจ้งเตือนโปรไฟล์ที่แชร์"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "แสดงการแจ้งเตือนพร้อมลิงก์เพื่อเรียกดูโปรไฟล์ที่แชร์เมื่อเครื่องพิมพ์ที่เลือกมีการเปลี่ยนแปลง"
msgid "Features"
msgstr "คุณสมบัติ"
@@ -7867,21 +7989,6 @@ msgstr "เมื่อเปิดใช้งานตัวเลือกน
msgid "Pop up to select filament grouping mode"
msgstr "ปรากฏขึ้นเพื่อเลือกโหมดการจัดกลุ่มเส้นพลาสติก"
msgid "Quality level for Draco export"
msgstr "ระดับคุณภาพสำหรับการส่งออกของ Draco"
msgid "bits"
msgstr "บิต"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"ควบคุมความลึกบิตเชิงปริมาณที่ใช้ในการบีบอัด mesh เป็นรูปแบบ Draco\n"
"0 = การบีบอัดแบบไม่สูญเสีย (รูปทรงเรขาคณิตจะถูกรักษาไว้อย่างแม่นยำเต็มที่) ค่าการสูญเสียที่ถูกต้องมีตั้งแต่ 8 ถึง 30\n"
"ค่าที่ต่ำกว่าจะทำให้ไฟล์มีขนาดเล็กลง แต่สูญเสียรายละเอียดทางเรขาคณิตมากขึ้น ค่าที่สูงกว่าจะรักษารายละเอียดได้มากขึ้นโดยที่ไฟล์มีขนาดใหญ่กว่า"
msgid "Behaviour"
msgstr "พฤติกรรม"
@@ -8126,18 +8233,6 @@ msgstr "ตรวจสอบการอัปเดตที่เสถีย
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "การตั้งค่าล่วงหน้าของผู้ใช้ซิงค์อัตโนมัติ (เครื่องพิมพ์/เส้นพลาสติก/กระบวนการ)"
msgid "Update built-in presets automatically."
msgstr "อัปเดตค่าที่ตั้งล่วงหน้าในตัวโดยอัตโนมัติ"
msgid "Use encrypted file for token storage"
msgstr "ใช้ไฟล์ที่เข้ารหัสสำหรับการจัดเก็บโทเค็น"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "จัดเก็บโทเค็นการรับรองความถูกต้องในไฟล์ที่เข้ารหัสแทนพวงกุญแจระบบ (ต้องรีสตาร์ท)"
msgid "Filament Sync Options"
msgstr "ตัวเลือกการซิงค์ฟิลาเมนต์"
msgid "Filament sync mode"
msgstr "โหมดการซิงค์ฟิลาเมนต์"
@@ -8150,6 +8245,15 @@ msgstr "เส้นพลาสติกและสี"
msgid "Color only"
msgstr "สีเท่านั้น"
msgid "Update built-in presets automatically."
msgstr "อัปเดตค่าที่ตั้งล่วงหน้าในตัวโดยอัตโนมัติ"
msgid "Use encrypted file for token storage"
msgstr "ใช้ไฟล์ที่เข้ารหัสสำหรับการจัดเก็บโทเค็น"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "จัดเก็บโทเค็นการรับรองความถูกต้องในไฟล์ที่เข้ารหัสแทนพวงกุญแจระบบ (ต้องรีสตาร์ท)"
msgid "Bambu network plug-in"
msgstr "ปลั๊กอินเครือข่าย Bambu"
@@ -8162,35 +8266,6 @@ msgstr "เวอร์ชันปลั๊กอินเครือข่า
msgid "Select the network plug-in version to use"
msgstr "เลือกเวอร์ชันปลั๊กอินเครือข่ายที่จะใช้"
msgid "(Latest)"
msgstr "(ล่าสุด)"
msgid "Network plug-in switched successfully."
msgstr "สลับปลั๊กอินเครือข่ายสำเร็จแล้ว"
msgid "Success"
msgstr "สำเร็จ"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "โหลดปลั๊กอินเครือข่ายไม่สำเร็จ กรุณารีสตาร์ทแอปพลิเคชัน"
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"คุณได้เลือกปลั๊กอินเครือข่ายเวอร์ชัน %s\n"
"\n"
"คุณต้องการดาวน์โหลดและติดตั้งเวอร์ชันนี้ทันทีหรือไม่\n"
"\n"
"หมายเหตุ: แอปพลิเคชันอาจต้องรีสตาร์ทหลังการติดตั้ง"
msgid "Download Network Plug-in"
msgstr "ดาวน์โหลดปลั๊กอินเครือข่าย"
msgid "Associate files to OrcaSlicer"
msgstr "เชื่อมโยงไฟล์กับ OrcaSlicer"
@@ -8233,8 +8308,17 @@ msgstr "นักพัฒนา"
msgid "Skip AMS blacklist check"
msgstr "ข้ามการตรวจสอบบัญชีดำของ AMS"
msgid "(Experimental) Keep painted feature after mesh change"
msgstr "(ทดลอง) เก็บคุณสมบัติการทาสีไว้หลังจากเปลี่ยนตาข่าย"
msgid "Show unsupported presets"
msgstr "แสดงค่าที่ตั้งไว้ล่วงหน้าที่ไม่รองรับ"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "แสดงค่าที่ตั้งไว้ล่วงหน้าที่ไม่เข้ากันหรือไม่รองรับในรายการเลือกเครื่องพิมพ์และเส้นพลาสติก ไม่สามารถเลือกค่าที่ตั้งไว้ล่วงหน้าเหล่านี้ได้"
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
"Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
@@ -8243,12 +8327,6 @@ msgstr ""
"พยายามคงคุณสมบัติการทาสีไว้ (สี/รอยตะเข็บ/ส่วนรองรับ/คลุมเครือ ฯลฯ) หลังจากเปลี่ยนตาข่ายวัตถุ (เช่น ตัด/โหลดซ้ำจากดิสก์/ลดความซับซ้อน/แก้ไข ฯลฯ)\n"
"น่าทดลองมาก! ช้าและอาจสร้างสิ่งประดิษฐ์"
msgid "Show unsupported presets"
msgstr "แสดงค่าที่ตั้งไว้ล่วงหน้าที่ไม่รองรับ"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "แสดงค่าที่ตั้งไว้ล่วงหน้าที่ไม่เข้ากันหรือไม่รองรับในรายการเลือกเครื่องพิมพ์และเส้นพลาสติก ไม่สามารถเลือกค่าที่ตั้งไว้ล่วงหน้าเหล่านี้ได้"
msgid "Allow Abnormal Storage"
msgstr "อนุญาตให้จัดเก็บผิดปกติ"
@@ -8277,24 +8355,6 @@ msgstr "แก้ปัญหา"
msgid "trace"
msgstr "ติดตาม"
msgid "Network plug-in"
msgstr "ปลั๊กอินเครือข่าย"
msgid "Reload"
msgstr "โหลดใหม่"
msgid "Reload the network plug-in without restarting the application"
msgstr "โหลดปลั๊กอินเครือข่ายซ้ำโดยไม่ต้องรีสตาร์ทแอปพลิเคชัน"
msgid "Network plug-in reloaded successfully."
msgstr "โหลดปลั๊กอินเครือข่ายซ้ำสำเร็จแล้ว"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "โหลดปลั๊กอินเครือข่ายซ้ำไม่สำเร็จ กรุณารีสตาร์ทแอปพลิเคชัน"
msgid "Reload Failed"
msgstr "โหลดใหม่ล้มเหลว"
msgid "Debug"
msgstr "ดีบัก"
@@ -8310,24 +8370,6 @@ msgstr "การซิงค์ที่ตั้งไว้ล่วงหน
msgid "Preferences sync"
msgstr "ซิงค์การตั้งค่า"
msgid "View control settings"
msgstr "ดูการตั้งค่าการควบคุม"
msgid "Rotate view"
msgstr "หมุนมุมมอง"
msgid "Pan view"
msgstr "แพนวิว"
msgid "Zoom view"
msgstr "ซูมดู"
msgid "Other"
msgstr "อื่นๆ"
msgid "Reverse scroll direction while zooming"
msgstr "ล้อเมาส์จะกลับด้านเมื่อซูม"
msgid "Enable SSL(MQTT)"
msgstr "เปิดใช้งาน SSL(MQTT)"
@@ -12220,6 +12262,18 @@ msgstr "เกณฑ์ขอบเขตขนาดเล็ก"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "นี่เป็นการกำหนดเกณฑ์สำหรับความยาวเส้นรอบวงเล็กน้อย เกณฑ์เริ่มต้นคือ 0 มม."
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr "สั่งพิมพ์ผนัง"
@@ -12404,27 +12458,26 @@ msgstr ""
"2. จดบันทึกค่า PA ที่เหมาะสมที่สุดสำหรับความเร็วการไหลและความเร่งตามปริมาตรแต่ละรายการ คุณสามารถค้นหาหมายเลขโฟลว์ได้โดยเลือกโฟลว์จากรายการสีแบบเลื่อนลง และเลื่อนแถบเลื่อนแนวนอนไปเหนือเส้นรูปแบบ PA หมายเลขควรปรากฏที่ด้านล่างของหน้า ค่า PA ในอุดมคติควรลดลงตามอัตราการไหลตามปริมาตรที่สูงขึ้น หากไม่เป็นเช่นนั้น ให้ยืนยันว่าชุดดันเส้นของคุณทำงานอย่างถูกต้อง ยิ่งคุณพิมพ์ช้าลงและเร่งความเร็วน้อยลง ช่วงของค่า PA ที่ยอมรับได้ก็จะยิ่งมากขึ้นเท่านั้น หากไม่เห็นความแตกต่าง ให้ใช้ค่า PA จากการทดสอบที่เร็วกว่า\n"
"3. ป้อนค่า PA, การไหล และความเร่งสามเท่าในกล่องข้อความที่นี่ และบันทึกโปรไฟล์เส้นพลาสติกของคุณ"
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "เปิดใช้งานการปรับPressure Advanceสำหรับระยะยื่น (เบต้า)"
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
"เปิดใช้งาน PA แบบปรับตัวสำหรับส่วนยื่นและเมื่ออัตราการไหลเปลี่ยนภายในฟีเจอร์เดียวกัน เป็นตัวเลือกทดลอง หากโปรไฟล์ PA ไม่แม่นยำ จะทำให้ผิวด้านนอกไม่สม่ำเสมอก่อนและหลังส่วนยื่น\n"
"ไม่รองรับเครื่องพิมพ์ Prusa เพราะจะหยุดชั่วคราวเพื่อประมวลผลการเปลี่ยน PA ทำให้เกิดความล่าช้าและข้อบกพร่อง"
msgid "Pressure advance for bridges"
msgstr "แรงดันล่วงหน้า (Pressure Advance)สำหรับสะพาน"
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
"ค่าPressure Advanceสำหรับสะพาน ตั้งค่าเป็น 0 เพื่อปิดใช้งาน\n"
"\n"
"ค่า PA ที่ต่ำลงเมื่อพิมพ์บริดจ์จะช่วยลดลักษณะที่ปรากฏเล็กน้อยจากการอัดขึ้นรูปทันทีหลังจากบริดจ์ สาเหตุนี้เกิดจากแรงดันตกในหัวฉีดเมื่อพิมพ์ในอากาศ และค่า PA ที่ต่ำกว่าจะช่วยแก้ปัญหานี้ได้"
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "ความกว้างของเส้นเริ่มต้นหากความกว้างของเส้นอื่นตั้งค่าเป็น 0 หากแสดงเป็น % ระบบจะคำนวณตามเส้นผ่านศูนย์กลางของหัวฉีด"
@@ -12796,6 +12849,22 @@ msgstr "ทิศทางไส้ในแบบทึบ"
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "มุมสำหรับรูปแบบไส้ในแบบทึบ ซึ่งควบคุมจุดเริ่มต้นหรือทิศทางหลักของเส้น"
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "ความหนาแน่นไส้ในแบบโปร่ง"
@@ -13002,6 +13071,17 @@ msgstr "ความเร็วพัดลมจะเพิ่มขึ้น
msgid "layer"
msgstr "ชั้น"
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr "ความเร็วพัดลมผิวสัมผัสส่วนรองรับ"
@@ -14529,6 +14609,9 @@ msgstr "จัดตำแหน่ง"
msgid "Aligned back"
msgstr "จัดแนวกลับ"
msgid "Back"
msgstr "กลับ"
msgid "Random"
msgstr "สุ่ม"
@@ -14895,6 +14978,9 @@ msgstr "รอยแตกร้าวที่มีขนาดเล็กก
msgid "Slicing Mode"
msgstr "โหมดการแบ่งส่วน"
msgid "Other"
msgstr "อื่นๆ"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "ใช้ \"เลขคู่\" สำหรับโมเดลเครื่องบิน 3DLabPrint ใช้ \"ปิดรู\" เพื่อปิดรูทั้งหมดในโมเดล"
@@ -15542,6 +15628,14 @@ msgstr "บิดรูหลายรู"
msgid "Rotate the polyhole every layer."
msgstr "หมุนโพลีโฮลทุกชั้น"
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "ภาพขนาดย่อ G-code"
@@ -17895,6 +17989,132 @@ msgstr "เข้าสู่ระบบ/ทดสอบ"
msgid "Connection to printers connected via the print host failed."
msgstr "การเชื่อมต่อกับเครื่องพิมพ์ที่เชื่อมต่อผ่านโฮสต์การพิมพ์ล้มเหลว"
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr "ตัวเลือกอัปโหลดคลาวด์ 3DPrinterOS"
@@ -17977,6 +18197,19 @@ msgstr "การเชื่อมต่อกับ MKS ทำงานอย
msgid "Could not connect to MKS"
msgstr "ไม่สามารถเชื่อมต่อกับ MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr "การเชื่อมต่อกับ OctoPrint ทำงานอย่างถูกต้อง"
@@ -18726,6 +18959,12 @@ msgstr "จำนวนด้านสามเหลี่ยม"
msgid "Calculating, please wait..."
msgstr "กำลังคำนวณ โปรดรอสักครู่..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr "ชุดค่าที่ตั้งไว้ล่วงหน้า"
@@ -19127,6 +19366,104 @@ msgstr ""
"หลีกเลี่ยงการบิดเบี้ยว\n"
"คุณรู้หรือไม่ว่าเมื่อพิมพ์วัสดุที่มีแนวโน้มที่จะเกิดการบิดเบี้ยว เช่น ABS การเพิ่มอุณหภูมิฐานพิมพ์อย่างเหมาะสมสามารถลดความน่าจะเป็นของการบิดเบี้ยวได้"
#~ msgid "Print"
#~ msgstr "พิมพ์"
#~ msgid "in"
#~ msgstr "นิ้ว"
#~ msgid "Object coordinates"
#~ msgstr "พิกัดวัตถุ"
#~ msgid "World coordinates"
#~ msgstr "พิกัดโลก"
#~ msgid "Translate(Relative)"
#~ msgstr "เลื่อนตำแหน่ง (แบบสัมพันธ์)"
#~ msgid "Rotate (absolute)"
#~ msgstr "หมุน (สัมบูรณ์)"
#~ msgid "Part coordinates"
#~ msgstr "พิกัดส่วน"
#~ msgid ""
#~ "Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้านี้มีเวอร์ชันใหม่กว่าใน Orca Cloud\n"
#~ "ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
#~ msgid ""
#~ "Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "ความขัดแย้งในการซิงก์ Cloud: มีค่าที่ตั้งไว้ล่วงหน้าชื่อนี้อยู่ใน Orca Cloud แล้ว\n"
#~ "ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
#~ msgid ""
#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
#~ "Delete will delete your local preset. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้าชื่อเดียวกันเคยถูกลบจากคลาวด์แล้ว\n"
#~ "ลบจะลบค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
#~ msgid ""
#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "ความขัดแย้งในการซิงก์ Cloud: พบความขัดแย้งของค่าที่ตั้งไว้ล่วงหน้าที่ไม่คาดคิดหรือระบุไม่ได้\n"
#~ "ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ"
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#~ msgstr "เนื้อหาที่ตั้งไว้ล่วงหน้ามีขนาดใหญ่เกินกว่าจะซิงค์กับระบบคลาวด์ (เกิน 1MB) โปรดลดขนาดที่กำหนดไว้ล่วงหน้าโดยการลบการกำหนดค่าที่กำหนดเองออกหรือใช้เฉพาะในเครื่องเท่านั้น"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "เปิดใช้งานการปรับPressure Advanceสำหรับระยะยื่น (เบต้า)"
#~ msgid ""
#~ "Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
#~ msgstr ""
#~ "เปิดใช้งาน PA แบบปรับตัวสำหรับส่วนยื่นและเมื่ออัตราการไหลเปลี่ยนภายในฟีเจอร์เดียวกัน เป็นตัวเลือกทดลอง หากโปรไฟล์ PA ไม่แม่นยำ จะทำให้ผิวด้านนอกไม่สม่ำเสมอก่อนและหลังส่วนยื่น\n"
#~ "ไม่รองรับเครื่องพิมพ์ Prusa เพราะจะหยุดชั่วคราวเพื่อประมวลผลการเปลี่ยน PA ทำให้เกิดความล่าช้าและข้อบกพร่อง"
#~ msgid "Pressure advance for bridges"
#~ msgstr "แรงดันล่วงหน้า (Pressure Advance)สำหรับสะพาน"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "ค่าPressure Advanceสำหรับสะพาน ตั้งค่าเป็น 0 เพื่อปิดใช้งาน\n"
#~ "\n"
#~ "ค่า PA ที่ต่ำลงเมื่อพิมพ์บริดจ์จะช่วยลดลักษณะที่ปรากฏเล็กน้อยจากการอัดขึ้นรูปทันทีหลังจากบริดจ์ สาเหตุนี้เกิดจากแรงดันตกในหัวฉีดเมื่อพิมพ์ในอากาศ และค่า PA ที่ต่ำกว่าจะช่วยแก้ปัญหานี้ได้"
#~ msgid "Filament Sync Options"
#~ msgstr "ตัวเลือกการซิงค์ฟิลาเมนต์"
#~ msgid "(Experimental) Keep painted feature after mesh change"
#~ msgstr "(ทดลอง) เก็บคุณสมบัติการทาสีไว้หลังจากเปลี่ยนตาข่าย"
#~ msgid "Network plug-in"
#~ msgstr "ปลั๊กอินเครือข่าย"
#~ msgid "View control settings"
#~ msgstr "ดูการตั้งค่าการควบคุม"
#~ msgid "Rotate view"
#~ msgstr "หมุนมุมมอง"
#~ msgid "Pan view"
#~ msgstr "แพนวิว"
#~ msgid "Zoom view"
#~ msgstr "ซูมดู"
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "ล้อเมาส์จะกลับด้านเมื่อซูม"
#, c-format, boost-format
#~ msgid "Left: %s"
#~ msgstr "ซ้าย: %s"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"PO-Revision-Date: 2026-04-08 23:59+0300\n"
"Last-Translator: GlauTech\n"
"Language-Team: \n"
@@ -327,6 +327,7 @@ msgstr "Gizmo-Döndür"
msgid "Optimize orientation"
msgstr "Yönü optimize edin"
msgctxt "Verb"
msgid "Scale"
msgstr "Ölçeklendir"
@@ -336,8 +337,9 @@ msgstr "Gizmo-Ölçeklendir"
msgid "Error: Please close all toolbar menus first"
msgstr "Hata: Lütfen önce tüm araç çubuğu menülerini kapatın"
msgctxt "inches"
msgid "in"
msgstr "in"
msgstr ""
msgid "mm"
msgstr "mm"
@@ -370,6 +372,9 @@ msgstr "Ölçek oranları"
msgid "Object operations"
msgstr "Nesne İşlemleri"
msgid "Scale"
msgstr "Ölçeklendir"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Volume operations"
msgstr "Hacim İşlemleri"
@@ -397,26 +402,33 @@ msgstr "Konumu Sıfırla"
msgid "Reset rotation"
msgstr "Döndürmeyi sıfırla"
msgid "Object coordinates"
msgstr "Nesne koordinatları"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "Dünya koordinatları"
msgid "Object"
msgstr "Nesne"
msgid "Translate(Relative)"
msgstr "Çevir(Göreceli)"
msgid "Part"
msgstr "Parça"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Döndürme aracını açtığınızda mevcut döndürme değerini sıfırlayın."
msgid "Rotate (absolute)"
msgstr "Döndür (mutlak)"
msgid "Reset current rotation to real zeros."
msgstr "Mevcut dönüşü gerçek sıfırlara sıfırla."
msgid "Part coordinates"
msgstr "Parça koordinatları"
msgctxt "Noun"
msgid "Scale"
msgstr "Ölçeklendir"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -521,12 +533,6 @@ msgstr "Boşluk"
msgid "Spacing"
msgstr "Boşluk"
msgid "Part"
msgstr "Parça"
msgid "Object"
msgstr "Nesne"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1871,23 +1877,30 @@ msgstr "Projeyi Aç"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Orca Slicer'ın sürümü çok düşük ve normal şekilde kullanılabilmesi için en son sürüme güncellenmesi gerekiyor."
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
@@ -1896,6 +1909,12 @@ msgid ""
"Do you want to continue?"
msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr ""
@@ -1970,7 +1989,8 @@ msgstr "Bulutta önbelleğe alınan kullanıcı ön ayarlarının sayısı üst
msgid "Sync user presets"
msgstr "Kullanıcı ön ayarlarını senkronize edin"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
@@ -2192,6 +2212,9 @@ msgstr "Orca Küpü"
msgid "OrcaSliced Combo"
msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr "Orca tolerans testi"
@@ -3629,7 +3652,7 @@ msgstr "Kalibrasyon tamamlandı. Lütfen sıcak yatağınızdaki en düzgün eks
msgid "Save"
msgstr "Kaydet"
# TODO: Review, changed by lang refactor. PR 14254
msgctxt "Navigation"
msgid "Back"
msgstr "Arka"
@@ -5012,6 +5035,7 @@ msgstr "Takım değişiklikleri"
msgid "Color change"
msgstr "Renk değişimi"
msgctxt "Noun"
msgid "Print"
msgstr "Yazdır"
@@ -5175,11 +5199,15 @@ msgstr "Ekstrüzyon kalibrasyon bölgesinden kaçın"
msgid "Align to Y axis"
msgstr "Y eksenine hizala"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "Arka"
msgctxt "Camera View"
msgid "Left"
msgstr "Sol"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "Sağ"
@@ -5258,6 +5286,9 @@ msgstr "Çıkıntılar"
msgid "Outline"
msgstr "Taslak"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -5504,6 +5535,10 @@ msgstr "Plakayı Yazdır"
msgid "Export G-code file"
msgstr "G-kod dosyasını dışa aktar"
msgctxt "Verb"
msgid "Print"
msgstr "Yazdır"
msgid "Export plate sliced file"
msgstr "Dilimlenmiş plaka dosyasını dışa aktar"
@@ -7886,6 +7921,50 @@ msgstr "İndirilen öğeler için klasör seçin"
msgid "Choose Download Directory"
msgstr "İndirme Dizini seçin"
msgid "(Latest)"
msgstr "(En sonuncu)"
msgid "Network plug-in switched successfully."
msgstr "Ağ eklentisi başarıyla değiştirildi."
msgid "Success"
msgstr "Başarı"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Ağ eklentisi yüklenemedi. Lütfen uygulamayı yeniden başlatın."
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"Ağ eklentisi %s sürümünü seçtiniz.\n"
"\n"
"Bu sürümü şimdi indirip yüklemek ister misiniz?\n"
"\n"
"Not: Uygulamanın kurulumdan sonra yeniden başlatılması gerekebilir."
msgid "Download Network Plug-in"
msgstr "Ağ Eklentisini İndirin"
msgid "Reload the network plug-in without restarting the application"
msgstr "Uygulamayı yeniden başlatmadan ağ eklentisini yeniden yükleyin"
msgid "Network plug-in reloaded successfully."
msgstr "Ağ eklentisi başarıyla yeniden yüklendi."
msgid "Reload"
msgstr "Yeniden yükle"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Ağ eklentisi yeniden yüklenemedi. Lütfen uygulamayı yeniden başlatın."
msgid "Reload Failed"
msgstr "Yeniden Yükleme Başarısız"
msgid "Associate"
msgstr "Ortak"
@@ -7941,12 +8020,6 @@ msgstr "Açılış ekranını göster"
msgid "Show the splash screen during startup."
msgstr "Açılış sırasında açılış ekranını göster."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side"
msgstr ""
@@ -7977,6 +8050,13 @@ msgstr "Yükleme davranışı"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Bir .3mf açılırken yazıcı/filament/işlem ayarları yüklenmeli mi?"
msgid "Auto backup"
msgstr "Otomatik yedekleme"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Ara sıra meydana gelen çökmelerden sonra geri yüklemek için projenizi düzenli aralıklarla yedekleyin."
msgid "Maximum recent files"
msgstr "Son kullanılan dosyaların maksimum sayısı"
@@ -7995,12 +8075,55 @@ msgstr "STEP dosyasını içe aktarırken seçenekleri göster"
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Etkinleştirilirse, STEP dosyası içe aktarılırken bir parametre ayarları iletişim kutusu görüntülenir."
msgid "Auto backup"
msgstr "Otomatik yedekleme"
msgid "STEP importing: linear deflection"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Ara sıra meydana gelen çökmelerden sonra geri yüklemek için projenizi düzenli aralıklarla yedekleyin."
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Draco dışa aktarımı için kalite düzeyi"
msgid "bits"
msgstr "bitler"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Mesh Draco formatına sıkıştırılırken kullanılan niceleme bit derinliğini kontrol eder.\n"
"0 = kayıpsız sıkıştırma (geometri tam hassasiyetle korunur). Geçerli kayıplı değerler 8 ile 30 arasında değişir.\n"
"Daha düşük değerler daha küçük dosyalar oluşturur ancak daha fazla geometrik ayrıntıyı kaybeder; daha yüksek değerler, daha büyük dosyalar pahasına daha fazla ayrıntıyı korur."
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "Ön ayar"
@@ -8032,6 +8155,12 @@ msgstr "filamentler"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "Seçilen filaman sayısına göre filaman alanı maksimum yüksekliğini optimize eder."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features"
msgstr "Özellikler"
@@ -8044,21 +8173,6 @@ 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"
msgid "Quality level for Draco export"
msgstr "Draco dışa aktarımı için kalite düzeyi"
msgid "bits"
msgstr "bitler"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"Mesh Draco formatına sıkıştırılırken kullanılan niceleme bit derinliğini kontrol eder.\n"
"0 = kayıpsız sıkıştırma (geometri tam hassasiyetle korunur). Geçerli kayıplı değerler 8 ile 30 arasında değişir.\n"
"Daha düşük değerler daha küçük dosyalar oluşturur ancak daha fazla geometrik ayrıntıyı kaybeder; daha yüksek değerler, daha büyük dosyalar pahasına daha fazla ayrıntıyı korur."
msgid "Behaviour"
msgstr "Davranış"
@@ -8286,19 +8400,6 @@ msgstr "Yalnızca kararlı güncellemeleri kontrol edin"
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Kullanıcı ön ayarları otomatik senkronizasyon (Yazıcı/Filament/İşlem)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Yerleşik Ön Ayarları otomatik olarak güncelleyin."
msgid "Use encrypted file for token storage"
msgstr "Belirteç depolaması için şifrelenmiş dosyayı kullan"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Kimlik doğrulama belirteçlerini sistem anahtarlığı yerine şifrelenmiş bir dosyada saklayın. (Yeniden başlatma gerektirir)"
msgid "Filament Sync Options"
msgstr "Filament Senkronizasyon Seçenekleri"
msgid "Filament sync mode"
msgstr "Filament senkronizasyon modu"
@@ -8311,6 +8412,16 @@ msgstr "Filament ve Renk"
msgid "Color only"
msgstr "Yalnızca renk"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Yerleşik Ön Ayarları otomatik olarak güncelleyin."
msgid "Use encrypted file for token storage"
msgstr "Belirteç depolaması için şifrelenmiş dosyayı kullan"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "Kimlik doğrulama belirteçlerini sistem anahtarlığı yerine şifrelenmiş bir dosyada saklayın. (Yeniden başlatma gerektirir)"
msgid "Bambu network plug-in"
msgstr ""
@@ -8323,35 +8434,6 @@ msgstr "Ağ eklentisi sürümü"
msgid "Select the network plug-in version to use"
msgstr "Kullanılacak ağ eklentisi sürümünü seçin"
msgid "(Latest)"
msgstr "(En sonuncu)"
msgid "Network plug-in switched successfully."
msgstr "Ağ eklentisi başarıyla değiştirildi."
msgid "Success"
msgstr "Başarı"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "Ağ eklentisi yüklenemedi. Lütfen uygulamayı yeniden başlatın."
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"Ağ eklentisi %s sürümünü seçtiniz.\n"
"\n"
"Bu sürümü şimdi indirip yüklemek ister misiniz?\n"
"\n"
"Not: Uygulamanın kurulumdan sonra yeniden başlatılması gerekebilir."
msgid "Download Network Plug-in"
msgstr "Ağ Eklentisini İndirin"
msgid "Associate files to OrcaSlicer"
msgstr "Dosyaları OrcaSlicer ile ilişkilendirin"
@@ -8397,7 +8479,16 @@ msgstr "Geliştirici"
msgid "Skip AMS blacklist check"
msgstr "AMS kara liste kontrolünü atla"
msgid "(Experimental) Keep painted feature after mesh change"
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
@@ -8405,12 +8496,6 @@ msgid ""
"Highly experimental! Slow and may create artifact."
msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage"
msgstr "Anormal Depolamaya İzin Ver"
@@ -8439,24 +8524,6 @@ msgstr "hata ayıklama"
msgid "trace"
msgstr "iz"
msgid "Network plug-in"
msgstr "Ağ eklentisi"
msgid "Reload"
msgstr "Yeniden yükle"
msgid "Reload the network plug-in without restarting the application"
msgstr "Uygulamayı yeniden başlatmadan ağ eklentisini yeniden yükleyin"
msgid "Network plug-in reloaded successfully."
msgstr "Ağ eklentisi başarıyla yeniden yüklendi."
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "Ağ eklentisi yeniden yüklenemedi. Lütfen uygulamayı yeniden başlatın."
msgid "Reload Failed"
msgstr "Yeniden Yükleme Başarısız"
msgid "Debug"
msgstr "Hata ayıklama"
@@ -8472,25 +8539,6 @@ msgstr "Ön ayar senkronizasyonu"
msgid "Preferences sync"
msgstr "Tercihler senkronizasyonu"
msgid "View control settings"
msgstr "Kontrol ayarlarını görüntüle"
msgid "Rotate view"
msgstr "Görüntüyü döndür"
msgid "Pan view"
msgstr "Pan Görünümü"
msgid "Zoom view"
msgstr "Zoom Görünümü"
msgid "Other"
msgstr "Diğer"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Yakınlaştırma sırasında fare tekerleği ters dönüyor"
msgid "Enable SSL(MQTT)"
msgstr "SSL'yi etkinleştir(MQTT)"
@@ -12389,6 +12437,18 @@ msgstr "Küçük çevre (perimeter) eşiği"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Bu, küçük çevre uzunluğu için eşiği belirler. Varsayılan eşik 0 mm'dir."
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr "Duvar baskı sırası"
@@ -12572,25 +12632,26 @@ msgstr ""
"2. Her hacimsel akış hızı ve ivme için en uygun PA değerini not edin. Renk şemasıılır menüsünden akışı seçerek ve yatay kaydırıcıyı PA desen çizgileri üzerinde hareket ettirerek akış numarasını bulabilirsiniz. Numara sayfanın altında görünmelidir. İdeal PA değeri hacimsel akış ne kadar yüksek olursa o kadar azalmalıdır. Değilse, ekstruderinizin doğru şekilde çalıştığını doğrulayın. Ne kadar yavaş ve daha az ivmeyle yazdırırsanız, kabul edilebilir PA değerleri aralığı o kadar geniş olur. Hiçbir fark görünmüyorsa, daha hızlı olan testteki PA değerini kullanın.\n"
"3. Buradaki metin kutusuna PA değerleri, Akış ve Hızlanma üçlüsünü girin ve filament profilinizi kaydedin."
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Çıkıntılar için uyarlanabilir basınç ilerlemesini etkinleştirin (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid "Pressure advance for bridges"
msgstr "Köprüler için basınç ilerlemesi"
msgid ""
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
"Köprüler için basınç ilerleme değeri. Devre dışı bırakmak için 0a ayarlayın.\n"
"\n"
" Köprüleri yazdırırken daha düşük bir basınç değeri, köprülerden hemen sonra hafif ekstrüzyon görünümünün azaltılmasına yardımcı olur. Bunun nedeni, havada yazdırma sırasında nozuldaki basınç düşüşüdür ve daha düşük bir basınç, bunu önlemeye yardımcı olur."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Diğer çizgi genişlikleri 0'a ayarlanmışsa varsayılan çizgi genişliği. % olarak ifade edilirse nozul çapı üzerinden hesaplanacaktır."
@@ -12973,6 +13034,22 @@ msgstr "Katı dolgu yönü"
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Hattın başlangıcını veya ana yönünü kontrol eden katı dolgu deseni açısı."
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "Dolgu yoğunluğu"
@@ -13186,6 +13263,17 @@ msgstr "Fan hızı, \"close_fan_the_first_x_layers\" katmanında sıfırdan \"fu
msgid "layer"
msgstr "katman"
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr "Destekler için fan hızı"
@@ -14705,6 +14793,10 @@ msgstr "Hizalı"
msgid "Aligned back"
msgstr "Arkaya hizalı"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Back"
msgstr "Arka"
msgid "Random"
msgstr "Rastgele"
@@ -15074,6 +15166,9 @@ msgstr "Üçgen mesh dilimleme sırasında 2x boşluk kapatma yarıçapından k
msgid "Slicing Mode"
msgstr "Dilimleme modu"
msgid "Other"
msgstr "Diğer"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "3DLabPrint uçak modelleri için \"Çift-tek\" seçeneğini kullanın. Modeldeki tüm delikleri kapatmak için \"Delikleri kapat\"ı kullanın."
@@ -15754,6 +15849,14 @@ msgstr "Çokgen delik eğrisi"
msgid "Rotate the polyhole every layer."
msgstr "Çokgeni her katmanda döndürün."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "G-code önizleme resimleri"
@@ -18145,6 +18248,132 @@ msgstr "Giriş/Test"
msgid "Connection to printers connected via the print host failed."
msgstr "Yazdırma ana bilgisayarı aracılığıyla bağlanan yazıcılara bağlantı başarısız oldu."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr ""
@@ -18227,6 +18456,19 @@ msgstr "MKS'ye bağlantı düzgün çalışıyor."
msgid "Could not connect to MKS"
msgstr "MKS'ye bağlanılamadı"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr "OctoPrint'e bağlantı düzgün çalışıyor."
@@ -18978,6 +19220,12 @@ msgstr "Üçgen yüzeylerin sayısı"
msgid "Calculating, please wait..."
msgstr "Hesaplanıyor, lütfen bekleyin..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr ""
@@ -19383,6 +19631,64 @@ 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 "Print"
#~ msgstr "Yazdır"
#~ msgid "in"
#~ msgstr "in"
#~ msgid "Object coordinates"
#~ msgstr "Nesne koordinatları"
#~ msgid "World coordinates"
#~ msgstr "Dünya koordinatları"
#~ msgid "Translate(Relative)"
#~ msgstr "Çevir(Göreceli)"
#~ msgid "Rotate (absolute)"
#~ msgstr "Döndür (mutlak)"
#~ msgid "Part coordinates"
#~ msgstr "Parça koordinatları"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Çıkıntılar için uyarlanabilir basınç ilerlemesini etkinleştirin (beta)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Köprüler için basınç ilerlemesi"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Köprüler için basınç ilerleme değeri. Devre dışı bırakmak için 0a ayarlayın.\n"
#~ "\n"
#~ " Köprüleri yazdırırken daha düşük bir basınç değeri, köprülerden hemen sonra hafif ekstrüzyon görünümünün azaltılmasına yardımcı olur. Bunun nedeni, havada yazdırma sırasında nozuldaki basınç düşüşüdür ve daha düşük bir basınç, bunu önlemeye yardımcı olur."
#~ msgid "Filament Sync Options"
#~ msgstr "Filament Senkronizasyon Seçenekleri"
#~ msgid "Network plug-in"
#~ msgstr "Ağ eklentisi"
#~ msgid "View control settings"
#~ msgstr "Kontrol ayarlarını görüntüle"
#~ msgid "Rotate view"
#~ msgstr "Görüntüyü döndür"
#~ msgid "Pan view"
#~ msgstr "Pan Görünümü"
#~ msgid "Zoom view"
#~ msgstr "Zoom Görünümü"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Yakınlaştırma sırasında fare tekerleği ters dönüyor"
#, c-format, boost-format
#~ msgid "Left: %s"
#~ msgstr "Sol: %s"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: orcaslicerua\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"PO-Revision-Date: 2025-03-07 09:30+0200\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
@@ -332,6 +332,7 @@ msgstr "Gizmo обертання"
msgid "Optimize orientation"
msgstr "Оптимізувати орієнтацію"
msgctxt "Verb"
msgid "Scale"
msgstr "Масштаб"
@@ -341,8 +342,9 @@ msgstr "Gizmo масштабування"
msgid "Error: Please close all toolbar menus first"
msgstr "Помилка: будь ласка, спочатку закрийте все меню панелі інструментів"
msgctxt "inches"
msgid "in"
msgstr "в"
msgstr ""
msgid "mm"
msgstr "мм"
@@ -375,6 +377,9 @@ msgstr "Коефіцієнти масштабування"
msgid "Object operations"
msgstr "Операції з об'єктами"
msgid "Scale"
msgstr "Масштаб"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Volume operations"
msgstr "Операції з об’ємом"
@@ -402,26 +407,33 @@ msgstr "Скинути позицію"
msgid "Reset rotation"
msgstr "Скинути обертання"
msgid "Object coordinates"
msgstr "Координати об'єкта"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "Глобальні координати"
msgid "Object"
msgstr "Об'єкт"
msgid "Translate(Relative)"
msgid "Part"
msgstr "Частина"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Скинути поточне обертання до значення при відкритті інструмента обертання."
msgid "Rotate (absolute)"
msgstr "Обертання (абсолютне)"
msgid "Reset current rotation to real zeros."
msgstr "Скинути поточне обертання до нульових значень."
msgid "Part coordinates"
msgstr "Координати частини"
msgctxt "Noun"
msgid "Scale"
msgstr "Масштаб"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -526,12 +538,6 @@ msgstr "Проміжок"
msgid "Spacing"
msgstr "Відстань"
msgid "Part"
msgstr "Частина"
msgid "Object"
msgstr "Об'єкт"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1878,23 +1884,30 @@ msgstr "Відкрити проєкт"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Версія студії Bambu надто низька, її необхідно оновити до останньоїверсії, перш ніж її можна буде використовувати у звичайному режимі"
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
@@ -1903,6 +1916,12 @@ msgid ""
"Do you want to continue?"
msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr ""
@@ -1970,7 +1989,8 @@ msgstr "Кількість налаштувань користувача, збе
msgid "Sync user presets"
msgstr "Синхронізувати налаштування користувача"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
@@ -2192,6 +2212,9 @@ msgstr "Orca Куб"
msgid "OrcaSliced Combo"
msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr "Тест на допуски ORCA"
@@ -3645,7 +3668,7 @@ msgstr "Калібрування завершено. Тепер знайдіть
msgid "Save"
msgstr "Зберегти"
# TODO: Review, changed by lang refactor. PR 14254
msgctxt "Navigation"
msgid "Back"
msgstr "Ззаду"
@@ -5015,6 +5038,7 @@ msgstr "Зміна інструменту"
msgid "Color change"
msgstr "Зміна кольору"
msgctxt "Noun"
msgid "Print"
msgstr "Друк"
@@ -5176,11 +5200,15 @@ msgstr "Уникайте області калібрування екструз
msgid "Align to Y axis"
msgstr "Розташувати вздовж осі Y"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "Ззаду"
msgctxt "Camera View"
msgid "Left"
msgstr "Ліво"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "Право"
@@ -5259,6 +5287,9 @@ msgstr "Нависання"
msgid "Outline"
msgstr "Контур"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -5505,6 +5536,10 @@ msgstr "Друкувати пластину"
msgid "Export G-code file"
msgstr "Експорт файлу G-коду"
msgctxt "Verb"
msgid "Print"
msgstr "Друк"
msgid "Export plate sliced file"
msgstr "Експортувати файл нарізки пластини"
@@ -7905,6 +7940,45 @@ msgstr ""
msgid "Choose Download Directory"
msgstr "Виберіть каталог завантаження"
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate"
msgstr "Ассоціювати"
@@ -7960,12 +8034,6 @@ msgstr "Показувати заставку"
msgid "Show the splash screen during startup."
msgstr "Показувати заставку під час запуску."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side"
msgstr ""
@@ -7996,6 +8064,13 @@ msgstr "Поведінка завантаження"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Чи повинні бути завантажені налаштування принтера/філаменту/процесу при відкритті файлу .3mf?"
msgid "Auto backup"
msgstr "Автобекап"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Періодично робіть резервну копію вашого проекту для відновлення після випадкового збою."
msgid "Maximum recent files"
msgstr ""
@@ -8014,12 +8089,52 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr ""
msgid "Auto backup"
msgstr "Автобекап"
msgid "STEP importing: linear deflection"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Періодично робіть резервну копію вашого проекту для відновлення після випадкового збою."
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "Шаблон"
@@ -8051,6 +8166,12 @@ msgstr "філаменти"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features"
msgstr ""
@@ -8063,18 +8184,6 @@ msgstr "З цією опцією ввімкненою, ви можете від
msgid "Pop up to select filament grouping mode"
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour"
msgstr ""
@@ -8302,19 +8411,6 @@ msgstr "Перевіряти лише стабільні оновлення"
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Автоматична синхронізація користувацьких профілів (принтер/філамент/процес)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Оновлюйте вбудовані пресети автоматично."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode"
msgstr ""
@@ -8327,6 +8423,16 @@ msgstr ""
msgid "Color only"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Оновлюйте вбудовані пресети автоматично."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in"
msgstr ""
@@ -8339,30 +8445,6 @@ msgstr ""
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
msgstr "Асоціювати файли з OrcaSlicer"
@@ -8411,7 +8493,16 @@ msgstr ""
msgid "Skip AMS blacklist check"
msgstr "Пропустити перевірку чорного списку AMS"
msgid "(Experimental) Keep painted feature after mesh change"
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
@@ -8419,12 +8510,6 @@ msgid ""
"Highly experimental! Slow and may create artifact."
msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage"
msgstr ""
@@ -8451,24 +8536,6 @@ msgstr "налагодження"
msgid "trace"
msgstr "слід"
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug"
msgstr ""
@@ -8484,25 +8551,6 @@ msgstr "Синхронізація профілів"
msgid "Preferences sync"
msgstr "Синхронізація налаштувань"
msgid "View control settings"
msgstr "Перегляд параметрів керування"
msgid "Rotate view"
msgstr "Повернути вигляд"
msgid "Pan view"
msgstr "Панорамний вигляд"
msgid "Zoom view"
msgstr "Перегляд масштабу"
msgid "Other"
msgstr "Інший"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Колісок миші реверсує при масштабуванні"
msgid "Enable SSL(MQTT)"
msgstr "Увімкнути SSL (MQTT)"
@@ -12372,6 +12420,18 @@ msgstr "Поріг малих периметрів"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "При цьому встановлюється поріг для невеликої довжини периметра. Порігове за замовчуванням - 0 мм"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr "Послідовність друку стінок"
@@ -12559,25 +12619,26 @@ msgstr ""
"2. Запишіть оптимальне значення PA для кожної об'ємної швидкості подачі та прискорення. Ви можете знайти значення подачі, вибравши \"Flow\" у випадаючому списку колірної схеми та пересуваючи горизонтальний повзунок по лініях шаблону PA. Значення повинне відображатися внизу сторінки. Ідеальне значення PA має зменшуватися зі збільшенням об'ємної швидкості подачі. Якщо це не так, переконайтеся, що ваш екструдер працює коректно. Чим повільніше друкуєте і з меншим прискоренням, тим ширший діапазон допустимих значень PA. Якщо різниця не помітна, використовуйте значення PA із швидшого тесту.\n"
"3. Введіть трійки значень PA, Flow і Acceleration у це текстове поле та збережіть профіль філамента."
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Увімкнути адаптивне випередження тиску для нависань (бета)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid "Pressure advance for bridges"
msgstr "Випередження тиску для мостів"
msgid ""
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
"Значення випередження тиску для мостів. Встановіть 0, щоб вимкнути.\n"
"\n"
"Нижче значення випередження тиску при друкуванні мостів допомагає зменшити прояви незначної недоекструзії одразу після друку мостів. Це спричинено падінням тиску в соплі під час друку в повітрі, і зменшене значення випередження тиску допомагає це компенсувати."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Ширина лінії за замовчуванням, якщо інші ширини ліній встановлено на 0. Якщо виражено у %, вона буде розрахована за діаметром сопла."
@@ -12955,6 +13016,22 @@ msgstr "Напрямок cуцільного заповнення"
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Кут шаблону суцільного заповнення, який контролює початок або основний напрямок лінії"
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "Щільність часткового заповнення"
@@ -13168,6 +13245,17 @@ msgstr "Швидкість вентилятора лінійно збільшу
msgid "layer"
msgstr "шар"
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr "Швидкість вентилятора під час друку підтримки"
@@ -14682,6 +14770,10 @@ msgstr "Вирівняне"
msgid "Aligned back"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Back"
msgstr "Ззаду"
msgid "Random"
msgstr "Випадкове"
@@ -15055,6 +15147,9 @@ msgstr "Під час розрізання тріщини на трикутну
msgid "Slicing Mode"
msgstr "Режим нарізки"
msgid "Other"
msgstr "Інший"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Використовуйте «парний-непарний» для моделей літаків 3DLabPrint. Використовуйте «Закрити отвори», щоб закрити всі отвори в моделі."
@@ -15727,6 +15822,14 @@ msgstr "Скручування полігонів"
msgid "Rotate the polyhole every layer."
msgstr "Повертайте полігон кожен шар."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "Мініатюри G-code"
@@ -18089,6 +18192,132 @@ msgstr "Вхід/Тест"
msgid "Connection to printers connected via the print host failed."
msgstr "Не вдалося підключитися до принтерів, підключених через вузол друку."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr ""
@@ -18171,6 +18400,19 @@ msgstr "З’єднання з MKS працює коректно."
msgid "Could not connect to MKS"
msgstr "Не вдалося підключитися до MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr "Підключення до OctoPrint працює правильно."
@@ -18922,6 +19164,12 @@ msgstr "Кількість трикутних граней"
msgid "Calculating, please wait..."
msgstr "Розрахунок, будь ласка, зачекайте…"
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr ""
@@ -19327,6 +19575,55 @@ msgstr ""
"Уникнення деформації\n"
"Чи знаєте ви, що при друку матеріалами, схильними до деформації, такими як ABS, відповідне підвищення температури гарячого ліжка може зменшити ймовірність деформації?"
#~ msgid "Print"
#~ msgstr "Друк"
#~ msgid "in"
#~ msgstr "в"
#~ msgid "Object coordinates"
#~ msgstr "Координати об'єкта"
#~ msgid "World coordinates"
#~ msgstr "Глобальні координати"
#~ msgid "Rotate (absolute)"
#~ msgstr "Обертання (абсолютне)"
#~ msgid "Part coordinates"
#~ msgstr "Координати частини"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Увімкнути адаптивне випередження тиску для нависань (бета)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Випередження тиску для мостів"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Значення випередження тиску для мостів. Встановіть 0, щоб вимкнути.\n"
#~ "\n"
#~ "Нижче значення випередження тиску при друкуванні мостів допомагає зменшити прояви незначної недоекструзії одразу після друку мостів. Це спричинено падінням тиску в соплі під час друку в повітрі, і зменшене значення випередження тиску допомагає це компенсувати."
#~ msgid "View control settings"
#~ msgstr "Перегляд параметрів керування"
#~ msgid "Rotate view"
#~ msgstr "Повернути вигляд"
#~ msgid "Pan view"
#~ msgstr "Панорамний вигляд"
#~ msgid "Zoom view"
#~ msgstr "Перегляд масштабу"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Колісок миші реверсує при масштабуванні"
#~ msgid "Enable network plug-in"
#~ msgstr "Увімкнути мережевий плагін"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"PO-Revision-Date: 2025-10-02 17:43+0700\n"
"Last-Translator: \n"
"Language-Team: hainguyen.ts13@gmail.com\n"
@@ -328,6 +328,7 @@ msgstr "Gizmo - Xoay"
msgid "Optimize orientation"
msgstr "Tối ưu định hướng"
msgctxt "Verb"
msgid "Scale"
msgstr "Tỷ lệ"
@@ -337,8 +338,9 @@ msgstr "Gizmo - Tỷ lệ"
msgid "Error: Please close all toolbar menus first"
msgstr "Lỗi: Vui lòng đóng tất cả menu thanh công cụ trước"
msgctxt "inches"
msgid "in"
msgstr "in"
msgstr ""
msgid "mm"
msgstr "mm"
@@ -371,6 +373,9 @@ msgstr "Tỷ lệ co giãn"
msgid "Object operations"
msgstr "Thao tác vật thể"
msgid "Scale"
msgstr "Tỷ lệ"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Volume operations"
msgstr "Thao tác thể tích"
@@ -398,26 +403,33 @@ msgstr "Đặt lại vị trí"
msgid "Reset rotation"
msgstr "Đặt lại xoay"
msgid "Object coordinates"
msgstr "Tọa độ vật thể"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "Tọa độ thế giới"
msgid "Object"
msgstr "Vật thể"
msgid "Translate(Relative)"
msgid "Part"
msgstr "Phần"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr "Đặt lại xoay hiện tại về giá trị khi mở công cụ xoay."
msgid "Rotate (absolute)"
msgstr "Xoay (tuyệt đối)"
msgid "Reset current rotation to real zeros."
msgstr "Đặt lại xoay hiện tại về số không thực."
msgid "Part coordinates"
msgstr "Tọa độ phần"
msgctxt "Noun"
msgid "Scale"
msgstr "Tỷ lệ"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -522,12 +534,6 @@ msgstr ""
msgid "Spacing"
msgstr "Khoảng cách"
msgid "Part"
msgstr "Phần"
msgid "Object"
msgstr "Vật thể"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1871,23 +1877,30 @@ msgstr "Mở dự án"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Phiên bản Orca Slicer quá cũ và cần được cập nhật lên phiên bản mới nhất trước khi có thể sử dụng bình thường."
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
@@ -1896,6 +1909,12 @@ msgid ""
"Do you want to continue?"
msgstr ""
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr ""
@@ -1963,7 +1982,8 @@ msgstr "Số lượng preset người dùng đã lưu trong cloud vượt quá g
msgid "Sync user presets"
msgstr "Đồng bộ preset người dùng"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
@@ -2184,6 +2204,9 @@ msgstr ""
msgid "OrcaSliced Combo"
msgstr ""
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr ""
@@ -3615,7 +3638,7 @@ msgstr "Hiệu chỉnh hoàn tất. Vui lòng tìm đường đùn đồng đề
msgid "Save"
msgstr "Lưu"
# TODO: Review, changed by lang refactor. PR 14254
msgctxt "Navigation"
msgid "Back"
msgstr "Sau"
@@ -4986,6 +5009,7 @@ msgstr ""
msgid "Color change"
msgstr "Đổi màu"
msgctxt "Noun"
msgid "Print"
msgstr "In"
@@ -5147,11 +5171,15 @@ msgstr "Tránh vùng hiệu chỉnh đùn"
msgid "Align to Y axis"
msgstr "Căn theo trục Y"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "Sau"
msgctxt "Camera View"
msgid "Left"
msgstr "Trái"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "Phải"
@@ -5230,6 +5258,9 @@ msgstr "Phần nhô"
msgid "Outline"
msgstr ""
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -5472,6 +5503,10 @@ msgstr "In plate"
msgid "Export G-code file"
msgstr "Xuất file G-code"
msgctxt "Verb"
msgid "Print"
msgstr "In"
msgid "Export plate sliced file"
msgstr "Xuất file plate đã slice"
@@ -7844,6 +7879,45 @@ msgstr ""
msgid "Choose Download Directory"
msgstr "Chọn thư mục tải xuống"
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Reload"
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Associate"
msgstr "Liên kết"
@@ -7898,12 +7972,6 @@ msgstr "Hiển thị màn hình khởi động"
msgid "Show the splash screen during startup."
msgstr "Hiển thị màn hình khởi động trong khi khởi động."
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Use window buttons on left side"
msgstr ""
@@ -7934,6 +8002,13 @@ msgstr ""
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "Có nên tải cài đặt máy in/filament/quy trình khi mở file 3MF?"
msgid "Auto backup"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Sao lưu dự án của bạn định kỳ để khôi phục từ sự cố thỉnh thoảng."
msgid "Maximum recent files"
msgstr "Số file gần đây tối đa"
@@ -7952,12 +8027,52 @@ msgstr ""
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "Nếu được bật, hộp thoại cài đặt tham số sẽ xuất hiện trong quá trình nhập file STEP."
msgid "Auto backup"
msgid "STEP importing: linear deflection"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "Sao lưu dự án của bạn định kỳ để khôi phục từ sự cố thỉnh thoảng."
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "Cài đặt sẵn"
@@ -7989,6 +8104,12 @@ msgstr ""
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
msgid "Show shared profiles notification"
msgstr ""
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr ""
msgid "Features"
msgstr ""
@@ -8001,18 +8122,6 @@ 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 ""
msgid "Quality level for Draco export"
msgstr ""
msgid "bits"
msgstr "bits"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
msgid "Behaviour"
msgstr ""
@@ -8240,19 +8349,6 @@ msgstr "Chỉ kiểm tra cập nhật ổn định"
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "Tự động đồng bộ preset người dùng (Máy in/Filament/Quy trình)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Cập nhật preset tích hợp tự động."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Filament Sync Options"
msgstr ""
msgid "Filament sync mode"
msgstr ""
@@ -8265,6 +8361,16 @@ msgstr "Sợi và Màu sắc"
msgid "Color only"
msgstr "Chỉ màu"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "Cập nhật preset tích hợp tự động."
msgid "Use encrypted file for token storage"
msgstr ""
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr ""
msgid "Bambu network plug-in"
msgstr ""
@@ -8277,30 +8383,6 @@ msgstr ""
msgid "Select the network plug-in version to use"
msgstr ""
msgid "(Latest)"
msgstr ""
msgid "Network plug-in switched successfully."
msgstr ""
msgid "Success"
msgstr ""
msgid "Failed to load network plug-in. Please restart the application."
msgstr ""
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
msgid "Download Network Plug-in"
msgstr ""
msgid "Associate files to OrcaSlicer"
msgstr "Liên kết file với OrcaSlicer"
@@ -8346,7 +8428,16 @@ msgstr ""
msgid "Skip AMS blacklist check"
msgstr "Bỏ qua kiểm tra danh sách đen AMS"
msgid "(Experimental) Keep painted feature after mesh change"
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
@@ -8354,12 +8445,6 @@ msgid ""
"Highly experimental! Slow and may create artifact."
msgstr ""
msgid "Show unsupported presets"
msgstr ""
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr ""
msgid "Allow Abnormal Storage"
msgstr ""
@@ -8386,24 +8471,6 @@ msgstr "gỡ lỗi"
msgid "trace"
msgstr "theo dõi"
msgid "Network plug-in"
msgstr ""
msgid "Reload"
msgstr ""
msgid "Reload the network plug-in without restarting the application"
msgstr ""
msgid "Network plug-in reloaded successfully."
msgstr ""
msgid "Failed to reload network plug-in. Please restart the application."
msgstr ""
msgid "Reload Failed"
msgstr ""
msgid "Debug"
msgstr ""
@@ -8419,25 +8486,6 @@ msgstr "Đồng bộ preset"
msgid "Preferences sync"
msgstr "Đồng bộ tùy chọn"
msgid "View control settings"
msgstr "Cài đặt điều khiển chế độ xem"
msgid "Rotate view"
msgstr "Xoay chế độ xem"
msgid "Pan view"
msgstr "Kéo chế độ xem"
msgid "Zoom view"
msgstr "Thu phóng chế độ xem"
msgid "Other"
msgstr "Khác"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "Con lăn chuột đảo ngược khi thu phóng"
msgid "Enable SSL(MQTT)"
msgstr "Bật SSL(MQTT)"
@@ -12285,6 +12333,18 @@ msgstr "Ngưỡng chu vi nhỏ"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "Điều này đặt ngưỡng cho độ dài chu vi nhỏ. Ngưỡng mặc định là 0mm."
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr "Thứ tự in thành"
@@ -12469,25 +12529,26 @@ msgstr ""
"2. Ghi chú giá trị PA tối ưu cho mỗi tốc độ lưu lượng thể tích và gia tốc. Bạn có thể tìm số lưu lượng bằng cách chọn lưu lượng từ menu thả xuống sơ đồ màu và di chuyển thanh trượt ngang qua các đường mẫu PA. Số nên hiển thị ở cuối trang. Giá trị PA lý tưởng nên giảm xuống khi lưu lượng thể tích càng cao. Nếu không, hãy xác nhận rằng extruder của bạn đang hoạt động chính xác. Càng chậm và với gia tốc ít hơn bạn in, phạm vi giá trị PA chấp nhận được càng lớn. Nếu không thấy sự khác biệt, hãy sử dụng giá trị PA từ kiểm tra nhanh hơn\n"
"3. Nhập bộ ba giá trị PA, Lưu lượng và Gia tốc vào hộp văn bản ở đây và lưu hồ sơ filament của bạn."
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Bật áp suất nâng cao thích ứng cho phần nhô (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
msgid "Pressure advance for bridges"
msgstr "Áp suất nâng cao cho cầu"
msgid ""
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
"Giá trị áp suất nâng cao cho cầu. Đặt thành 0 để tắt.\n"
"\n"
"Giá trị PA thấp hơn khi in cầu giúp giảm sự xuất hiện của đùn thiếu nhỏ ngay sau cầu. Điều này được gây ra bởi áp suất giảm trong đầu phun khi in trong không khí và PA thấp hơn giúp chống lại điều này."
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "Độ rộng đường mặc định nếu độ rộng đường khác được đặt thành 0. Nếu được biểu thị dưới dạng %, nó sẽ được tính trên đường kính đầu phun."
@@ -12867,6 +12928,22 @@ msgstr "Hướng infill đặc"
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "Góc cho mẫu infill đặc, điều khiển hướng bắt đầu hoặc chính của đường."
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "Mật độ infill thưa"
@@ -13080,6 +13157,17 @@ msgstr "Tốc độ quạt sẽ được tăng tuyến tính từ không tại l
msgid "layer"
msgstr "lớp"
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr "Tốc độ quạt giao diện support"
@@ -14597,6 +14685,10 @@ msgstr "Căn chỉnh"
msgid "Aligned back"
msgstr "Căn chỉnh sau"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Back"
msgstr "Sau"
msgid "Random"
msgstr "Ngẫu nhiên"
@@ -14966,6 +15058,9 @@ msgstr "Vết nứt nhỏ hơn 2x bán kính đóng khe được lấp trong sli
msgid "Slicing Mode"
msgstr "Chế độ slice"
msgid "Other"
msgstr "Khác"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "Sử dụng \"Chẵn-lẻ\" cho model máy bay 3DLabPrint. Sử dụng \"Đóng lỗ\" để đóng tất cả các lỗ trong model."
@@ -15642,6 +15737,14 @@ msgstr "Xoắn polyhole"
msgid "Rotate the polyhole every layer."
msgstr "Xoay polyhole mỗi lớp."
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "Hình thu nhỏ G-code"
@@ -18010,6 +18113,132 @@ msgstr "Đăng nhập/Kiểm tra"
msgid "Connection to printers connected via the print host failed."
msgstr "Kết nối với máy in được kết nối qua máy chủ in thất bại."
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr ""
@@ -18092,6 +18321,19 @@ msgstr "Kết nối với MKS hoạt động chính xác."
msgid "Could not connect to MKS"
msgstr "Không thể kết nối với MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr "Kết nối với OctoPrint hoạt động chính xác."
@@ -18843,6 +19085,12 @@ msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr ""
@@ -19248,6 +19496,55 @@ 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 "Print"
#~ msgstr "In"
#~ msgid "in"
#~ msgstr "in"
#~ msgid "Object coordinates"
#~ msgstr "Tọa độ vật thể"
#~ msgid "World coordinates"
#~ msgstr "Tọa độ thế giới"
#~ msgid "Rotate (absolute)"
#~ msgstr "Xoay (tuyệt đối)"
#~ msgid "Part coordinates"
#~ msgstr "Tọa độ phần"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "Bật áp suất nâng cao thích ứng cho phần nhô (beta)"
#~ msgid "Pressure advance for bridges"
#~ msgstr "Áp suất nâng cao cho cầu"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr ""
#~ "Giá trị áp suất nâng cao cho cầu. Đặt thành 0 để tắt.\n"
#~ "\n"
#~ "Giá trị PA thấp hơn khi in cầu giúp giảm sự xuất hiện của đùn thiếu nhỏ ngay sau cầu. Điều này được gây ra bởi áp suất giảm trong đầu phun khi in trong không khí và PA thấp hơn giúp chống lại điều này."
#~ msgid "View control settings"
#~ msgstr "Cài đặt điều khiển chế độ xem"
#~ msgid "Rotate view"
#~ msgstr "Xoay chế độ xem"
#~ msgid "Pan view"
#~ msgstr "Kéo chế độ xem"
#~ msgid "Zoom view"
#~ msgstr "Thu phóng chế độ xem"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "Con lăn chuột đảo ngược khi thu phóng"
#~ msgid "Enable network plug-in"
#~ msgstr "Bật plugin mạng"

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Slic3rPE\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-0300\n"
"PO-Revision-Date: 2026-06-11 12:37-0300\n"
"Last-Translator: Handle <mail@bysb.net>\n"
"Language-Team: \n"
@@ -330,6 +330,7 @@ msgstr "Gizmo-旋转"
msgid "Optimize orientation"
msgstr "优化朝向"
msgctxt "Verb"
msgid "Scale"
msgstr "缩放"
@@ -339,8 +340,9 @@ msgstr "缩放工具"
msgid "Error: Please close all toolbar menus first"
msgstr "错误:请先关闭所有工具栏菜单"
msgctxt "inches"
msgid "in"
msgstr ""
msgstr ""
msgid "mm"
msgstr "mm"
@@ -373,6 +375,9 @@ msgstr "缩放比例"
msgid "Object operations"
msgstr "对象操作"
msgid "Scale"
msgstr "缩放"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Volume operations"
msgstr "零件操作"
@@ -400,26 +405,33 @@ msgstr "重置位置"
msgid "Reset rotation"
msgstr "重置旋转"
msgid "Object coordinates"
msgstr "物体坐标"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "世界坐标"
msgid "Object"
msgstr "对象"
msgid "Translate(Relative)"
msgstr "转换(相对)"
msgid "Part"
msgstr "零件"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr "重置当前旋转为打开旋转工具时的值"
msgid "Rotate (absolute)"
msgstr "旋转(绝对)"
msgid "Reset current rotation to real zeros."
msgstr "重置当前旋转为真实零位"
msgid "Part coordinates"
msgstr "零件坐标"
msgctxt "Noun"
msgid "Scale"
msgstr "缩放"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -524,12 +536,6 @@ msgstr "间隙"
msgid "Spacing"
msgstr "间距"
msgid "Part"
msgstr "零件"
msgid "Object"
msgstr "对象"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1869,33 +1875,32 @@ msgstr "打开项目"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "此逆戟鲸切片器的版本过低,需更新至最新版本方可正常使用"
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
"云同步冲突:此预设在 OrcaCloud 中存在更新的版本。\n"
"拉取将下载云端副本。强制推送将用您的本地预设覆盖它。"
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
"云同步冲突OrcaCloud 中已存在同名预设。\n"
"拉取将下载云端副本。强制推送将用您的本地预设覆盖它。"
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
"云同步冲突:之前已从云端删除了同名预设。\n"
"“删除”将删除您的本地预设。“强制推送”将用您的本地预设覆盖它。"
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
"云同步冲突:发生了意外或无法识别的预设冲突。\n"
"“拉取”将下载云端副本。“强制推送”将用您的本地预设覆盖它。"
msgid ""
"Force push will overwrite the cloud copy with your local preset changes.\n"
@@ -1904,6 +1909,12 @@ msgstr ""
"强制推送将用您本地的预设更改覆盖云端副本。\n"
"是否继续?"
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr "解决云同步冲突"
@@ -1983,8 +1994,9 @@ msgstr "云端缓存的用户预设数量已超过上限,新创建的用户预
msgid "Sync user presets"
msgstr "同步用户预设"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "预设内容过大,无法同步到云端(超过 1MB。请通过移除自定义配置来缩减预设大小或仅在本地使用。"
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
msgid "%s updated from %s to %s"
@@ -2205,6 +2217,9 @@ msgstr "Orca方块"
msgid "OrcaSliced Combo"
msgstr "OrcaSliced 复合模型"
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr "Orca误差测试"
@@ -3632,7 +3647,7 @@ msgstr "校准完成。如下图中的示例,请在您的热床上找到最均
msgid "Save"
msgstr "保存"
# TODO: Review, changed by lang refactor. PR 14254
msgctxt "Navigation"
msgid "Back"
msgstr "背面"
@@ -5007,6 +5022,7 @@ msgstr "工具更换"
msgid "Color change"
msgstr "颜色更换"
msgctxt "Noun"
msgid "Print"
msgstr "打印"
@@ -5171,11 +5187,15 @@ msgstr "避开挤出校准区域"
msgid "Align to Y axis"
msgstr "对齐到Y轴"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "背面"
msgctxt "Camera View"
msgid "Left"
msgstr "左"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "右"
@@ -5254,6 +5274,9 @@ msgstr "悬垂"
msgid "Outline"
msgstr "轮廓线"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr "写实渲染"
@@ -5500,6 +5523,10 @@ msgstr "打印单盘"
msgid "Export G-code file"
msgstr "导出G-code文件"
msgctxt "Verb"
msgid "Print"
msgstr "打印"
msgid "Export plate sliced file"
msgstr "导出单盘切片文件"
@@ -7866,6 +7893,45 @@ msgstr "选择下载项目的文件夹"
msgid "Choose Download Directory"
msgstr "选择下载文件夹"
msgid "(Latest)"
msgstr "(最新的)"
msgid "Network plug-in switched successfully."
msgstr "网络插件切换成功。"
msgid "Success"
msgstr "成功"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "无法加载网络插件。请重新启动应用程序。"
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr "您已选择网络插件版本 %s。 您想立即下载并安装此版本吗? 注意:安装后应用程序可能需要重新启动。"
msgid "Download Network Plug-in"
msgstr "下载网络插件"
msgid "Reload the network plug-in without restarting the application"
msgstr "重新加载网络插件而不重新启动应用程序"
msgid "Network plug-in reloaded successfully."
msgstr "网络插件已成功重新加载。"
msgid "Reload"
msgstr "重新加载"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "无法重新加载网络插件。请重新启动应用程序。"
msgid "Reload Failed"
msgstr "重新加载失败"
msgid "Associate"
msgstr "相关的"
@@ -7921,12 +7987,6 @@ msgstr "显示启动画面"
msgid "Show the splash screen during startup."
msgstr "在启动时显示启动画面。"
msgid "Show shared profiles notification"
msgstr "显示共享配置文件通知"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "当所选打印机更改时,显示带有浏览共享配置文件链接的通知。"
msgid "Use window buttons on left side"
msgstr "将窗口按钮置于左侧"
@@ -7957,6 +8017,13 @@ msgstr "加载 交互项"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "printter/filament/process 设置项文件能否以 .3mf后缀方式打开"
msgid "Auto backup"
msgstr "自动备份"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "定期备份你的项目,以便从偶尔的崩溃中恢复过来。"
msgid "Maximum recent files"
msgstr "最大最近使用文件数"
@@ -7975,12 +8042,55 @@ msgstr "显示STEP网格参数设置对话框"
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "如果启用在导入STEP文件时将出现参数设置对话框"
msgid "Auto backup"
msgstr "自动备份"
msgid "STEP importing: linear deflection"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "定期备份你的项目,以便从偶尔的崩溃中恢复过来。"
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Draco 导出的模型质量"
msgid "bits"
msgstr "位"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"控制将网格压缩为 Draco 格式时使用的量化位深度。\n"
"0 = 无损压缩(以全精度保留几何形状)。有效有损值范围为 8 到 30。\n"
"较低的值会生成较小的文件,但会丢失更多的几何细节;较高的值可保留更多细节,但代价是文件较大。"
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "预设"
@@ -8012,6 +8122,12 @@ msgstr "耗材丝"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "根据选定的耗材丝数量优化耗材区域最大高度"
msgid "Show shared profiles notification"
msgstr "显示共享配置文件通知"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "当所选打印机更改时,显示带有浏览共享配置文件链接的通知。"
msgid "Features"
msgstr "特性"
@@ -8024,21 +8140,6 @@ msgstr "启用此选项后,您可以同时向多个设备发送任务并管理
msgid "Pop up to select filament grouping mode"
msgstr "弹出选择耗材丝分组模式"
msgid "Quality level for Draco export"
msgstr "Draco 导出的模型质量"
msgid "bits"
msgstr "位"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"控制将网格压缩为 Draco 格式时使用的量化位深度。\n"
"0 = 无损压缩(以全精度保留几何形状)。有效有损值范围为 8 到 30。\n"
"较低的值会生成较小的文件,但会丢失更多的几何细节;较高的值可保留更多细节,但代价是文件较大。"
msgid "Behaviour"
msgstr "行为"
@@ -8283,19 +8384,6 @@ msgstr "仅检测正式版的更新"
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "同步用户预设(打印机/耗材丝/工艺)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "自动更新系统预设"
msgid "Use encrypted file for token storage"
msgstr "使用加密文件进行令牌存储"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "将身份验证令牌存储在加密文件中,而不是系统钥匙串中。 (需要重启)"
msgid "Filament Sync Options"
msgstr "耗材丝同步选项"
msgid "Filament sync mode"
msgstr "耗材丝同步模式"
@@ -8308,6 +8396,16 @@ msgstr "耗材丝及颜色"
msgid "Color only"
msgstr "仅颜色"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "自动更新系统预设"
msgid "Use encrypted file for token storage"
msgstr "使用加密文件进行令牌存储"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "将身份验证令牌存储在加密文件中,而不是系统钥匙串中。 (需要重启)"
msgid "Bambu network plug-in"
msgstr "Bambu网络插件"
@@ -8320,30 +8418,6 @@ msgstr "网络插件版本"
msgid "Select the network plug-in version to use"
msgstr "选择要使用的网络插件版本"
msgid "(Latest)"
msgstr "(最新的)"
msgid "Network plug-in switched successfully."
msgstr "网络插件切换成功。"
msgid "Success"
msgstr "成功"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "无法加载网络插件。请重新启动应用程序。"
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr "您已选择网络插件版本 %s。 您想立即下载并安装此版本吗? 注意:安装后应用程序可能需要重新启动。"
msgid "Download Network Plug-in"
msgstr "下载网络插件"
msgid "Associate files to OrcaSlicer"
msgstr "逆戟鲸切片器文件关联"
@@ -8389,8 +8463,17 @@ msgstr "开发者"
msgid "Skip AMS blacklist check"
msgstr "跳过AMS黑名单检查"
msgid "(Experimental) Keep painted feature after mesh change"
msgstr "(实验性) 在网格更改后保留绘制的特征"
msgid "Show unsupported presets"
msgstr "显示不受支持的预设"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "在打印机和耗材下拉列表中显示不兼容/不受支持的预设。这些预设无法被选择。"
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
"Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
@@ -8399,12 +8482,6 @@ msgstr ""
"在更改对象网格(如切割/从磁盘重新加载/简化/修复等)后,尝试保留绘制的特征(颜色/接缝/支撑/绒毛等)。\n"
"高度实验性!速度较慢且可能产生瑕疵。"
msgid "Show unsupported presets"
msgstr "显示不受支持的预设"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "在打印机和耗材下拉列表中显示不兼容/不受支持的预设。这些预设无法被选择。"
msgid "Allow Abnormal Storage"
msgstr "允许异常存储"
@@ -8433,24 +8510,6 @@ msgstr "调试"
msgid "trace"
msgstr "跟踪"
msgid "Network plug-in"
msgstr "网络插件"
msgid "Reload"
msgstr "重新加载"
msgid "Reload the network plug-in without restarting the application"
msgstr "重新加载网络插件而不重新启动应用程序"
msgid "Network plug-in reloaded successfully."
msgstr "网络插件已成功重新加载。"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "无法重新加载网络插件。请重新启动应用程序。"
msgid "Reload Failed"
msgstr "重新加载失败"
msgid "Debug"
msgstr "调试"
@@ -8466,25 +8525,6 @@ msgstr "配置同步"
msgid "Preferences sync"
msgstr "首选项同步"
msgid "View control settings"
msgstr "视图控制设置"
msgid "Rotate view"
msgstr "旋转视角"
msgid "Pan view"
msgstr "移动视角"
msgid "Zoom view"
msgstr "缩放视角"
msgid "Other"
msgstr "其他"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "缩放时鼠标滚轮反转"
msgid "Enable SSL(MQTT)"
msgstr "启用SSLMQTT"
@@ -12457,6 +12497,18 @@ msgstr "微小部位周长阈值"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "这将设置微小部位周长的阈值。默认阈值为0mm"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr "墙顺序"
@@ -12637,24 +12689,26 @@ msgstr ""
"2. 记下每个体积流速和加速度的最佳 PA 值。您可以通过从配色方案下拉列表中选择流量并将水平滑块移动到 PA 图案线上来找到流量编号。该数字应该在页面底部可见。理想的 PA 值应该随着体积流量的增加而减小。如果不是,请确认您的挤出机运行正常。打印速度越慢且加速度越小,可接受的 PA 值范围就越大。如果没有明显差异,请使用更快测试中的 PA 值\n"
"3. 在此处的文本框中输入 PA 值、流量和加速度的三元组并保存耗材丝配置文件"
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "为悬垂启用自适应压力提前(试验)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
"针对悬垂以及同一特征内的流量变化启用自适应 PA。这是一个实验性选项因为如果未准确设置 PA 配置文件,将导致悬垂前后外表面出现均匀性问题。\n"
"与 Prusa 打印机不兼容,因为它们会暂停以处理 PA 变化,从而导致延迟和瑕疵。"
msgid "Pressure advance for bridges"
msgstr "为搭桥启用压力提前"
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "桥梁的压力提前值。设置为 0 以禁用。 打印桥接时较低的 PA 值有助于减少桥接后立即出现的轻微挤压不足现象。这是由在空气中打印时喷嘴中的压力下降引起的,较低的 PA 有助于抵消这种情况。"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "当线宽设置为0时走线的默认线宽。如果以%表示,它将基于喷嘴直径来计算。"
@@ -13050,6 +13104,22 @@ msgstr "实心填充方向"
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "实心填充图案的角度,决定走线的开始或整体方向。"
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "稀疏填充密度"
@@ -13273,6 +13343,17 @@ msgstr ""
msgid "layer"
msgstr "层"
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr "支撐接触面风扇"
@@ -14832,6 +14913,10 @@ msgstr "对齐"
msgid "Aligned back"
msgstr "背部对齐"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Back"
msgstr "背面"
msgid "Random"
msgstr "随机"
@@ -15207,6 +15292,9 @@ msgstr "在三角形网格切片过程中小于2倍间隙闭合半径的裂
msgid "Slicing Mode"
msgstr "切片模式"
msgid "Other"
msgstr "其他"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "对3DLabPrint的飞机模型使用 \"奇偶\"。使用 \"闭孔 \"来关闭模型上的所有孔。"
@@ -15885,6 +15973,14 @@ msgstr "扭曲多边型孔"
msgid "Rotate the polyhole every layer."
msgstr "按层旋转多边形孔。"
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "G-code缩略图尺寸"
@@ -18277,6 +18373,132 @@ msgstr "登录/测试"
msgid "Connection to printers connected via the print host failed."
msgstr "无法通过打印机主机连接到打印机。"
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr "3DPrinterOS 云上传选项"
@@ -18359,6 +18581,19 @@ msgstr "与 MKS 的连接正常。"
msgid "Could not connect to MKS"
msgstr "无法连接到 MKS。"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr "成功连接到 OctoPrint。"
@@ -19107,6 +19342,12 @@ msgstr "三角面片数量"
msgid "Calculating, please wait..."
msgstr "正在计算,请稍候..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr "预设包"
@@ -19517,6 +19758,102 @@ msgstr ""
"避免翘曲\n"
"您知道吗打印ABS这类易翘曲材料时适当提高热床温度可以降低翘曲的概率。"
#~ msgid "Print"
#~ msgstr "打印"
#~ msgid "in"
#~ msgstr "在"
#~ msgid "Object coordinates"
#~ msgstr "物体坐标"
#~ msgid "World coordinates"
#~ msgstr "世界坐标"
#~ msgid "Translate(Relative)"
#~ msgstr "转换(相对)"
#~ msgid "Rotate (absolute)"
#~ msgstr "旋转(绝对)"
#~ msgid "Part coordinates"
#~ msgstr "零件坐标"
#~ msgid ""
#~ "Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "云同步冲突:此预设在 OrcaCloud 中存在更新的版本。\n"
#~ "拉取将下载云端副本。强制推送将用您的本地预设覆盖它。"
#~ msgid ""
#~ "Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "云同步冲突OrcaCloud 中已存在同名预设。\n"
#~ "拉取将下载云端副本。强制推送将用您的本地预设覆盖它。"
#~ msgid ""
#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
#~ "Delete will delete your local preset. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "云同步冲突:之前已从云端删除了同名预设。\n"
#~ "“删除”将删除您的本地预设。“强制推送”将用您的本地预设覆盖它。"
#~ msgid ""
#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "云同步冲突:发生了意外或无法识别的预设冲突。\n"
#~ "“拉取”将下载云端副本。“强制推送”将用您的本地预设覆盖它。"
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#~ msgstr "预设内容过大,无法同步到云端(超过 1MB。请通过移除自定义配置来缩减预设大小或仅在本地使用。"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "为悬垂启用自适应压力提前(试验)"
#~ msgid ""
#~ "Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
#~ msgstr ""
#~ "针对悬垂以及同一特征内的流量变化启用自适应 PA。这是一个实验性选项因为如果未准确设置 PA 配置文件,将导致悬垂前后外表面出现均匀性问题。\n"
#~ "与 Prusa 打印机不兼容,因为它们会暂停以处理 PA 变化,从而导致延迟和瑕疵。"
#~ msgid "Pressure advance for bridges"
#~ msgstr "为搭桥启用压力提前"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr "桥梁的压力提前值。设置为 0 以禁用。 打印桥接时较低的 PA 值有助于减少桥接后立即出现的轻微挤压不足现象。这是由在空气中打印时喷嘴中的压力下降引起的,较低的 PA 有助于抵消这种情况。"
#~ msgid "Filament Sync Options"
#~ msgstr "耗材丝同步选项"
#~ msgid "(Experimental) Keep painted feature after mesh change"
#~ msgstr "(实验性) 在网格更改后保留绘制的特征"
#~ msgid "Network plug-in"
#~ msgstr "网络插件"
#~ msgid "View control settings"
#~ msgstr "视图控制设置"
#~ msgid "Rotate view"
#~ msgstr "旋转视角"
#~ msgid "Pan view"
#~ msgstr "移动视角"
#~ msgid "Zoom view"
#~ msgstr "缩放视角"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "缩放时鼠标滚轮反转"
#, c-format, boost-format
#~ msgid "Left: %s"
#~ msgstr "左:%s"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-06-28 12:42-0300\n"
"POT-Creation-Date: 2026-07-07 16:46-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"
@@ -333,6 +333,7 @@ msgstr "Gizmo-旋轉"
msgid "Optimize orientation"
msgstr "最佳化方向"
msgctxt "Verb"
msgid "Scale"
msgstr "縮放"
@@ -342,8 +343,9 @@ msgstr "Gizmo 比例"
msgid "Error: Please close all toolbar menus first"
msgstr "錯誤:請先關閉所有工具欄選單"
msgctxt "inches"
msgid "in"
msgstr ""
msgstr ""
msgid "mm"
msgstr "mm"
@@ -376,6 +378,9 @@ msgstr "縮放比例"
msgid "Object operations"
msgstr "物件操作"
msgid "Scale"
msgstr "縮放"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Volume operations"
msgstr "零件操作"
@@ -403,26 +408,33 @@ msgstr "重設位置"
msgid "Reset rotation"
msgstr "重設旋轉"
msgid "Object coordinates"
msgstr "物件座標"
msgid "World"
msgstr ""
msgid "World coordinates"
msgstr "世界座標"
msgid "Object"
msgstr "物件"
msgid "Translate(Relative)"
msgstr "平移(相對)"
msgid "Part"
msgstr "零件"
msgid "Relative"
msgstr ""
msgid "Coordinate system used for transform actions."
msgstr ""
msgid "Absolute"
msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr "重設旋轉角度為開啟旋轉工具時的狀態。"
msgid "Rotate (absolute)"
msgstr "旋轉(絕對)"
msgid "Reset current rotation to real zeros."
msgstr "將旋轉角度歸零"
msgid "Part coordinates"
msgstr "零件座標"
msgctxt "Noun"
msgid "Scale"
msgstr "縮放"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -527,12 +539,6 @@ msgstr "間隙"
msgid "Spacing"
msgstr "間距"
msgid "Part"
msgstr "零件"
msgid "Object"
msgstr "物件"
msgid ""
"Click to flip the cut plane\n"
"Drag to move the cut plane"
@@ -1871,33 +1877,32 @@ msgstr "打開專案"
msgid "The version of Orca Slicer is too low and needs to be updated to the latest version before it can be used normally."
msgstr "Orca Slicer 版本過舊,需要更新到最新版本才能正常使用"
msgid ""
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgid "Cloud sync conflict:"
msgstr ""
#, c-format, boost-format
msgid "Cloud sync conflict for preset \"%s\":"
msgstr ""
"雲端同步衝突:此預設在 OrcaCloud 中有較新的版本。\n"
"拉取會下載雲端副本。強制推送會以您的本機預設覆寫雲端版本。"
msgid ""
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
"This preset has a newer version in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
"雲端同步衝突OrcaCloud 中已有同名的預設。\n"
"拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。"
msgid ""
"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
"A preset with this name already exists in OrcaCloud.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
msgid ""
"A preset with the same name was previously deleted from the cloud.\n"
"Delete will delete your local preset. Force push overwrites it with your local preset."
msgstr ""
"雲端同步衝突:先前已從雲端刪除同名的預設。\n"
"「刪除」將刪除您的本機預設。「強制推送」會以您的本機預設覆寫它。"
msgid ""
"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
"There was an unexpected or unidentified preset conflict.\n"
"Pull downloads the cloud copy. Force push overwrites it with your local preset."
msgstr ""
"雲端同步衝突:發生了未預期或無法識別的預設衝突。\n"
"拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。"
msgid ""
"Force push will overwrite the cloud copy with your local preset changes.\n"
@@ -1906,6 +1911,12 @@ msgstr ""
"強制推送會以您本機的預設變更覆寫雲端副本。\n"
"您要繼續嗎?"
#, c-format, boost-format
msgid ""
"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n"
"Do you want to continue?"
msgstr ""
msgid "Resolve cloud sync conflict"
msgstr "解決雲端同步衝突"
@@ -1985,8 +1996,9 @@ msgstr "雲端儲存的使用者預設數量已超過上限,新的使用者預
msgid "Sync user presets"
msgstr "同步使用者預設"
msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr "預設內容過大,無法同步至雲端(超過 1MB。請移除自訂設定以減少預設大小或僅在本機使用。"
#, c-format, boost-format
msgid "The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
msgstr ""
#, c-format, boost-format
msgid "%s updated from %s to %s"
@@ -2207,6 +2219,9 @@ msgstr "Orca 立方體"
msgid "OrcaSliced Combo"
msgstr "OrcaSliced 複合模型"
msgid "Orca Badge"
msgstr ""
msgid "Orca Tolerance Test"
msgstr "Orca 誤差測試"
@@ -3643,7 +3658,7 @@ msgstr "校正完成。如下圖中的範例,請在您的熱床上找到最均
msgid "Save"
msgstr "儲存"
# TODO: Review, changed by lang refactor. PR 14254
msgctxt "Navigation"
msgid "Back"
msgstr "背面"
@@ -5049,6 +5064,7 @@ msgstr "取代工具"
msgid "Color change"
msgstr "顏色更換"
msgctxt "Noun"
msgid "Print"
msgstr "列印"
@@ -5213,11 +5229,15 @@ msgstr "避開擠出校正區域"
msgid "Align to Y axis"
msgstr "與 Y 軸對齊"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Back"
msgstr "背面"
msgctxt "Camera View"
msgid "Left"
msgstr "左"
msgctxt "Camera"
msgctxt "Camera View"
msgid "Right"
msgstr "右"
@@ -5296,6 +5316,9 @@ msgstr "懸空"
msgid "Outline"
msgstr "輪廓線"
msgid "Wireframe"
msgstr ""
msgid "Realistic View"
msgstr "擬真檢視"
@@ -5543,6 +5566,10 @@ msgstr "列印單一列印板"
msgid "Export G-code file"
msgstr "匯出 G-code 檔案"
msgctxt "Verb"
msgid "Print"
msgstr "列印"
msgid "Export plate sliced file"
msgstr "匯出單一列印板切片檔案"
@@ -7923,6 +7950,50 @@ msgstr "選擇下載項目的目標資料夾"
msgid "Choose Download Directory"
msgstr "選擇下載資料夾"
msgid "(Latest)"
msgstr "(最新版)"
msgid "Network plug-in switched successfully."
msgstr "網路外掛程式切換成功。"
msgid "Success"
msgstr "成功"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "無法載入網路外掛程式。請重新啟動應用程式。"
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"您已選擇網路外掛程式版本 %s。\n"
"\n"
"您想立即下載並安裝此版本嗎?\n"
"\n"
"注意:安裝後應用程式可能需要重新啟動。"
msgid "Download Network Plug-in"
msgstr "下載網路外掛程式"
msgid "Reload the network plug-in without restarting the application"
msgstr "重新載入網路外掛程式而無需重新啟動應用程式"
msgid "Network plug-in reloaded successfully."
msgstr "網路外掛程式重新載入成功。"
msgid "Reload"
msgstr "重新載入"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "無法重新載入網路外掛程式。請重新啟動應用程式。"
msgid "Reload Failed"
msgstr "重新載入失敗"
msgid "Associate"
msgstr "關聯"
@@ -7978,12 +8049,6 @@ msgstr "顯示啟動動畫"
msgid "Show the splash screen during startup."
msgstr "啟動時顯示啟動動畫。"
msgid "Show shared profiles notification"
msgstr "顯示共用設定檔通知"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "變更所選列印設備時,顯示一則含有瀏覽共享設定檔連結的通知。"
msgid "Use window buttons on left side"
msgstr "將視窗按鈕置於左側"
@@ -8014,6 +8079,13 @@ msgstr "載入方式"
msgid "Should printer/filament/process settings be loaded when opening a 3MF file?"
msgstr "開啟 .3mf 檔案時,是否需要載入列印設備、線材和參數設定?"
msgid "Auto backup"
msgstr "自動備份"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "定期備份專案,以便從未預期的錯誤中恢復。"
msgid "Maximum recent files"
msgstr "最近開啟的檔案上限"
@@ -8032,12 +8104,55 @@ msgstr "顯示 STEP 網格參數設定視窗。"
msgid "If enabled, a parameter settings dialog will appear during STEP file import."
msgstr "啟用後,匯入 STEP 檔案時會顯示參數設定視窗。"
msgid "Auto backup"
msgstr "自動備份"
msgid "STEP importing: linear deflection"
msgstr ""
# TODO: Review, changed by lang refactor. PR 14254
msgid "Backup your project periodically to help with restoring from an occasional crash."
msgstr "定期備份專案,以便從未預期的錯誤中恢復。"
msgid ""
"Linear deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.003 mm."
msgstr ""
msgid "STEP importing: angle deflection"
msgstr ""
msgid ""
"Angle deflection used when meshing imported STEP files.\n"
"Smaller values produce higher-quality meshes but increase processing time.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: 0.5."
msgstr ""
msgid "STEP importing: Split into multiple objects"
msgstr ""
msgid ""
"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n"
"Used as the default in the import dialog, or directly when the import dialog is disabled.\n"
"Default: disabled."
msgstr ""
msgid "Quality level for Draco export"
msgstr "Draco 匯出品質等級"
msgid "bits"
msgstr "位元"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"控制將網格壓縮為 Draco 格式時使用的量化位元深度。\n"
"0 = 無損壓縮(幾何資料以完整精度保留)。有效的有損值範圍為 8 至 30。\n"
"較低的值會產生較小的檔案但損失更多幾何細節;較高的值會保留更多細節但檔案較大。"
msgid "Store full source file paths in projects"
msgstr ""
msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths."
msgstr ""
msgid "Preset"
msgstr "預設"
@@ -8069,6 +8184,12 @@ msgstr "線材"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr "根據選擇的線材數量優化線材區域最大高度"
msgid "Show shared profiles notification"
msgstr "顯示共用設定檔通知"
msgid "Show a notification with a link to browse shared profiles when the selected printer is changed."
msgstr "變更所選列印設備時,顯示一則含有瀏覽共享設定檔連結的通知。"
msgid "Features"
msgstr "功能"
@@ -8081,21 +8202,6 @@ msgstr "啟用時可以同時傳送到並管理多個機臺。"
msgid "Pop up to select filament grouping mode"
msgstr "彈出視窗選擇線材分組模式"
msgid "Quality level for Draco export"
msgstr "Draco 匯出品質等級"
msgid "bits"
msgstr "位元"
msgid ""
"Controls the quantization bit depth used when compressing the mesh to Draco format.\n"
"0 = lossless compression (geometry is preserved at full precision). Valid lossy values range from 8 to 30.\n"
"Lower values produce smaller files but lose more geometric detail; higher values preserve more detail at the cost of larger files."
msgstr ""
"控制將網格壓縮為 Draco 格式時使用的量化位元深度。\n"
"0 = 無損壓縮(幾何資料以完整精度保留)。有效的有損值範圍為 8 至 30。\n"
"較低的值會產生較小的檔案但損失更多幾何細節;較高的值會保留更多細節但檔案較大。"
msgid "Behaviour"
msgstr "行為"
@@ -8340,19 +8446,6 @@ msgstr "僅檢查穩定版更新"
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr "自動同步使用者預設(列印設備/線材/列印品質參數)"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "自動更新系統預設。"
msgid "Use encrypted file for token storage"
msgstr "使用加密檔案儲存權杖"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "將身份驗證權杖儲存在加密檔案中,而不是系統鑰匙圈。(需要重啟)"
msgid "Filament Sync Options"
msgstr "線材同步選項"
msgid "Filament sync mode"
msgstr "線材同步模式"
@@ -8365,6 +8458,16 @@ msgstr "線材與顏色"
msgid "Color only"
msgstr "僅顏色"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Update built-in presets automatically."
msgstr "自動更新系統預設。"
msgid "Use encrypted file for token storage"
msgstr "使用加密檔案儲存權杖"
msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)"
msgstr "將身份驗證權杖儲存在加密檔案中,而不是系統鑰匙圈。(需要重啟)"
msgid "Bambu network plug-in"
msgstr "Bambu 網路外掛程式"
@@ -8377,35 +8480,6 @@ msgstr "網路外掛程式版本"
msgid "Select the network plug-in version to use"
msgstr "選擇要使用的網路外掛程式版本"
msgid "(Latest)"
msgstr "(最新版)"
msgid "Network plug-in switched successfully."
msgstr "網路外掛程式切換成功。"
msgid "Success"
msgstr "成功"
msgid "Failed to load network plug-in. Please restart the application."
msgstr "無法載入網路外掛程式。請重新啟動應用程式。"
#, c-format, boost-format
msgid ""
"You've selected network plug-in version %s.\n"
"\n"
"Would you like to download and install this version now?\n"
"\n"
"Note: The application may need to restart after installation."
msgstr ""
"您已選擇網路外掛程式版本 %s。\n"
"\n"
"您想立即下載並安裝此版本嗎?\n"
"\n"
"注意:安裝後應用程式可能需要重新啟動。"
msgid "Download Network Plug-in"
msgstr "下載網路外掛程式"
msgid "Associate files to OrcaSlicer"
msgstr "Orca Slicer 檔案關聯"
@@ -8451,8 +8525,17 @@ msgstr "開發者"
msgid "Skip AMS blacklist check"
msgstr "跳過 AMS 黑名單檢查"
msgid "(Experimental) Keep painted feature after mesh change"
msgstr "(實驗性)在網格變更後保留繪製的特徵"
msgid "Show unsupported presets"
msgstr "顯示不支援的預設"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "在列印設備和線材下拉選單中顯示不相容/不支援的預設。這些預設無法選取。"
msgid "Experimental Features"
msgstr ""
msgid "Keep painted feature after mesh change"
msgstr ""
msgid ""
"Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
@@ -8461,12 +8544,6 @@ msgstr ""
"嘗試在變更物件網格(例如切割/從磁碟重新載入/簡化/修復等)後,保留已繪製的特徵(顏色/Z 縫/支撐/絨毛等)。\n"
"高度實驗性!速度緩慢且可能產生瑕疵。"
msgid "Show unsupported presets"
msgstr "顯示不支援的預設"
msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected."
msgstr "在列印設備和線材下拉選單中顯示不相容/不支援的預設。這些預設無法選取。"
msgid "Allow Abnormal Storage"
msgstr "允許異常儲存空間"
@@ -8495,24 +8572,6 @@ msgstr "除錯"
msgid "trace"
msgstr "跟蹤"
msgid "Network plug-in"
msgstr "網路外掛程式"
msgid "Reload"
msgstr "重新載入"
msgid "Reload the network plug-in without restarting the application"
msgstr "重新載入網路外掛程式而無需重新啟動應用程式"
msgid "Network plug-in reloaded successfully."
msgstr "網路外掛程式重新載入成功。"
msgid "Failed to reload network plug-in. Please restart the application."
msgstr "無法重新載入網路外掛程式。請重新啟動應用程式。"
msgid "Reload Failed"
msgstr "重新載入失敗"
msgid "Debug"
msgstr "除錯"
@@ -8528,25 +8587,6 @@ msgstr "預設檔同步"
msgid "Preferences sync"
msgstr "偏好設定同步"
msgid "View control settings"
msgstr "視角控制設定"
msgid "Rotate view"
msgstr "旋轉視角"
msgid "Pan view"
msgstr "移動視角"
msgid "Zoom view"
msgstr "縮放視角"
msgid "Other"
msgstr "其他"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Reverse scroll direction while zooming"
msgstr "縮放時滑鼠滾輪反轉"
msgid "Enable SSL(MQTT)"
msgstr "啟用SSLMQTT"
@@ -12523,6 +12563,18 @@ msgstr "微小部位周長臨界值"
msgid "This sets the threshold for small perimeter length. Default threshold is 0mm."
msgstr "這設定了微小部位周長的臨界值。 預設臨界值是 0mm"
msgid "Small support perimeters"
msgstr ""
msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto."
msgstr ""
msgid "Small support perimeters threshold"
msgstr ""
msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm."
msgstr ""
msgid "Walls printing order"
msgstr "牆列印順序"
@@ -12705,24 +12757,26 @@ msgstr ""
"2. 記錄每個體積流速和加速度的最佳壓力補償 (PA) 值。您可以通過從顏色方案下拉選單中選擇流量,並將水平滑桿移動到 PA 測試線的圖案來找到流量數值。該數值應顯示在頁面底部。理想的 PA 值應隨著體積流速的增加而減小。如果不是,請檢查您的擠出機是否正常工作。當列印速度較慢且加速度較低時,可接受的 PA 值範圍會更大。如果看不出差異,請採用最快測試的 PA 值。\n"
"3. 將 PA 值、流量和加速度的三組資料輸入到此文字框中,然後保存您的線材設定檔"
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "啟用懸挑自適應壓力補償 (beta)"
msgid ""
"Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
msgid "Enable adaptive pressure advance within features (beta)"
msgstr ""
"針對懸空以及同一特徵內的流量變化啟用自適應壓力補償 (PA)。這是一個實驗性選項,因為若 PA 設定檔設定不準確,將會導致懸空前後的外表面出現均勻性問題。\n"
"與 Prusa 印表機不相容,因為它們會暫停以處理 PA 變更,進而導致延遲與瑕疵。"
msgid "Pressure advance for bridges"
msgstr "橋接的壓力補償"
msgid ""
"Pressure advance value for bridges. Set to 0 to disable.\n"
"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr "橋接的壓力補償值。設為 0 以停用此功能。降低橋接時的壓力補償值有助於減少橋接結束後立即出現的輕微欠擠出現象。這種現象是由於在空中列印時噴嘴內壓力下降引起的,而降低壓力補償值有助於抵消這一影響。"
"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n"
"\n"
"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."
msgstr ""
msgid "Static pressure advance for bridges"
msgstr ""
msgid ""
"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n"
"equivalent walls (using adaptive settings if enabled).\n"
"\n"
"A lower PA value when printing bridges helps reduce the appearance of slight under-extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter."
msgstr "當線寬設定為 0 時走線的預設線寬。如果以 % 表示,將以噴嘴直徑為基準來計算。"
@@ -13104,6 +13158,22 @@ msgstr "實心填充方向"
msgid "Angle for solid infill pattern, which controls the start or main direction of line."
msgstr "實心填充圖案的角度設定,用於決定線條的起始方向或主要列印方向"
msgid "Top layer direction"
msgstr ""
msgid ""
"Fixed angle for the top solid infill and ironing lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Bottom layer direction"
msgstr ""
msgid ""
"Fixed angle for the bottom solid infill lines.\n"
"Set to -1 to follow the default solid infill direction."
msgstr ""
msgid "Sparse infill density"
msgstr "稀疏填充密度"
@@ -13322,6 +13392,17 @@ msgstr "風扇速度會從第「close_fan_the_first_x_layers」層開始
msgid "layer"
msgstr "層"
msgid "First layer fan speed"
msgstr ""
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"
"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n"
"Only available when \"No cooling for the first\" is 0.\n"
"Set to -1 to disable it."
msgstr ""
msgid "Support interface fan speed"
msgstr "支撐界面風扇速度"
@@ -14893,6 +14974,10 @@ msgstr "對齊"
msgid "Aligned back"
msgstr "背部對齊"
# TODO: Review, changed by lang refactor. PR 14254
msgid "Back"
msgstr "背面"
msgid "Random"
msgstr "隨機"
@@ -15257,6 +15342,9 @@ msgstr "在三角網格切片過程中,寬度小於 2 倍間隙閉合半徑的
msgid "Slicing Mode"
msgstr "切片模式"
msgid "Other"
msgstr "其他"
msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model."
msgstr "針對 3DLabPrint 飛機模型,請選擇『奇偶』模式。若需閉合模型中的所有孔洞,請啟用『閉合孔洞』選項。"
@@ -15932,6 +16020,14 @@ msgstr "扭曲多邊形孔"
msgid "Rotate the polyhole every layer."
msgstr "依層旋轉多邊形孔。"
msgid "Maximum Polyhole edge count"
msgstr ""
msgid ""
"Maximum number of polyhole edges\n"
"This setting limits the amount of edges a polyhole can have"
msgstr ""
msgid "G-code thumbnails"
msgstr "G-code 縮圖"
@@ -18325,6 +18421,132 @@ msgstr "登入/測試"
msgid "Connection to printers connected via the print host failed."
msgstr "經由列印主機連接的列印設備連接失敗。"
msgid "Detect Creality K-series printer"
msgstr ""
msgid "Click Scan to look for K-series printers on your network."
msgstr ""
msgid "Use Selected"
msgstr ""
msgid "Scanning the LAN for K-series printers... this takes a few seconds."
msgstr ""
msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again."
msgstr ""
#, c-format
msgid "Found %zu Creality printer(s). Select one and click Use Selected."
msgstr ""
msgid "Active"
msgstr ""
msgid "Printers"
msgstr ""
msgid "Processes"
msgstr ""
msgid "Show/Hide system information"
msgstr ""
msgid "Copy system information to clipboard"
msgstr ""
msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide."
msgstr ""
msgid "Pack button collects project file and logs of current session onto a zip file."
msgstr ""
msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue."
msgstr ""
msgid "Report issue"
msgstr ""
msgid "Pack"
msgstr ""
msgid "Cleans and rebuilds system profiles cache on next launch"
msgstr ""
msgid "Clean system profiles cache"
msgstr ""
msgid "Clean"
msgstr ""
msgid "Loaded profiles overview"
msgstr ""
msgid "This section shows information for loaded profiles"
msgstr ""
msgid "Exports detailed overview of loaded profiles in json format"
msgstr ""
msgid "Configurations folder"
msgstr ""
msgid "Opens configurations folder"
msgstr ""
msgid "Log level"
msgstr ""
msgid "Stored logs"
msgstr ""
msgid "Packs all stored logs onto a zip file."
msgstr ""
msgid "Profiles"
msgstr ""
msgid "Select NO to close dialog and review project"
msgstr ""
msgid "No project file on current session. Only logs will be included to package"
msgstr ""
msgid "Select NO to close dialog and review project."
msgstr ""
msgid "Please make sure any instances of OrcaSlicer are not running"
msgstr ""
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."
msgstr ""
msgid "Failed to delete system folder..."
msgstr ""
msgid "Failed to determine executable path."
msgstr ""
msgid "Failed to launch a new instance."
msgstr ""
msgid "log(s)"
msgstr ""
msgid "Choose where to save the exported JSON file"
msgstr ""
msgid ""
"Export failed\n"
"Please check write permissions or file in use by another application"
msgstr ""
msgid "Choose where to save the exported ZIP file"
msgstr ""
msgid "File already exists. Overwrite?"
msgstr ""
msgid "3DPrinterOS Cloud upload options"
msgstr "3DPrinterOS 雲端上傳選項"
@@ -18407,6 +18629,19 @@ msgstr "成功連接到 MKS。"
msgid "Could not connect to MKS"
msgstr "無法連接到 MKS"
msgid "Connection to Moonraker is working correctly."
msgstr ""
msgid "Could not connect to Moonraker"
msgstr ""
msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)."
msgstr ""
#, c-format, boost-format
msgid "Could not parse Moonraker server response: %s"
msgstr ""
msgid "Connection to OctoPrint is working correctly."
msgstr "與 OctoPrint 的連接工作正常。"
@@ -19157,6 +19392,12 @@ msgstr "三角面片數量"
msgid "Calculating, please wait..."
msgstr "正在計算,請稍候..."
msgid "Save these settings as default"
msgstr ""
msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)."
msgstr ""
msgid "PresetBundle"
msgstr "設定檔組"
@@ -19588,6 +19829,102 @@ msgstr ""
"您知道嗎?當列印容易翹曲的材料(如 ABS適當提高熱床溫度\n"
"可以降低翹曲的機率。"
#~ msgid "Print"
#~ msgstr "列印"
#~ msgid "in"
#~ msgstr "在"
#~ msgid "Object coordinates"
#~ msgstr "物件座標"
#~ msgid "World coordinates"
#~ msgstr "世界座標"
#~ msgid "Translate(Relative)"
#~ msgstr "平移(相對)"
#~ msgid "Rotate (absolute)"
#~ msgstr "旋轉(絕對)"
#~ msgid "Part coordinates"
#~ msgstr "零件座標"
#~ msgid ""
#~ "Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "雲端同步衝突:此預設在 OrcaCloud 中有較新的版本。\n"
#~ "拉取會下載雲端副本。強制推送會以您的本機預設覆寫雲端版本。"
#~ msgid ""
#~ "Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "雲端同步衝突OrcaCloud 中已有同名的預設。\n"
#~ "拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。"
#~ msgid ""
#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n"
#~ "Delete will delete your local preset. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "雲端同步衝突:先前已從雲端刪除同名的預設。\n"
#~ "「刪除」將刪除您的本機預設。「強制推送」會以您的本機預設覆寫它。"
#~ msgid ""
#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n"
#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset."
#~ msgstr ""
#~ "雲端同步衝突:發生了未預期或無法識別的預設衝突。\n"
#~ "拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。"
#~ msgid "The preset content is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."
#~ msgstr "預設內容過大,無法同步至雲端(超過 1MB。請移除自訂設定以減少預設大小或僅在本機使用。"
#~ msgid "Enable adaptive pressure advance for overhangs (beta)"
#~ msgstr "啟用懸挑自適應壓力補償 (beta)"
#~ msgid ""
#~ "Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."
#~ msgstr ""
#~ "針對懸空以及同一特徵內的流量變化啟用自適應壓力補償 (PA)。這是一個實驗性選項,因為若 PA 設定檔設定不準確,將會導致懸空前後的外表面出現均勻性問題。\n"
#~ "與 Prusa 印表機不相容,因為它們會暫停以處理 PA 變更,進而導致延遲與瑕疵。"
#~ msgid "Pressure advance for bridges"
#~ msgstr "橋接的壓力補償"
#~ msgid ""
#~ "Pressure advance value for bridges. Set to 0 to disable.\n"
#~ "\n"
#~ "A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
#~ msgstr "橋接的壓力補償值。設為 0 以停用此功能。降低橋接時的壓力補償值有助於減少橋接結束後立即出現的輕微欠擠出現象。這種現象是由於在空中列印時噴嘴內壓力下降引起的,而降低壓力補償值有助於抵消這一影響。"
#~ msgid "Filament Sync Options"
#~ msgstr "線材同步選項"
#~ msgid "(Experimental) Keep painted feature after mesh change"
#~ msgstr "(實驗性)在網格變更後保留繪製的特徵"
#~ msgid "Network plug-in"
#~ msgstr "網路外掛程式"
#~ msgid "View control settings"
#~ msgstr "視角控制設定"
#~ msgid "Rotate view"
#~ msgstr "旋轉視角"
#~ msgid "Pan view"
#~ msgstr "移動視角"
#~ msgid "Zoom view"
#~ msgstr "縮放視角"
# TODO: Review, changed by lang refactor. PR 14254
#~ msgid "Reverse scroll direction while zooming"
#~ msgstr "縮放時滑鼠滾輪反轉"
#, c-format, boost-format
#~ msgid "Left: %s"
#~ msgstr "左:%s"

51
remove_cache.bat Normal file
View File

@@ -0,0 +1,51 @@
@echo off
setlocal
:: Removes all OrcaSlicer cache files so the next launch rebuilds from scratch.
::
:: Clears:
:: resources/profiles/*.cache bundled per-vendor binary caches
:: %APPDATA%\OrcaSlicer\system\*.cache user per-vendor binary caches
:: %APPDATA%\OrcaSlicer\guide_profile_cache.json guide JSON cache
set REPO=%~dp0
set PROFILES=%REPO%resources\profiles
set USER_SYSTEM=%APPDATA%\OrcaSlicer\system
set GUIDE_CACHE=%APPDATA%\OrcaSlicer\guide_profile_cache.json
echo Removing OrcaSlicer cache files...
echo.
:: Bundled caches
set FOUND=0
for %%F in ("%PROFILES%\*.cache") do (
del "%%F"
echo Deleted: %%~nxF ^(bundled^)
set FOUND=1
)
if "%FOUND%"=="0" echo No bundled .cache files found in resources\profiles\
echo.
:: User per-vendor caches
set FOUND=0
for %%F in ("%USER_SYSTEM%\*.cache") do (
del "%%F"
echo Deleted: %%~nxF ^(user^)
set FOUND=1
)
if "%FOUND%"=="0" echo No user .cache files found in %USER_SYSTEM%\
echo.
:: Guide JSON cache
if exist "%GUIDE_CACHE%" (
del "%GUIDE_CACHE%"
echo Deleted: guide_profile_cache.json
) else (
echo No guide_profile_cache.json found
)
echo.
echo Done. Next launch will rebuild all caches from JSON.
endlocal

Binary file not shown.

20905
resources/hms/hms_lt_093.json Normal file

File diff suppressed because it is too large Load Diff

20317
resources/hms/hms_lt_094.json Normal file

File diff suppressed because it is too large Load Diff

20217
resources/hms/hms_lt_22E.json Normal file

File diff suppressed because it is too large Load Diff

21801
resources/hms/hms_lt_239.json Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@@ -1,6 +1,6 @@
{
"name": "Afinia",
"version": "02.04.00.01",
"version": "02.04.00.02",
"force_update": "0",
"description": "Afinia configurations",
"machine_model_list": [
@@ -124,14 +124,6 @@
"name": "fdm_filament_tpu",
"sub_path": "filament/fdm_filament_tpu.json"
},
{
"name": "Afinia ABS",
"sub_path": "filament/Afinia ABS.json"
},
{
"name": "Afinia ABS+",
"sub_path": "filament/Afinia ABS+.json"
},
{
"name": "Afinia ABS+@HS",
"sub_path": "filament/Afinia ABS+@HS.json"
@@ -140,34 +132,18 @@
"name": "Afinia ABS@HS",
"sub_path": "filament/Afinia ABS@HS.json"
},
{
"name": "Afinia Value ABS",
"sub_path": "filament/Afinia Value ABS.json"
},
{
"name": "Afinia Value ABS@HS",
"sub_path": "filament/Afinia Value ABS@HS.json"
},
{
"name": "Afinia PLA",
"sub_path": "filament/Afinia PLA.json"
},
{
"name": "Afinia PLA@HS",
"sub_path": "filament/Afinia PLA@HS.json"
},
{
"name": "Afinia Value PLA",
"sub_path": "filament/Afinia Value PLA.json"
},
{
"name": "Afinia Value PLA@HS",
"sub_path": "filament/Afinia Value PLA@HS.json"
},
{
"name": "Afinia TPU",
"sub_path": "filament/Afinia TPU.json"
},
{
"name": "Afinia TPU@HS",
"sub_path": "filament/Afinia TPU@HS.json"

View File

@@ -1,37 +0,0 @@
{
"type": "filament",
"filament_id": "GFB00",
"setting_id": "i5tf9foHnTVNmA2r",
"name": "Afinia ABS+",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_abs",
"filament_flow_ratio": [
"0.95"
],
"filament_cost": [
"24.99"
],
"filament_vendor": [
"Afinia"
],
"fan_max_speed": [
"60"
],
"filament_max_volumetric_speed": [
"16"
],
"nozzle_temperature": [
"275"
],
"nozzle_temperature_initial_layer": [
"275"
],
"slow_down_layer_time": [
"12"
],
"compatible_printers": [
"Afinia H400 Pro 0.4 nozzle",
"Afinia H400 Pro 0.6 nozzle"
]
}

View File

@@ -1,31 +0,0 @@
{
"type": "filament",
"filament_id": "GFB00",
"setting_id": "LhDHvMepbh8ecfQT",
"name": "Afinia ABS",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_abs",
"filament_flow_ratio": [
"0.95"
],
"filament_cost": [
"24.99"
],
"filament_vendor": [
"Afinia"
],
"fan_max_speed": [
"60"
],
"filament_max_volumetric_speed": [
"16"
],
"slow_down_layer_time": [
"12"
],
"compatible_printers": [
"Afinia H400 Pro 0.4 nozzle",
"Afinia H400 Pro 0.6 nozzle"
]
}

View File

@@ -1,34 +0,0 @@
{
"type": "filament",
"filament_id": "GFA00",
"setting_id": "1qEFsay7kjYIUkpG",
"name": "Afinia PLA",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pla",
"filament_cost": [
"24.99"
],
"filament_density": [
"1.26"
],
"filament_flow_ratio": [
"0.98"
],
"filament_max_volumetric_speed": [
"21"
],
"filament_vendor": [
"Afinia"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"compatible_printers": [
"Afinia H400 Pro 0.4 nozzle",
"Afinia H400 Pro 0.6 nozzle"
]
}

View File

@@ -1,28 +0,0 @@
{
"type": "filament",
"name": "Afinia TPU",
"inherits": "fdm_filament_tpu",
"from": "system",
"setting_id": "E7WBTARZ971LaDMj",
"filament_id": "GFU01",
"instantiation": "true",
"filament_vendor": [
"Afinia"
],
"filament_density": [
"1.22"
],
"nozzle_temperature_initial_layer": [
"230"
],
"filament_cost": [
"41.99"
],
"nozzle_temperature": [
"230"
],
"compatible_printers": [
"Afinia H400 Pro 0.4 nozzle",
"Afinia H400 Pro 0.6 nozzle"
]
}

View File

@@ -1,37 +0,0 @@
{
"type": "filament",
"filament_id": "GFB00",
"setting_id": "jEYVpOPBjFtQ0DXn",
"name": "Afinia Value ABS",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_abs",
"filament_flow_ratio": [
"0.95"
],
"filament_cost": [
"24.99"
],
"filament_vendor": [
"Afinia"
],
"fan_max_speed": [
"60"
],
"filament_max_volumetric_speed": [
"16"
],
"nozzle_temperature": [
"245"
],
"nozzle_temperature_initial_layer": [
"245"
],
"slow_down_layer_time": [
"12"
],
"compatible_printers": [
"Afinia H400 Pro 0.4 nozzle",
"Afinia H400 Pro 0.6 nozzle"
]
}

View File

@@ -1,40 +0,0 @@
{
"type": "filament",
"filament_id": "GFA00",
"setting_id": "oNBk0IxmW7C99WI3",
"name": "Afinia Value PLA",
"from": "system",
"instantiation": "true",
"inherits": "fdm_filament_pla",
"filament_cost": [
"24.99"
],
"filament_density": [
"1.26"
],
"filament_flow_ratio": [
"0.98"
],
"filament_max_volumetric_speed": [
"21"
],
"filament_vendor": [
"Afinia"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"nozzle_temperature": [
"190"
],
"nozzle_temperature_initial_layer": [
"190"
],
"compatible_printers": [
"Afinia H400 Pro 0.4 nozzle",
"Afinia H400 Pro 0.6 nozzle"
]
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,7 +1,7 @@
{
"name": "Bambulab",
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
"version": "02.01.00.18",
"version": "02.01.00.19",
"force_update": "0",
"description": "BBL configurations",
"machine_model_list": [
@@ -2177,6 +2177,10 @@
"name": "Generic ABS @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic ABS @BBL X2D 0.4 nozzle.json"
},
{
"name": "addnorth ABS rABS",
"sub_path": "filament/addnorth/addnorth ABS rABS.json"
},
{
"name": "PolyLite ABS @BBL A1",
"sub_path": "filament/Polymaker/PolyLite ABS @BBL A1.json"
@@ -3005,6 +3009,22 @@
"name": "Generic PA @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PA @BBL X2D 0.4 nozzle.json"
},
{
"name": "addnorth PA Adura",
"sub_path": "filament/addnorth/addnorth PA Adura.json"
},
{
"name": "addnorth PA Adura FDA",
"sub_path": "filament/addnorth/addnorth PA Adura FDA.json"
},
{
"name": "addnorth PA6 Addlantis",
"sub_path": "filament/addnorth/addnorth PA6 Addlantis.json"
},
{
"name": "addnorth PVDF Adamant S1",
"sub_path": "filament/addnorth/addnorth PVDF Adamant S1.json"
},
{
"name": "Generic PA-CF",
"sub_path": "filament/Generic PA-CF.json"
@@ -3029,6 +3049,10 @@
"name": "Generic PA-CF @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PA-CF @BBL X2D 0.4 nozzle.json"
},
{
"name": "addnorth PA-CF Adura X",
"sub_path": "filament/addnorth/addnorth PA-CF Adura X.json"
},
{
"name": "Bambu PC @BBL A1",
"sub_path": "filament/Bambu PC @BBL A1.json"
@@ -3329,6 +3353,10 @@
"name": "Generic PC @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PC @BBL X2D 0.4 nozzle.json"
},
{
"name": "addnorth PC BLend HT LCF",
"sub_path": "filament/addnorth/addnorth PC BLend HT LCF.json"
},
{
"name": "Generic PCTG @BBL A1",
"sub_path": "filament/Generic PCTG @BBL A1.json"
@@ -4185,6 +4213,30 @@
"name": "Generic PETG @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PETG @BBL X2D 0.4 nozzle.json"
},
{
"name": "addnorth PETG Base",
"sub_path": "filament/addnorth/addnorth PETG Base.json"
},
{
"name": "addnorth PETG ESD",
"sub_path": "filament/addnorth/addnorth PETG ESD.json"
},
{
"name": "addnorth PETG Economy",
"sub_path": "filament/addnorth/addnorth PETG Economy.json"
},
{
"name": "addnorth PETG Flame v0",
"sub_path": "filament/addnorth/addnorth PETG Flame v0.json"
},
{
"name": "addnorth PETG PRO Matte",
"sub_path": "filament/addnorth/addnorth PETG PRO Matte.json"
},
{
"name": "addnorth PETG rPETG Matte",
"sub_path": "filament/addnorth/addnorth PETG rPETG Matte.json"
},
{
"name": "Generic PETG HF @BBL A1",
"sub_path": "filament/Generic PETG HF @BBL A1.json"
@@ -4305,6 +4357,10 @@
"name": "Generic PETG-CF @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json"
},
{
"name": "addnorth PETG-CF Rigid X",
"sub_path": "filament/addnorth/addnorth PETG-CF Rigid X.json"
},
{
"name": "PolyLite PETG @BBL A1",
"sub_path": "filament/Polymaker/PolyLite PETG @BBL A1.json"
@@ -6589,6 +6645,34 @@
"name": "Generic PLA @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PLA @BBL X2D 0.4 nozzle.json"
},
{
"name": "addnorth PLA E-PLA",
"sub_path": "filament/addnorth/addnorth PLA E-PLA.json"
},
{
"name": "addnorth PLA Economy",
"sub_path": "filament/addnorth/addnorth PLA Economy.json"
},
{
"name": "addnorth PLA HT-PLA PRO Matte",
"sub_path": "filament/addnorth/addnorth PLA HT-PLA PRO Matte.json"
},
{
"name": "addnorth PLA Textura",
"sub_path": "filament/addnorth/addnorth PLA Textura.json"
},
{
"name": "addnorth PLA Wood",
"sub_path": "filament/addnorth/addnorth PLA Wood.json"
},
{
"name": "addnorth PLA X-PLA",
"sub_path": "filament/addnorth/addnorth PLA X-PLA.json"
},
{
"name": "addnorth PLA rPLA RE-ADD",
"sub_path": "filament/addnorth/addnorth PLA rPLA RE-ADD.json"
},
{
"name": "Generic PLA High Speed @BBL A1",
"sub_path": "filament/Generic PLA High Speed @BBL A1.json"
@@ -6649,6 +6733,10 @@
"name": "Generic PLA High Speed @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json"
},
{
"name": "addnorth PLA X-PLA High Speed",
"sub_path": "filament/addnorth/addnorth PLA X-PLA High Speed.json"
},
{
"name": "Generic PLA Silk",
"sub_path": "filament/Generic PLA Silk.json"
@@ -6689,6 +6777,10 @@
"name": "Generic PLA Silk @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json"
},
{
"name": "addnorth PLA Premium Silk",
"sub_path": "filament/addnorth/addnorth PLA Premium Silk.json"
},
{
"name": "Generic PLA-CF",
"sub_path": "filament/Generic PLA-CF.json"
@@ -6729,6 +6821,10 @@
"name": "Generic PLA-CF @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json"
},
{
"name": "addnorth PLA-CF Carbon Fiber",
"sub_path": "filament/addnorth/addnorth PLA-CF Carbon Fiber.json"
},
{
"name": "Numakers PLA+ @BBL A1",
"sub_path": "filament/Numakers/Numakers PLA+ @BBL A1.json"
@@ -6981,10 +7077,6 @@
"name": "Panchroma PLA @BBL X1C 0.2 nozzle",
"sub_path": "filament/Polymaker/Panchroma PLA @BBL X1C 0.2 nozzle.json"
},
{
"name": "Panchroma PLA Silk @BBL X1C 0.2 nozzle",
"sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json"
},
{
"name": "Panchroma PLA Celestial @BBL A1",
"sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL A1.json"
@@ -7381,6 +7473,10 @@
"name": "Panchroma PLA Silk @BBL X1C",
"sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C.json"
},
{
"name": "Panchroma PLA Silk @BBL X1C 0.2 nozzle",
"sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json"
},
{
"name": "Panchroma PLA Starlight @BBL A1",
"sub_path": "filament/Polymaker/Panchroma PLA Starlight @BBL A1.json"
@@ -8889,6 +8985,18 @@
"name": "Generic TPU @BBL X2D 0.4 nozzle",
"sub_path": "filament/Generic TPU @BBL X2D 0.4 nozzle.json"
},
{
"name": "addnorth TPU EasyFlex",
"sub_path": "filament/addnorth/addnorth TPU EasyFlex.json"
},
{
"name": "addnorth TPU Pro Matte 85A",
"sub_path": "filament/addnorth/addnorth TPU Pro Matte 85A.json"
},
{
"name": "addnorth TPU Pro Matte 95A",
"sub_path": "filament/addnorth/addnorth TPU Pro Matte 95A.json"
},
{
"name": "Generic TPU for AMS @BBL A1",
"sub_path": "filament/Generic TPU for AMS @BBL A1.json"

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth ABS rABS",
"inherits": "Generic ABS @base",
"from": "system",
"setting_id": "GF_ANRA_00",
"filament_id": "GF_ANRA",
"instantiation": "true",
"activate_air_filtration": [
"1"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"50"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"105"
],
"eng_plate_temp_initial_layer": [
"105"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"25"
],
"fan_min_speed": [
"0"
],
"filament_adhesiveness_category": [
"200"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"43"
],
"filament_density": [
"1.03"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"12",
"12"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth ABS rABS"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"ABS"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"105"
],
"hot_plate_temp_initial_layer": [
"105"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"255",
"255"
],
"nozzle_temperature_initial_layer": [
"250",
"250"
],
"nozzle_temperature_range_high": [
"260"
],
"nozzle_temperature_range_low": [
"230"
],
"overhang_fan_speed": [
"50"
],
"overhang_fan_threshold": [
"25%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"100"
],
"textured_plate_temp": [
"105"
],
"textured_plate_temp_initial_layer": [
"105"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PA Adura FDA",
"inherits": "Generic PA @base",
"from": "system",
"setting_id": "GF_ANAF_00",
"filament_id": "GF_ANAF",
"instantiation": "true",
"activate_air_filtration": [
"1"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"50"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"100"
],
"eng_plate_temp_initial_layer": [
"100"
],
"fan_cooling_layer_time": [
"5"
],
"fan_max_speed": [
"30"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"50"
],
"filament_density": [
"1.1"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.99",
"0.99"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"11"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"1",
"1"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PA Adura FDA"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"0.4",
"0.4"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"2"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"100"
],
"hot_plate_temp_initial_layer": [
"100"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"265",
"265"
],
"nozzle_temperature_initial_layer": [
"265",
"265"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"245"
],
"overhang_fan_speed": [
"70"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"110"
],
"textured_plate_temp": [
"100"
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PA Adura",
"inherits": "Generic PA @base",
"from": "system",
"setting_id": "GF_ANAD_00",
"filament_id": "GF_ANAD",
"instantiation": "true",
"activate_air_filtration": [
"1"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"50"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"100"
],
"eng_plate_temp_initial_layer": [
"100"
],
"fan_cooling_layer_time": [
"5"
],
"fan_max_speed": [
"30"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"50"
],
"filament_density": [
"1.1"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.99",
"0.99"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"11"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"1",
"1"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PA Adura"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"0.4",
"0.4"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"2"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"100"
],
"hot_plate_temp_initial_layer": [
"100"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"265",
"265"
],
"nozzle_temperature_initial_layer": [
"265",
"265"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"245"
],
"overhang_fan_speed": [
"70"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"110"
],
"textured_plate_temp": [
"100"
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PA-CF Adura X",
"inherits": "Generic PA-CF @base",
"from": "system",
"setting_id": "GF_ANAX_00",
"filament_id": "GF_ANAX",
"instantiation": "true",
"activate_air_filtration": [
"1"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"50"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"100"
],
"eng_plate_temp_initial_layer": [
"100"
],
"fan_cooling_layer_time": [
"5"
],
"fan_max_speed": [
"30"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"109"
],
"filament_density": [
"1.2"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.99",
"0.99"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"15"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PA-CF Adura X"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PA-CF"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"2"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"100"
],
"hot_plate_temp_initial_layer": [
"100"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"280",
"280"
],
"nozzle_temperature_initial_layer": [
"275",
"275"
],
"nozzle_temperature_range_high": [
"280"
],
"nozzle_temperature_range_low": [
"260"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"2"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"120"
],
"textured_plate_temp": [
"100"
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PA6 Addlantis",
"inherits": "Generic PA @base",
"from": "system",
"setting_id": "GF_ANLA_00",
"filament_id": "GF_ANLA",
"instantiation": "true",
"activate_air_filtration": [
"1"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"60"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"100"
],
"eng_plate_temp_initial_layer": [
"100"
],
"fan_cooling_layer_time": [
"5"
],
"fan_max_speed": [
"30"
],
"fan_min_speed": [
"10"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"82"
],
"filament_density": [
"1.18"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.99",
"0.99"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"11"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.62 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"0.6",
"0.6"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PA6 Addlantis"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PA6"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"0.4",
"0.4"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"2"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"100"
],
"hot_plate_temp_initial_layer": [
"100"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"275",
"275"
],
"nozzle_temperature_initial_layer": [
"275",
"275"
],
"nozzle_temperature_range_high": [
"285"
],
"nozzle_temperature_range_low": [
"265"
],
"overhang_fan_speed": [
"40"
],
"overhang_fan_threshold": [
"0%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"0"
],
"slow_down_layer_time": [
"15"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"110"
],
"textured_plate_temp": [
"100"
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PC BLend HT LCF",
"inherits": "Generic PC @base",
"from": "system",
"setting_id": "GF_ANPBX_00",
"filament_id": "GF_ANPBX",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"50"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"40"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"109"
],
"filament_density": [
"1.3"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"15",
"15"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PC BLend HT LCF"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PC"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"285",
"285"
],
"nozzle_temperature_initial_layer": [
"275",
"275"
],
"nozzle_temperature_range_high": [
"290"
],
"nozzle_temperature_range_low": [
"265"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"2"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"185"
],
"textured_plate_temp": [
"100"
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PETG Base",
"inherits": "Generic PETG @base",
"from": "system",
"setting_id": "GF_ANPE_00",
"filament_id": "GF_ANPE",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"35.6"
],
"filament_density": [
"1.27"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"10",
"10"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PETG Base"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"260",
"260"
],
"nozzle_temperature_initial_layer": [
"255",
"255"
],
"nozzle_temperature_range_high": [
"275"
],
"nozzle_temperature_range_low": [
"240"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"75"
],
"textured_plate_temp_initial_layer": [
"75"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PETG ESD",
"inherits": "Generic PETG @base",
"from": "system",
"setting_id": "GF_ANEG_00",
"filament_id": "GF_ANEG",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"76"
],
"filament_density": [
"1.3"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.97",
"0.97"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"20",
"20"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 high reliability - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PETG ESD"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"290",
"290"
],
"nozzle_temperature_initial_layer": [
"290",
"290"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"255"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"70"
],
"textured_plate_temp_initial_layer": [
"70"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PETG Economy",
"inherits": "Generic PETG @base",
"from": "system",
"setting_id": "GF_ANGE_00",
"filament_id": "GF_ANGE",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"27"
],
"filament_density": [
"1.25"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"10",
"10"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PETG Economy"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"260",
"260"
],
"nozzle_temperature_initial_layer": [
"255",
"255"
],
"nozzle_temperature_range_high": [
"275"
],
"nozzle_temperature_range_low": [
"240"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"75"
],
"textured_plate_temp_initial_layer": [
"75"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PETG Flame v0",
"inherits": "Generic PETG @base",
"from": "system",
"setting_id": "GF_ANPF_00",
"filament_id": "GF_ANPF",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"71"
],
"filament_density": [
"1.27"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.97",
"0.97"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"20",
"20"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.4 high reliability - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PETG Flame V0"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"290",
"290"
],
"nozzle_temperature_initial_layer": [
"290",
"290"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"255"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"70"
],
"textured_plate_temp_initial_layer": [
"70"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PETG PRO Matte",
"inherits": "Generic PETG @base",
"from": "system",
"setting_id": "GF_ANPM_00",
"filament_id": "GF_ANPM",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"54.5"
],
"filament_density": [
"1.27"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"8"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PETG PRO Matte"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"260",
"260"
],
"nozzle_temperature_initial_layer": [
"260",
"260"
],
"nozzle_temperature_range_high": [
"275"
],
"nozzle_temperature_range_low": [
"235"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"1"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"80"
],
"textured_plate_temp_initial_layer": [
"80"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PETG rPETG Matte",
"inherits": "Generic PETG @base",
"from": "system",
"setting_id": "GF_ANRM_00",
"filament_id": "GF_ANRM",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"40"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"36"
],
"filament_density": [
"1.27"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"10",
"10"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PETG rPETG Matte"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PETG"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"260",
"260"
],
"nozzle_temperature_initial_layer": [
"255",
"255"
],
"nozzle_temperature_range_high": [
"260"
],
"nozzle_temperature_range_low": [
"225"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"75"
],
"textured_plate_temp_initial_layer": [
"75"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PETG-CF Rigid X",
"inherits": "Generic PETG-CF @base",
"from": "system",
"setting_id": "GF_ANRX_00",
"filament_id": "GF_ANRX",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"100"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"5"
],
"filament_adhesiveness_category": [
"300"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"82"
],
"filament_density": [
"1.3"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.95",
"0.95"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"11"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026 Special thanks to Mats.Z (3DP24, Jonkoping University / Campus Varnamo) for profile improvements during internship autumn 2025.",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PETG-CF Rigid X"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PETG-CF"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"0.4",
"0.4"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"270",
"270"
],
"nozzle_temperature_initial_layer": [
"270",
"270"
],
"nozzle_temperature_range_high": [
"275"
],
"nozzle_temperature_range_low": [
"245"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"10%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"0"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"6"
],
"slow_down_min_speed": [
"40"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"80"
],
"textured_plate_temp_initial_layer": [
"80"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA E-PLA",
"inherits": "Generic PLA @base",
"from": "system",
"setting_id": "GF_ANEP_00",
"filament_id": "GF_ANEP",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"5"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"20"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"12",
"12"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA E-PLA"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"240",
"240"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA Economy",
"inherits": "Generic PLA @base",
"from": "system",
"setting_id": "GF_ANPL_00",
"filament_id": "GF_ANPL",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"55"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"23"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"12",
"12"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA Economy"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"240",
"240"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"200"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"25%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA HT-PLA PRO Matte",
"inherits": "Generic PLA @base",
"from": "system",
"setting_id": "GF_ANHTP_00",
"filament_id": "GF_ANHTP",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"2"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"55"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"55"
],
"filament_density": [
"1.4"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"11"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"nil",
"nil"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA HT-PLA PRO Matte"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"70"
],
"hot_plate_temp_initial_layer": [
"70"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"240",
"240"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"245"
],
"nozzle_temperature_range_low": [
"210"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"75"
],
"textured_plate_temp_initial_layer": [
"75"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA Premium Silk",
"inherits": "Generic PLA Silk @base",
"from": "system",
"setting_id": "GF_ANPS_00",
"filament_id": "GF_ANPS",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"50"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"2"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"55"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"70"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"42.5"
],
"filament_density": [
"1.26"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"1",
"1"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"10"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"0.6",
"0.6"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA Premium Silk"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"250",
"250"
],
"nozzle_temperature_initial_layer": [
"245",
"245"
],
"nozzle_temperature_range_high": [
"255"
],
"nozzle_temperature_range_low": [
"235"
],
"overhang_fan_speed": [
"80"
],
"overhang_fan_threshold": [
"25%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA Textura",
"inherits": "Generic PLA @base",
"from": "system",
"setting_id": "GF_ANTE_00",
"filament_id": "GF_ANTE",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"55"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"55"
],
"filament_density": [
"1.27"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"10",
"14"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"0.6",
"0.6"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA Textura"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"235",
"235"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"25%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA Wood",
"inherits": "Generic PLA @base",
"from": "system",
"setting_id": "GF_ANPLW_00",
"filament_id": "GF_ANPLW",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"35"
],
"cool_plate_temp_initial_layer": [
"35"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"54.5"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"8",
"8"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"0.6",
"0.6"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA Wood"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"230",
"230"
],
"nozzle_temperature_initial_layer": [
"230",
"230"
],
"nozzle_temperature_range_high": [
"230"
],
"nozzle_temperature_range_low": [
"200"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"0"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"60"
],
"textured_plate_temp_initial_layer": [
"60"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA X-PLA High Speed",
"inherits": "Generic PLA High Speed @base",
"from": "system",
"setting_id": "GF_ANXPH_00",
"filament_id": "GF_ANXPH",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"55"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"20"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"12",
"12"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"0.6",
"0.6"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA X-PLA High Speed"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"240",
"240"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA X-PLA",
"inherits": "Generic PLA @base",
"from": "system",
"setting_id": "GF_ANXP_00",
"filament_id": "GF_ANXP",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"55"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"39"
],
"filament_density": [
"1.25"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"14",
"14"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"0.6",
"0.6"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA X-PLA"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"235",
"235"
],
"nozzle_temperature_initial_layer": [
"230",
"230"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"25%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PLA rPLA RE-ADD",
"inherits": "Generic PLA @base",
"from": "system",
"setting_id": "GF_ANRPL_00",
"filament_id": "GF_ANRPL",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"55"
],
"cool_plate_temp_initial_layer": [
"5"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"23"
],
"filament_density": [
"1.25"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98",
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"12",
"16"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"0.6",
"0.6"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA rPLA RE-ADD"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"PLA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"240",
"240"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"45"
],
"supertack_plate_temp_initial_layer": [
"45"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,320 @@
{
"type": "filament",
"name": "addnorth PLA-CF Carbon Fiber",
"inherits": "Generic PLA-CF @base",
"from": "system",
"setting_id": "GF_ANPCF_00",
"filament_id": "GF_ANPCF",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer": [
"45"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"100"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"37"
],
"filament_density": [
"1.27"
],
"filament_deretraction_speed": [
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n\n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"0.98"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_max_volumetric_speed": [
"14"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0"
],
"filament_ramming_volumetric_speed": [
"-1"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"nil"
],
"filament_retraction_speed": [
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PLA-CF Carbon Fiber"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PLA-CF"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"nil"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"235"
],
"nozzle_temperature_initial_layer": [
"230"
],
"nozzle_temperature_range_high": [
"250"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"0"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"7"
],
"slow_down_min_speed": [
"20"
],
"supertack_plate_temp": [
"50"
],
"supertack_plate_temp_initial_layer": [
"50"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"55"
],
"textured_plate_temp_initial_layer": [
"55"
],
"version": "2.0.0.87"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth PVDF Adamant S1",
"inherits": "Generic PA @base",
"from": "system",
"setting_id": "GF_ANPV_00",
"filament_id": "GF_ANPV",
"instantiation": "true",
"activate_air_filtration": [
"1"
],
"additional_cooling_fan_speed": [
"0"
],
"chamber_temperatures": [
"50"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"100"
],
"eng_plate_temp_initial_layer": [
"100"
],
"fan_cooling_layer_time": [
"5"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"25"
],
"filament_adhesiveness_category": [
"400"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"146"
],
"filament_density": [
"1.8"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"1",
"1"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"4",
"4"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.6 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil",
"nil"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"1",
"1"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"0%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth PVDF Adamant S1"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
],
"filament_type": [
"PA"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"0.4",
"0.4"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"2"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"100"
],
"hot_plate_temp_initial_layer": [
"100"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"260",
"260"
],
"nozzle_temperature_initial_layer": [
"265",
"265"
],
"nozzle_temperature_range_high": [
"260"
],
"nozzle_temperature_range_low": [
"240"
],
"overhang_fan_speed": [
"80"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"0"
],
"required_nozzle_HRC": [
"40"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"12"
],
"slow_down_min_speed": [
"10"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"135"
],
"textured_plate_temp": [
"100"
],
"textured_plate_temp_initial_layer": [
"100"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth TPU EasyFlex",
"inherits": "Generic TPU @base",
"from": "system",
"setting_id": "GF_ANEF_00",
"filament_id": "GF_ANEF",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"30"
],
"eng_plate_temp_initial_layer": [
"30"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"600"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"82"
],
"filament_density": [
"1.1"
],
"filament_deretraction_speed": [
"40",
"40"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"1",
"1"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"3.9",
"5"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.7 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"0",
"0"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"1",
"1"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"nil",
"nil"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth TPU EasyFlex"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"TPU"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"35"
],
"hot_plate_temp_initial_layer": [
"35"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"240",
"240"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"250"
],
"nozzle_temperature_range_low": [
"230"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"10"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"35"
],
"textured_plate_temp_initial_layer": [
"35"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,339 @@
{
"type": "filament",
"name": "addnorth TPU Pro Matte 85A",
"inherits": "Generic TPU @base",
"from": "system",
"setting_id": "GF_ANTA_00",
"filament_id": "GF_ANTA",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"30"
],
"cool_plate_temp_initial_layer": [
"30"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"30"
],
"eng_plate_temp_initial_layer": [
"30"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"600"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"82"
],
"filament_density": [
"1.1"
],
"filament_deretraction_speed": [
"nil",
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"1",
"1"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"3.2",
"5"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.2 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"0",
"0"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"1",
"1"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"40",
"40"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth TPU Pro Matte 85A"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"TPU"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"35"
],
"hot_plate_temp_initial_layer": [
"35"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"250",
"250"
],
"nozzle_temperature_initial_layer": [
"250",
"250"
],
"nozzle_temperature_range_high": [
"250"
],
"nozzle_temperature_range_low": [
"230"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"10"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"35"
],
"textured_plate_temp_initial_layer": [
"35"
],
"version": "2.0.0.77"
}

View File

@@ -0,0 +1,340 @@
{
"type": "filament",
"name": "addnorth TPU Pro Matte 95A",
"inherits": "Generic TPU @base",
"from": "system",
"setting_id": "GF_ANTM_00",
"filament_id": "GF_ANTM",
"instantiation": "true",
"activate_air_filtration": [
"0"
],
"additional_cooling_fan_speed": [
"70"
],
"chamber_temperatures": [
"0"
],
"circle_compensation_speed": [
"200"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle",
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle",
"Bambu Lab H2D 0.4 nozzle",
"Bambu Lab H2D 0.6 nozzle",
"Bambu Lab H2D 0.8 nozzle",
"Bambu Lab H2D Pro 0.4 nozzle",
"Bambu Lab H2D Pro 0.6 nozzle",
"Bambu Lab H2D Pro 0.8 nozzle",
"Bambu Lab H2S 0.4 nozzle",
"Bambu Lab H2S 0.6 nozzle",
"Bambu Lab H2S 0.8 nozzle",
"Bambu Lab P2S 0.4 nozzle",
"Bambu Lab P2S 0.6 nozzle",
"Bambu Lab P2S 0.8 nozzle",
"Bambu Lab X2D 0.2 nozzle",
"Bambu Lab X2D 0.4 nozzle",
"Bambu Lab X2D 0.6 nozzle",
"Bambu Lab X2D 0.8 nozzle"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"counter_coef_1": [
"0"
],
"counter_coef_2": [
"0.008"
],
"counter_coef_3": [
"-0.041"
],
"counter_limit_max": [
"0.033"
],
"counter_limit_min": [
"-0.035"
],
"default_filament_colour": [
""
],
"diameter_limit": [
"50"
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"30"
],
"eng_plate_temp_initial_layer": [
"30"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_adhesiveness_category": [
"600"
],
"filament_change_length": [
"10"
],
"filament_cost": [
"82"
],
"filament_density": [
"1.1"
],
"filament_deretraction_speed": [
"40",
"40"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode \n"
],
"filament_extruder_variant": [
"Direct Drive Standard"
],
"filament_flow_ratio": [
"1",
"1"
],
"filament_is_support": [
"0"
],
"filament_long_retractions_when_cut": [
"nil",
"nil"
],
"filament_max_volumetric_speed": [
"3.9",
"5"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_notes": "File Version:2.3 - V.Pack:18_05_2026",
"filament_pre_cooling_temperature": [
"0",
"0"
],
"filament_prime_volume": [
"45"
],
"filament_ramming_travel_time": [
"0",
"0"
],
"filament_ramming_volumetric_speed": [
"-1",
"-1"
],
"filament_retract_before_wipe": [
"nil",
"nil"
],
"filament_retract_restart_extra": [
"nil",
"nil"
],
"filament_retract_when_changing_layer": [
"0",
"0"
],
"filament_retraction_distances_when_cut": [
"nil",
"nil"
],
"filament_retraction_length": [
"1",
"1"
],
"filament_retraction_minimum_travel": [
"nil",
"nil"
],
"filament_retraction_speed": [
"40",
"40"
],
"filament_scarf_gap": [
"15%"
],
"filament_scarf_height": [
"10%"
],
"filament_scarf_length": [
"10"
],
"filament_scarf_seam_type": [
"none"
],
"filament_settings_id": [
"addnorth TPU Pro Matte 95A"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}"
],
"filament_type": [
"TPU"
],
"filament_vendor": [
"addnorth"
],
"filament_wipe": [
"nil",
"nil"
],
"filament_wipe_distance": [
"nil",
"nil"
],
"filament_z_hop": [
"nil",
"nil"
],
"filament_z_hop_types": [
"nil",
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hole_coef_1": [
"0"
],
"hole_coef_2": [
"-0.008"
],
"hole_coef_3": [
"0.23415"
],
"hole_limit_max": [
"0.22"
],
"hole_limit_min": [
"0.088"
],
"hot_plate_temp": [
"35"
],
"hot_plate_temp_initial_layer": [
"35"
],
"impact_strength_z": [
"10"
],
"nozzle_temperature": [
"240",
"240"
],
"nozzle_temperature_initial_layer": [
"235",
"235"
],
"nozzle_temperature_range_high": [
"250"
],
"nozzle_temperature_range_low": [
"230"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_threshold_participating_cooling": [
"95%"
],
"pre_start_fan_time": [
"2"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"10"
],
"slow_down_min_speed": [
"10"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"temperature_vitrification": [
"50"
],
"textured_plate_temp": [
"35"
],
"textured_plate_temp_initial_layer": [
"35"
],
"version": "2.0.0.77"
}

Binary file not shown.

Binary file not shown.

View File

@@ -1,6 +1,6 @@
{
"name": "Blocks",
"version": "02.04.00.01",
"version": "02.04.00.02",
"force_update": "0",
"description": "Blocks configurations",
"machine_model_list": [

View File

@@ -85,10 +85,8 @@
"BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle",
"BLOCKS RF50"
"BLOCKS RF50 0.8 nozzle"
]
}

View File

@@ -85,10 +85,8 @@
"BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle",
"BLOCKS RF50"
"BLOCKS RF50 0.8 nozzle"
]
}

View File

@@ -85,10 +85,8 @@
"BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle",
"BLOCKS RF50"
"BLOCKS RF50 0.8 nozzle"
]
}

View File

@@ -91,10 +91,8 @@
"BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle",
"BLOCKS RF50"
"BLOCKS RF50 0.8 nozzle"
]
}

View File

@@ -16,10 +16,8 @@
"BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle",
"BLOCKS RF50"
"BLOCKS RF50 0.8 nozzle"
]
}

View File

@@ -16,10 +16,8 @@
"BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle",
"BLOCKS RF50"
"BLOCKS RF50 0.8 nozzle"
]
}

View File

@@ -87,14 +87,11 @@
"BLOCKS Pro S100 0.8 nozzle",
"BLOCKS Pro S100 1.0 nozzle",
"BLOCKS Pro S100 1.2 nozzle",
"BLOCKS Pro S100",
"BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle",
"BLOCKS RF50"
"BLOCKS RF50 0.8 nozzle"
]
}

View File

@@ -22,10 +22,8 @@
"BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle",
"BLOCKS RF50"
"BLOCKS RF50 0.8 nozzle"
]
}

View File

@@ -45,14 +45,11 @@
"BLOCKS Pro S100 0.8 nozzle",
"BLOCKS Pro S100 1.0 nozzle",
"BLOCKS Pro S100 1.2 nozzle",
"BLOCKS Pro S100",
"BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle",
"BLOCKS RF50"
"BLOCKS RF50 0.8 nozzle"
]
}

View File

@@ -16,10 +16,8 @@
"BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle",
"BLOCKS RF50"
"BLOCKS RF50 0.8 nozzle"
]
}

View File

@@ -60,14 +60,11 @@
"BLOCKS Pro S100 0.8 nozzle",
"BLOCKS Pro S100 1.0 nozzle",
"BLOCKS Pro S100 1.2 nozzle",
"BLOCKS Pro S100",
"BLOCKS RD50 V2 0.4 nozzle",
"BLOCKS RD50 V2 0.6 nozzle",
"BLOCKS RD50 V2 0.8 nozzle",
"BLOCKS RD50 V2",
"BLOCKS RF50 0.4 nozzle",
"BLOCKS RF50 0.6 nozzle",
"BLOCKS RF50 0.8 nozzle",
"BLOCKS RF50"
"BLOCKS RF50 0.8 nozzle"
]
}

View File

@@ -10,7 +10,6 @@
"top_shell_layers": "6",
"top_solid_infill_flow_ratio": "0.96",
"compatible_printers": [
"BLOCKS RD50 V2",
"BLOCKS RD50 V2 0.4 nozzle"
]
}

View File

@@ -10,7 +10,6 @@
"bottom_shell_layers": "6",
"top_shell_layers": "6",
"compatible_printers": [
"BLOCKS RF50",
"BLOCKS RF50 0.4 nozzle"
],
"sparse_infill_speed": "300",

View File

@@ -10,7 +10,6 @@
"top_shell_layers": "5",
"top_solid_infill_flow_ratio": "0.96",
"compatible_printers": [
"BLOCKS RD50 V2",
"BLOCKS RD50 V2 0.4 nozzle"
]
}

View File

@@ -10,7 +10,6 @@
"bottom_shell_layers": "5",
"top_shell_layers": "5",
"compatible_printers": [
"BLOCKS RF50",
"BLOCKS RF50 0.4 nozzle"
],
"sparse_infill_speed": "300",

View File

@@ -10,7 +10,6 @@
"top_shell_layers": "4",
"top_solid_infill_flow_ratio": "0.96",
"compatible_printers": [
"BLOCKS RD50 V2",
"BLOCKS RD50 V2 0.6 nozzle"
]
}

Some files were not shown because too many files have changed in this diff Show More