Compare commits

..
Author SHA1 Message Date
Ian Chua cda25c3715 refactor: connect_printer api and dialog 2026-09-22 21:54:10 +08:00
Ian Chua 9e34ca536b fix: port BBL implementations from #15711 2026-09-22 21:11:03 +08:00
Ian Chua 201617a6c0 fix: guard DeviceManager command dispatch when no printer agent is bound 2026-09-22 21:09:58 +08:00
Ian Chua 2dcbee3d76 Merge branch 'main' into feat/printer-agent-infra 2026-09-22 20:55:29 +08:00
6183007c28 profile: Wondermaker - reorganize the ZR Ultra family and fix the Ultra S tool count (#15179)
* profile: reorganize the ZR Ultra family and fix the Ultra S tool count

- Adds a new fdm_ultra_common profile to hold all common ZR Ultra toolchanger attributes.
- The S variants are the base machines plus an enclosure heater and filtration, so each now inherits its matching ZR Ultra profile instead of duplicating the per-nozzle values
- Also fixes Ultra S 0.6 and 0.8 - original were declared a single nozzle_diameter entry, so OrcaSlicer treated four-tool machines as single-extruder.
- ZR Ultra S 0.8's retraction_minimum_travel now matches the base Ultra.
- nozzle_diameter stays declared on each S variant rather than inherited, even
  though the value is identical to its parent's. Several profile consumers read
  these files without resolving `inherits` -- the config wizard's loader and the
  web Profiles page among them -- and 1012 of the 1013 instantiated machine
  profiles in the tree declare it, so this is the format's expectation rather
  than redundancy. The same rule is enforced for filaments' compatible_printers
  by scripts/orca_extra_profile_check.py.

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

* fix errors

---------

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
Co-authored-by: SoftFever <103989404+SoftFever@users.noreply.github.com>
Co-authored-by: SoftFever <softfeverever@gmail.com>
2026-09-22 19:03:25 +08:00
Kiss Lorand b23953d7cf Fix missing runtime DLLs in Windows Install target (#15791)
fix: install all Windows runtime DLLs

Keep the runtime DLL list local while it is assembled.

The previous PARENT_SCOPE assignment exported the initial list before the OCCT DLLs were appended. CMake then created a local list containing only the appended OCCT entries, causing the generated Install manifest to omit GMP, MPFR, WebView2, FreeType, and FFmpeg DLLs.

Export the completed list only after all runtime DLLs have been added.
2026-09-22 07:37:35 -03:00
cfc6be5001 Eryone (#14797)
* add eryone config

* add eryone config

* add eryone config

* Add 13 Eryone filament presets for the Thinker X400 0.4 nozzle

Rework the stale author branch onto the current Eryone bundle. Main already ships
the Thinker X400, so the duplicate "Eryone Thinker X400" machine and process family
from the branch is dropped and the new filaments are pinned to the existing
"Thinker X400 0.4 nozzle" variant. Hand-typed setting_id/filament_id values are
replaced with generated ones, the bundle version is bumped, the stray .info sidecars
are removed, and Eryone PETG-CF's filament_settings_id is corrected to match its name.

* fix errors

---------

Co-authored-by: Eryone <technical@eryone.com>
Co-authored-by: SoftFever <softfeverever@gmail.com>
Co-authored-by: SoftFever <103989404+SoftFever@users.noreply.github.com>
2026-09-22 18:36:08 +08:00
HanifKoh 19e094a1d1 Move the Cube with the Wipe Tower in the Profile Validator (#15799)
The slice check centres its cube on the bed, puts the prime tower beside
it, then pulls the tower alone inside the printable outline. On a bed too
narrow for the estimated footprint that pull drags the tower back over
the cube: Volumic EXO42 IDRE MIRROR MODE (189 mm wide, 87.6 mm estimate)
logged "gcode path conflicts found between WipeTower and cube" in every
run, and three ~105 mm beds were left with 0.15 to 3.3 mm of clearance.

The cube and the tower's footprint are now pulled inside as one rigid
pair, so the clearance between them is fixed by construction. A bed too
small for the pair keeps the old placement, and presets that were never
clamped keep their exact layout.
2026-09-22 18:22:42 +08:00
Lam Wei Lun a2c631753b Capitalize Open Speed Dial menu title (#15822) 2026-09-22 17:37:34 +08:00
Lam Wei Lun 29b9076440 Capitalize Open Speed Dial 2026-09-22 17:07:13 +08:00
Ian Chua 323cd3afe1 Keep Python Printer Agent Exceptions Out of the Host (#15819)
# Description
<!--
> Please provide a summary of the changes made in this PR. Include
details such as:
  > * What issue does this PR address or fix?
  > * What new features or enhancements does this PR introduce?
> * Are there any breaking changes or dependencies that need to be
considered?
-->

A Python printer agent plugin could take the host down, and one of its
operations could never report its result. This PR fixes both in
`PrinterAgentPluginCapabilityTrampoline.hpp`.

## Changes

### A faulty printer agent no longer throws into the GUI

`IPrinterAgent` reports failure through return values, and none of its
callers catch. A Python `raise`, a missing override or a wrongly typed
return from a printer agent plugin therefore escaped the trampoline as a
C++ exception.

Every trampoline operation now catches, logs `Printer agent plugin
'<key>': <operation> failed: <error>`, and answers with what
`NetworkAgent` returns when no printer agent is set. `BBLPrinterAgent`
returns the same values when the Bambu plug-in is unavailable:

- `-1` for every `int` status code
- `false` for `start_discovery` and `fetch_filament_info`
- `""` for `get_user_selected_machine`
- an empty `AgentInfo` for `get_agent_info` (registration already
rejects an empty agent ID)
- `FilamentSyncMode::none` for `get_filament_sync_mode`

`ORCA_PY_AGENT_OVERRIDE(ret, name, ...)` derives the fallback from the
return type through `printer_agent_failure<ret>()`, so the call sites
carry no fallback values of their own.

An exception is the safety net for plugin bugs, not an error channel. A
plugin reports an expected failure by returning a code, as the Bambu
plug-in does. A raise is logged as a failure and collapses to the
generic `-1`, so the GUI shows the generic message instead of the
specific one (`-18` cancelled, `-4020` FTP upload failed, …).

### `bind_detect` results now reach the host

`detect` is an out-parameter (`detectResult&`). pybind11 casts a
reference argument to an override with a copy, so a plugin that filled
in `detect` wrote to a throwaway object and the host always saw an empty
`detectResult`. It is now passed so that Python edits the caller's
struct. Plugins see the same `DetectResult` argument as before.

## TODO

- Expose the `BAMBU_NETWORK_*` return codes to Python (the
`orca.printer_agent` binding and the generated stub from
`scripts/generate_orca_python_stubs.py`). Plugins can already return
them, but only as hard-coded numbers.

# Screenshots/Recordings/Graphs

<!--
> Please attach relevant screenshots to showcase the UI changes.
> Please attach images that can help explain the changes.
-->

## Tests

<!--
> Please describe the tests that you have conducted to verify the
changes made in this PR.
-->

- New `tests/slic3rutils/test_plugin_printer_agent.cpp`: an agent whose
operations raise, one that omits them, and one that returns the wrong
type all answer like a missing agent, and the interpreter stays usable.
A working agent's answers reach the host unchanged, including
`request_bind_ticket`'s out-param and the fields a plugin writes into
`bind_detect`'s `detect`.
- The `bind_detect` check failed before the fix (`"" == "192.168.0.2"`)
and passes after.
- `slic3rutils` passes under `ctest` (144/144); full Release build clean
on Linux.
- End to end on Linux with a test plugin whose chosen operations raise
(`start_discovery`, `get_filament_sync_mode`, `disconnect_printer`):
selecting the plugin's agent in the printer preset and switching back
logged each raise as a `Printer agent plugin '…': <operation> failed`
line, and the app kept running and closed cleanly (exit 0). Without the
guard, the first raise (`start_discovery`, on selecting the agent) ended
the app with `Uncaught exception` and SIGABRT (exit 134); that run used
a build whose printer-agent files are identical to `main`.

<!--
> A guide for users on how to download the artifacts from this PR.
-->

[How to Download Pull Requests Artifacts for
Testing](https://www.orcaslicer.com/wiki/how_to_download_pr_artifacts)
2026-09-22 16:57:55 +08:00
SoftFever 811b587eb0 Document filament color as a runtime property, not a preset
Add the one-all-printer-preset-per-product rule to the orca-profiles skill:
color is chosen at runtime, a material family is a new product and a color is
not, and CI does not catch per-color presets so it stays a review call. Note
that @System is the all-printer convention rather than an enforced check.
2026-09-22 14:55:08 +08:00
HanifKoh 2876374b45 Add a Dockable HTML Panel API for Plugins (#15736)
orca.host.ui.create_dock_panel(html, title, width, height, on_message,
on_close, dock) hosts plugin HTML in a pane of the Plater's dock manager,
next to the sidebar, and returns a UiDockPanel handle
(post/show/hide/close/is_open). The arguments follow create_window(). The
panel uses the window.orca bridge of plugin windows, restores its position
and size from the saved window layout, hides with the Plater off the Prepare
and Preview tabs when floating, and is closed with its plugin; plugin panes
are removed in MainFrame::shutdown().

The web view hosting moves out of PluginPage into a shared WebPanel base:
bootstrap page and swap to the plugin HTML, theme, element-default and
bridge scripts, window.orca message parsing, delivery to the page, and live
re-theming, also re-applied on every load after the swap. Pages tabs and
docked panels both derive from it. Pages tabs now re-theme in place on a
theme change instead of being reloaded, and a window.orca call a host does
not support is logged.

What the hosts share no longer lives in one of them: the bootstrap page, the
base URL and the plugin-window bridge move to Widgets/WebHosting, used by
WebDialog and WebPanel alike. The Plater restores plugin panes with a new
saved-layout parser, GUI/AuiPaneLayout, kept in its own small header so
slic3rutils can test it without pulling in the Plater.

The web hosting classes carry no plugin name, so other hosts can reuse them:
PluginWebDialog becomes WebDialog (its bootstrap page moves to
resources/web/dialog/WebDialog), and destroy_for_plugin(),
load_plugin_content() and plugin_defaults_user_script() become
destroy_silently(), load_page_html() and element_defaults_user_script().

Includes a sample plugin (sandboxes/orca_dock_panel_plugin_any.py) and
binding and layout-helper tests in slic3rutils.
2026-09-22 14:52:25 +08:00
Lam Wei Lun f769a39b7f Remove duplicated Open speed dial option in menubar in macOS (#15817) 2026-09-22 14:46:25 +08:00
Lam Wei Lun adbeefd424 Merge branch 'main' into feat/speed_dial_macos_fix 2026-09-22 14:17:50 +08:00
Lam Wei Lun 423e7b1dbd Remove duplicated speed dial menu on macOS 2026-09-22 14:16:48 +08:00
b0ee2cbbef Add PlastAR (PLA) and Printalot (ABS) filament vendors (#14825)
* Add PlastAR and Printalot filament vendors

Two Argentine brands from Printalot: PlastAR (budget PLA) and Printalot
(ABS). Each has a tuned @base plus per-color presets covering the
manufacturer's color lineup.

PlastAR PLA: flow 0.98, 1.75 mm, nozzle 220 C (190-230), bed 60 C; 14 colors.
Printalot ABS: flow 0.94, density 1.05, retraction 0.2 mm, max volumetric
18 mm3/s, nozzle 250 C (240-270), bed 100 C; 14 colors.

Per-color presets inherit their @base (no per-color parameter changes).
Passes scripts/orca_extra_profile_check.py.

* Ship PlastAR and Printalot as a single Printalot filament vendor

Place both Argentine lines in one OrcaFilamentLibrary/Printalot bundle and follow the library's brand shape: a non-selectable @base plus one all-printer @System per product, which is where a library preset meant for every printer belongs. The former per-color presets are dropped, leaving PlastAR PLA and Printalot ABS with their PLA and 250 C ABS material values. setting_ids are minted by the tooling; filament_ids resolve through the @base roots.

---------

Co-authored-by: SoftFever <103989404+SoftFever@users.noreply.github.com>
Co-authored-by: SoftFever <softfeverever@gmail.com>
2026-09-22 14:15:34 +08:00
55a0b51ae2 Add Polymaker PLA Pro filament profile (#15046)
* Add Polymaker PLA Pro filament profile

Polymaker PLA Pro is present in the tree only as printer-scoped variants
under Snapmaker U1 and Anycubic Kobra S1, so it is invisible to every other
printer. This adds it to the Orca Filament Library as OGFPM020 so it is
selectable generally.

Values are taken from the manufacturer's published print settings and
cross-checked against the two existing vendor profiles:

  density 1.23 g/cm3       both existing profiles agree
  softening 55 C           both existing profiles agree
  nozzle 220 C (210-230)   manufacturer's stated range
  max volumetric speed 15  Snapmaker 15, Anycubic 16

Flow ratio is set to 0.96, matching the Snapmaker profile. Worth noting for
review: the two existing profiles disagree here -- Snapmaker 0.96, Anycubic
0.85 -- because flow ratio depends on the extruder as much as the filament.
Any single value in a vendor-neutral preset is a starting point users should
calibrate; 0.96 is closer to the generic PLA baseline than 0.85 is.

setting_id assigned by scripts/assign_vendor_setting_ids.py.
OrcaFilamentLibrary version bumped 02.04.00.03 -> 02.04.00.04.

* fix errors

---------

Co-authored-by: SoftFever <103989404+SoftFever@users.noreply.github.com>
Co-authored-by: SoftFever <softfeverever@gmail.com>
2026-09-22 13:42:01 +08:00
Lam Wei Lun 9e42f59022 Remove ellipses and update translations (#15814)
# Description
- Remove ellipses from "Open speed dial" menu item
- Update translation files
2026-09-22 13:19:18 +08:00
Lam Wei Lun 5caa3372bc Remove ellipses and update translations 2026-09-22 12:39:53 +08:00
Ian Chua f27b0a1f9d Merge branch main into feat/printer-agent-infra 2026-09-22 12:11:40 +08:00
Kris Austin 824b216f18 feat(gui): assignable keyboard shortcuts (#15706) 2026-09-21 17:36:04 -03:00
Ian Bassi bfe458507b Add X-Ray view mode to 3D viewport (#15770) 2026-09-21 14:23:32 -03:00
Tim Schneiderandyw4z b6bb1b92c9 Add Meltingplot vendor profiles (CHX 350 + MBL series) (#14756)
* Add Meltingplot vendor profiles (CHX 350 + MBL series)

Adds the Meltingplot vendor bundle with 5 printer models:
- CHX 350 (880x422x943, RepRapFirmware/Duet)
- MBL 133/136/308/480 (RepRapFirmware/Duet)

Each model ships 0.4/0.6/0.8/1.0/1.2 nozzle variants. Layer height
presets span 40-60% of the nozzle diameter and deliberately avoid
heights that divide the Z screw lead evenly (CHX: 1204 ball screw,
4 mm lead; MBL: TR4x2 trapezoidal screw, 8 mm lead) so periodic
screw error does not repeat as banding.

All printers use 2.85 mm filament, so the bundle carries its own
filament library (PLA, StoneFil, ABS, TitanX, ASA, PETG, PA6 CF HT,
STYX 12, PP 9-2, PET-CF15, Extrudr PLA NX2 Matt, Igus iglidur J260)
with the 2.85 mm diameter pinned once in the vendor-local
fdm_filament_common base.

Machine limits mirror the printers' firmware configuration; machine
limit emission is disabled so the values only feed the time estimator.

* Add per-nozzle volumetric flow limits and nozzle size in filename

Cap filament volumetric speed per nozzle (0.4: 14, 0.6: 20, 0.8: 26,
1.0: 30, 1.2: 40 mm3/s). Filaments whose limit exceeds a nozzle's
capability get a nozzle-scoped child profile that only lowers
filament_max_volumetric_speed; filament_id is inherited so all nozzle
variants remain the same material.

Also include layer height and nozzle diameter in the g-code filename.

* Set CHX 350 machine time cost to 5 EUR/h

* Inherit Meltingplot filaments from OrcaFilamentLibrary generics

Per the profile creation guide, vendor filament profiles now inherit
from Generic * @System instead of vendor-local fdm_filament_* copies.
Each profile carries only Meltingplot-specific deviations plus the
2.85 mm filament diameter; the seven local fdm_filament_* base files
are removed.

Deliberate pins where the library default would change tuned behavior:
- PLA/ABS/TitanX keep filament_max_volumetric_speed 20 (0.6 nozzle cap)
- ABS/PET-CF15 keep close_fan_the_first_x_layers 1
- STYX 12 sets required_nozzle_HRC 0 (unfilled PA12, density 1.02)

* Remove Meltingplot StoneFil filament profile

* Meltingplot ABS: use library fan settings

* Meltingplot TitanX/ABS: use library fan and nozzle temperature settings

* Remove STYX 12, PP 9-2 and Igus iglidur J260 filament profiles

* Meltingplot ASA: use library fan_max_speed

* Derive per-nozzle volumetric speed caps from physical limit formula

Caps now follow V = 34*d * m / S: the 34*d limit line calibrated on
Micro Swiss Volcano plated copper at 2.85 mm, material factor m from
the OrcaFilamentLibrary generic ratios (PLA/ABS/ASA 1.0, PETG 10/12,
PETG-CF 11.5/12, PA-CF 8/12, PLA Matte 11/12), safety factor S = 1.25
covering batch/moisture/wear/diameter tolerances.

Each material base now serves the 1.2 nozzle at its maximum cap;
children @0.4-@1.0 lower the cap per nozzle. Machine variant
default_filament_profile entries point at the matching preset.

* Scale slow_down_layer_time per nozzle from bead cross-section

Minimum layer time follows the derived cooling rule: heat per layer
scales with bead cross-section (layer height x line width), so the
0.8-nozzle-tuned values are scaled by q(d)/q(0.8) using each nozzle's
standard preset geometry. Bases carry the 1.2 value, children @0.4-@1.0
their nozzle-specific value.

* Meltingplot: lift Z above the print before the end macro

Add a G90 / G1 Z{min(max_layer_z + 5, printable_height)} F600 move at the
start of machine_end_gcode, before M98 print_end shuts the printer down and
parks it. Besides clearing the part, the explicit Z coordinate lets the Duet
file-info parser pick up the object height.

* Meltingplot: cap default layer height at 40% of outer wall width

A 45 deg slope shifts each bead outward by exactly one layer height. With
the Slic3r bead model (rectangle (w-h) x h plus half-circles of diameter h)
the flat contact band to the layer below is w - 2h, so the maximum
self-supporting angle is atan((w-h)/h). Support cannot compensate: the
stair tread at 45 deg is only h wide, far below one support line width, so
no support line ever fits underneath a single step.

All ten machine variants defaulted to h/w = 0.455..0.524, i.e. at or past
the h/w = 0.5 point where the flat contact vanishes. The 0.8 nozzle default
(0.44 mm at w = 0.84) reached atan(0.4/0.44) = 42.3 deg and failed on 45 deg
slopes even with support.

Default presets now satisfy h <= 0.40 * outer_wall_line_width, which leaves
one third of the bead's flat underside in contact at 45 deg and puts the
geometric limit at 56.3 deg. To keep the defaults on sensible ladder rungs,
outer wall width is widened where it was the binding constraint:
chx_small 110 -> 115%, chx_large 105 -> 110%, mbl_04 105 -> 115%.

Ladders are unchanged; the thicker rungs stay available for parts without
steep overhangs.

* Meltingplot PLA: raise slow_down_layer_time by calibration factor 1.5

Print feedback on CHX 350 with a 0.8 nozzle at 0.44 mm layer height showed
curling at the retraction points with the derived value of 25 s. There is no
cooling headroom left to trade: fdm_filament_pla pins fan_min_speed =
fan_max_speed = 100, and additional_cooling_fan_speed is inert because no
Meltingplot machine enables auxiliary_fan. Minimum layer time is the only
remaining lever; 35 s prints cleanly at that geometry.

The cross-section rule only fixes the ratios between nozzle sizes, so this
is a calibration of the PLA anchor itself: both PLA ladders are scaled by
1.5 (Extrudr 9/20/38/56/83 s, Meltingplot PLA 8/17/30/45/66 s for
0.4/0.6/0.8/1.0/1.2). The Extrudr base fan_cooling_layer_time goes 60 -> 100
so the 1.2-nozzle value stays below it.

Other materials are left unchanged - only the PLA anchor has a real
counter-example so far.

* Meltingplot: drop layer heights that cannot print 45 degree walls

A preset whose layer height exceeds ~45% of the outer wall line width has
less than ~6 degrees of reserve on a 45 degree wall (max self-supporting
angle atan((w-h)/h)), and support cannot compensate because the 45 degree
stair tread is only h wide - far below one support line. Those presets are
not usable in practice, so shipping them only invites failed prints.

Removes the 22 rungs above h/w = 0.45 and prunes them from the vendor
index. What remains per nozzle (default first):

  CHX 350   0.4: 0.18 | 0.6: 0.24 0.28 | 0.8: 0.32 0.36
            1.0: 0.44 0.48 | 1.2: 0.48 0.56
  MBL       0.4: 0.18 | 0.6: 0.24 0.28 | 0.8: 0.36 0.34
            1.0: 0.44 0.48 | 1.2: 0.48 0.56

The 0.4 nozzle keeps a single rung: 0.20 mm would qualify (h/w = 0.435) but
divides both screw leads evenly (4/0.20, 8/0.20) and stays excluded by the
Z-artifact rule, and 0.22 is already at 0.478.

Also corrects the MBL 0.8 default to 0.36 mm, which at w = 0.92 sits at
h/w = 0.391 and therefore still satisfies the stricter 40% default rule.

* Meltingplot: require 5 degrees of reserve on 45 degree walls

Replaces the two separate thresholds (h <= 0.40 * outer wall width for
defaults, 0.45 for ladder rungs) with a single requirement stated on the
design constraint itself: every shipped preset must reach

  a_max = atan((w - h) / h) >= 50 deg

i.e. 5 degrees of reserve on a 45 degree wall, equivalent to
h <= 0.456 * outer_wall_line_width. The default is simply the thickest rung
that passes.

The 11 degrees the 40% rule produced were more margin than the failure mode
warrants, and cost throughput for no return. For calibration: across 940
machine defaults from 60 vendor bundles in this repo, the median reserve is
+1.8 deg, 71% ship less than 5 deg, and 8% cannot geometrically produce a
45 deg wall at all.

Adds the rungs the relaxed threshold makes available - 0.30 (0.6 nozzle,
both series) and 0.38 (0.8 nozzle, both series) - and restores the 0.30 mm
MBL preset removed in 5b4862b3 with its original setting_id. 0.20 mm on the
0.4 nozzle and 0.50 mm on the 1.0 nozzle would also qualify but stay
excluded because they divide both screw leads evenly.

Defaults are now (0.4/0.6/0.8/1.0/1.2) 0.18/0.30/0.38/0.48/0.56 for both
series, at 50.2 to 57.3 deg. The 1.2 nozzle deliberately keeps 0.56 rather
than the 0.60 the rule would allow: solidification time scales with h^2 and
bead weight with h*w, so the largest nozzle is the one that should not sit
on the minimum.

* Meltingplot: disable precise wall by default

Precise wall was inheriting OrcaSlicer's global default of true. Disable it
bundle-wide in the vendor process root so it applies to CHX 350 and all MBL
models. Note it was already ignored on the CHX small-nozzle branch, which
uses the inner-outer-inner wall sequence.

* Meltingplot CHX: raise max extruding acceleration to 6000

The 4000 limit silently clamped the profiles' 6000 values for default and
inner wall acceleration, since GCodeWriter caps print acceleration against
machine_max_acceleration_extruding regardless of emit_machine_limits_to_gcode.
Raising it to 6000 matches the X/Y limits so the configured values are emitted
as-is. The firmware's own M201 still governs what is actually driven.

* Meltingplot PA6 CF HT: raise part cooling floor to 40%

Sharp 90 degree corners were washing out layer by layer while straight walls
and overhangs printed cleanly. Overhangs are fine because overhang_fan_speed
forces 100% regardless of layer time; everything else fell back to
fan_min_speed, since at the layer times seen in practice neither branch of the
layer-time fan interpolation applies.

Raise fan_min_speed to 40% and set reduce_fan_stop_start_freq so that floor is
actually applied instead of dropping to zero. Also lower the auxiliary fan to
40% and raise the overhang cooling threshold to 95%, matching the values
validated on the print.

* Meltingplot: re-mint filament ids with orca_id_tool

Upstream now requires every filament_id to be a minted "OF" id derived
from the (filament_vendor, filament_type, name) triple and recorded in
scripts/filament_id_snapshot.json. The hand-made ids this bundle shipped
with (MPFPLA0, EXTNX2M, ...) were rejected by orca_extra_profile_check.

Regenerate them with "orca_id_tool.py --generate --vendor Meltingplot"
and record the result with --update-snapshot. No setting_id changed, and
the ids were never released, so no existing project file refers to them.

* Meltingplot: normalize bundle for updated profile checks

Drop obsolete keys (silent_mode, adaptive_layer_height, tree_support_with_infill) and rebuild the vendor index in canonical order, as orca_profile_tool.py normalize / update-index write them.

* Meltingplot: list per-nozzle filaments in default_materials

The unsuffixed filament presets only cover the 1.2 mm variants, so the 0.4-1.0 mm printer presets had no compatible entry in their model's default_materials. The validator's check_printer_default_materials rejects that, and load_installed_filaments would auto-install no filament for those variants on first run. Name the @0.4/0.6/0.8/1.0 nozzle presets alongside the base ones for PLA, PETG, ABS and ASA.

---------

Co-authored-by: yw4z <ywsyildiz@gmail.com>
2026-09-22 00:14:33 +08:00
61dbe5572f Add Flashforge Adventurer A5 printer profiles (#14733)
* Add Flashforge Adventurer A5 printer profiles

Adds system profiles for the Flashforge Adventurer A5 to the existing
Flashforge vendor: the machine model with 0.25/0.4/0.6/0.8 mm nozzle variants,
14 process presets, and 43 filament presets, plus the printer cover image.

All presets inherit from existing Flashforge bases already in-tree
(Adventurer 5M Pro nozzle profiles, AD5M Pro process/filament presets,
Flashforge generics); no new base assets are introduced (the A5 reuses the
existing 5M-series bed/hotend models and buildplate texture). Every inherits
reference and sub_path was validated to resolve.

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

* Assign setting_id to Adventurer A5 presets (fix profile check)

The new A5 filament and process presets were missing the deterministic
setting_id required by OrcaSlicer's profile validator. Generated via
scripts/assign_vendor_setting_ids.py (61 instantiated presets). Verified with
scripts/orca_extra_profile_check.py: 0 errors.

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

* Fix Flashforge Adventurer A5 profiles so the bundle loads and validates

The new A5 presets were not in canonical form, several filaments resolved
no or the wrong filament_id, and the model and machines pointed at
non-existent or AD5M Pro defaults. Run the standard profile tooling
(normalize, update-index, generate-id), give the branded filaments the ids
of their existing Flashforge products, and repoint the defaults at
A5-compatible filaments and processes. Bump the Flashforge bundle version.

---------

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-authored-by: yw4z <ywsyildiz@gmail.com>
Co-authored-by: SoftFever <103989404+SoftFever@users.noreply.github.com>
Co-authored-by: SoftFever <softfeverever@gmail.com>
2026-09-21 23:19:41 +08:00
2adb631d6f RH3D new printer and print profiles update (#14707)
* Update 0.25mm Standard @E3NG v1.2S.json

* Create 0.20mm Fast @Virtu E3.json

* Update 0.20mm Fast Virtu E3.json

* Create 0.20mm SLOW Virtu E3.json

* Update and rename 0.20mm Fast @Virtu E3.json to 0.20mm FAST @Virtu E3.json

* Update and rename 0.20mm Fast @E3NG v1.2S.json to 0.20mm FAST @E3NG v1.2S.json

* Update and rename 0.20mm Slow @E3NG v1.2S.json to 0.20mm SLOW @E3NG v1.2S.json

* Update and rename 0.20mm Standard @E3NG v1.2S.json to 0.20mm STANDARD @E3NG v1.2S.json

* Create 0.20mm STANDARD @VIRTU E3

* Update and rename 0.20mm FAST Virtu E3.json to 0.20mm FAST VIRTU E3.json

* Rename 0.20mm SLOW Virtu E3.json to 0.20mm SLOW VIRTU E3.json

* Update 0.20mm STANDARD @VIRTU E3

* Update 0.20mm STANDARD VIRTU E3

* Update and rename 0.25mm Fast @E3NG v1.2S.json to 0.25mm FAST @E3NG v1.2S.json

* Create 0.25mm FAST VIRTU E3

* Update and rename 0.15mm Standard @E3NG v1.2S.json to 0.15mm STANDARD @E3NG v1.2S.json

* Update and rename 0.10mm Standard @E3NG v1.2S.json to 0.10mm STANDARD @E3NG v1.2S.json

* Create 0.15mm STANDARD VIRTU E3

* Create 0.10mm STANDARD VIRTU E3.json

* Rename 0.15mm STANDARD @VIRTU E3 to 0.15mm STANDARD @VIRTU E3.json

* Update 0.15mm STANDARD VIRTU E3.json

* Update 0.20mm STANDARD VIRTU E3

* Update and rename 0.25mm FAST VIRTU E3 to 0.25mm FAST VIRTU E3.json

* Rename 0.20mm STANDARD VIRTU E3 to 0.20mm STANDARD VIRTU E3.json

* Update 0.15mm STANDARD VIRTU E3.json

* Update and rename 0.25mm Standard @E3NG v1.2S.json to 0.25mm STANDARD @E3NG v1.2S.json

* Create 0.25mm STANDARD VIRTU E3.json

* Create process_common_VIRTU E3.json

* Create process_FAST_VIRTU E3.json

* Update 0.20mm FAST VIRTU E3.json

* Update 0.25mm FAST VIRTU E3.json

* Create process_SLOW_VIRTU E3.json

* Update 0.20mm SLOW @VIRTU E3.json

* Update 0.20mm SLOW VIRTU E3.json

* Update and rename process_common_VIRTU E3.json to process_STANDARD_VIRTU E3.json

* Update 0.10mm STANDARD VIRTU E3.json

* Update 0.15mm STANDARD VIRTU E3.json

* Update 0.20mm STANDARD VIRTU E3.json

* Update 0.25mm STANDARD @VIRTU E3.json

* Update process_STANDARD_VIRTU E3.json

* Update 0.25mm STANDARD VIRTU E3.json

* Update 0.20mm STANDARD VIRTU E3.json

* Update 0.15mm STANDARD @VIRTU E3.json

* Update 0.10mm STANDARD VIRTU E3.json

* Update 0.15mm STANDARD VIRTU E3.json

* Update 0.20mm SLOW VIRTU E3.json

* Update RH3D.json

* Update RH3D.json

* Create VIRTU E3 - 0.2 nozzle.json

* Create VIRTU E3 - 0.3 nozzle.json

* Create VIRTU E3 - 0.4 nozzle.json

* Create VIRTU E3 - 0.5 nozzle.json

* Create VIRTU E3 - 0.6 nozzle.json

* Create VIRTU E3,json

* Update fdm_common_E3NG v1.2S.json

* Update fdm_machine_common.json

* Create fdm_common_VIRTU E3.json

* Create Generic ABS VIRTU E3.json

* Create Generic ASA @VIRTU E3.json

* Update Generic ASA VIRTU E3.json

* Create Generic PCCF VIRTU E3.json

* Create Generic PETG @VIRTU E3.json

* Create Generic PLA VIRTU E3.json

* Create Generic TPU VIRTU E3.json

* Update Generic ASA VIRTU E3.json

* Update Generic PETG VIRTU E3.json

* Update 0.20mm SLOW VIRTU E3.json

* Update 0.15mm STANDARD VIRTU E3.json

* Rename VIRTU E3,json to VIRTU E3.json

* Add files via upload

* Update VIRTU E3 - 0.2 nozzle.json

* Update E3NG v1.2S - 0.2 nozzle.json

* Update E3NG v1.2S - 0.3 nozzle.json

* Update E3NG v1.2S - 0.4 nozzle.json

* Update E3NG v1.2S - 0.5 nozzle.json

* Update E3NG v1.2S - 0.6 nozzle.json

* Update 0.10mm STANDARD @E3NG v1.2S.json

* Update 0.15mm STANDARD @E3NG v1.2S.json

* Update 0.20mm STANDARD @E3NG v1.2S.json

* Update 0.25mm STANDARD @E3NG v1.2S.json

* Delete resources/profiles/RH3D/VIRTU-bed.stl

* Update fdm_common_VIRTU E3.json

* Add files via upload

* Delete resources/profiles/RH3D/E3NG-bed-texture.svg

* Add files via upload

* Delete resources/profiles/RH3D/VIRTU E3_cover.png

* Add files via upload

* Add files via upload

* Create process_STANDARD_E3NG.json

* Create process_SLOW_E3NG.json

* Update and rename process_STANDARD_E3NG.json to process_STANDARD_E3NG v1.2S.json

* Update and rename process_SLOW_E3NG.json to process_SLOW_E3NG v1.2S.json

* Create process_FAST_E3NG v1.2S.json

* Update 0.25mm STANDARD @E3NG v1.2S.json

* Update 0.20mm STANDARD @E3NG v1.2S.json

* Update 0.15mm STANDARD @E3NG v1.2S.json

* Update 0.10mm STANDARD @E3NG v1.2S.json

* Update 0.20mm SLOW @E3NG v1.2S.json

* Update 0.20mm FAST @E3NG v1.2S.json

* Update 0.25mm FAST @E3NG v1.2S.json

* Update 0.20mm STANDARD @E3NG v1.2S.json

* Update 0.20mm STANDARD VIRTU E3.json

* Delete resources/profiles/RH3D/process/process_common_E3NG v1.2S.json

* Update RH3D.json

* Update fdm_process_common.json

* Update fdm_filament_common.json

* Update fdm_filament_abs.json

* Update fdm_filament_abs.json

* Update fdm_filament_asa.json

* Update fdm_filament_pccf.json

* Update fdm_filament_petg.json

* Update fdm_filament_pla.json

* Update fdm_process_common.json

* Update fdm_common_VIRTU E3.json

update speeds

* Update fdm_common_E3NG v1.2S.json

update speeds

* Update fdm_process_common.json

fix accel_to_decel

* Update fdm_machine_common.json

fix speed profile output

* Create 0.10mm SLOW @E3NG v1.2S.json

* Create 0.10mm FAST @E3NG v1.2S.json

* Create 0.15mm FAST @E3NG v1.2S.json

* Create 0.15mm SLOW @E3NG v1.2S.json

* Create 0.25mm SLOW @E3NG v1.2S.json

* Create 0.10mm SLOW VIRTU E3.json

* Create 0.10mm FAST VIRTU E3.json

* Create 0.15mm SLOW VIRTU E3.json

* Create 0.15mm FAST VIRTU E3.json

* Create 0.25mm SLOW VIRTU E3.json

* Update RH3D.json

add more slow and fast profiles

* Update 0.20mm FAST @E3NG v1.2S.json

* Update 0.20mm SLOW @E3NG v1.2S.json

* Update 0.20mm FAST @VIRTU E3.json

* Update 0.20mm SLOW @VIRTU E3.json

* Update fdm_process_common.json

* Update fdm_process_common.json

* Update Generic ABS @VIRTU E3.json

* Update Generic ABS VIRTU E3.json

* Update Generic PCCF VIRTU E3.json

* Update Generic PETG VIRTU E3.json

* Update Generic PLA VIRTU E3.json

* Update Generic ASA VIRTU E3.json

* Update Generic TPU VIRTU E3.json

* Update 0.20mm SLOW @E3NG v1.2S.json

* Update 0.25mm SLOW @E3NG v1.2S.json

* Update 0.15mm FAST @VIRTU E3.json

* Update 0.20mm FAST VIRTU E3.json

* Update 0.20mm STANDARD @E3NG v1.2S.json

* Update 0.15mm SLOW @E3NG v1.2S.json

* Update 0.25mm STANDARD @VIRTU E3.json

* Update 0.20mm STANDARD VIRTU E3.json

* Update 0.20mm FAST @E3NG v1.2S.json

* Update 0.25mm FAST VIRTU E3.json

* Update 0.10mm FAST VIRTU E3.json

* Update 0.10mm SLOW VIRTU E3.json

* Update 0.15mm SLOW VIRTU E3.json

* Update 0.20mm SLOW VIRTU E3.json

* Update 0.25mm FAST @E3NG v1.2S.json

* Update 0.10mm SLOW @E3NG v1.2S.json

* Update 0.10mm STANDARD @E3NG v1.2S.json

* Update 0.15mm STANDARD @VIRTU E3.json

* Update 0.25mm STANDARD @E3NG v1.2S.json

* Update 0.15mm STANDARD @E3NG v1.2S.json

* Update 0.25mm SLOW @VIRTU E3.json

* Update 0.10mm STANDARD VIRTU E3.json

* Update 0.15mm FAST @E3NG v1.2S.json

* Update 0.10mm FAST @E3NG v1.2S.json

* Update VIRTU E3 - 0.4 nozzle.json

* Update VIRTU E3 - 0.5 nozzle.json

* Update VIRTU E3 - 0.6 nozzle.json

* Update VIRTU E3 - 0.3 nozzle.json

* Update VIRTU E3 - 0.2 nozzle.json

* Replace cover PNGs for edge to edge images

* Update 0.10mm STANDARD @E3NG v1.2S.json

added alias with previous name

* Update 0.10mm STANDARD @E3NG v1.2S.json

update aliases

* Update and rename 0.10mm STANDARD @E3NG v1.2S.json to 0.10mm Standard @E3NG v1.2S.json

* Update RH3D.json

update naming

* Update and rename 0.10mm FAST @E3NG v1.2S.json to 0.10mm Fast @E3NG v1.2S.json

* Update and rename 0.10mm FAST VIRTU E3.json to 0.10mm Fast VIRTU E3.json

* Update and rename 0.15mm FAST @E3NG v1.2S.json to 0.15mm Fast @E3NG v1.2S.json

* Update and rename 0.15mm FAST VIRTU E3.json to 0.15mm Fast VIRTU E3.json

* Update and rename 0.20mm FAST @E3NG v1.2S.json to 0.20mm Fast @E3NG v1.2S.json

* Update and rename 0.20mm FAST VIRTU E3.json to 0.20mm Fast VIRTU E3.json

* Update and rename 0.25mm FAST @E3NG v1.2S.json to 0.25mm Fast @E3NG v1.2S.json

* Update and rename 0.25mm FAST @VIRTU E3.json to 0.25mm Fast @VIRTU E3.json

* Update and rename process_FAST_E3NG v1.2S.json to process_Fast_E3NG v1.2S.json

* Update and rename process_FAST_VIRTU E3.json to process_Fast_VIRTU E3.json

* Update and rename 0.10mm SLOW @E3NG v1.2S.json to 0.10mm Slow @E3NG v1.2S.json

* Update and rename 0.10mm SLOW @VIRTU E3.json to 0.10mm Slow @VIRTU E3.json

* Update and rename 0.15mm SLOW @E3NG v1.2S.json to 0.15mm Slow @E3NG v1.2S.json

* Update and rename 0.20mm SLOW @E3NG v1.2S.json to 0.20mm Slow @E3NG v1.2S.json

* Update and rename 0.15mm SLOW VIRTU E3.json to 0.15mm Slow VIRTU E3.json

* Update and rename 0.20mm SLOW @VIRTU E3.json to 0.20mm Slow @VIRTU E3.json

* Update and rename 0.25mm SLOW @E3NG v1.2S.json to 0.25mm Slow @E3NG v1.2S.json

* Update and rename 0.25mm SLOW @VIRTU E3.json to 0.25mm Slow @VIRTU E3.json

* Update and rename process_SLOW_E3NG v1.2S.json to process_Slow_E3NG v1.2S.json

* Update and rename process_SLOW_VIRTU E3.json to process_Slow_VIRTU E3.json

* Update and rename 0.10mm STANDARD @VIRTU E3.json to 0.10mm Standard @VIRTU E3.json

* Update and rename 0.15mm STANDARD @E3NG v1.2S.json to 0.15mm Standard @E3NG v1.2S.json

* Update and rename 0.20mm STANDARD @E3NG v1.2S.json to 0.20mm Standard @E3NG v1.2S.json

* Update and rename 0.15mm STANDARD @VIRTU E3.json to 0.15mm Standard @VIRTU E3.json

* Update and rename 0.20mm STANDARD @VIRTU E3.json to 0.20mm Standard @VIRTU E3.json

* Update and rename 0.25mm STANDARD @E3NG v1.2S.json to 0.25mm Standard @E3NG v1.2S.json

* Update and rename 0.25mm STANDARD VIRTU E3.json to 0.25mm Standard VIRTU E3.json

* Update and rename process_STANDARD_E3NG v1.2S.json to process_Standard_E3NG v1.2S.json

* Update and rename process_STANDARD_VIRTU E3.json to process_Standard_VIRTU E3.json

* Update E3NG v1.2S - 0.2 nozzle.json

* Update E3NG v1.2S - 0.3 nozzle.json

* Update E3NG v1.2S - 0.4 nozzle.json

* Update E3NG v1.2S - 0.5 nozzle.json

* Update E3NG v1.2S - 0.6 nozzle.json

* Update VIRTU E3 - 0.2 nozzle.json

* Update VIRTU E3 - 0.3 nozzle.json

* Update VIRTU E3 - 0.4 nozzle.json

* Update VIRTU E3 - 0.5 nozzle.json

* Update VIRTU E3 - 0.6 nozzle.json

* Update 0.15mm Slow @E3NG v1.2S.json

* Update 0.10mm Fast VIRTU E3.json

* Update 0.20mm Slow VIRTU E3.json

* Update 0.10mm Standard @E3NG v1.2S.json

* Update 0.10mm Fast @E3NG v1.2S.json

* Update 0.25mm Standard @E3NG v1.2S.json

* Update 0.15mm Standard @E3NG v1.2S.json

* Update 0.15mm Standard VIRTU E3.json

* Update 0.20mm Standard VIRTU E3.json

* Update 0.20mm Standard @E3NG v1.2S.json

* Update 0.25mm Slow VIRTU E3.json

* Update 0.25mm Fast @E3NG v1.2S.json

* Update 0.20mm Slow @E3NG v1.2S.json

* Update 0.10mm Slow VIRTU E3.json

* Update 0.25mm Slow @E3NG v1.2S.json

* Update 0.25mm Standard VIRTU E3.json

* Update 0.10mm Standard VIRTU E3.json

* Update 0.20mm Fast @E3NG v1.2S.json

* Update 0.10mm Slow @E3NG v1.2S.json

* Update 0.15mm Fast @E3NG v1.2S.json

* Update 0.15mm Fast VIRTU E3.json

* Update 0.15mm Slow VIRTU E3.json

* Update 0.20mm Fast VIRTU E3.json

* Update 0.25mm Fast VIRTU E3.json

* Update fdm_machine_common.json

* Profile verification/fix

Fixing profiles with orca_profile_tool.py

* bump version

---------

Co-authored-by: yw4z <ywsyildiz@gmail.com>
Co-authored-by: SoftFever <103989404+SoftFever@users.noreply.github.com>
Co-authored-by: SoftFever <softfeverever@gmail.com>
2026-09-21 22:02:31 +08:00
İlker Kara 1e038bfc53 fix(linux): build deps on older GCC and Ubuntu 22.04 (#15151)
- GMP: name the parameters in the configure probe from
  0001-GMP_GCC15.patch. Unnamed parameters are a hard error on GCC 10
  and older, so configure failed there.
- TBB: turn off the automatic hwloc search so a system libhwloc-dev is
  not picked up.
- scripts/linux.d/debian: run apt update before checking which
  webkit2gtk package exists, and prefer webkit2gtk-4.1 since the build
  requires it. Add automake, which MPFR's autoreconf needs.
2026-09-21 09:36:55 -03:00
barmanr cdcef47e3d test: bump OrcaArena profile version for OTA retry (#15798)
Merged by /bot merge on behalf of @barmanr (id 281100727).
Grants: resources/profiles/OrcaArena, resources/profiles/OrcaArena.json
Head: 32113de7fd
2026-09-21 11:10:10 +00:00
Ian Chua cf1c164546 feat: add printer-agent.md doc to HLSD 2026-09-21 18:40:24 +08:00
Ian Chua 4f8a31e9db fix: run post_merge_profiles.yml after bot merges PR. (#15797)
# Description

<!--
> Please provide a summary of the changes made in this PR. Include
details such as:
  > * What issue does this PR address or fix?
  > * What new features or enhancements does this PR introduce?
> * Are there any breaking changes or dependencies that need to be
considered?
-->
When a PR is merged using the bot with `/bot merge`, it doesn't invoke
`post_merge_profiles.yml` because post_merge_profiles.yml only starts on
a push or manual dispatch.

# Screenshots/Recordings/Graphs

<!--
> Please attach relevant screenshots to showcase the UI changes.
> Please attach images that can help explain the changes.
-->

## Tests

<!--
> Please describe the tests that you have conducted to verify the
changes made in this PR.
-->

<!--
> A guide for users on how to download the artifacts from this PR.
-->

[How to Download Pull Requests Artifacts for
Testing](https://www.orcaslicer.com/wiki/how_to_download_pr_artifacts)
2026-09-21 18:33:35 +08:00
Ian Chua ced4a31cdb Merge branch 'main' into fix/run-profiles-ci-after-bot-merge 2026-09-21 18:32:58 +08:00
peachismomo 8581df4a8a fix: update pr-merge-bot.yml to run post_merge_profiles.yml after merge 2026-09-21 18:30:25 +08:00
Byeon Ho cheol. 162cf7fd4c Update Cubicon profiles: filament/process tuning and xCeler-Mini compatibility (#14660) 2026-09-21 18:18:57 +08:00
peachismomo 09d67b1bb4 fix: remove some logging 2026-09-21 18:17:15 +08:00
barmanr 64cad00569 fix: update OrcaArena product URL (#15796)
Merged by /bot merge on behalf of @barmanr (id 281100727).
Grants: resources/profiles/OrcaArena, resources/profiles/OrcaArena.json
Head: 794db5d30d
2026-09-21 09:53:13 +00:00
SoftFever 45940a573d Grant pull-requests write so profile PR labels and the partner notice actually post 2026-09-21 17:13:44 +08:00
HanifKoh 8b63628cf9 Restore Plugin HTML After a WebKit Reload (#15737)
Plugin dialog content is injected with SetPage, so on the WebKit backends a
reload (context menu, keyboard shortcut or location.reload()) re-fetches the
SetPage base URL instead of the injected document, and the plugin UI is gone
for good: load_plugin_content() returned early once m_content_loaded was set.

Re-inject the plugin HTML when a main-frame load after the initial swap is
neither that swap nor a page the plugin linked to. m_own_page_load marks the
load our own SetPage caused, and the URL test recognises the reload: the
injected document and the directory a reload re-fetches both report the base
URL, so a load of any other URL is left alone. The test ignores a fragment the
page navigated to, and undoes the escaping the web view applies to what the
resources path holds.

A load reaching the base URL is not enough on its own, because WebKitGTK reports
a navigation that never committed against the document that stayed and then
finishes that document again: a link to a missing file therefore arrives as a
load of the base URL and reads exactly like a reload. So the re-injection also
requires a navigation to the base URL to have committed, which a reload always
does and a failure never does.

A bootstrap page that cannot be loaded is still not recovered from: WebKitGTK
substitutes a stock error page for it, and that load supersedes the swap
whichever way the swap is ordered around it. The file ships, so this is a
broken-install path; nothing here makes it worse than it already was.

No separate MSW path is needed: wxWebViewEdge ignores the SetPage base URL, so
its documents report about:blank and the test never matches there, and WebView2
reloads NavigateToString content from its own history entry anyway.
2026-09-21 17:09:05 +08:00
dremc c8bfd2ad3e Fix instantiation on DREMC Filament (#14659) 2026-09-21 16:53:16 +08:00
Alexander Haibl 3eae4c6997 fix-start-gcode for many creality printers (#14652) 2026-09-21 16:22:32 +08:00
gyarros 83eaf3bcfc FilAr PLA-mate: lower bed temperature to 50 C (#14489) 2026-09-21 16:07:49 +08:00
Davide Garberi 454ef1571b Update generic filament profiles for Creality SPARKX i7 (#14388) 2026-09-21 16:01:14 +08:00
Ian Chua bca8dd00dd Merge branch 'feat/printer-agent-infra' of https://github.com/OrcaSlicer/OrcaSlicer into feat/printer-agent-infra 2026-09-21 15:45:49 +08:00
Ian Chua 8b7f8cac82 fix: follow external-packages for flatpak libdatachannel deps & add flatpak path to use source_dir 2026-09-21 15:45:39 +08:00
Ian Chua aae03257ed Merge branch 'main' into feat/printer-agent-infra 2026-09-21 11:54:23 +08:00
Ian Chua 3fba237c9a fix: shift camera signaling channel to network agent 2026-09-21 11:48:16 +08:00
Ian Chua cfb6349695 fix: update printer agent plugin API 2026-09-21 11:46:36 +08:00
Ian Chua f53ad6993a fix: update windows ffmpeg prebuild 2026-09-21 11:02:20 +08:00
Ian Chua e168d900f2 fix: stop flatpak DataChannel build from re-cloning over the sandboxed network 2026-09-18 22:10:30 +08:00
Ian Chua bc03e3be2f fix: bump libdatachannel ver & update flatpak to use tar instead 2026-09-18 20:45:29 +08:00
Ian Chua f224b8e4a6 refactor: media controller playback routing and ownership 2026-09-18 13:36:46 +08:00
Ian Chua 8b479c9af3 fix: default impl for vendor agnostic gcode commansd 2026-09-17 18:46:56 +08:00
Ian Chua d8299c388e fix: regression bug, connecting to bambu needs bblp username 2026-09-17 18:44:54 +08:00
Ian Chua 4d85b6627e fix: wrap command_* with small wrapper 2026-09-17 12:51:17 +08:00
Ian Chua ee2b4ccf70 Merge branch 'main' into feat/printer-agent-infra 2026-09-16 22:32:32 +08:00
Ian Chua 753c793ea0 revert: filament sync work 2026-09-16 22:20:35 +08:00
Ian Chua 9c5494b19f fix: disable unused DataChannel media support 2026-09-16 22:08:53 +08:00
Ian Chua 93a119427a Merge branch main into feat/printer-agent-infra 2026-09-16 22:06:09 +08:00
Ian Chua d264fcaef4 fix: always build bundled DataChannel dep 2026-09-16 22:04:27 +08:00
Ian Chua b4ab6dedfd fix: move printer agent plugin tests into test_plugin_lifecycle.cpp 2026-09-16 21:33:04 +08:00
Ian Chua ed59f93456 fix: scope get_my_machine_list to printers listed under the current printer agent 2026-09-16 19:48:59 +08:00
Ian Chua cf52c81dcd fix: stop the correct media controller 2026-09-16 18:44:06 +08:00
Ian Chua 803a2a3239 fix: dedupe compatible printer type check 2026-09-16 17:18:59 +08:00
Ian Chua 985092bb46 fix: move non-mandatory printer agent function stubs to IPrinterAgent 2026-09-16 16:56:43 +08:00
Ian Chua cb16a2e547 feat: enable https camera stream mode 2026-09-16 16:24:29 +08:00
Ian Chua 2c2e91b629 fix: remove hardcoded ICE servers 2026-09-16 14:36:49 +08:00
Ian Chua c3faf903ca fix: use ORCA_CLOUD_PROVIDER instead of hardcoded string 2026-09-16 14:24:40 +08:00
Ian Chua 5f3c957597 fix: remove stale comment 2026-09-16 14:23:00 +08:00
Ian Chua 8557285389 fix: revert moonraker specific behavior 2026-09-16 14:21:09 +08:00
Ian Chua a9edab78a8 fix: inject provider, agent id and generation to get_user_print_info to ensure correct metadata 2026-09-16 14:15:24 +08:00
Ian Chua 79dede7d59 fix: change rtc log level 2026-09-16 14:14:21 +08:00
Ian Chua 2ac45b2f78 fix: invoke js clearInterval on WebMediaController::stop 2026-09-16 14:13:37 +08:00
Ian Chua b4f33e71e9 fix: add internal_developer_mode chekc back to MediaPlayCtrl::load() 2026-09-16 14:12:48 +08:00
Ian Chua 8c91cab971 fix(ci): add libdatachannel to flatpak manifest 2026-09-15 20:01:48 +08:00
Ian Chua 79077518e9 fix: re-include apply header guarded by ifdef __APPLE__ 2026-09-15 19:45:14 +08:00
Ian Chua 56aa348c89 fix(ci): set depends openssl 2026-09-15 18:16:50 +08:00
Lam Wei Lun ae1752fbf2 Resolve printer agent first before getting cloud printer agent 2026-09-15 18:02:02 +08:00
Ian Chua cf3f36a1c6 Merge branch 'feat/printer-agent-infra' of https://github.com/OrcaSlicer/OrcaSlicer into feat/printer-agent-infra 2026-09-15 17:37:57 +08:00
Ian Chua cca7d8adb1 fix(ci): deps build order for datachannel 2026-09-15 17:35:25 +08:00
Ian Chua 396d9ff51a Merge branch 'main' into feat/printer-agent-infra 2026-09-15 16:47:15 +08:00
Ian Chua 81540c81e0 Merge branch 'feat/printer-agent-infra' of https://github.com/OrcaSlicer/OrcaSlicer into feat/printer-agent-infra 2026-09-15 16:46:38 +08:00
Ian Chua e7ace6cc99 fix: unit tests & unused variables 2026-09-15 16:46:28 +08:00
Lam Wei Lun 79c20a1fad Guard libdatachannel. Remove unused code 2026-09-15 16:33:12 +08:00
Ian Chua e48f9f47d2 Revert "fix: parameterize orcaslicer_copy_test_dlls() for printer_agent_plugin_tests"
This reverts commit 2f566e3779.
2026-09-15 16:12:33 +08:00
Ian Chua 2f566e3779 fix: parameterize orcaslicer_copy_test_dlls() for printer_agent_plugin_tests 2026-09-15 16:08:10 +08:00
Ian Chua 37d1edf69a fix: printer agent virutal optional functions 2026-09-15 15:54:55 +08:00
Lam Wei Lun f1cf9c69b1 Log first before std::move 2026-09-15 15:49:15 +08:00
Lam Wei Lun 1df362888e Fixes nullptr deref 2026-09-15 15:47:48 +08:00
Ian Chua 4b2466b179 fix: uninitialized ams state blocking print 2026-09-15 14:40:04 +08:00
Ian Chua 3adcb3e953 fix: split infra from impl 2026-09-15 13:27:17 +08:00
Ian Chua 104dbb2140 fix: camera auto-play on startup 2026-09-14 16:17:17 +08:00
Ian Chua e482cbbdd7 fix: warnings 2026-09-14 14:56:34 +08:00
Ian Chua 2a5ddd9edb fix: warnings 2026-09-14 14:16:02 +08:00
Ian Chua c10f83cf61 Merge branch 'main' into feat/printer-agent-impl 2026-09-14 13:01:03 +08:00
Ian Chua 8eeec6935e Merge branch 'main' of https://github.com/OrcaSlicer/OrcaSlicer_priv into feat/printer-agent-impl 2026-09-14 12:53:04 +08:00
Ian Chua 131a2abf99 Merge pull request #138 from OrcaSlicer/feat/orca-printer-agent
feat: orca printer agent
2026-09-14 12:14:53 +08:00
peachismomo 9daecc59b4 temp: doc for intended change 2026-09-12 02:32:01 +08:00
peachismomo 58e000d842 feat: cloud download via HTTP 2026-09-12 02:31:27 +08:00
Ian Chua af6be5858e fix: cloud printers were using the wrong MQTT endpoint 2026-09-11 17:38:56 +08:00
Ian Chua 3fc7fd99d6 fix: shim layer for any compatibiliity changes 2026-09-10 21:55:31 +08:00
Ian Chua 3fe043651b fix: moonraker printer agent hang on printer power cut 2026-09-09 18:40:01 +08:00
Ian Chua b0b78c296c feat: check printer storage status before sending 2026-09-09 18:35:38 +08:00
Ian Chua 62791fabfa fix: revert sdcard check 2026-09-09 14:10:12 +08:00
Ian Chua b0ada2dee5 fix: ffmpeg http camera stream jittering due to incomplete frames 2026-09-09 13:40:51 +08:00
Ian Chua 8f4df1aa8c fix: model_id resolution method for non bambu printers 2026-09-09 13:40:24 +08:00
Ian Chua 5fec9b8d19 Merge pull request #139 from OrcaSlicer/feat/webrtc-impl
feat: webrtc implementation
2026-09-08 19:37:31 +08:00
Ian Chua 75ed5afbac Merge branch 'feat/orca-printer-agent' into feat/webrtc-impl 2026-09-08 19:31:14 +08:00
Ian Chua 01c553bad9 feat: LAN impl for Orca Printer Agent 2026-09-08 19:13:48 +08:00
Ian Chua a4376c77c3 Merge branch 'feat/orca-printer-agent' of https://github.com/OrcaSlicer/OrcaSlicer_priv into feat/orca-printer-agent 2026-09-08 12:06:25 +08:00
peachismomo c459994290 fix: connect via ip dialog 2026-09-08 04:40:12 +08:00
Ian Chua 3a0fda7d18 fix: make model_id/dev_type optional instead of blocking 2026-09-07 17:28:40 +08:00
Ian Chua eb8733f0f4 Merge branch 'feat/orca-printer-agent' into feat/webrtc-impl 2026-09-04 18:28:48 +08:00
Ian Chua 55acb940a8 Merge branch 'feat/printer-agent-impl' into feat/orca-printer-agent 2026-09-04 18:28:25 +08:00
Ian Chua 0d691403de Merge branch 'main' into feat/printer-agent-impl 2026-09-04 18:26:58 +08:00
Ian Chua 9b2b75a51d Merge branch 'feat/orca-printer-agent' into feat/webrtc-impl 2026-09-04 18:23:26 +08:00
Ian Chua 25da273ea0 Merge pull request #142 from OrcaSlicer/fix/orca-printer-agent-refactor
fix: orcaprinteragent refactor
2026-09-04 18:05:27 +08:00
Ian Chua dbcb82075f feat: use ffmpeg to render http camera stream 2026-09-04 16:42:36 +08:00
Ian Chua 2f82cfe40f fix: LAN paths and camera stream 2026-09-04 16:18:43 +08:00
Ian Chua 972031cf06 fix: orcaprinteragent refactor 2026-09-03 19:42:25 +08:00
Ian Chua 2a4792e762 feat: remove frame assembler and change config to set protocol 2026-09-02 15:59:13 +08:00
Ian Chua dd15ac6146 fix: cmake 2026-09-02 11:51:40 +08:00
Ian Chua b0469254bc Merge branch 'feat/orca-printer-agent' into feat/webrtc-impl 2026-09-01 19:24:04 +08:00
Ian Chua 2228589e16 Merge branch 'feat/printer-agent-impl' into feat/orca-printer-agent 2026-09-01 19:23:47 +08:00
Ian Chua 4d8480e1a1 fix: build 2026-09-01 19:21:23 +08:00
Ian Chua 4320cc78d9 feat: camera via webrtc 2026-09-01 18:59:20 +08:00
Ian Chua d9d9678a7e Merge branch 'feat/orca-printer-agent' into feat/webrtc-impl 2026-09-01 18:38:01 +08:00
Ian Chua d55a0bfec6 fix: build errors 2026-09-01 18:37:04 +08:00
Ian Chua 3b1017df51 Merge branch 'feat/orca-printer-agent' of https://github.com/OrcaSlicer/OrcaSlicer_priv into feat/orca-printer-agent 2026-09-01 18:17:23 +08:00
Ian Chua f5b81d2ffc Merge branch 'feat/webrtc-impl' of https://github.com/OrcaSlicer/OrcaSlicer_priv into feat/webrtc-impl 2026-09-01 18:16:20 +08:00
Ian Chua eb9cfe0ecb feat: connect to cloud printer and monitor 2026-09-01 18:15:53 +08:00
Ian Chua 1e8805d43d feat: connect to cloud printer and monitor 2026-09-01 18:15:53 +08:00
Ian Chua e8f089dfa4 fix: build & access code UI 2026-09-01 18:13:11 +08:00
Ian Chua 84e929ea24 feat: generic camera stream support for http snapshot and rtsp 2026-09-01 18:13:11 +08:00
Ian Chua abec603e73 fix: build & access code UI 2026-09-01 18:04:37 +08:00
Ian Chua 0ed19d4826 feat: generic camera stream support for http snapshot and rtsp 2026-09-01 18:02:53 +08:00
Ian Chua b747c13ef4 Merge branch 'feat/orca-printer-agent' of https://github.com/OrcaSlicer/OrcaSlicer_priv into feat/orca-printer-agent 2026-09-01 17:40:07 +08:00
Ian Chua 6a12aca495 feat: connect to cloud printer and monitor 2026-09-01 17:38:52 +08:00
Ian Chua d486db6459 Merge branch 'main' into feat/printer-agent-impl 2026-09-01 16:51:34 +08:00
Ian Chua fe777b8801 feat: printer agent impl 2026-09-01 16:49:04 +08:00
Ian Chua 1b3e206f34 feat: connect to cloud printer and monitor 2026-08-28 18:10:31 +08:00
Ian Chua 4df1607ec4 fix: clear up some unrelated changes 2026-08-28 16:45:01 +08:00
Ian Chua a0ec8bec8a fix: merge artifact 2026-08-27 15:08:06 +08:00
Ian Chua 36c362cbd2 Merge branch 'main' into feat/printer-agent-impl 2026-08-27 14:54:22 +08:00
Ian Chua 84fde32616 Merge branch 'main' into refactor/printer-agent-interface 2026-08-27 14:52:50 +08:00
Ian Chua 34e349e323 fix: snapmaker U1 SelectMachineDialog blocking print 2026-08-27 14:47:09 +08:00
Ian Chua 44941e571f fix: remove unused variable 2026-08-26 18:40:48 +08:00
Ian Chua 876d6e2499 fix: printer agent switching on preset change 2026-08-26 18:40:47 +08:00
Ian Chua 858b3024ff fix: tests 2026-08-26 12:04:02 +08:00
Ian Chua 6595557c34 fix: access codes regression 2026-08-25 18:32:02 +08:00
Ian Chua c729849843 cleanup moonraker and snapmaker printer agents 2026-08-25 16:39:08 +08:00
Ian Chua c0563be36e Merge branch 'feat/printer-agent-impl' of https://github.com/OrcaSlicer/OrcaSlicer into feat/printer-agent-impl 2026-08-25 14:47:12 +08:00
Ian Chua 462f8dce30 fix: remote do_fetch_filament_info from tests 2026-08-25 14:46:11 +08:00
Ian Chua b2a0485139 fix: defer filesystem and camera abstractions 2026-08-25 14:34:11 +08:00
Ian Chua f16071f083 fix: remove heavy includes from IPrinterAgent 2026-08-25 13:54:40 +08:00
Ian Chua a1505e9bed Merge branch 'main' into refactor/printer-agent-interface 2026-08-25 13:50:25 +08:00
Ian Chua 8e48312b1f Merge branch 'main' into feat/printer-agent-impl 2026-08-25 13:47:11 +08:00
Ian Chua ba7fdb8ceb Merge branch 'main' into feat/printer-agent-impl 2026-08-21 14:17:56 +08:00
Ian Chua 8be9800567 remove irrelevant docs 2026-08-21 14:16:49 +08:00
Ian Chua c4eabc3c52 fix: extend access code requirements t 0, 8 or more characters. 2026-08-21 14:14:23 +08:00
Ian Chua 0d0d281d0c feat: parse nozzle information for qidi and moonraker printer agents 2026-08-20 20:11:31 +08:00
Ian Chua c4bbcd322b fix: skip filament sync dialog if filamentSyncMode is none 2026-08-20 19:28:02 +08:00
Ian Chua 7aea1b1235 Merge branch 'main' into feat/printer-agent-impl 2026-08-20 16:39:54 +08:00
Ian Chua 41c16436bf Merge branch 'main' into refactor/printer-agent-interface 2026-08-20 16:09:10 +08:00
Ian Chua 2bbb229c91 Merge branch 'main' into refactor/printer-agent-interface 2026-08-19 23:30:22 +08:00
Ian Chua c2a43157d2 Merge branch 'main' into feat/printer-agent-impl 2026-08-19 18:29:36 +08:00
Ian Chua 738b30a743 fix: ams sync info and periodic ams sync via subscription workflow 2026-08-19 18:29:19 +08:00
Ian Chua 6e6ffe13f8 Merge branch 'refactor/printer-agent-interface' of https://github.com/OrcaSlicer/OrcaSlicer into refactor/printer-agent-interface 2026-08-19 17:11:14 +08:00
Ian Chua eb96d127b0 fix: resolve stubgen byte header conflict 2026-08-19 17:11:10 +08:00
SoftFever 60421c33f4 Merge branch 'main' into refactor/printer-agent-interface 2026-08-19 14:32:42 +08:00
SoftFever 300c4b8afb Merge branch 'main' into refactor/printer-agent-interface 2026-08-18 20:44:56 +08:00
Ian Chua 96092ef2d3 feat: update qidi to use subscription based filament sync mode 2026-08-18 19:05:17 +08:00
Ian Chua d9002ad87d fix: ams filament mapping workflow 2026-08-18 18:07:22 +08:00
Ian Chua 4c1ea0a602 Merge branch 'main' into 'feat/printer-agent-impl' 2026-08-17 14:51:04 +08:00
Ian Chua 9415812d85 Merge branch 'main' into refactor/printer-agent-interface 2026-08-17 14:24:23 +08:00
Ian Chua d3c728557e Merge 'main' into 'refactor/printer-agent-interface' 2026-08-17 14:24:05 +08:00
Ian Chua 6558c52849 revert file transfer abstraction 2026-08-17 14:19:41 +08:00
Ian Chua a34d056de2 specify api for getting file transfer url 2026-08-14 15:31:42 +08:00
Ian Chua 7ba5718be6 fix: remove redundant cache 2026-08-12 18:41:51 +08:00
Ian Chua c1163ce7e5 Merge branch 'refactor/printer-agent-interface' of https://github.com/OrcaSlicer/OrcaSlicer into refactor/printer-agent-interface 2026-08-12 15:29:56 +08:00
Ian Chua da187eaaf9 fix callback error 2026-08-12 15:29:50 +08:00
Ian Chua de0268ce86 Merge branch 'main' into refactor/printer-agent-interface 2026-08-12 15:28:53 +08:00
Ian Chua 108923bdaa fix: default impl 2026-08-12 14:02:04 +08:00
Ian Chua 44793f7a21 remove unused 2026-08-12 13:51:54 +08:00
Ian Chua 7cb1805272 refactor: push bbl workflows to bbl printer agent 2026-08-12 13:50:47 +08:00
Ian Chua d5c528b7c7 Merge branch 'refactor/printer-agent-interface' of https://github.com/OrcaSlicer/OrcaSlicer into refactor/printer-agent-interface 2026-08-11 15:00:42 +08:00
Ian Chua 742cb712d8 refactor: abstract bambu specific protocol to printer agent 2026-08-11 15:00:34 +08:00
Ian Chua fd1c5d826c Merge branch 'main' into refactor/printer-agent-interface 2026-08-07 18:37:56 +08:00
Ian Chua 58be7f4861 feat: abstract remaining gcode commands in devicemanager 2026-08-07 18:36:38 +08:00
Ian Chua 4031b00915 Merge branch 'main' into refactor/printer-agent-interface 2026-08-06 16:27:57 +08:00
Ian Chua 07c62112b8 Reconcile implementation split with PR tip 2026-08-04 18:12:51 +08:00
Ian Chua f23e4963bf fix: merge access codes into one 2026-08-04 18:12:43 +08:00
Andrew 95279f7084 docs: document the printer-agent subsystem 2026-08-04 18:12:43 +08:00
Andrew 1014558c91 Keep printer-agent progress in sync
Keep the shared task progress aligned with agent
reports that lack Bambu cloud task identity.

Release the lazily allocated task during reset to
avoid leaks when machine objects reconnect.
2026-08-04 18:12:42 +08:00
Andrew 6515062a3a fix: stop Qidi slot parse throwing on null 2026-08-04 18:12:42 +08:00
Andrew 8153e26b6d fix: start stream when camera URL changes 2026-08-04 18:12:42 +08:00
Andrew 79fd33d49a Show Snapmaker U1 camera in Device tab
The U1 exposes no /server/webcams/list entry;
its camera only captures after an explicit
camera.start_monitor RPC, which the Moonraker
websocket executes unauthenticated but only
answers over MQTT - so the call is fire and
forget.

Start the camera when the camera view is
shown and renew every 300 s: the printer
retires the capture task at ~362 s and
stop_monitor is accepted but ineffective,
so teardown is simply to stop renewing.

Frames land in monitor.jpg as still JPEGs
(~2 fps at interval 0), so the webview loads
a local HTML wrapper that repolls with a
cache buster.
2026-08-04 18:12:41 +08:00
Andrew cdb662d4b2 Move Moonraker commands off the UI thread
Pause/resume/stop, g-code sends, temps, and
light ran synchronous HTTP on the UI thread,
freezing the app up to 10s per click on slow
or unreachable printers.

Run them on a single agent-owned FIFO worker
so g-code ordering is preserved, while command
translation stays synchronous so unsupported-
command dialogs still work.

Add a pending-disabled state to the pause,
resume, and abort buttons for Moonraker-family
printers: the icon only flips once the
WebSocket reports the real state, which also
rules out double-click races.
2026-08-04 18:12:41 +08:00
Andrew a27fa7b5df Fix multi-color filament logic
Reuse color decoding across functions to improve
code readability and maintain consistency in
multi-color filament handling.
2026-08-04 18:12:40 +08:00
Andrew cdeed107c5 Keep Bambu AMS dialect out of the agent waist
M620 is Bambu firmware dialect, not a
neutral command. Composing it in
MachineObject let non-Bambu agents
(Moonraker/Klipper) forward it and
report success on firmware that
cannot run it.

Agents now own the dialect: the
default refusal on IPrinterAgent
returns not-supported so the UI
can say so; BBLPrinterAgent keeps
the byte-identical composition.
2026-08-04 18:12:40 +08:00
Andrew be92f7e78c Surface Moonraker webcams and gate unrunnable controls 2026-08-04 18:12:39 +08:00
Andrew 76f9de4cfb fix: make Klipper macro lamp control reliable 2026-08-04 18:12:39 +08:00
Andrew cd6d2cbf5e Stop blocking print on unreported nozzle data 2026-08-04 18:12:39 +08:00
Andrew deaca0189f Bring Moonraker device panel to feature parity
The monitor panel showed wrong or missing
data for Moonraker printers, and its
controls did nothing.

Push payload now carries layer number and
total layers. Remaining time replaces the
wrong total_duration - print_duration
formula. The chamber light toggle maps to
Klipper SET_PIN / SET_LED, and pause,
resume and stop post to
/printer/print/{action}. Task thumbnails
resolve via /server/files/thumbnails onto
a new MachineObject thumbnail url.

Filament sync switches to pull mode so the
agent is queried on demand.

Not compiled or run.
2026-08-04 18:12:38 +08:00
Andrew 7d54ee286d fix: pin HTTP to prevent connection refusal
Set `use_ssl` to false to ensure Moonraker
connectivity, as the service uses HTTP rather
than HTTPS, preventing connection issues. Initialize
device info early for reliable name resolution.
2026-08-04 18:12:38 +08:00
Andrew dddfc7a8ad Add printer-agent and plugin status tests
Ports the agent lifecycle, duplicate
agent-id, built-in-id clash and
status-resolution tests. The loader
runs on a detached worker thread, so
the lifecycle tests live in their own
executable. Tests install the
production unload-side registry
wiring themselves (no GUI in the
test binary) and register agents
manually so concurrent loads stay
deterministic.
2026-08-04 18:12:37 +08:00
Andrew 673bfb0dee Track BBLPrinterAgentPlugin.py 2026-08-04 18:12:37 +08:00
Andrew b9e8c5a38c Gate agent mode behind use_printer_agents toggle
Replace per-printer auto-activation
(is_current_printer_agent_plugin)
with a global experimental AppConfig
toggle, default off: legacy
print-host behavior is unchanged
until the user opts in. The toggle
drives device-tab routing, print
button defaults, connect-button
visibility and sidebar layout, and
dedups machine-select dialog opens.
2026-08-04 18:12:36 +08:00
Andrew a2a4ca20e4 Reset device selection on agent swap or unload (#124)
set_live_printer_agent centralizes
the swap: deselect the machine,
clear stale sidebar state and the
previous agent's Other Devices, then
install the new agent (or null when
its provider vanished). Plugin
load/unload callbacks refresh the
dropdown and re-run agent selection.
load_last_machine no longer falls
back to the first available machine.
2026-08-04 18:12:36 +08:00
Andrew 12075459d2 Replace fake-enum printer agent dropdown (#121)
A dedicated PrinterAgentChoice field
reads rows straight from the live
agent registry and stores the agent
id string, replacing the fake-coEnum
index mapping. The field moves to
TabPrinter and registers with the
searcher so UnsavedChanges renders
it; the PhysicalPrinterDialog copy
and its update hook are removed
(#125). switch_printer_agent now
resolves ids via
resolve_printer_agent_id.
2026-08-04 18:12:36 +08:00
Andrew f3770f3106 fix: checkbox should depend on plugin is_loaded status 2026-08-04 18:12:35 +08:00
Andrew 90fbf1770f Resolve duplicate agent ID conflicts
Reject a printer-agent capability
whose agent ID is already owned by
another capability or built-in:
flag the plugin error, disable the
capability, and warn the user
instead of silently ignoring it.
2026-08-04 18:12:35 +08:00
Andrew bde94ab37f Add support for runtime error status in plugins
Distinguish a loaded plugin whose
capability errored (RuntimeError,
warn-styled, stays checked) from a
load-time Error. Status now derives
via resolve_plugin_status(); enum
ordinal keeps dialog sort priority.
Unloading clears stale errors.
2026-08-04 18:12:34 +08:00
Ian Chua 6d25e1777e Working Moonraker and Qidi printer agent transport (#104)
Folds the Qidi AMS box-mapping print
overrides (apply_box_mapping +
start_* wrappers) that the transport
fix builds on.
2026-08-04 18:12:34 +08:00
Andrew 7ce26ca8e5 Harden send flow and separate upload failure recovery (#111)
* fix(send): harden FT send path + IP pre-flight UX

* Remove early returns
2026-08-04 18:12:33 +08:00
Andrew 367fcce634 Prevent loss of user access code on LAN reselect
Keep user access code intact to maintain access rights even if
device slot is unpopulated, ensuring continuous connection
and status message reception.
2026-08-04 18:12:33 +08:00
Andrew 9b3a44b339 Parse user print info on the UI thread to prevent heap corruption (#119)
get_user_print_info()'s HTTP fetch can run on a worker thread (e.g. BindJob),
but parse_user_print_info() mutates userMachineList (insert/erase/delete
MachineObject). on_machine_alive (SSDP) mutates the same maps on the UI thread
without locking, so parsing off-thread races the map and frees MachineObjects
out from under it -> heap corruption.

Keep all device-list mutation on the UI thread: parse inline when already on
the main thread, otherwise marshal via CallAfter so it stays serialized with
on_machine_alive.
2026-08-04 18:12:33 +08:00
Ian Chua 6384191102 Add developer flag for printer agents 2026-08-04 18:12:32 +08:00
520 changed files with 29356 additions and 8595 deletions
+4
View File
@@ -58,6 +58,9 @@ Paths below are relative to this skill. Commands run from the repository root.
9. **Run the full profile checks before reporting completion.** A vendor-scoped pass is only a
development loop. Review also covers version bumps, assets, non-default processes and hardware
tuning that CI cannot establish.
10. **One all-printer preset per product; color is a runtime property, never a preset.** Never ship
presets that differ only by color — CI accepts them, so this is a review call. See
[color is a runtime property](references/filament-profiles.md#color-is-a-runtime-property).
## Creating or modifying a profile
@@ -107,6 +110,7 @@ Paths below are relative to this skill. Commands run from the repository root.
| A setting has no effect | Key spelling/type, `handle_legacy`, or a config key placed on a `machine_model` |
| A preset exists but is not selectable | Index registration, `instantiation`, installation and compatibility |
| A filament is missing, duplicated, or matches the wrong spool | [Compatibility and alias shadowing](references/filament-profiles.md#compatible_printers); [ids](references/ids.md) |
| Presets differ only by color, or an all-printer library preset lacks `@System` | [Color is a runtime property](references/filament-profiles.md#color-is-a-runtime-property) |
| A bed temperature is ignored | [Plate-specific temperature keys](references/filament-profiles.md#bed-temperature-is-twelve-keys-not-one) |
| A change is absent from the running app | Version bump and [installed profile location](references/validation.md#testing-in-the-app) |
| A check fails | [Error → remedy](references/validation.md#error--remedy) |
@@ -52,6 +52,15 @@ a brand means adding a folder here; the folder name is a directory label only
collection, so there is no duplicate-name error.
- You may inherit from an instantiated preset as well as from a base; it is common.
## Color is a runtime property
`filament_id` identifies a product, not a color; filament sync/AMS reads the color from the spool at
runtime. A product ships one all-printer preset and the color is chosen at runtime — never a sibling
preset that differs only by color. A material family (PLA vs PLA Matte vs PLA Silk) is a new product; a
color is not. A printer tune keeps the product alias and does not multiply per color either.
CI does not catch this — per-color presets pass `check` — so it is a review call.
## The two most common contributions
**A printer vendor tuning a generic.** Keep the `Generic X` base name so the alias shadows the library
@@ -46,12 +46,17 @@ to the first `@`; the target half is a label except for reserved forms:
- `@base` — a non-instantiated product root. `@base` is convention; a base is really identified by
`instantiation: "false"` and no `setting_id` ([the three-part shape](filament-profiles.md#the-three-part-shape)).
- `@System` — the OrcaFilamentLibrary selectable shim. The literal `Generic <mat> @System` is
load-bearing for 3MF/project recovery, beyond the alias rule ([alias shadowing](filament-profiles.md#alias-shadowing)).
- `@System` — the OrcaFilamentLibrary selectable shim, and the convention for an all-printer product
(`<Product> @System`, empty `compatible_printers`); not enforced, so a deviation is worth a review
comment. The literal `Generic <mat> @System` is load-bearing for 3MF/project recovery, beyond the
alias rule ([alias shadowing](filament-profiles.md#alias-shadowing)).
- `@<Vendor>`, `@<Vendor> <Model>`, `@<Vendor> <Model> <nozzle> nozzle` — printer tunes, BBL's shape.
Other vendors differ (a bare model, a printer serial, Creality's `@<Model>-all`). Specificity is judged
from `compatible_printers`, not the name
([one variant, one profile](filament-profiles.md#overlapping-coverage-one-variant-one-profile-per-product)).
- Color is not part of the product name: `<Product> <Color>` presets are not authored; the color is
chosen at runtime
([color is a runtime property](filament-profiles.md#color-is-a-runtime-property)).
## Not the same as the filename
@@ -15,6 +15,7 @@ The table highlights gaps that need human review. What CI *does* run:
| Whether the intended default survived compatibility selection | The sweep can select a different compatible preset |
| A dangling `compatible_printers` inside an `instantiation: "false"` base | A base never becomes a `Preset`, so the reference check never sees it (a bad `inherits` in a base *is* caught) |
| A `renamed_from` whose old name is still a live preset | The redirect is inert while a live preset carries that name |
| A preset differentiated only by color, or an all-printer library preset without `@System` | Per-color presets split one product across ids and the selector fills with near-duplicates; CI stays green |
| Per-extruder vector length on a multi-nozzle printer | Silently padded (with the **first** value) or truncated |
## 1. Was the vendor `version` bumped?
@@ -75,8 +75,6 @@ jobs:
if [ -z "$base" ] || [ "$base" = "0000000000000000000000000000000000000000" ] || ! git cat-file -e "$base^{commit}" 2>/dev/null; then
base="$head^"
fi
echo "Diffing $base..$head"
mapfile -t candidates < <(
git diff --name-only "$base" "$head" -- resources/profiles \
| sed -nE 's#^resources/profiles/([^/]+)/.*#\1#p; s#^resources/profiles/([^/]+)\.json$#\1#p' \
@@ -95,7 +93,6 @@ jobs:
done
if [ "${#vendors[@]}" -eq 0 ]; then
echo "No changed vendor profiles in this push; nothing to publish."
echo "vendors=" >> "$GITHUB_OUTPUT"
exit 0
fi
@@ -138,13 +135,10 @@ jobs:
done
if [ "${#unauthorized[@]}" -ne 0 ]; then
echo "Changed vendor profiles are not covered by FOLDER_MERGERS: ${unauthorized[*]}"
echo "No profile caches will be published for this push."
echo "vendors=" >> "$GITHUB_OUTPUT"
exit 0
fi
printf 'Changed vendors: %s\n' "${vendors[*]}"
echo "vendors=${vendors[*]}" >> "$GITHUB_OUTPUT"
- name: Resolve Orca version
@@ -163,7 +157,6 @@ jobs:
# OrcaCloud keys R2 on; orca_ver (X.Y.Z) is the asset-name prefix.
echo "release_tag=$raw" >> "$GITHUB_OUTPUT"
echo "orca_ver=$orca_ver" >> "$GITHUB_OUTPUT"
echo "Orca version: release_tag=$raw asset_prefix=$orca_ver"
- name: Validate profile versions
id: pver
@@ -179,7 +172,6 @@ jobs:
exit 1
fi
printf '%s\t%s\n' "$v" "$pv" >> "$RUNNER_TEMP/pver.tsv"
echo "$v -> $pv"
done
- name: Download generate_system_cache
@@ -214,7 +206,6 @@ jobs:
pv="$(awk -F'\t' -v v="$v" '$1==v{print $2}' "$RUNNER_TEMP/pver.tsv")"
name="${orca_ver}_${v}_${pv}_${ts}.zip"
( cd resources/profiles && zip -q -j "$out/$name" "$v.opc" )
echo "packaged $name"
done
echo "dir=$out" >> "$GITHUB_OUTPUT"
+24 -2
View File
@@ -520,6 +520,28 @@ jobs:
} catch (error) {
core.warning(`Merged successfully, but dispatching build_all.yml failed: ${error.message}`);
}
// ---- re-kick the profile publish ----
// Same reason as above: post_merge_profiles.yml is push-triggered, so a
// GITHUB_TOKEN merge never starts it. workflow_dispatch skips the paths:
// filter, so only dispatch when the PR actually touched profiles.
const touchesProfiles = files.some((file) =>
[file.filename, file.previous_filename]
.filter(Boolean)
.some((p) => p.startsWith('resources/profiles/'))
);
if (touchesProfiles) {
try {
await github.rest.actions.createWorkflowDispatch({
owner,
repo,
workflow_id: 'post_merge_profiles.yml',
ref: pr.base.ref
});
core.info(`Dispatched post_merge_profiles.yml on ${pr.base.ref}.`);
} catch (error) {
core.warning(`Merged successfully, but dispatching post_merge_profiles.yml failed: ${error.message}`);
}
}
label-profile:
# Independent of the merge rules: any PR that changes only files inside
@@ -529,7 +551,7 @@ jobs:
&& github.event_name == 'pull_request_target'
permissions:
contents: read
pull-requests: read
pull-requests: write
issues: write
runs-on: ubuntu-latest
timeout-minutes: 5
@@ -636,7 +658,7 @@ jobs:
&& github.event_name == 'pull_request_target'
permissions:
contents: read # delegatable subtree, for file modes
pull-requests: read
pull-requests: write
issues: write # label + comment
runs-on: ubuntu-latest
timeout-minutes: 10
+42 -2
View File
@@ -826,6 +826,37 @@ find_package(OpenSSL REQUIRED)
find_package(CURL REQUIRED)
find_package(Freetype REQUIRED)
if (SLIC3R_GUI)
# LibDataChannel's installed export references its bundled dependencies,
# but does not install their CMake targets. Recreate those targets from
# the same dependency prefix before loading the LibDataChannel config.
if (NOT TARGET Usrsctp::usrsctp)
find_library(_ORCA_USRSCTP_LIBRARY NAMES usrsctp
PATHS "${CMAKE_PREFIX_PATH}/lib" NO_DEFAULT_PATH)
if (_ORCA_USRSCTP_LIBRARY)
add_library(Usrsctp::usrsctp UNKNOWN IMPORTED GLOBAL)
set_target_properties(Usrsctp::usrsctp PROPERTIES
IMPORTED_LOCATION "${_ORCA_USRSCTP_LIBRARY}"
IMPORTED_LINK_INTERFACE_LANGUAGES C
INTERFACE_LINK_LIBRARIES "Threads::Threads")
endif()
endif()
if (NOT TARGET LibJuice::LibJuice)
find_library(_ORCA_LIBJUICE_LIBRARY NAMES juice
PATHS "${CMAKE_PREFIX_PATH}/lib" NO_DEFAULT_PATH)
if (_ORCA_LIBJUICE_LIBRARY)
add_library(LibJuice::LibJuice UNKNOWN IMPORTED GLOBAL)
set_target_properties(LibJuice::LibJuice PROPERTIES
IMPORTED_LOCATION "${_ORCA_LIBJUICE_LIBRARY}"
IMPORTED_LINK_INTERFACE_LANGUAGES C
INTERFACE_LINK_LIBRARIES "Threads::Threads")
endif()
endif()
find_package(LibDataChannel CONFIG REQUIRED)
endif()
add_library(libcurl INTERFACE)
target_link_libraries(libcurl INTERFACE CURL::libcurl)
@@ -1106,6 +1137,7 @@ function(orcaslicer_copy_dlls target config postfix output_dlls)
endif ()
file(COPY ${_occt_dlls}
${CMAKE_PREFIX_PATH}/bin/freetype.dll
${CMAKE_PREFIX_PATH}/bin/avformat-61.dll
${CMAKE_PREFIX_PATH}/bin/avcodec-61.dll
${CMAKE_PREFIX_PATH}/bin/swresample-5.dll
${CMAKE_PREFIX_PATH}/bin/swscale-8.dll
@@ -1118,11 +1150,11 @@ function(orcaslicer_copy_dlls target config postfix output_dlls)
${_out_dir}/WebView2Loader.dll
${_out_dir}/freetype.dll
${_out_dir}/avformat-61.dll
${_out_dir}/avcodec-61.dll
${_out_dir}/swresample-5.dll
${_out_dir}/swscale-8.dll
${_out_dir}/avutil-59.dll
PARENT_SCOPE
)
list(APPEND _dll_list ${_occt_staged})
set(${output_dlls} ${_dll_list} PARENT_SCOPE)
@@ -1142,7 +1174,10 @@ function(orcaslicer_copy_sos target config postfix output_sos)
set(_out_dir "${CMAKE_CURRENT_BINARY_DIR}")
endif ()
file(COPY ${CMAKE_PREFIX_PATH}/lib/libavcodec.so
file(COPY ${CMAKE_PREFIX_PATH}/lib/libavformat.so
${CMAKE_PREFIX_PATH}/lib/libavformat.so.61
${CMAKE_PREFIX_PATH}/lib/libavformat.so.61.1.100
${CMAKE_PREFIX_PATH}/lib/libavcodec.so
${CMAKE_PREFIX_PATH}/lib/libavcodec.so.61
${CMAKE_PREFIX_PATH}/lib/libavcodec.so.61.3.100
${CMAKE_PREFIX_PATH}/lib/libavutil.so
@@ -1157,6 +1192,9 @@ function(orcaslicer_copy_sos target config postfix output_sos)
DESTINATION ${_out_dir})
set(${output_sos}
${_out_dir}/libavformat.so
${_out_dir}/libavformat.so.61
${_out_dir}/libavformat.so.61.1.100
${_out_dir}/libavcodec.so
${_out_dir}/libavcodec.so.61
${_out_dir}/libavcodec.so.61.3.100
@@ -1286,6 +1324,8 @@ endif ()
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
set(LIBRARY_FILES
${LIBDIR_BIN}/libavformat.so.61
${LIBDIR_BIN}/libavformat.so.61.1.100
${LIBDIR_BIN}/libavcodec.so.61
${LIBDIR_BIN}/libavcodec.so.61.3.100
${LIBDIR_BIN}/libavutil.so.59
+23 -11
View File
@@ -156,7 +156,7 @@ if (NOT _is_multi AND NOT CMAKE_BUILD_TYPE)
endif ()
function(orcaslicer_add_cmake_project projectname)
cmake_parse_arguments(P_ARGS "FORWARD_CONFIG" "INSTALL_DIR;BUILD_COMMAND;INSTALL_COMMAND" "CMAKE_ARGS" ${ARGN})
cmake_parse_arguments(P_ARGS "FORWARD_CONFIG" "INSTALL_DIR;BUILD_COMMAND;INSTALL_COMMAND;SOURCE_DIR" "CMAKE_ARGS" ${ARGN})
# MSVC is true for clang-cl as well, so the sub-build toolchain has to key on the
# generator. A non-Visual-Studio superbuild passes its own generator down, and with
@@ -202,12 +202,18 @@ function(orcaslicer_add_cmake_project projectname)
set(_build_j "-j${NPROC}")
endif ()
set(_source_dir_arg "")
if (P_ARGS_SOURCE_DIR)
set(_source_dir_arg SOURCE_DIR ${P_ARGS_SOURCE_DIR})
endif ()
if (NOT IS_CROSS_COMPILE OR NOT APPLE)
ExternalProject_Add(
dep_${projectname}
EXCLUDE_FROM_ALL ON
INSTALL_DIR ${DESTDIR}
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/${projectname}
${_source_dir_arg}
${_gen}
CMAKE_ARGS
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
@@ -240,12 +246,14 @@ if (NOT IS_CROSS_COMPILE OR NOT APPLE)
# note for future devs: shared libs may actually create a size reduction
# but orcaslicer_deps tends to get really funny regarding linking after that (notably boost)
# so, as much as I would like to use that, it's not happening
ExternalProject_Add_Step(dep_${projectname} free_download_space
DEPENDEES download # do after download
COMMENT "Freeing Space: Removing source archive"
WORKING_DIRECTORY ${DEP_DOWNLOAD_DIR}
COMMAND ${CMAKE_COMMAND} -E rm -r ${projectname}
)
if (NOT P_ARGS_SOURCE_DIR)
ExternalProject_Add_Step(dep_${projectname} free_download_space
DEPENDEES download # do after download
COMMENT "Freeing Space: Removing source archive"
WORKING_DIRECTORY ${DEP_DOWNLOAD_DIR}
COMMAND ${CMAKE_COMMAND} -E rm -rf ${projectname}
)
endif ()
ExternalProject_Add_Step(dep_${projectname} free_build_space
DEPENDEES install # do after install
COMMENT "Freeing Space: Removing source and build files"
@@ -259,6 +267,7 @@ else()
EXCLUDE_FROM_ALL ON
INSTALL_DIR ${DESTDIR}
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/${projectname}
${_source_dir_arg}
${_gen}
CMAKE_ARGS
-DCMAKE_POLICY_VERSION_MINIMUM=3.5
@@ -386,10 +395,6 @@ include(libnoise/libnoise.cmake)
include(Draco/Draco.cmake)
include(FFMPEG/FFMPEG.cmake)
include(Assimp/Assimp.cmake)
# I *think* 1.1 is used for *just* md5 hashing?
# 3.1 has everything in the right place, but the md5 funcs used are deprecated
# a grep across the repo shows it is used for other things
@@ -400,6 +405,12 @@ if(NOT OPENSSL_FOUND)
set(OPENSSL_PKG dep_OpenSSL)
endif()
include(FFMPEG/FFMPEG.cmake)
include(Assimp/Assimp.cmake)
include(DataChannel/DataChannel.cmake)
set(DATACHANNEL_PKG dep_DataChannel)
# we don't want to load a "wrong" openssl when loading curl
# so, just don't even bother
# ...i think this is how it works? change if wrong
@@ -473,6 +484,7 @@ set(_dep_list
dep_wxInspector
dep_FFMPEG
dep_Assimp
${DATACHANNEL_PKG}
)
if (MSVC)
+37
View File
@@ -0,0 +1,37 @@
# libdatachannel is the native ICE/DTLS/SCTP implementation used by the
# GUI WebRTC camera controller. Keep the source revision fixed: the signaling
# protocol is evolving independently of this transport dependency.
#
# It vendors plog, usrsctp and libjuice as git submodules, which a plain
# GitHub tag tarball does not include. The flatpak sandbox has no network
# access during the build, so there the manifest itself clones the repo
# (submodules and all) into the dependency download directory before the
# sandbox closes. ExternalProject_Add is pointed at that existing checkout
# instead of being given its own network-dependent download method.
if (FLATPAK)
set(_datachannel_source
SOURCE_DIR ${DEP_DOWNLOAD_DIR}/DataChannel
)
else()
set(_datachannel_source
GIT_REPOSITORY https://github.com/paullouisageneau/libdatachannel.git
GIT_TAG v0.24.5
GIT_SHALLOW ON
GIT_SUBMODULES_RECURSE ON
)
endif()
orcaslicer_add_cmake_project(DataChannel
DEPENDS ${OPENSSL_PKG}
CMAKE_ARGS
-DNO_EXAMPLES=ON
-DNO_TESTS=ON
-DNO_WEBSOCKET=ON
-DNO_MEDIA=ON
-DUSE_NICE=OFF
-DUSE_SYSTEM_JUICE=OFF
-DUSE_SYSTEM_USRSCTP=OFF
-DOPENSSL_ROOT_DIR:PATH=${DESTDIR}
-DOPENSSL_USE_STATIC_LIBS=ON
${_datachannel_source}
)
+23 -7
View File
@@ -1,14 +1,26 @@
set(_conf_cmd ./configure)
set(_ffmpeg_depends)
set(_ffmpeg_configure_command ${_conf_cmd})
if (TARGET dep_OpenSSL)
set(_ffmpeg_depends DEPENDS dep_OpenSSL)
set(_ffmpeg_configure_command
${CMAKE_COMMAND} -E env
"PKG_CONFIG_PATH=${DESTDIR}/lib/pkgconfig:$ENV{PKG_CONFIG_PATH}"
${_conf_cmd}
)
endif()
if (MSVC)
set(_source_dir "${CMAKE_BINARY_DIR}/dep_FFMPEG-prefix/src/dep_FFMPEG")
set(PREBUILD_URL_arm64 "https://github.com/Noisyfox/FFmpeg-Builds-Orca/releases/download/autobuild-2026-07-17-14-28/ffmpeg-n7.0.3-31-g9b6ffd74b5-winarm64-orca-shared-7.0.zip")
set(PREBUILD_HASH_arm64 "12f4140279f2f8469885e1b5b2e8be9d788882914c21523cacd56989f3548054")
set(PREBUILD_URL_x64 "https://github.com/Noisyfox/FFmpeg-Builds-Orca/releases/download/autobuild-2026-07-17-14-28/ffmpeg-n7.0.3-31-g9b6ffd74b5-win64-orca-shared-7.0.zip")
set(PREBUILD_HASH_x64 "e65916020ddb9ef84b2666dfbcbfc9b1d67f69d15b4a66db53754637bf2d498c")
set(PREBUILD_URL_arm64 "https://github.com/Noisyfox/FFmpeg-Builds-Orca/releases/download/autobuild-2026-09-18-16-50/ffmpeg-n7.0.3-33-g887d4b4919-winarm64-orca-shared-7.0.zip")
set(PREBUILD_HASH_arm64 "da480cbb39680056de824c57ec4dc3bd577b479ebbc310ff1f9dc55cf014b4c1")
set(PREBUILD_URL_x64 "https://github.com/Noisyfox/FFmpeg-Builds-Orca/releases/download/autobuild-2026-09-18-16-50/ffmpeg-n7.0.3-33-g887d4b4919-win64-orca-shared-7.0.zip")
set(PREBUILD_HASH_x64 "85da19daf198f5548259d8aabb349db84997a3f6e6886d8d7764114add9c6dae")
ExternalProject_Add(dep_FFMPEG
${_ffmpeg_depends}
URL ${PREBUILD_URL_${DEPS_ARCH}}
URL_HASH SHA256=${PREBUILD_HASH_${DEPS_ARCH}}
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/FFMPEG
@@ -21,6 +33,8 @@ if (MSVC)
)
else ()
set(_openssl_cmd --enable-openssl)
if (APPLE)
set(_minos_cmd
"--extra-cflags=-mmacosx-version-min=${DEP_OSX_TARGET}"
@@ -52,10 +66,11 @@ else ()
endif()
ExternalProject_Add(dep_FFMPEG
${_ffmpeg_depends}
URL https://github.com/FFmpeg/FFmpeg/archive/refs/tags/n7.0.3.tar.gz
URL_HASH SHA256=DEEDCABE339165214A3637DF4C86A507AEF0D793CF8774FF68735F4737E8DDBC
DOWNLOAD_DIR ${DEP_DOWNLOAD_DIR}/FFMPEG
CONFIGURE_COMMAND ${_conf_cmd}
CONFIGURE_COMMAND ${_ffmpeg_configure_command}
${_cross_cmd}
${_pic_cmd}
${_arch_cmd}
@@ -63,20 +78,21 @@ else ()
"--prefix=${DESTDIR}"
${_link_cmd}
${_minos_cmd}
${_openssl_cmd}
--disable-doc
--enable-small
--disable-outdevs
--disable-filters
--enable-filter=*null*,afade,*fifo,*format,*resample,aeval,allrgb,allyuv,atempo,pan,*bars,color,*key,crop,draw*,eq*,framerate,*_qsv,*_vaapi,*v4l2*,hw*,scale,volume,test*
--disable-protocols
--enable-protocol=file,fd,pipe,rtp,udp
--enable-protocol=file,fd,pipe,http,https,rtp,tcp,udp
--disable-muxers
--enable-muxer=rtp
--disable-encoders
--disable-decoders
--enable-decoder=*aac*,h264*,mp3*,mjpeg,rv*
--disable-demuxers
--enable-demuxer=h264,mp3,mov
--enable-demuxer=h264,mp3,mov,mpjpeg,rtsp,sdp
--disable-zlib
--disable-avdevice
BUILD_IN_SOURCE ON
+3 -3
View File
@@ -5,7 +5,7 @@
#if defined (__GNUC__) && ! defined (__cplusplus)
typedef unsigned long long t1;typedef t1*t2;
-void g(){}
+void g(int,t1 const*,t1,t2,t1 const*,int){}
+void g(int a,t1 const*b,t1 c,t2 dd,t1 const*e,int ff){}
void h(){}
static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0)
{t1 c,x,r;int i;if(v0){c=1;for(i=1;i<n;i++){x=up[i];r=x+1;rp[i]=r;}}return c;}
@@ -17,7 +17,7 @@
#if defined (__GNUC__) && ! defined (__cplusplus)
typedef unsigned long long t1;typedef t1*t2;
-void g(){}
+void g(int,t1 const*,t1,t2,t1 const*,int){}
+void g(int a,t1 const*b,t1 c,t2 dd,t1 const*e,int ff){}
void h(){}
static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0)
{t1 c,x,r;int i;if(v0){c=1;for(i=1;i<n;i++){x=up[i];r=x+1;rp[i]=r;}}return c;}
@@ -26,7 +26,7 @@
#if defined (__GNUC__) && ! defined (__cplusplus)
typedef unsigned long long t1;typedef t1*t2;
-void g(){}
+void g(int,t1 const*,t1,t2,t1 const*,int){}
+void g(int a,t1 const*b,t1 c,t2 dd,t1 const*e,int ff){}
void h(){}
static __inline__ t1 e(t2 rp,t2 up,int n,t1 v0)
{t1 c,x,r;int i;if(v0){c=1;for(i=1;i<n;i++){x=up[i];r=x+1;rp[i]=r;}}return c;}
+1
View File
@@ -15,6 +15,7 @@ orcaslicer_add_cmake_project(
-DTBB_BUILD_SHARED=OFF
-DTBB_BUILD_TESTS=OFF
-DTBB_TEST=OFF
-DTBB_DISABLE_HWLOC_AUTOMATIC_SEARCH=ON
-DTBB_ENABLE_IPO=OFF
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF
-DCMAKE_POSITION_INDEPENDENT_CODE=ON
+132
View File
@@ -0,0 +1,132 @@
# Keyboard Shortcuts
## Why it exists
Key events arrive in several windows (the main frame's char hook, the 3D canvases, the
gizmo manager and the object list), and the same keys are shown again in menu labels,
toolbar tooltips, gizmo names and the shortcuts dialog. The registry is the one table all
of them read. Each binding is defined once; dispatchers look key events up there, labels
are derived from it, and a change the user makes updates all of them.
## Data model
`KeyChord` (`src/slic3r/GUI/KeyChord.hpp`) is one key press: the key code as
`wxEVT_KEY_DOWN` reports it, plus the `wxMOD_*` modifiers held with it. It has two
text forms. The canonical one (`Ctrl+Shift+S`) is platform-neutral and doubles as the wx
accelerator string and the config format. The display one uses translated modifier
names and the command and option glyphs on macOS. `KeyChord::from_event()` turns any wx
key event into the same key code and modifiers, so a chord recorded in the dialog is
equal to the chord a dispatcher builds from the key press.
`Shortcut` is the enum of every user-facing binding. `shortcut_table` in
`src/slic3r/GUI/Shortcuts.cpp` gives each one a config key, a description, a context
mask, a default chord, a `repeatable` flag and a `modifier_variants` flag, in the order
the dialog lists them; a `static_assert` keeps the table and the enum in step.
`ShortcutRegistry` overlays the user's overrides on the defaults and keeps a
chord-to-shortcut index for lookups. It reads and writes the `shortcuts` section of
`AppConfig`. Only overrides are stored, so a default can change between releases
without touching anyone's config; `none` records a shortcut the user unbound.
## Contexts
A key press is looked up in the context of the window that received it.
| Context | Dispatcher | Examples |
|--------------|-----------------------------------------------------------|-------------------------------|
| `Global` | `MainFrame`'s `wxEVT_CHAR_HOOK`, before any child sees it | New project, camera views |
| `Plater` | `GLCanvas3D` of the 3D and assembly views | Arrange, gizmo activation |
| `Preview` | `GLCanvas3D` of the G-code preview | One-layer mode, jump to layer |
| `ObjectList` | the object list | Copy, delete, auto drop |
| `Painting` | `GLGizmosManager` while a painting gizmo is open | Circle, sphere, fill tools |
A shortcut can belong to several contexts, which is how copy and paste are a single
binding for the canvas and the object list. Two shortcuts can share a chord when their
contexts do not overlap; `C` is the cut gizmo in the 3D view, the G-code window in the
preview and the circle tool while painting. A Global chord is dispatched before every
other context, so the dialog treats it as conflicting with all of them.
A Global shortcut has to include Ctrl or Alt or use a key that types nothing, since a
bare printable key in the frame hook would swallow that character in every text field.
The dialog refuses such chords and `ShortcutRegistry::load()` drops them from the config.
Space counts as typing. The speed dial's default is the one bare Space, and
`MainFrame` leaves it to a focused control that uses Space itself (text fields, buttons,
combo boxes), so it opens the dial from the canvases and the tab strip only.
## Which event a chord matches
Letters, digits and special keys match on `wxEVT_KEY_DOWN`. Its key codes do not depend
on the keyboard layout: the key labelled `Q` on an AZERTY keyboard and the key in the
same position under a Cyrillic layout both report `Q`. Numpad keys fold onto their main
keyboard equivalents, so `Ctrl+1` and `Ctrl+Numpad 1` are one binding.
Punctuation matches on `wxEVT_CHAR`, because only the char event knows which character
a key produced under the active layout. `+` is Shift and `=` on a US keyboard and a key
of its own on a German one, and the binding means the character in both cases. The
canvas looks a key up on key-down first and, when nothing matched, once more on the char
event, for punctuation chords only. The dialog records chords the same way: a printable
non-alphanumeric key pressed with nothing but Shift is taken from the char event that
follows.
wxGTK does not report key auto-repeat, so the canvases share one record of the keys
seen going down and swallow the repeats of every shortcut not marked `repeatable`. Zoom
and undo repeat, for example; a toggle such as Tab does not. The record is shared because
a shortcut can move the focus to another canvas while its key is still held; a key
released while no canvas had the focus is dropped on the next press.
A few shortcuts have `modifier_variants`: Shift or Ctrl added to their binding selects a
step of the same action (1 mm and camera-space moves of the selection, five-step slider
moves). Only a binding without Shift or Ctrl of its own has steps, so no two bindings
share one. `ShortcutRegistry::match()` looks the exact chord up first and only then, when
nothing is bound to it, looks for such a shortcut whose binding is the chord minus those
modifiers, reporting which were added; a binding on Ctrl+Shift+key therefore wins over
the combined step. The Shift and Ctrl steps themselves are reserved. `step_owner()` names
the shortcut they belong to, the capture dialog refuses to assign them, and
`conflicts()` reports exact chords only. A binding made before its key became a stepping
key keeps its chord and shadows that one step. A move or rotation of the selection
started from the keyboard runs until the key that started it is released, or the
canvas loses focus, so a held key is one undo step.
## Labels
Menu labels, toolbar tooltips, gizmo names, the context menu and the shortcuts dialog
read the registry, so a rebinding shows up in all of them. Each tracked menu item keeps
its base label; `MainFrame::update_shortcut_labels()` appends the current binding
again after an edit, which also installs the new wx accelerator.
A chord that is unsafe as a menu accelerator, meaning a bare printable key, is appended
to the label as plain text so the menu cannot take it away from text fields. The macOS
edit menu shows its clipboard and undo entries that way, because a system-menu key
equivalent for Cmd+C would run instead of the text field's own copy.
On macOS the object list receives no key events at all, so its bindings are installed as
a `wxAcceleratorTable`, regenerated from the registry after each edit.
## Editing
The shortcuts dialog has a page per context, each opening with a line that says when its
keys apply. A page lists the shortcuts under the headings of `section_table`, with the
fixed keys that cannot change (mouse buttons, the step modifiers, Esc, the digit keys
that pick a filament) sorted into the same sections. The mouse drag rows describe the
camera actions chosen in Preferences; their button opens Preferences > Control with that
option scrolled into view and focused, instead of editing a key.
Editing a row opens a capture dialog that records the next chord, names the shortcuts it
would take the chord from, and on confirmation unbinds those and binds this one.
Resetting a row asks the same question when its default is now held by another
shortcut, so a reset cannot leave two shortcuts on one chord. Each change is written to
the config at once and pushed to the menus, tooltips and accelerator tables through
`GUI_App::on_shortcuts_changed()`. The dialog opens from the Help menu and Preferences >
Control on the Global page, and from the `?` key on the page of the view that received it.
## Adding a shortcut
1. Add the enum value to `Shortcut` and its row to `shortcut_table`, in the position
the dialog should list it; the row's section heading is the `section_table` entry
above it, so a new section needs an entry there too. Pick a default that does not
collide inside its contexts; the `[Shortcuts]` tests check every default against the
others.
2. Handle it in the dispatcher of its context: `MainFrame::handle_global_shortcut`,
`GLCanvas3D::handle_shortcut`, `ObjectList::dispatch_shortcut`, or a gizmo's
`on_tool_shortcut`. A gizmo that opens on a key sets `m_shortcut` in its constructor.
3. Where the UI shows the key, ask the registry (`display()` for tooltips,
`accelerator()` for menu labels); no label holds a literal key name.
+240
View File
@@ -0,0 +1,240 @@
# Printer agents
Printer agents isolate printer-specific communication from the rest of OrcaSlicer. The GUI and
`DeviceManager` operate on a shared set of printer operations and device state; a selected printer
agent implements those operations for a particular printer ecosystem. The agent boundary allows
Bambu, Moonraker-based printers, built-in integrations, and Python-provided integrations to use the
same application workflow without making the GUI understand every printer protocol.
The current boundary is an adapter boundary around the existing application contract. In particular,
some request fields and message payloads still use the Bambu-shaped representation that existing
`MachineObject` and `DeviceManager` code consumes. The printer agent is responsible for translating
that representation into the protocol spoken by its printer. This is an intentional compatibility
constraint of the current design; the interface is not yet a neutral printer protocol.
The v1 dialect migration path is deliberately narrow. `DeviceManager` currently speaks the Bambu JSON
dialect because that is the payload shape already used throughout the command and state workflow. The
v1 `OrcaPrinterAgent` also accepts that Bambu dialect. Its transport path places the small translation
needed for the target printer at `deliver_to_sink`, keeping the compatibility code at the edge rather
than spreading it through `DeviceManager` or the agent interface.
The eventual direction is for `DeviceManager` to produce an Orca JSON dialect. The Bambu agent will then
own the translation from Orca JSON to Bambu's protocol, while `OrcaPrinterAgent` can forward the Orca
payload directly to its sink. The v1 translation at `deliver_to_sink` can then be removed without
changing `DeviceManager`, the command callers, or the rest of the agent workflow.
## Components
The system has four relevant layers:
```text
GUI / DeviceManager / MachineObject
|
NetworkAgent
/ \
IPrinterAgent ICloudServiceAgent
| |
printer protocol authentication and cloud services
```
### `DeviceManager` and `MachineObject`
`DeviceManager` owns the application-facing printer workflow. It maintains `MachineObject` instances,
updates their state, filters devices for the active printer agent, and initiates operations such as
homing, temperature changes, printing, subscriptions, and camera playback.
`MachineObject` remains the shared state model used by the GUI. It does not contain the implementation
of a printer protocol. When a device is discovered or returned by a cloud query, the device is tagged
with the active `printer_agent_id`. Device lists and selected-machine operations use that tag to avoid
sending an operation through an agent that does not own the device.
### `NetworkAgent`
`NetworkAgent` is the façade used by the GUI and `DeviceManager`. It owns:
- the currently selected `IPrinterAgent`;
- the registered cloud-service instances, indexed by provider;
- callbacks shared by the active printer agent and the application;
- the forwarding methods for printer commands and cloud operations.
There is one active printer agent for the currently selected printer preset. Switching the preset
increments the machine-list generation, disconnects the old printer agent, removes its callbacks, and
installs the newly selected agent. The façade then forwards printer operations to that agent.
Cloud operations are selected separately using a provider key. `NetworkAgent` forwards a cloud request
to the matching `ICloudServiceAgent`, and forwards cloud camera operations with a device ID. The
printer agent receives a cloud-agent pointer through `set_cloud_agent()` when it is created, allowing
printer communication to obtain cloud tokens without depending on a concrete cloud implementation.
### `IPrinterAgent`
`IPrinterAgent` is the printer-facing contract. It covers:
- cloud-relay and direct-LAN message delivery;
- LAN connection, discovery, binding, and certificates;
- printer subscriptions and callbacks;
- print operations;
- filament synchronization;
- camera capability and local camera URL reporting;
- printer command methods.
Concrete built-in implementations include the Bambu wrapper, the native Orca/Moonraker path, and
other printer-agent implementations registered by the application. A printer agent may use either
the cloud agent, a direct LAN connection, or both.
### `ICloudServiceAgent`
`ICloudServiceAgent` owns authentication and services provided by a cloud backend. It covers login
state, tokens, user and printer lists, settings synchronization, model services, cloud messages, and
cloud camera operations.
Cloud camera operations are device-scoped:
- `get_camera_url(dev_id, callback)` obtains a stream URL for one device;
- `create_camera_signaling_channel(dev_id)` creates signaling for one device where the provider
supports it.
This is separate from the local camera URL exposed by `IPrinterAgent`, which is currently scoped to
the active printer agent because a normal LAN agent represents one physical printer connection.
## Agent registration and selection
`NetworkAgentFactory` maintains the printer-agent registry. Each registry entry contains an agent ID,
a display name, and a factory function. Built-in agents register during application initialization.
Python printer-agent capabilities register dynamically and contribute an agent ID and factory entry.
The selected printer preset contains the printer-agent choice. If no explicit choice is stored, the
application preserves the existing default behavior: Bambu presets select the Bambu agent and other
presets select the native Orca agent. When a preset is changed, `GUI_App` resolves the effective agent
ID, obtains the corresponding cloud agent, creates the printer agent through the registry, and installs
it in `NetworkAgent`.
The registry rejects conflicting agent IDs. This matters for Python plugins because an agent ID is the
stable identity used by presets and device ownership; two enabled plugin capabilities must not claim
the same ID.
## Message and command flow
There are two low-level message paths:
- `send_message()` publishes a command through the printer's cloud relay;
- `send_message_to_printer()` sends a command directly to the printer over the LAN path.
Both paths accept a JSON string, quality-of-service and flag values, and return the existing network
status code domain. The agent owns the conversion from that JSON contract to its native transport.
The typed `command_*` methods are the application-facing convenience layer. The five generic defaults
currently implemented by `IPrinterAgent` construct the existing JSON dialect and route through the
same message path:
| Method | Default operation |
| --- | --- |
| `command_xyz_abs()` | Send `G90` for absolute positioning |
| `command_auto_leveling()` | Send `G29` for bed leveling |
| `command_go_home()` | Use the supported homing operation or send `G28` |
| `command_set_bed()` | Use the supported bed control or send `M140` |
| `command_set_nozzle()` | Send `M104` for nozzle temperature |
These are compatibility defaults for common printer workflows, not a guarantee that every firmware
implements every command identically. An agent can override a method when its protocol needs another
operation. For example, a Klipper configuration may use `BED_MESH_CALIBRATE` instead of `G29`.
The remaining common command methods default to `ORCA_NETWORK_ERR_CMD_NOT_SUPPORTED` because their
existing behavior is vendor-specific or has no portable implementation:
- AMS RFID refresh;
- AMS calibration;
- AMS tray selection;
- camera start;
- axis control.
The methods remain on the common interface so an agent that supports them can override them explicitly.
`sequence_id` remains part of the command contract because `DeviceManager` creates and tracks it as
the command ID.
## Device ownership and stale responses
Printer-agent ownership is represented by `printer_agent_id` on device records and `MachineObject`
instances. The active agent ID is attached when a device is discovered, returned by a cloud list, or
reused after a preset switch. Local-machine configuration also persists the agent ID so a saved LAN
device is not silently reused by an unrelated agent.
Cloud printer-list responses carry three pieces of request context added by `NetworkAgent`:
```text
provider cloud provider used for the request
agent_id active printer agent when the request was made
generation machine-list generation when the request was made
```
`DeviceManager` accepts the response only when those values still match the current provider, active
agent, and generation. This prevents a slow response from the previous preset or provider from
repopulating the current device list.
The provider mapping is currently selected by `GUI_App`: the Bambu agent maps to the Bambu cloud
provider and other agents map to the Orca cloud provider. The generation check protects that existing
selection from races; it does not make cloud-provider ownership intrinsic to an agent. Cloud-printer
ownership and the broader Orca cloud services are therefore still separate architectural concerns.
## Python printer agents
`PrinterAgentPluginCapability` implements `IPrinterAgent` directly. The live capability object is
registered with `NetworkAgentFactory` and handed out as the printer agent when its agent ID is selected.
The plugin receives the selected `ICloudServiceAgent` through `set_cloud_agent()` just like a built-in
printer agent.
Python plugins must implement the core communication and lifecycle methods required by the interface,
including agent metadata, printer connection, discovery callbacks, and the two message-send methods.
Methods that are meaningful only to a particular printer are optional overrides where the C++ base
class provides a default.
All ten `command_*` methods are available in the Python binding and in the trampoline. Their override
status is intentionally optional:
- the five generic commands use the C++ default when Python does not override them;
- the five vendor-specific commands return `NOT_SUPPORTED` unless Python supplies an implementation;
- a Python implementation can replace either behavior for its own protocol.
The Python camera binding exposes HTTP, HTTPS, RTSP, and HTTP-snapshot modes. WebRTC remains a
built-in C++ camera mode, but is not exposed as a Python mode because the current Python capability
does not provide the corresponding cloud signaling-channel contract.
## Camera playback boundary
The camera stream mode describes how a stream is obtained; it does not by itself define ownership of
the wxWidgets view that renders it. `MediaPlayCtrl` selects and tears down the active backend, while
the wx parent owns the child window or renderer. This is important because a web view, native media
control, and frame-based/WebRTC renderer have different wx window-lifetime requirements.
Cloud URL and signaling requests are routed through `NetworkAgent` to the cloud provider selected for
the device. Local URL requests are routed to the active printer agent. The distinction keeps cloud
account services device-scoped while preserving the current one-LAN-agent/one-printer model.
## Compatibility constraints
The printer-agent boundary intentionally preserves several existing application contracts:
- Bambu-shaped JSON is still the shared command representation;
- existing network status codes are reused, with Orca-specific unsupported/capability errors added
in the Orca-reserved range;
- `MachineObject` remains the shared device-state model;
- preset and local-machine data retain compatibility with the existing agent-selection behavior;
- Python plugins use the existing capability and pybind11 registration system.
The agent abstraction is therefore responsible for containing vendor differences, not for pretending
that all vendor protocols are identical. The planned Orca JSON dialect is the protocol-neutral command
model for the `DeviceManager`/agent boundary. Once it is introduced, Bambu-specific translation remains
inside the Bambu agent and the Orca agent's v1 sink adapter can be removed as a self-contained cleanup.
## Main implementation locations
- [`IPrinterAgent`](../../src/slic3r/Utils/IPrinterAgent.hpp) — printer-agent contract and generic command defaults
- [`ICloudServiceAgent`](../../src/slic3r/Utils/ICloudServiceAgent.hpp) — cloud service and per-device
cloud camera contract
- [`NetworkAgent`](../../src/slic3r/Utils/NetworkAgent.hpp) — façade and dispatch between active agents
- [`NetworkAgentFactory`](../../src/slic3r/Utils/NetworkAgentFactory.hpp) — built-in and Python agent registry
- [`DeviceManager`](../../src/slic3r/GUI/DeviceCore/DevManager.cpp) — device ownership, filtering, and
stale-response checks
- [`PrinterAgentPluginCapability`](../../src/slic3r/plugin/pluginTypes/printerAgent/PrinterAgentPluginCapability.cpp)
— Python bindings
- [`MediaPlayCtrl`](../../src/slic3r/GUI/MediaPlayCtrl.cpp) — camera backend selection and playback lifecycle
+354 -200
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5554,10 +5554,13 @@ msgctxt "Camera View"
msgid "Right"
msgstr ""
msgid "Add"
msgid "Add plate"
msgstr ""
msgid "Add plate"
msgid "Split to objects"
msgstr ""
msgid "Add"
msgstr ""
msgid "Auto orient all/selected objects"
@@ -5572,9 +5575,6 @@ msgstr ""
msgid "Arrange objects on selected plates"
msgstr ""
msgid "Split to objects"
msgstr ""
msgid "Assembly View"
msgstr ""
@@ -5629,6 +5629,9 @@ msgstr ""
msgid "Wireframe"
msgstr ""
msgid "X-Ray"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -6158,9 +6161,6 @@ msgstr ""
msgid "Preferences"
msgstr ""
msgid "Open speed dial..."
msgstr ""
msgctxt "Menu"
msgid "Edit"
msgstr ""
@@ -6168,6 +6168,9 @@ msgstr ""
msgid "View"
msgstr ""
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr ""
@@ -7886,9 +7889,6 @@ msgstr ""
msgid "Collapse sidebar"
msgstr ""
msgid "Tab"
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Loading file: %s"
msgstr ""
@@ -8827,10 +8827,10 @@ msgstr ""
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr ""
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -8956,6 +8956,15 @@ msgstr ""
msgid "Set the action that dragging the right mouse button should perform."
msgstr ""
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr ""
@@ -9049,10 +9058,38 @@ msgid ""
"Set to 0 for unlimited frame rate."
msgstr ""
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Show FPS overlay"
msgstr ""
msgid "Displays current viewport FPS in the top-right corner."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
msgid "G-code Preview"
@@ -9480,10 +9517,7 @@ msgstr ""
msgid "Select which settings to be published in the 3MF file"
msgstr ""
msgid "Publish 3MF Wiki"
msgstr ""
msgid "Publish 3MF Video Guide"
msgid "Video Guide"
msgstr ""
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -9675,6 +9709,12 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Hide details"
msgstr ""
#, possible-c-format, possible-boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -11373,65 +11413,37 @@ msgstr ""
msgid "Configuration package changed"
msgstr ""
msgid "Toolbar"
msgstr ""
msgid "Objects list"
msgstr ""
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr ""
msgid "Paste from clipboard"
msgstr ""
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr ""
msgid "Switch table page"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr ""
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr ""
msgid "Global shortcuts"
msgstr ""
msgid "Pan View"
msgstr ""
msgid "Rotate View"
msgstr ""
msgid "Middle mouse button"
#, possible-c-format, possible-boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgid "Zoom View"
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgid "Left mouse"
msgstr ""
msgid "Auto orients all objects on the active plate."
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Collapse/Expand the sidebar"
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
msgid "Any arrow"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr ""
msgid "Movement in camera space"
msgid "Switch to the next main tab"
msgstr ""
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
@@ -11443,120 +11455,28 @@ msgstr ""
msgid "Select objects by rectangle"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr ""
msgid "Move selection 10mm in positive Y direction"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr ""
msgid "Move selection 10mm in negative Y direction"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr ""
msgid "Move selection 10mm in negative X direction"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr ""
msgid "Move selection 10mm in positive X direction"
msgid "Keyboard 1-9: set filament for object/part"
msgstr ""
msgid "Movement step set to 1mm"
msgstr ""
msgid "Keyboard 1-9: set filament for object/part"
msgid "Movement in camera space"
msgstr ""
msgid "Camera view - Default"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgid "Zoom View"
msgstr ""
msgid "Camera view - Front"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr ""
msgid "Camera Angle - Left side"
msgstr ""
msgid "Camera Angle - Right side"
msgstr ""
msgid "Select all objects"
msgstr ""
msgid "Gizmo move"
msgstr ""
msgid "Gizmo rotate"
msgstr ""
msgid "Gizmo scale"
msgstr ""
msgid "Gizmo place face on bed"
msgstr ""
msgid "Gizmo cut"
msgstr ""
msgid "Gizmo mesh boolean"
msgstr ""
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr ""
msgid "Gizmo SLA support points"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr ""
msgid "Gizmo measure"
msgstr ""
msgid "Gizmo assemble"
msgstr ""
msgid "Gizmo brim ears"
msgstr ""
msgid "Zoom in"
msgstr ""
msgid "Zoom out"
msgstr ""
msgid "Toggle printable for object/part"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr ""
msgid "Switch between Prepare/Preview"
msgstr ""
msgid "Plater"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
@@ -11568,13 +11488,17 @@ msgstr ""
msgid "Support/Color Painting: adjust section position"
msgstr ""
msgid "Gizmo"
msgid "Objects list"
msgstr ""
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr ""
msgid "Delete objects, parts, modifiers"
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr ""
msgid "Select the object/part and press space to change the name"
@@ -11586,42 +11510,47 @@ msgstr ""
msgid "Select the object/part and mouse click to change the name"
msgstr ""
msgid "Objects List"
msgstr ""
msgid "Vertical slider - Move active thumb Up"
msgstr ""
msgid "Vertical slider - Move active thumb Down"
msgstr ""
msgid "Horizontal slider - Move active thumb Left"
msgstr ""
msgid "Horizontal slider - Move active thumb Right"
msgstr ""
msgid "On/Off one layer mode of the vertical slider"
msgstr ""
msgid "On/Off G-code window"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgid "Not customizable"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "End"
#, possible-c-format, possible-boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
#, possible-c-format, possible-boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Already used as a step of %s."
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
@@ -15921,7 +15850,7 @@ msgstr ""
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr ""
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
@@ -17330,12 +17259,36 @@ msgstr ""
msgid "Total length of filament used in the print."
msgstr ""
msgid "Print time (seconds)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr ""
@@ -19016,6 +18969,9 @@ msgstr ""
msgid "Success!"
msgstr ""
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr ""
@@ -19225,12 +19181,6 @@ msgstr ""
msgid "Could not connect to Duet"
msgstr ""
msgid "Connection to Ultimaker is working correctly."
msgstr ""
msgid "Could not connect to Ultimaker"
msgstr ""
msgid "Unknown error occurred"
msgstr ""
@@ -19958,12 +19908,6 @@ msgstr ""
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Hide details"
msgstr ""
msgid "Version to install:"
msgstr ""
@@ -22542,6 +22486,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -22554,6 +22504,210 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr ""
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr ""
msgid "Select all objects"
msgstr ""
msgid "Paste from clipboard"
msgstr ""
msgid "Toggle printable for object/part"
msgstr ""
msgid "Move selection 10mm in negative X direction"
msgstr ""
msgid "Move selection 10mm in positive X direction"
msgstr ""
msgid "Move selection 10mm in positive Y direction"
msgstr ""
msgid "Move selection 10mm in negative Y direction"
msgstr ""
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr ""
msgid "Gizmo rotate"
msgstr ""
msgid "Gizmo scale"
msgstr ""
msgid "Gizmo place face on bed"
msgstr ""
msgid "Gizmo cut"
msgstr ""
msgid "Gizmo mesh boolean"
msgstr ""
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr ""
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr ""
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr ""
msgid "Gizmo measure"
msgstr ""
msgid "Gizmo assemble"
msgstr ""
msgid "Gizmo brim ears"
msgstr ""
msgid "Vertical slider - Move active thumb Up"
msgstr ""
msgid "Vertical slider - Move active thumb Down"
msgstr ""
msgid "Horizontal slider - Move active thumb Left"
msgstr ""
msgid "Horizontal slider - Move active thumb Right"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr ""
msgid "Camera view - Default"
msgstr ""
msgid "Camera view - Top"
msgstr ""
msgid "Camera view - Bottom"
msgstr ""
msgid "Camera view - Front"
msgstr ""
msgid "Camera view - Behind"
msgstr ""
msgid "Camera Angle - Left side"
msgstr ""
msgid "Camera Angle - Right side"
msgstr ""
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr ""
msgid "Zoom out"
msgstr ""
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr ""
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr ""
msgid "On/Off one layer mode of the vertical slider"
msgstr ""
msgid "Switch between Prepare/Preview"
msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr ""
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr ""
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid "Precise wall\nDid you know that turning on precise wall can improve precision and layer consistency?"
msgstr ""
+452 -238
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: 2025-03-15 10:55+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -6015,12 +6015,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Dreta"
msgid "Add"
msgstr "Afegir"
msgid "Add plate"
msgstr "Afegir placa"
msgid "Split to objects"
msgstr "Separar en objectes"
msgid "Add"
msgstr "Afegir"
msgid "Auto orient all/selected objects"
msgstr "Auto-orientació tots/seleccionats objectes"
@@ -6033,9 +6036,6 @@ msgstr "Ordenar tots els objectes"
msgid "Arrange objects on selected plates"
msgstr "Ordenar els objectes en plaques seleccionades"
msgid "Split to objects"
msgstr "Separar en objectes"
msgid "Assembly View"
msgstr "Vista de muntatge"
@@ -6092,6 +6092,9 @@ msgstr "Contorn"
msgid "Wireframe"
msgstr "Malla alàmbrica"
msgid "X-Ray"
msgstr ""
# AI Translated
msgid "Realistic View"
msgstr "Vista realista"
@@ -6634,9 +6637,6 @@ msgstr "Mostrar el contorn al voltant de l'objecte seleccionat a l'escena 3D"
msgid "Preferences"
msgstr "Preferències"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6645,6 +6645,9 @@ msgstr "Edita"
msgid "View"
msgstr "Vista"
msgid "Open Speed Dial"
msgstr ""
# AI Translated
msgid "Preset Bundle"
msgstr "Paquet de perfils"
@@ -8469,10 +8472,6 @@ msgstr "Expandir la barra lateral"
msgid "Collapse sidebar"
msgstr "Replegar barra lateral"
# AI Translated
msgid "Tab"
msgstr "Pestanya"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Carregant fitxer: %s"
@@ -9510,10 +9509,10 @@ msgstr "Gestió multidispositiu"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Amb aquesta opció habilitada, podeu enviar una tasca a diversos dispositius alhora i gestionar múltiples dispositius."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9652,6 +9651,15 @@ msgstr "Arrossegament amb el botó dret del ratolí"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Estableix l'acció que ha de fer l'arrossegament amb el botó dret del ratolí."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "Esborra la meva elecció a..."
@@ -9776,13 +9784,40 @@ msgstr ""
"Limita la velocitat de fotogrames de la vista per reduir la càrrega de la GPU i el consum.\n"
"Establiu-ho a 0 per a una velocitat de fotogrames sense límit."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
# AI Translated
msgid "Show FPS overlay"
msgstr "Mostrar la superposició d'FPS"
# AI Translated
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Mostra els FPS actuals de la vista a la cantonada superior dreta."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -10261,13 +10296,8 @@ msgstr "Publicar 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Seleccioneu quines opcions es publicaran al fitxer 3MF"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "Wiki de Publicar 3MF"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "Guia en vídeo de Publicar 3MF"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10469,6 +10499,13 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "Mostra detalls"
# AI Translated
msgid "Hide details"
msgstr "Amagar els detalls"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -12336,41 +12373,6 @@ msgstr "El paquet de configuració s'ha canviat a la Guia de Configuració anter
msgid "Configuration package changed"
msgstr "S'ha canviat el paquet de configuració"
msgid "Toolbar"
msgstr "Barra deines"
msgid "Objects list"
msgstr "Llista d'objectes"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importar dades de geometria des de fitxers STL/STEP/3MF/OBJ/AMF"
msgid "Paste from clipboard"
msgstr "Enganxa des del porta-retalls"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Mostrar/Amagar quadre de diàleg Configuració de Dispositius 3Dconnexion"
msgid "Switch table page"
msgstr "Canviar de pàgina de taula"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Espai"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Mostrar la llista de dreceres de teclat"
msgid "Global shortcuts"
msgstr "Dreceres Globals"
# AI Translated
msgid "Pan View"
msgstr "Desplaçament de la vista"
@@ -12379,28 +12381,33 @@ msgstr "Desplaçament de la vista"
msgid "Rotate View"
msgstr "Rotació de la vista"
# AI Translated
msgid "Middle mouse button"
msgstr "Botó central del ratolí"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Left mouse"
msgstr ""
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
# AI Translated
msgid "Zoom View"
msgstr "Zoom de la vista"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Orienta/alinea automàticament els objectes seleccionats o tots els objectes. Si hi ha objectes seleccionats, només orientarà/alinearà els seleccionats. En cas contrari, orientarà/alinearà tots els objectes del projecte actual."
msgid "Switch to the next main tab"
msgstr ""
msgid "Auto orients all objects on the active plate."
msgstr "Orienta/alinea automàticament tots els objectes de la placa actual."
msgid "Collapse/Expand the sidebar"
msgstr "Replegar/Expandir barra lateral"
msgid "Any arrow"
msgstr "Qualsevol fletxa"
msgid "Movement in camera space"
msgstr "Moviment a l'espai de la càmera"
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Seleccionar una peça"
@@ -12411,127 +12418,30 @@ msgstr "Seleccionar múltiples objectes"
msgid "Select objects by rectangle"
msgstr "Seleccionar objectes per rectangle"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Fletxa amunt"
msgid "Move selection 10mm in positive Y direction"
msgstr "Moure la selecció 10 mm en direcció Y positiva"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Fletxa avall"
msgid "Move selection 10mm in negative Y direction"
msgstr "Moure la selecció 10 mm en direcció Y negativa"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Fletxa esquerra"
msgid "Move selection 10mm in negative X direction"
msgstr "Moure la selecció 10 mm en direcció X negativa"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Fletxa dreta"
msgid "Move selection 10mm in positive X direction"
msgstr "Moure la selecció 10 mm en direcció X positiva"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "teclat 1-9: establir filament per a objecte/peça"
msgid "Movement step set to 1mm"
msgstr "Pas de moviment configurat a 1 mm"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "teclat 1-9: establir filament per a objecte/peça"
msgid "Movement in camera space"
msgstr "Moviment a l'espai de la càmera"
msgid "Camera view - Default"
msgstr "Vista de càmera - Predeterminada"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Vista de càmera - Part Superior"
msgid "Camera view - Bottom"
msgstr "Vista de càmera - Part Inferior"
msgid "Camera view - Front"
msgstr "Vista de càmera - Frontal"
msgid "Camera view - Behind"
msgstr "Vista de càmera - Darrere"
msgid "Camera Angle - Left side"
msgstr "Angle de càmera - Costat Esquerre"
msgid "Camera Angle - Right side"
msgstr "Angle de càmera - Costat Dret"
msgid "Select all objects"
msgstr "Seleccionar tots els objectes"
msgid "Gizmo move"
msgstr "Gizmo de Moviment"
msgid "Gizmo rotate"
msgstr "Gizmo de Rotació"
msgid "Gizmo scale"
msgstr "Gizmo d'Escala"
msgid "Gizmo place face on bed"
msgstr "Gizmo de recolzament sobre la Cara a la placa"
msgid "Gizmo cut"
msgstr "Gizmo de Tall"
msgid "Gizmo mesh boolean"
msgstr "Gizmo booleà de malla"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Eina FDM per a pell difusa pintada"
msgid "Gizmo SLA support points"
msgstr "Gizmo de Punts de suport SLA"
msgid "Gizmo FDM paint-on seam"
msgstr "Eina de Pintat de costures FDM"
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo de text en relleu/gravat"
msgid "Gizmo measure"
msgstr "Gizmo mesurar"
msgid "Gizmo assemble"
msgstr "Gizmo ensamblar"
msgid "Gizmo brim ears"
msgstr "Gizmo orelles de la Vora d'Adherència"
msgid "Zoom in"
msgstr "Augmentar zoom"
msgid "Zoom out"
msgstr "Reduir zoom"
msgid "Right mouse"
msgstr ""
# AI Translated
msgid "Toggle printable for object/part"
msgstr "Commutar la impressibilitat de l'objecte/peça"
msgid "Zoom View"
msgstr "Zoom de la vista"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Painting"
msgstr ""
msgid "Switch between Prepare/Preview"
msgstr "Canviar entre Preparar/Previsualitzar"
msgid "Plater"
msgstr "Plataforma"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Moure: Clicka per ajustar en passos d'1 mm"
@@ -12542,15 +12452,19 @@ msgstr "Suport/Pintat de color: configuració del radi de la ploma"
msgid "Support/Color Painting: adjust section position"
msgstr "Suport/Pintat de color: configuració de la posició de la secció"
# AI Translated
msgid "Gizmo"
msgstr "Gizmo"
msgid "Objects list"
msgstr "Llista d'objectes"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Establir el número d'extrusor per als objectes i les peces"
msgid "Delete objects, parts, modifiers"
msgstr "Eliminar objectes, peces, modificadors"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Espai"
msgid "Select the object/part and press space to change the name"
msgstr "Seleccioneu l'objecte/peça i premeu espai per canviar-ne el nom"
@@ -12561,45 +12475,48 @@ msgstr "Feu clic amb el ratolí"
msgid "Select the object/part and mouse click to change the name"
msgstr "Seleccioneu l'objecte/peça i feu clic amb el ratolí per canviar el nom"
msgid "Objects List"
msgstr "Llista d'Objectes"
msgid "Vertical slider - Move active thumb Up"
msgstr "Barra de desplaçament Vertical - Mou el barra de desplaçament actiu cap Amunt"
msgid "Vertical slider - Move active thumb Down"
msgstr "Barra de desplaçament Vertical - Mou el barra de desplaçament actiu cap Avall"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Barra de desplaçament Horitzontal - Mou el barra de desplaçament actiu cap a l'Esquerra"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Barra de desplaçament Horitzontal - Mou la barra de desplaçament activa cap a la Dreta"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Activar/desactivar el mode de capa única de la barra de desplaçament vertical"
msgid "On/Off G-code window"
msgstr "Activar/Desactivar finestra de Codi-G"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Moure la barra de desplaçament 5 vegades més ràpid"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Inici"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "Control lliscant horitzontal - Mou fins a la posició inicial"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "Fi"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "Control lliscant horitzontal - Mou a l'última posició"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Notes de la versió"
@@ -17594,8 +17511,8 @@ msgstr "Passos de preescalfament"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Inseriu diverses ordres de preescalfament (p. ex., M104.1). Només útil per a Prusa XL. Per a altres impressores, poseu-la a 1."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-code escrit al començament del fitxer de sortida, abans de qualsevol altre contingut. Útil per afegir metadades que el firmware de la impressora llegeix de les primeres línies del fitxer (p. ex. temps d'impressió estimat, ús de filament). Admet espais reservats com {print_time_sec} i {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "Codi-G inicial"
@@ -19154,12 +19071,36 @@ msgstr "Filament usat"
msgid "Total length of filament used in the print."
msgstr "Longitud total de filament utilitzat a la impressió."
msgid "Print time (seconds)"
msgstr "Temps d'impressió (segons)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Temps d'impressió estimat total en segons. Substituït pel valor real durant el post-processament."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "Longitud del filament (metres)"
@@ -21033,6 +20974,9 @@ msgstr "No s'ha detectat cap sessió vàlida. Voleu continuar amb l'inici de ses
msgid "Success!"
msgstr "Èxit!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "Estàs segur de tancar sessió?"
@@ -22088,13 +22032,6 @@ msgstr "El connector de xarxa Bambu és necessari per a les funcions del núvol,
msgid "Error: %s"
msgstr "Error: %s"
msgid "Show details"
msgstr "Mostra detalls"
# AI Translated
msgid "Hide details"
msgstr "Amagar els detalls"
msgid "Version to install:"
msgstr "Versió a instal·lar:"
@@ -24751,6 +24688,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -24763,6 +24706,217 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Inici"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "Fi"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Fletxa esquerra"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Fletxa dreta"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Fletxa amunt"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Fletxa avall"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importar dades de geometria des de fitxers STL/STEP/3MF/OBJ/AMF"
msgid "Select all objects"
msgstr "Seleccionar tots els objectes"
msgid "Paste from clipboard"
msgstr "Enganxa des del porta-retalls"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "Commutar la impressibilitat de l'objecte/peça"
msgid "Move selection 10mm in negative X direction"
msgstr "Moure la selecció 10 mm en direcció X negativa"
msgid "Move selection 10mm in positive X direction"
msgstr "Moure la selecció 10 mm en direcció X positiva"
msgid "Move selection 10mm in positive Y direction"
msgstr "Moure la selecció 10 mm en direcció Y positiva"
msgid "Move selection 10mm in negative Y direction"
msgstr "Moure la selecció 10 mm en direcció Y negativa"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Gizmo de Moviment"
msgid "Gizmo rotate"
msgstr "Gizmo de Rotació"
msgid "Gizmo scale"
msgstr "Gizmo d'Escala"
msgid "Gizmo place face on bed"
msgstr "Gizmo de recolzament sobre la Cara a la placa"
msgid "Gizmo cut"
msgstr "Gizmo de Tall"
msgid "Gizmo mesh boolean"
msgstr "Gizmo booleà de malla"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "Eina de Pintat de costures FDM"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Eina FDM per a pell difusa pintada"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo de text en relleu/gravat"
msgid "Gizmo measure"
msgstr "Gizmo mesurar"
msgid "Gizmo assemble"
msgstr "Gizmo ensamblar"
msgid "Gizmo brim ears"
msgstr "Gizmo orelles de la Vora d'Adherència"
msgid "Vertical slider - Move active thumb Up"
msgstr "Barra de desplaçament Vertical - Mou el barra de desplaçament actiu cap Amunt"
msgid "Vertical slider - Move active thumb Down"
msgstr "Barra de desplaçament Vertical - Mou el barra de desplaçament actiu cap Avall"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Barra de desplaçament Horitzontal - Mou el barra de desplaçament actiu cap a l'Esquerra"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Barra de desplaçament Horitzontal - Mou la barra de desplaçament activa cap a la Dreta"
msgid "Horizontal slider - Move to start position"
msgstr "Control lliscant horitzontal - Mou fins a la posició inicial"
msgid "Horizontal slider - Move to last position"
msgstr "Control lliscant horitzontal - Mou a l'última posició"
msgid "Camera view - Default"
msgstr "Vista de càmera - Predeterminada"
msgid "Camera view - Top"
msgstr "Vista de càmera - Part Superior"
msgid "Camera view - Bottom"
msgstr "Vista de càmera - Part Inferior"
msgid "Camera view - Front"
msgstr "Vista de càmera - Frontal"
msgid "Camera view - Behind"
msgstr "Vista de càmera - Darrere"
msgid "Camera Angle - Left side"
msgstr "Angle de càmera - Costat Esquerre"
msgid "Camera Angle - Right side"
msgstr "Angle de càmera - Costat Dret"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Augmentar zoom"
msgid "Zoom out"
msgstr "Reduir zoom"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Mostrar/Amagar quadre de diàleg Configuració de Dispositius 3Dconnexion"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "Activar/Desactivar finestra de Codi-G"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Activar/desactivar el mode de capa única de la barra de desplaçament vertical"
msgid "Switch between Prepare/Preview"
msgstr "Canviar entre Preparar/Previsualitzar"
msgid "Collapse/Expand the sidebar"
msgstr "Replegar/Expandir barra lateral"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Mostrar la llista de dreceres de teclat"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -25064,6 +25218,66 @@ 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ó?"
# AI Translated
#~ msgid "Tab"
#~ msgstr "Pestanya"
# AI Translated
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Mostra els FPS actuals de la vista a la cantonada superior dreta."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "Wiki de Publicar 3MF"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "Guia en vídeo de Publicar 3MF"
#~ msgid "Toolbar"
#~ msgstr "Barra deines"
#~ msgid "Switch table page"
#~ msgstr "Canviar de pàgina de taula"
#~ msgid "Global shortcuts"
#~ msgstr "Dreceres Globals"
# AI Translated
#~ msgid "Middle mouse button"
#~ msgstr "Botó central del ratolí"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Orienta/alinea automàticament els objectes seleccionats o tots els objectes. Si hi ha objectes seleccionats, només orientarà/alinearà els seleccionats. En cas contrari, orientarà/alinearà tots els objectes del projecte actual."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Orienta/alinea automàticament tots els objectes de la placa actual."
#~ msgid "Any arrow"
#~ msgstr "Qualsevol fletxa"
#~ msgid "Gizmo SLA support points"
#~ msgstr "Gizmo de Punts de suport SLA"
#~ msgid "Plater"
#~ msgstr "Plataforma"
# AI Translated
#~ msgid "Gizmo"
#~ msgstr "Gizmo"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Eliminar objectes, peces, modificadors"
#~ msgid "Objects List"
#~ msgstr "Llista d'Objectes"
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-code escrit al començament del fitxer de sortida, abans de qualsevol altre contingut. Útil per afegir metadades que el firmware de la impressora llegeix de les primeres línies del fitxer (p. ex. temps d'impressió estimat, ús de filament). Admet espais reservats com {print_time_sec} i {used_filament_length}."
#~ msgid "Print time (seconds)"
#~ msgstr "Temps d'impressió (segons)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "Obrir el marcatge ràpid d'accions"
+454 -240
View File
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: Jakub Hencl\n"
"Language-Team: \n"
@@ -5976,12 +5976,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Pravý"
msgid "Add"
msgstr "Přidat"
msgid "Add plate"
msgstr "Přidat desku"
msgid "Split to objects"
msgstr "Rozdělit na objekty"
msgid "Add"
msgstr "Přidat"
msgid "Auto orient all/selected objects"
msgstr "Automaticky orientovat všechny/vybrané objekty"
@@ -5994,9 +5997,6 @@ msgstr "Rozložit všechny objekty"
msgid "Arrange objects on selected plates"
msgstr "Rozložit objekty na vybraných deskách"
msgid "Split to objects"
msgstr "Rozdělit na objekty"
msgid "Assembly View"
msgstr "Zobrazení sestavy"
@@ -6054,6 +6054,9 @@ msgstr "Obrys"
msgid "Wireframe"
msgstr "Drátový model"
msgid "X-Ray"
msgstr ""
# AI Translated
msgid "Realistic View"
msgstr "Realistické zobrazení"
@@ -6599,9 +6602,6 @@ msgstr "Zobrazit obrys kolem vybraného objektu ve 3D scéně."
msgid "Preferences"
msgstr "Předvolby"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6610,6 +6610,9 @@ msgstr "Upravit"
msgid "View"
msgstr "Zobrazit"
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr "Balík předvoleb"
@@ -8436,10 +8439,6 @@ msgstr "Rozbalit postranní panel"
msgid "Collapse sidebar"
msgstr "Sbalit postranní panel"
# AI Translated
msgid "Tab"
msgstr "Tab"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Načítání souboru: %s"
@@ -9463,10 +9462,10 @@ msgstr "Správa více zařízení"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Pokud je tato volba povolena, můžete odeslat úlohu na více zařízení současně a spravovat více zařízení."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9606,6 +9605,15 @@ msgstr "Tažení pravým tlačítkem myši"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Nastavte akci, kterou má provádět tažení pravým tlačítkem myši."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "Vymazat mou volbu pro..."
@@ -9730,13 +9738,40 @@ msgstr ""
"Omezuje snímkovou frekvenci zobrazení, aby se snížila zátěž GPU a spotřeba energie.\n"
"Nastavte 0 pro neomezenou snímkovou frekvenci."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
# AI Translated
msgid "Show FPS overlay"
msgstr "Zobrazit překryv s FPS"
# AI Translated
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Zobrazuje aktuální FPS zobrazení v pravém horním rohu."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -10208,13 +10243,8 @@ msgstr "Publikovat 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Vyberte, která nastavení se mají publikovat v souboru 3MF"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "Wiki k publikování 3MF"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "Videonávod k publikování 3MF"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10417,6 +10447,14 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
# AI Translated
msgid "Show details"
msgstr "Zobrazit podrobnosti"
# AI Translated
msgid "Hide details"
msgstr "Skrýt podrobnosti"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -12321,68 +12359,39 @@ msgstr "Konfigurační balíček byl změněn v předchozím průvodci nastaven
msgid "Configuration package changed"
msgstr "Balíček konfigurace byl změněn"
msgid "Toolbar"
msgstr "Panel nástrojů"
msgid "Objects list"
msgstr "Seznam objektů"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importovat geometrická data ze souborů STL/STEP/3MF/OBJ/AMF"
msgid "Paste from clipboard"
msgstr "Vložit ze schránky"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Zobrazit/Skrýt dialog nastavení zařízení 3Dconnexion"
msgid "Switch table page"
msgstr "Přepnout stránku tabulky"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Mezerník"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Zobrazit seznam klávesových zkratek"
msgid "Global shortcuts"
msgstr "Globální klávesové zkratky"
msgid "Pan View"
msgstr "Posun pohledu"
msgid "Rotate View"
msgstr "Otočit pohled"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Left mouse"
msgstr ""
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
# AI Translated
msgid "Middle mouse button"
msgstr "Prostřední tlačítko myši"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Zoom View"
msgstr "Přiblížení pohledu"
msgid "Switch to the next main tab"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Automaticky orientuje vybrané nebo všechny objekty. Pokud jsou vybrané objekty, orientuje pouze tyto. Jinak orientuje všechny objekty v aktuálním projektu."
msgid "Auto orients all objects on the active plate."
msgstr "Automaticky orientuje všechny objekty na aktivní desce."
msgid "Collapse/Expand the sidebar"
msgstr "Sbalit/rozbalit postranní panel"
msgid "Any arrow"
msgstr "Libovolná šipka"
msgid "Movement in camera space"
msgstr "Pohyb v prostoru kamery"
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Vyberte část"
@@ -12393,127 +12402,29 @@ msgstr "Vyberte více objektů"
msgid "Select objects by rectangle"
msgstr "Vyberte objekty obdélníkem"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Šipka nahoru"
msgid "Move selection 10mm in positive Y direction"
msgstr "Přesuňte výběr o 10 mm v kladném směru osy Y"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Šipka dolů"
msgid "Move selection 10mm in negative Y direction"
msgstr "Přesuňte výběr o 10 mm v záporném směru osy Y"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Šipka vlevo"
msgid "Move selection 10mm in negative X direction"
msgstr "Přesuňte výběr o 10 mm v záporném směru osy X"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Šipka vpravo"
msgid "Move selection 10mm in positive X direction"
msgstr "Přesuňte výběr o 10 mm v kladném směru osy X"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Klávesy 19: nastavit filament pro objekt/část"
msgid "Movement step set to 1mm"
msgstr "Krok pohybu nastaven na 1 mm"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Klávesy 19: nastavit filament pro objekt/část"
msgid "Movement in camera space"
msgstr "Pohyb v prostoru kamery"
msgid "Camera view - Default"
msgstr "Pohled kamery výchozí"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Pohled kamery shora"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "Pohled kamery zespodu"
msgid "Zoom View"
msgstr "Přiblížení pohledu"
msgid "Camera view - Front"
msgstr "Pohled kamery zepředu"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "Pohled kamery zezadu"
msgid "Camera Angle - Left side"
msgstr "Úhel kamery levá strana"
msgid "Camera Angle - Right side"
msgstr "Úhel kamery pravá strana"
msgid "Select all objects"
msgstr "Vybrat všechny objekty"
msgid "Gizmo move"
msgstr "Gizmo posouvat"
msgid "Gizmo rotate"
msgstr "Gizmo otočit"
msgid "Gizmo scale"
msgstr "Gizmo změnit měřítko"
msgid "Gizmo place face on bed"
msgstr "Gizmo umístit plochu na podložku"
msgid "Gizmo cut"
msgstr "Gizmo řezat"
# AI Translated
msgid "Gizmo mesh boolean"
msgstr "Gizmo booleovské operace se sítí"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM malování efektu chlupatého povrchu"
msgid "Gizmo SLA support points"
msgstr "Gizmo SLA podpůrné body"
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo FDM malování švu"
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo text vystouplý/gravírovaný"
msgid "Gizmo measure"
msgstr "Gizmo měření"
msgid "Gizmo assemble"
msgstr "Gizmo sestavit"
msgid "Gizmo brim ears"
msgstr "Gizmo ouška lemu"
msgid "Zoom in"
msgstr "Přiblížit"
msgid "Zoom out"
msgstr "Oddálit"
msgid "Toggle printable for object/part"
msgstr "Přepnout tisknutelnost objektu/části"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "Přepnout mezi Přípravou/Náhledem"
msgid "Plater"
msgstr "Deska"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Pohyb: stiskněte pro posun o 1 mm"
@@ -12524,15 +12435,19 @@ msgstr "Podpora/barva malování: nastavení poloměru pera"
msgid "Support/Color Painting: adjust section position"
msgstr "Podpora/barva malování: nastavení pozice úseku"
# AI Translated
msgid "Gizmo"
msgstr "Gizmo"
msgid "Objects list"
msgstr "Seznam objektů"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Nastavit číslo extruderu pro objekty a části"
msgid "Delete objects, parts, modifiers"
msgstr "Smazat objekty, části, modifikátory"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Mezerník"
msgid "Select the object/part and press space to change the name"
msgstr "Vyberte objekt/část a stiskněte mezerník pro změnu názvu"
@@ -12543,45 +12458,48 @@ msgstr "Kliknutí myší"
msgid "Select the object/part and mouse click to change the name"
msgstr "Vyberte objekt/část a klikněte myší pro změnu názvu"
msgid "Objects List"
msgstr "Seznam objektů"
msgid "Vertical slider - Move active thumb Up"
msgstr "Vertikální posuvník Posuňte aktivní jezdec nahoru"
msgid "Vertical slider - Move active thumb Down"
msgstr "Vertikální posuvník posuňte aktivní jezdec dolů"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Vodorovný posuvník posunout aktivní jezdec vlevo"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Vodorovný posuvník posunout aktivní jezdec vpravo"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Zapnout/vypnout režim jedné vrstvy na vertikálním posuvníku"
msgid "On/Off G-code window"
msgstr "Zapnout/vypnout okno G-code"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Posouvejte posuvník 5× rychleji"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "Vodorovný posuvník přesunout na začátek"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "Vodorovný posuvník přesunout na poslední pozici"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Poznámky k vydání"
@@ -17532,8 +17450,8 @@ msgstr "Kroky předehřevu"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Vložte více příkazů pro předehřev (např. M104.1). Pouze pro Prusa XL. U ostatních tiskáren nastavte na 1."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-code zapsaný na úplný začátek výstupního souboru před jakýkoli další obsah. Užitečné pro přidání metadat, která firmware tiskárny čte z prvních řádků souboru (např. odhadovaná doba tisku nebo spotřeba filamentu). Podporuje zástupné proměnné jako {print_time_sec} a {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
# AI Translated
msgid "Start G-code"
@@ -19075,12 +18993,36 @@ msgstr "Použitý filament"
msgid "Total length of filament used in the print."
msgstr "Celková délka filamentu použitého při tisku."
msgid "Print time (seconds)"
msgstr "Doba tisku (sekundy)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Celková odhadovaná doba tisku v sekundách. Během následného zpracování bude nahrazena skutečnou hodnotou."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "Délka filamentu (metry)"
@@ -20950,6 +20892,9 @@ msgstr "Nebyla zjištěna platná relace. Pokračovat přihlášením do 3DPrint
msgid "Success!"
msgstr "Úspěch!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "Opravdu se chcete odhlásit?"
@@ -22041,14 +21986,6 @@ msgstr "Síťový plug-in Bambu je nutný pro cloudové funkce, vyhledávání t
msgid "Error: %s"
msgstr "Chyba: %s"
# AI Translated
msgid "Show details"
msgstr "Zobrazit podrobnosti"
# AI Translated
msgid "Hide details"
msgstr "Skrýt podrobnosti"
# AI Translated
msgid "Version to install:"
msgstr "Verze k instalaci:"
@@ -24731,6 +24668,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -24743,6 +24686,217 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Šipka vlevo"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Šipka vpravo"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Šipka nahoru"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Šipka dolů"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importovat geometrická data ze souborů STL/STEP/3MF/OBJ/AMF"
msgid "Select all objects"
msgstr "Vybrat všechny objekty"
msgid "Paste from clipboard"
msgstr "Vložit ze schránky"
msgid "Toggle printable for object/part"
msgstr "Přepnout tisknutelnost objektu/části"
msgid "Move selection 10mm in negative X direction"
msgstr "Přesuňte výběr o 10 mm v záporném směru osy X"
msgid "Move selection 10mm in positive X direction"
msgstr "Přesuňte výběr o 10 mm v kladném směru osy X"
msgid "Move selection 10mm in positive Y direction"
msgstr "Přesuňte výběr o 10 mm v kladném směru osy Y"
msgid "Move selection 10mm in negative Y direction"
msgstr "Přesuňte výběr o 10 mm v záporném směru osy Y"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Gizmo posouvat"
msgid "Gizmo rotate"
msgstr "Gizmo otočit"
msgid "Gizmo scale"
msgstr "Gizmo změnit měřítko"
msgid "Gizmo place face on bed"
msgstr "Gizmo umístit plochu na podložku"
msgid "Gizmo cut"
msgstr "Gizmo řezat"
# AI Translated
msgid "Gizmo mesh boolean"
msgstr "Gizmo booleovské operace se sítí"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo FDM malování švu"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM malování efektu chlupatého povrchu"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo text vystouplý/gravírovaný"
msgid "Gizmo measure"
msgstr "Gizmo měření"
msgid "Gizmo assemble"
msgstr "Gizmo sestavit"
msgid "Gizmo brim ears"
msgstr "Gizmo ouška lemu"
msgid "Vertical slider - Move active thumb Up"
msgstr "Vertikální posuvník Posuňte aktivní jezdec nahoru"
msgid "Vertical slider - Move active thumb Down"
msgstr "Vertikální posuvník posuňte aktivní jezdec dolů"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Vodorovný posuvník posunout aktivní jezdec vlevo"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Vodorovný posuvník posunout aktivní jezdec vpravo"
msgid "Horizontal slider - Move to start position"
msgstr "Vodorovný posuvník přesunout na začátek"
msgid "Horizontal slider - Move to last position"
msgstr "Vodorovný posuvník přesunout na poslední pozici"
msgid "Camera view - Default"
msgstr "Pohled kamery výchozí"
msgid "Camera view - Top"
msgstr "Pohled kamery shora"
msgid "Camera view - Bottom"
msgstr "Pohled kamery zespodu"
msgid "Camera view - Front"
msgstr "Pohled kamery zepředu"
msgid "Camera view - Behind"
msgstr "Pohled kamery zezadu"
msgid "Camera Angle - Left side"
msgstr "Úhel kamery levá strana"
msgid "Camera Angle - Right side"
msgstr "Úhel kamery pravá strana"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Přiblížit"
msgid "Zoom out"
msgstr "Oddálit"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Zobrazit/Skrýt dialog nastavení zařízení 3Dconnexion"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "Zapnout/vypnout okno G-code"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Zapnout/vypnout režim jedné vrstvy na vertikálním posuvníku"
msgid "Switch between Prepare/Preview"
msgstr "Přepnout mezi Přípravou/Náhledem"
msgid "Collapse/Expand the sidebar"
msgstr "Sbalit/rozbalit postranní panel"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Zobrazit seznam klávesových zkratek"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -25045,6 +25199,66 @@ 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í?"
# AI Translated
#~ msgid "Tab"
#~ msgstr "Tab"
# AI Translated
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Zobrazuje aktuální FPS zobrazení v pravém horním rohu."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "Wiki k publikování 3MF"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "Videonávod k publikování 3MF"
#~ msgid "Toolbar"
#~ msgstr "Panel nástrojů"
#~ msgid "Switch table page"
#~ msgstr "Přepnout stránku tabulky"
#~ msgid "Global shortcuts"
#~ msgstr "Globální klávesové zkratky"
# AI Translated
#~ msgid "Middle mouse button"
#~ msgstr "Prostřední tlačítko myši"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Automaticky orientuje vybrané nebo všechny objekty. Pokud jsou vybrané objekty, orientuje pouze tyto. Jinak orientuje všechny objekty v aktuálním projektu."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Automaticky orientuje všechny objekty na aktivní desce."
#~ msgid "Any arrow"
#~ msgstr "Libovolná šipka"
#~ msgid "Gizmo SLA support points"
#~ msgstr "Gizmo SLA podpůrné body"
#~ msgid "Plater"
#~ msgstr "Deska"
# AI Translated
#~ msgid "Gizmo"
#~ msgstr "Gizmo"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Smazat objekty, části, modifikátory"
#~ msgid "Objects List"
#~ msgstr "Seznam objektů"
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-code zapsaný na úplný začátek výstupního souboru před jakýkoli další obsah. Užitečné pro přidání metadat, která firmware tiskárny čte z prvních řádků souboru (např. odhadovaná doba tisku nebo spotřeba filamentu). Podporuje zástupné proměnné jako {print_time_sec} a {used_filament_length}."
#~ msgid "Print time (seconds)"
#~ msgstr "Doba tisku (sekundy)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "Otevřít rychlou nabídku akcí"
+446 -232
View File
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: Heiko Liebscher <hliebschergmail.com>\n"
"Language-Team: \n"
@@ -5873,12 +5873,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "rechts"
msgid "Add"
msgstr "Hinzufügen"
msgid "Add plate"
msgstr "Druckplatte hinzufügen"
msgid "Split to objects"
msgstr "In Objekte trennen"
msgid "Add"
msgstr "Hinzufügen"
msgid "Auto orient all/selected objects"
msgstr "Alle/ausgewählte Objekte automatische Ausrichtung"
@@ -5891,9 +5894,6 @@ msgstr "Alle Objekte anordnen"
msgid "Arrange objects on selected plates"
msgstr "Objekte auf ausgewählten Druckplatten anordnen"
msgid "Split to objects"
msgstr "In Objekte trennen"
msgid "Assembly View"
msgstr "Montageansicht"
@@ -5949,6 +5949,9 @@ msgstr "Umriss"
msgid "Wireframe"
msgstr "Gittermodell"
msgid "X-Ray"
msgstr ""
msgid "Realistic View"
msgstr "Realistische Ansicht"
@@ -6487,9 +6490,6 @@ msgstr "Kontur um das ausgewählte Objekt in der 3D-Szene anzeigen."
msgid "Preferences"
msgstr "Einstellungen"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6498,6 +6498,9 @@ msgstr "Bearbeiten"
msgid "View"
msgstr "Ansicht"
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr "Vorlagen-Bundle"
@@ -8304,10 +8307,6 @@ msgstr "Seitenleiste erweitern"
msgid "Collapse sidebar"
msgstr "Seitenleiste reduzieren"
# AI Translated
msgid "Tab"
msgstr "Tab"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Datei wird geladen: %s"
@@ -9334,10 +9333,10 @@ msgstr "Multi-Geräte-Verwaltung"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Wenn diese Option aktiviert ist, können Sie eine Aufgabe gleichzeitig an mehrere Geräte senden und mehrere Geräte verwalten."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9469,6 +9468,15 @@ msgstr "Rechte Maustaste drücken"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Legen Sie die Aktion fest, die das Ziehen der rechten Maustaste ausführen soll."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "Meine Auswahl löschen bei ..."
@@ -9579,11 +9587,39 @@ msgstr ""
"Begrenzt die Bildrate des Viewports, um die GPU-Auslastung und den Energieverbrauch zu reduzieren.\n"
"Auf 0 setzen für unbegrenzte Bildrate."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Show FPS overlay"
msgstr "FPS-Overlay anzeigen"
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Zeigt die aktuelle FPS des Viewports in der oberen rechten Ecke an."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -10042,13 +10078,8 @@ msgstr "3MF veröffentlichen..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Wählen Sie aus, welche Einstellungen in der 3MF-Datei veröffentlicht werden"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "Wiki: 3MF veröffentlichen"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "Videoanleitung: 3MF veröffentlichen"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10250,6 +10281,13 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "Zeige Details"
# AI Translated
msgid "Hide details"
msgstr "Details ausblenden"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -12080,67 +12118,39 @@ msgstr "Das Konfigurationspaket wurde im vorherigen Konfigurationsleitfaden geä
msgid "Configuration package changed"
msgstr "Konfigurationspaket geändert"
msgid "Toolbar"
msgstr "Werkzeugleiste"
msgid "Objects list"
msgstr "Liste der Objekte"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importiere Geometriedaten aus STL/STEP/3MF/OBJ/AMF-Dateien"
msgid "Paste from clipboard"
msgstr "Aus Zwischenablage einfügen"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Dialogfeld für 3Dconnexion Geräteeinstellungen anzeigen/ausblenden"
msgid "Switch table page"
msgstr "Seitenwechsel"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Leertaste"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Liste der Tastaturkürzel anzeigen"
msgid "Global shortcuts"
msgstr "Globale Tastaturkürzel"
msgid "Pan View"
msgstr "Ansicht verschieben"
msgid "Rotate View"
msgstr "Ansicht drehen"
msgid "Middle mouse button"
msgstr "Mittlere Maustaste"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgid "Zoom View"
msgstr "Ansicht zoomen"
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Diese Funktion richtet ausgewählte Objekte oder alle Objekte automatisch aus. Wenn es ausgewählte Objekte gibt, werden nur die ausgewählten Objekte ausgerichtet. Andernfalls werden alle Objekte auf das aktuelle Projekt ausgerichtet."
msgid "Left mouse"
msgstr ""
msgid "Auto orients all objects on the active plate."
msgstr "Diese Funktion richtet alle Objekte auf der aktuellen Druckplatte ausgerichtet."
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr "Seitenleiste zu-/aufklappen"
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
msgid "Any arrow"
msgstr "Beliebiger Pfeil"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Movement in camera space"
msgstr "Bewegung im Kameraraum"
msgid "Switch to the next main tab"
msgstr ""
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Teil auswählen"
@@ -12151,126 +12161,29 @@ msgstr "Mehrere Objekte auswählen"
msgid "Select objects by rectangle"
msgstr "Objekte per Rechteck auswählen"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Pfeil nach oben"
msgid "Move selection 10mm in positive Y direction"
msgstr "Auswahl 10 mm in positiver Y-Richtung verschieben"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Pfeil nach unten"
msgid "Move selection 10mm in negative Y direction"
msgstr "Auswahl 10 mm in negativer Y-Richtung verschieben"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Pfeil nach links"
msgid "Move selection 10mm in negative X direction"
msgstr "Auswahl 10 mm in negativer X-Richtung verschieben"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Pfeil nach rechts"
msgid "Move selection 10mm in positive X direction"
msgstr "Auswahl 10 mm in positiver X-Richtung verschieben"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Tastatur 1-9: Filament für Objekt/Teil einstellen"
msgid "Movement step set to 1mm"
msgstr "Bewegungsschritt auf 1 mm eingestellt"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Tastatur 1-9: Filament für Objekt/Teil einstellen"
msgid "Movement in camera space"
msgstr "Bewegung im Kameraraum"
msgid "Camera view - Default"
msgstr "Kameraperspektive - Standard"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Kameraperspektive - Oben"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "Kameraperspektive - Unten"
msgid "Zoom View"
msgstr "Ansicht zoomen"
msgid "Camera view - Front"
msgstr "Kameraperspektive - Vorderseite"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "Kameraperspektive - Hinten"
msgid "Camera Angle - Left side"
msgstr "Kameraperspektive - Links"
msgid "Camera Angle - Right side"
msgstr "Kameraperspektive - Rechts"
msgid "Select all objects"
msgstr "Alle Objekte auswählen"
msgid "Gizmo move"
msgstr "Bewegen"
msgid "Gizmo rotate"
msgstr "Rotieren"
msgid "Gizmo scale"
msgstr "Skalieren"
msgid "Gizmo place face on bed"
msgstr "Fläche auf druckbett platzieren"
msgid "Gizmo cut"
msgstr "Trennen"
msgid "Gizmo mesh boolean"
msgstr "Gizmo mesh-boolesche"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "FDM Pinsel auf Fuzzy Oberfläche"
msgid "Gizmo SLA support points"
msgstr "SLA Stützpunkte"
msgid "Gizmo FDM paint-on seam"
msgstr "FDM Naht aufmalen"
msgid "Gizmo text emboss/engrave"
msgstr "Text prägen/gravieren"
msgid "Gizmo measure"
msgstr "Gizmo messen"
msgid "Gizmo assemble"
msgstr "Gizmo Zusammenbauen"
msgid "Gizmo brim ears"
msgstr "Gizmo mausohren"
msgid "Zoom in"
msgstr "Vergrößern"
msgid "Zoom out"
msgstr "Verkleinern"
msgid "Toggle printable for object/part"
msgstr "Druckbar für Objekt/Teil umschalten"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "Zwischen Vorbereiten/ Vorschau wechseln"
msgid "Plater"
msgstr "Druckplatte"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Verschieben: Drücken, um in 1 mm einzurasten"
@@ -12281,14 +12194,19 @@ msgstr "Stützen/Farbmalen: Stiftradius einstellen"
msgid "Support/Color Painting: adjust section position"
msgstr "Stützen/Farbmalen: Position des Abschnitts anpassen"
msgid "Gizmo"
msgstr "Gizmo"
msgid "Objects list"
msgstr "Liste der Objekte"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Extrudernummer für die Objekte und Teile einstellen"
msgid "Delete objects, parts, modifiers"
msgstr "Objekte, Teile, Modifikatoren löschen"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Leertaste"
msgid "Select the object/part and press space to change the name"
msgstr "Wähle das Objekt/Teil aus und drücke die Leertaste, um den Namen zu ändern"
@@ -12299,45 +12217,48 @@ msgstr "Mausklick"
msgid "Select the object/part and mouse click to change the name"
msgstr "Wähle das Objekt/Teil aus und klicke mit der Maus, um den Namen zu ändern"
msgid "Objects List"
msgstr "Objektliste"
msgid "Vertical slider - Move active thumb Up"
msgstr "Vertikaler Schieberegler - Aktiven Schieber nach oben bewegen"
msgid "Vertical slider - Move active thumb Down"
msgstr "Vertikaler Schieberegler - Aktiven Schieber nach unten bewegen"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Horizontaler Schieberegler - Aktiven Schieber nach links bewegen"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Horizontaler Schieberegler - Aktiven Schieber nach rechts bewegen"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Ein/Aus Einschichtmodus des vertikalen Schiebereglers"
msgid "On/Off G-code window"
msgstr "Ein-/Ausblenden des G-Code-Fensters"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Schieberegler 5x schneller bewegen"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Pos1"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "Horizontaler Schieberegler - Zur Startposition bewegen"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "Ende"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "Horizontaler Schieberegler - Zur letzten Position bewegen"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Hinweis zur Veröffentlichung"
@@ -17194,8 +17115,8 @@ msgstr "Vorheizschritte"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Fügen Sie mehrere Vorheizbefehle ein (z.B. M104.1). Nur nützlich für Prusa XL. Für andere Drucker bitte auf 1 setzen."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-Code, der ganz oben in die Ausgabedatei geschrieben wird, vor allen anderen Inhalten. Nützlich zum Hinzufügen von Metadaten, die die Druckerfirmware aus den ersten Zeilen der Datei liest (z.B. geschätzte Druckzeit, Filamentverbrauch). Unterstützt Platzhalter wie {print_time_sec} und {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
# AI Translated
msgid "Start G-code"
@@ -18724,12 +18645,36 @@ msgstr "Genutztes Filament"
msgid "Total length of filament used in the print."
msgstr "Gesamtlänge des im Druck verwendeten Filaments."
msgid "Print time (seconds)"
msgstr "Druckzeit (Sekunden)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Gesammt geschätzte Druckzeit in Sekunden. Ersetzt durch den tatsächlichen Wert während der Nachbearbeitung."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "Filamentlänge (Meter)"
@@ -20563,6 +20508,9 @@ msgstr "Keine gültige Sitzung erkannt. Mit dem Login bei 3DPrinterOS fortfahren
msgid "Success!"
msgstr "Erfolgreich!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "Sind Sie sicher, dass Sie sich abmelden möchten?"
@@ -21518,13 +21466,6 @@ msgstr "Das Bambu Netzwerk Plug-in ist erforderlich für Cloud-Funktionen, Druck
msgid "Error: %s"
msgstr "Fehler: %s"
msgid "Show details"
msgstr "Zeige Details"
# AI Translated
msgid "Hide details"
msgstr "Details ausblenden"
msgid "Version to install:"
msgstr "Version zum Installieren:"
@@ -24155,6 +24096,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -24167,6 +24114,216 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Pos1"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "Ende"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Pfeil nach links"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Pfeil nach rechts"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Pfeil nach oben"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Pfeil nach unten"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importiere Geometriedaten aus STL/STEP/3MF/OBJ/AMF-Dateien"
msgid "Select all objects"
msgstr "Alle Objekte auswählen"
msgid "Paste from clipboard"
msgstr "Aus Zwischenablage einfügen"
msgid "Toggle printable for object/part"
msgstr "Druckbar für Objekt/Teil umschalten"
msgid "Move selection 10mm in negative X direction"
msgstr "Auswahl 10 mm in negativer X-Richtung verschieben"
msgid "Move selection 10mm in positive X direction"
msgstr "Auswahl 10 mm in positiver X-Richtung verschieben"
msgid "Move selection 10mm in positive Y direction"
msgstr "Auswahl 10 mm in positiver Y-Richtung verschieben"
msgid "Move selection 10mm in negative Y direction"
msgstr "Auswahl 10 mm in negativer Y-Richtung verschieben"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Bewegen"
msgid "Gizmo rotate"
msgstr "Rotieren"
msgid "Gizmo scale"
msgstr "Skalieren"
msgid "Gizmo place face on bed"
msgstr "Fläche auf druckbett platzieren"
msgid "Gizmo cut"
msgstr "Trennen"
msgid "Gizmo mesh boolean"
msgstr "Gizmo mesh-boolesche"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "FDM Naht aufmalen"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "FDM Pinsel auf Fuzzy Oberfläche"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Text prägen/gravieren"
msgid "Gizmo measure"
msgstr "Gizmo messen"
msgid "Gizmo assemble"
msgstr "Gizmo Zusammenbauen"
msgid "Gizmo brim ears"
msgstr "Gizmo mausohren"
msgid "Vertical slider - Move active thumb Up"
msgstr "Vertikaler Schieberegler - Aktiven Schieber nach oben bewegen"
msgid "Vertical slider - Move active thumb Down"
msgstr "Vertikaler Schieberegler - Aktiven Schieber nach unten bewegen"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Horizontaler Schieberegler - Aktiven Schieber nach links bewegen"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Horizontaler Schieberegler - Aktiven Schieber nach rechts bewegen"
msgid "Horizontal slider - Move to start position"
msgstr "Horizontaler Schieberegler - Zur Startposition bewegen"
msgid "Horizontal slider - Move to last position"
msgstr "Horizontaler Schieberegler - Zur letzten Position bewegen"
msgid "Camera view - Default"
msgstr "Kameraperspektive - Standard"
msgid "Camera view - Top"
msgstr "Kameraperspektive - Oben"
msgid "Camera view - Bottom"
msgstr "Kameraperspektive - Unten"
msgid "Camera view - Front"
msgstr "Kameraperspektive - Vorderseite"
msgid "Camera view - Behind"
msgstr "Kameraperspektive - Hinten"
msgid "Camera Angle - Left side"
msgstr "Kameraperspektive - Links"
msgid "Camera Angle - Right side"
msgstr "Kameraperspektive - Rechts"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Vergrößern"
msgid "Zoom out"
msgstr "Verkleinern"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Dialogfeld für 3Dconnexion Geräteeinstellungen anzeigen/ausblenden"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "Ein-/Ausblenden des G-Code-Fensters"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Ein/Aus Einschichtmodus des vertikalen Schiebereglers"
msgid "Switch between Prepare/Preview"
msgstr "Zwischen Vorbereiten/ Vorschau wechseln"
msgid "Collapse/Expand the sidebar"
msgstr "Seitenleiste zu-/aufklappen"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Liste der Tastaturkürzel anzeigen"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -24467,6 +24624,63 @@ 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?"
# AI Translated
#~ msgid "Tab"
#~ msgstr "Tab"
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Zeigt die aktuelle FPS des Viewports in der oberen rechten Ecke an."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "Wiki: 3MF veröffentlichen"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "Videoanleitung: 3MF veröffentlichen"
#~ msgid "Toolbar"
#~ msgstr "Werkzeugleiste"
#~ msgid "Switch table page"
#~ msgstr "Seitenwechsel"
#~ msgid "Global shortcuts"
#~ msgstr "Globale Tastaturkürzel"
#~ msgid "Middle mouse button"
#~ msgstr "Mittlere Maustaste"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Diese Funktion richtet ausgewählte Objekte oder alle Objekte automatisch aus. Wenn es ausgewählte Objekte gibt, werden nur die ausgewählten Objekte ausgerichtet. Andernfalls werden alle Objekte auf das aktuelle Projekt ausgerichtet."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Diese Funktion richtet alle Objekte auf der aktuellen Druckplatte ausgerichtet."
#~ msgid "Any arrow"
#~ msgstr "Beliebiger Pfeil"
#~ msgid "Gizmo SLA support points"
#~ msgstr "SLA Stützpunkte"
#~ msgid "Plater"
#~ msgstr "Druckplatte"
#~ msgid "Gizmo"
#~ msgstr "Gizmo"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Objekte, Teile, Modifikatoren löschen"
#~ msgid "Objects List"
#~ msgstr "Objektliste"
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-Code, der ganz oben in die Ausgabedatei geschrieben wird, vor allen anderen Inhalten. Nützlich zum Hinzufügen von Metadaten, die die Druckerfirmware aus den ersten Zeilen der Datei liest (z.B. geschätzte Druckzeit, Filamentverbrauch). Unterstützt Platzhalter wie {print_time_sec} und {used_filament_length}."
#~ msgid "Print time (seconds)"
#~ msgstr "Druckzeit (Sekunden)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "Aktions-Schnellwahl öffnen"
+354 -194
View File
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: 2026-06-17 15:44-0300\n"
"Last-Translator: Alexandre Folle de Menezes\n"
"Language-Team: \n"
@@ -5550,10 +5550,13 @@ msgctxt "Camera View"
msgid "Right"
msgstr ""
msgid "Add"
msgid "Add plate"
msgstr ""
msgid "Add plate"
msgid "Split to objects"
msgstr ""
msgid "Add"
msgstr ""
msgid "Auto orient all/selected objects"
@@ -5568,9 +5571,6 @@ msgstr ""
msgid "Arrange objects on selected plates"
msgstr ""
msgid "Split to objects"
msgstr ""
msgid "Assembly View"
msgstr ""
@@ -5625,6 +5625,9 @@ msgstr ""
msgid "Wireframe"
msgstr ""
msgid "X-Ray"
msgstr ""
msgid "Realistic View"
msgstr ""
@@ -6154,9 +6157,6 @@ msgstr ""
msgid "Preferences"
msgstr ""
msgid "Open speed dial..."
msgstr ""
msgctxt "Menu"
msgid "Edit"
msgstr ""
@@ -6164,6 +6164,9 @@ msgstr ""
msgid "View"
msgstr ""
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr ""
@@ -7882,9 +7885,6 @@ msgstr ""
msgid "Collapse sidebar"
msgstr ""
msgid "Tab"
msgstr ""
#, c-format, boost-format
msgid "Loading file: %s"
msgstr ""
@@ -8823,10 +8823,10 @@ msgstr ""
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr ""
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -8952,6 +8952,15 @@ msgstr ""
msgid "Set the action that dragging the right mouse button should perform."
msgstr ""
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr ""
@@ -9045,10 +9054,38 @@ msgid ""
"Set to 0 for unlimited frame rate."
msgstr ""
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Show FPS overlay"
msgstr ""
msgid "Displays current viewport FPS in the top-right corner."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
msgid "G-code Preview"
@@ -9476,10 +9513,7 @@ msgstr ""
msgid "Select which settings to be published in the 3MF file"
msgstr ""
msgid "Publish 3MF Wiki"
msgstr ""
msgid "Publish 3MF Video Guide"
msgid "Video Guide"
msgstr ""
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -9671,6 +9705,12 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Hide details"
msgstr ""
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -11369,65 +11409,37 @@ msgstr ""
msgid "Configuration package changed"
msgstr ""
msgid "Toolbar"
msgstr ""
msgid "Objects list"
msgstr ""
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr ""
msgid "Paste from clipboard"
msgstr ""
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr ""
msgid "Switch table page"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr ""
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr ""
msgid "Global shortcuts"
msgstr ""
msgid "Pan View"
msgstr ""
msgid "Rotate View"
msgstr ""
msgid "Middle mouse button"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgid "Zoom View"
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgid "Left mouse"
msgstr ""
msgid "Auto orients all objects on the active plate."
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Collapse/Expand the sidebar"
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
msgid "Any arrow"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr ""
msgid "Movement in camera space"
msgid "Switch to the next main tab"
msgstr ""
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
@@ -11439,120 +11451,28 @@ msgstr ""
msgid "Select objects by rectangle"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr ""
msgid "Move selection 10mm in positive Y direction"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr ""
msgid "Move selection 10mm in negative Y direction"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr ""
msgid "Move selection 10mm in negative X direction"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr ""
msgid "Move selection 10mm in positive X direction"
msgid "Keyboard 1-9: set filament for object/part"
msgstr ""
msgid "Movement step set to 1mm"
msgstr ""
msgid "Keyboard 1-9: set filament for object/part"
msgid "Movement in camera space"
msgstr ""
msgid "Camera view - Default"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgid "Zoom View"
msgstr ""
msgid "Camera view - Front"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr ""
msgid "Camera Angle - Left side"
msgstr ""
msgid "Camera Angle - Right side"
msgstr ""
msgid "Select all objects"
msgstr ""
msgid "Gizmo move"
msgstr ""
msgid "Gizmo rotate"
msgstr ""
msgid "Gizmo scale"
msgstr ""
msgid "Gizmo place face on bed"
msgstr ""
msgid "Gizmo cut"
msgstr ""
msgid "Gizmo mesh boolean"
msgstr ""
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr ""
msgid "Gizmo SLA support points"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr ""
msgid "Gizmo measure"
msgstr ""
msgid "Gizmo assemble"
msgstr ""
msgid "Gizmo brim ears"
msgstr ""
msgid "Zoom in"
msgstr ""
msgid "Zoom out"
msgstr ""
msgid "Toggle printable for object/part"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr ""
msgid "Switch between Prepare/Preview"
msgstr ""
msgid "Plater"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
@@ -11564,13 +11484,17 @@ msgstr ""
msgid "Support/Color Painting: adjust section position"
msgstr ""
msgid "Gizmo"
msgid "Objects list"
msgstr ""
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr ""
msgid "Delete objects, parts, modifiers"
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr ""
msgid "Select the object/part and press space to change the name"
@@ -11582,42 +11506,47 @@ msgstr ""
msgid "Select the object/part and mouse click to change the name"
msgstr ""
msgid "Objects List"
msgstr ""
msgid "Vertical slider - Move active thumb Up"
msgstr ""
msgid "Vertical slider - Move active thumb Down"
msgstr ""
msgid "Horizontal slider - Move active thumb Left"
msgstr ""
msgid "Horizontal slider - Move active thumb Right"
msgstr ""
msgid "On/Off one layer mode of the vertical slider"
msgstr ""
msgid "On/Off G-code window"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgid "Not customizable"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
@@ -15917,7 +15846,7 @@ msgstr ""
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr ""
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
@@ -17326,12 +17255,36 @@ msgstr ""
msgid "Total length of filament used in the print."
msgstr ""
msgid "Print time (seconds)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr ""
@@ -19012,6 +18965,9 @@ msgstr ""
msgid "Success!"
msgstr ""
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr ""
@@ -19948,12 +19904,6 @@ msgstr ""
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Hide details"
msgstr ""
msgid "Version to install:"
msgstr ""
@@ -22532,6 +22482,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -22544,6 +22500,210 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr ""
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr ""
msgid "Select all objects"
msgstr ""
msgid "Paste from clipboard"
msgstr ""
msgid "Toggle printable for object/part"
msgstr ""
msgid "Move selection 10mm in negative X direction"
msgstr ""
msgid "Move selection 10mm in positive X direction"
msgstr ""
msgid "Move selection 10mm in positive Y direction"
msgstr ""
msgid "Move selection 10mm in negative Y direction"
msgstr ""
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr ""
msgid "Gizmo rotate"
msgstr ""
msgid "Gizmo scale"
msgstr ""
msgid "Gizmo place face on bed"
msgstr ""
msgid "Gizmo cut"
msgstr ""
msgid "Gizmo mesh boolean"
msgstr ""
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr ""
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr ""
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr ""
msgid "Gizmo measure"
msgstr ""
msgid "Gizmo assemble"
msgstr ""
msgid "Gizmo brim ears"
msgstr ""
msgid "Vertical slider - Move active thumb Up"
msgstr ""
msgid "Vertical slider - Move active thumb Down"
msgstr ""
msgid "Horizontal slider - Move active thumb Left"
msgstr ""
msgid "Horizontal slider - Move active thumb Right"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr ""
msgid "Camera view - Default"
msgstr ""
msgid "Camera view - Top"
msgstr ""
msgid "Camera view - Bottom"
msgstr ""
msgid "Camera view - Front"
msgstr ""
msgid "Camera view - Behind"
msgstr ""
msgid "Camera Angle - Left side"
msgstr ""
msgid "Camera Angle - Right side"
msgstr ""
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr ""
msgid "Zoom out"
msgstr ""
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr ""
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr ""
msgid "On/Off one layer mode of the vertical slider"
msgstr ""
msgid "Switch between Prepare/Preview"
msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr ""
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr ""
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
+436 -222
View File
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: Ian A. Bassi <>\n"
"Language-Team: \n"
@@ -5729,12 +5729,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Derecha"
msgid "Add"
msgstr "Añadir"
msgid "Add plate"
msgstr "Añadir cama"
msgid "Split to objects"
msgstr "Separar en objetos"
msgid "Add"
msgstr "Añadir"
msgid "Auto orient all/selected objects"
msgstr "Orientar automáticamente todos/seleccionados objetos"
@@ -5747,9 +5750,6 @@ msgstr "Ordenar todos los objetos"
msgid "Arrange objects on selected plates"
msgstr "Organizar los objetos en las camas seleccionadas"
msgid "Split to objects"
msgstr "Separar en objetos"
msgid "Assembly View"
msgstr "Vista de Emsamblado"
@@ -5804,6 +5804,9 @@ msgstr "Contorno"
msgid "Wireframe"
msgstr "Malla alámbrica"
msgid "X-Ray"
msgstr ""
msgid "Realistic View"
msgstr "Vista realista"
@@ -6343,9 +6346,6 @@ msgstr "Mostrar el contorno alrededor del objeto seleccionado en la escena 3D."
msgid "Preferences"
msgstr "Preferencias"
msgid "Open speed dial..."
msgstr ""
msgctxt "Menu"
msgid "Edit"
msgstr "Edición"
@@ -6353,6 +6353,9 @@ msgstr "Edición"
msgid "View"
msgstr "Vista"
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr "Paquete de perfiles"
@@ -8109,9 +8112,6 @@ msgstr "Expandir barra lateral"
msgid "Collapse sidebar"
msgstr "Colapsar barra lateral"
msgid "Tab"
msgstr "Pestaña"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Cargando archivo: %s"
@@ -9102,10 +9102,10 @@ msgstr "Gestión multidispositivo"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Con esta opción activada, puede enviar una tarea a varios dispositivos al mismo tiempo y gestionar varios dispositivos."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9237,6 +9237,15 @@ msgstr "Arrastrar con el botón derecho del ratón"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Establece la acción que se debe realizar al arrastrar el botón derecho del ratón."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "Limpiar mi elección en..."
@@ -9345,11 +9354,39 @@ msgstr ""
"Limita la frecuencia de fotogramas de la ventana gráfica para reducir la carga de la GPU y el consumo de energía.\n"
"Establece el valor en 0 para una frecuencia de fotogramas ilimitada."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Show FPS overlay"
msgstr "Mostrar FPS en pantalla"
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Muestra los FPS en la esquina superior derecha."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
msgid "G-code Preview"
msgstr "Vista previa del G-code"
@@ -9800,13 +9837,8 @@ msgstr "Publicar 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Seleccione qué ajustes se publicarán en el archivo 3MF"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "Wiki de Publicar 3MF"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "Guía en vídeo de Publicar 3MF"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10008,6 +10040,12 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "Mostrar detalles"
msgid "Hide details"
msgstr "Ocultar detalles"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -11783,66 +11821,38 @@ msgstr "El paquete de configuración se cambia en la Guía de configuración ant
msgid "Configuration package changed"
msgstr "Paquete de configuración cambiado"
msgid "Toolbar"
msgstr "Barra de herramientas"
msgid "Objects list"
msgstr "Lista de objetos"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importar datos de geometría de los archivos STL/STEP/3MF/OBJ/AMF"
msgid "Paste from clipboard"
msgstr "Pegar desde el portapapeles"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Mostrar/Ocultar el diálogo de ajustes de los dispositivos 3Dconnexion"
msgid "Switch table page"
msgstr "Cambiar de página de tabla"
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Espacio"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Muestra lista de atajos de teclado"
msgid "Global shortcuts"
msgstr "Atajos globales"
msgid "Pan View"
msgstr "Movimiento de la vista"
msgid "Rotate View"
msgstr "Rotación de vista"
msgid "Middle mouse button"
msgstr "Botón central del ratón"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgid "Zoom View"
msgstr "Zoom de vista"
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Orienta automáticamente los objetos seleccionados o todos los objetos. Si hay objetos seleccionados, sólo orienta los seleccionados. En caso contrario, orientará todos los objetos del proyecto actual."
msgid "Left mouse"
msgstr ""
msgid "Auto orients all objects on the active plate."
msgstr "Orienta automáticamente todos los objetos de la placa actual."
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr "Ocultar/Expandir barra lateral"
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
msgid "Any arrow"
msgstr "⌘+Cualquier flecha"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Movement in camera space"
msgstr "Movimiento en el espacio de la cámara"
msgid "Switch to the next main tab"
msgstr ""
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Seleccionar una pieza"
@@ -11853,121 +11863,29 @@ msgstr "Seleccionar varios objetos"
msgid "Select objects by rectangle"
msgstr "Seleccionar objetos por rectángulo"
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Flecha arriba"
msgid "Move selection 10mm in positive Y direction"
msgstr "Mover la selección 10 mm en dirección Y positiva"
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Flecha abajo"
msgid "Move selection 10mm in negative Y direction"
msgstr "Mover la selección 10 mm en dirección Y negativa"
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Flecha izquierda"
msgid "Move selection 10mm in negative X direction"
msgstr "Mover la selección 10 mm en dirección X negativa"
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Flecha derecha"
msgid "Move selection 10mm in positive X direction"
msgstr "Mover la selección 10 mm en dirección X positiva"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Teclado 1-9: ajustar el filamento para el objeto/pieza"
msgid "Movement step set to 1mm"
msgstr "Paso de movimiento configurado a 1 mm"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Teclado 1-9: ajustar el filamento para el objeto/pieza"
msgid "Movement in camera space"
msgstr "Movimiento en el espacio de la cámara"
msgid "Camera view - Default"
msgstr "Vista de la cámara - Por defecto"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Vista de la cámara - Parte Superior"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "Vista de la cámara - Parte inferior"
msgid "Zoom View"
msgstr "Zoom de vista"
msgid "Camera view - Front"
msgstr "Vista de la cámara - Frontal"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "Vista de la cámara - Posterior"
msgid "Camera Angle - Left side"
msgstr "Ángulo de la cámara - Lado izquierdo"
msgid "Camera Angle - Right side"
msgstr "Ángulo de la cámara - Lado derecho"
msgid "Select all objects"
msgstr "Seleccionar todos los objetos"
msgid "Gizmo move"
msgstr "Herramienta de movimiento"
msgid "Gizmo rotate"
msgstr "Herramienta de rotación"
msgid "Gizmo scale"
msgstr "Herramienta de escala"
msgid "Gizmo place face on bed"
msgstr "Herramienta de situar cara en cama"
msgid "Gizmo cut"
msgstr "Herramienta de corte"
msgid "Gizmo mesh boolean"
msgstr "Gizmo buleana de malla"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Herramienta FDM para pintar piel rugosa"
msgid "Gizmo SLA support points"
msgstr "Herramienta de puntos de soporte SLA"
msgid "Gizmo FDM paint-on seam"
msgstr "Herramienta de pintado de costuras FDM"
msgid "Gizmo text emboss/engrave"
msgstr "Herramienta de texto en relieve/grabado"
msgid "Gizmo measure"
msgstr "Gizmo medir"
msgid "Gizmo assemble"
msgstr "Gizmo ensamblar"
msgid "Gizmo brim ears"
msgstr "Gizmo orejas de borde"
msgid "Zoom in"
msgstr "Acercar"
msgid "Zoom out"
msgstr "Alejar"
msgid "Toggle printable for object/part"
msgstr "Activar/desactivar la impresión para el objeto/pieza"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "Cambiar entre Preparar/Previsualizar"
msgid "Plater"
msgstr "Cama"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Mover: pulsar para ajustar 1mm"
@@ -11978,14 +11896,18 @@ msgstr "Soporte/Pintado en color: ajuste del radio del pincel"
msgid "Support/Color Painting: adjust section position"
msgstr "Soporte/Pintado de color: ajuste de la posición de la sección"
msgid "Gizmo"
msgstr "Herramienta"
msgid "Objects list"
msgstr "Lista de objetos"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Ajustar el número de extrusor para los objetos y las piezas"
msgid "Delete objects, parts, modifiers"
msgstr "Eliminar objetos, piezas, modificadores"
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Espacio"
msgid "Select the object/part and press space to change the name"
msgstr "Seleccione el objeto/pieza y pulse la barra espaciadora para cambiar el nombre"
@@ -11996,43 +11918,48 @@ msgstr "Clic del ratón"
msgid "Select the object/part and mouse click to change the name"
msgstr "Seleccione el objeto/pieza y haga clic con el ratón para cambiar el nombre"
msgid "Objects List"
msgstr "Lista de Objetos"
msgid "Vertical slider - Move active thumb Up"
msgstr "Control deslizante vertical - Mover el pulgar activo hacia Arriba"
msgid "Vertical slider - Move active thumb Down"
msgstr "Control deslizante vertical - Mover el pulgar activo hacia Abajo"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Control deslizante horizontal - Mover el pulgar activo hacia la Izquierda"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Control deslizante horizontal - Mover el pulgar activo hacia la Derecha"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Activar/Desactivar el modo de una capa del control deslizante vertical"
msgid "On/Off G-code window"
msgstr "Activar/Desactivar ventana de G-Code"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Mover el deslizador 5 veces más rápido"
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Inicio"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "Deslizador horizontal - Desplazarse a la posición inicial"
msgid "Not customizable"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "Fin"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "Deslizador horizontal - Desplazarse a la última posición"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Notas de versión"
@@ -16817,8 +16744,8 @@ msgstr "Pasos de precalentamiento"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Insertar múltiples comandos de precalentamiento (por ejemplo, M104.1). Sólo útil para Prusa XL. Para otras impresoras, por favor ajústar a 1."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-code escrito en la parte superior del archivo de salida, antes de cualquier otro contenido. Útil para añadir metadatos que el firmware de la impresora lea desde las primeras líneas del archivo (por ejemplo, tiempo estimado de impresión, uso de filamento). Soporta marcadores como {print_time_sec} y {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "G-Code inicial"
@@ -18326,12 +18253,36 @@ msgstr "Filamento usado"
msgid "Total length of filament used in the print."
msgstr "Longitud total de filamento utilizado en la impresión."
msgid "Print time (seconds)"
msgstr "Tiempo de impresión (segundos)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Tiempo total estimado de impresión en segundos. Reemplazado con valor real durante el post-procesamiento."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "Longitud de filamento (metros)"
@@ -20165,6 +20116,9 @@ msgstr "No se ha detectado una sesión válida. ¿Desea iniciar sesión en 3DPri
msgid "Success!"
msgstr "¡Éxito!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "¿Estás seguro de cerrar la sesión?"
@@ -21115,12 +21069,6 @@ msgstr "El Plug-in de Bambu Network es necesario para las funciones en la nube,
msgid "Error: %s"
msgstr "Error: %s"
msgid "Show details"
msgstr "Mostrar detalles"
msgid "Hide details"
msgstr "Ocultar detalles"
msgid "Version to install:"
msgstr "Versión a instalar:"
@@ -23704,6 +23652,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -23716,6 +23670,210 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Inicio"
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "Fin"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Flecha izquierda"
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Flecha derecha"
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Flecha arriba"
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Flecha abajo"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importar datos de geometría de los archivos STL/STEP/3MF/OBJ/AMF"
msgid "Select all objects"
msgstr "Seleccionar todos los objetos"
msgid "Paste from clipboard"
msgstr "Pegar desde el portapapeles"
msgid "Toggle printable for object/part"
msgstr "Activar/desactivar la impresión para el objeto/pieza"
msgid "Move selection 10mm in negative X direction"
msgstr "Mover la selección 10 mm en dirección X negativa"
msgid "Move selection 10mm in positive X direction"
msgstr "Mover la selección 10 mm en dirección X positiva"
msgid "Move selection 10mm in positive Y direction"
msgstr "Mover la selección 10 mm en dirección Y positiva"
msgid "Move selection 10mm in negative Y direction"
msgstr "Mover la selección 10 mm en dirección Y negativa"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Herramienta de movimiento"
msgid "Gizmo rotate"
msgstr "Herramienta de rotación"
msgid "Gizmo scale"
msgstr "Herramienta de escala"
msgid "Gizmo place face on bed"
msgstr "Herramienta de situar cara en cama"
msgid "Gizmo cut"
msgstr "Herramienta de corte"
msgid "Gizmo mesh boolean"
msgstr "Gizmo buleana de malla"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "Herramienta de pintado de costuras FDM"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Herramienta FDM para pintar piel rugosa"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Herramienta de texto en relieve/grabado"
msgid "Gizmo measure"
msgstr "Gizmo medir"
msgid "Gizmo assemble"
msgstr "Gizmo ensamblar"
msgid "Gizmo brim ears"
msgstr "Gizmo orejas de borde"
msgid "Vertical slider - Move active thumb Up"
msgstr "Control deslizante vertical - Mover el pulgar activo hacia Arriba"
msgid "Vertical slider - Move active thumb Down"
msgstr "Control deslizante vertical - Mover el pulgar activo hacia Abajo"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Control deslizante horizontal - Mover el pulgar activo hacia la Izquierda"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Control deslizante horizontal - Mover el pulgar activo hacia la Derecha"
msgid "Horizontal slider - Move to start position"
msgstr "Deslizador horizontal - Desplazarse a la posición inicial"
msgid "Horizontal slider - Move to last position"
msgstr "Deslizador horizontal - Desplazarse a la última posición"
msgid "Camera view - Default"
msgstr "Vista de la cámara - Por defecto"
msgid "Camera view - Top"
msgstr "Vista de la cámara - Parte Superior"
msgid "Camera view - Bottom"
msgstr "Vista de la cámara - Parte inferior"
msgid "Camera view - Front"
msgstr "Vista de la cámara - Frontal"
msgid "Camera view - Behind"
msgstr "Vista de la cámara - Posterior"
msgid "Camera Angle - Left side"
msgstr "Ángulo de la cámara - Lado izquierdo"
msgid "Camera Angle - Right side"
msgstr "Ángulo de la cámara - Lado derecho"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Acercar"
msgid "Zoom out"
msgstr "Alejar"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Mostrar/Ocultar el diálogo de ajustes de los dispositivos 3Dconnexion"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "Activar/Desactivar ventana de G-Code"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Activar/Desactivar el modo de una capa del control deslizante vertical"
msgid "Switch between Prepare/Preview"
msgstr "Cambiar entre Preparar/Previsualizar"
msgid "Collapse/Expand the sidebar"
msgstr "Ocultar/Expandir barra lateral"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Muestra lista de atajos de teclado"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -24016,6 +24174,62 @@ msgstr ""
"Evita la deformación\n"
"¿Sabías que al imprimir materiales propensos a la deformación como el ABS, aumentar adecuadamente la temperatura de la cama térmica puede reducir la probabilidad de deformaciones?"
#~ msgid "Tab"
#~ msgstr "Pestaña"
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Muestra los FPS en la esquina superior derecha."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "Wiki de Publicar 3MF"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "Guía en vídeo de Publicar 3MF"
#~ msgid "Toolbar"
#~ msgstr "Barra de herramientas"
#~ msgid "Switch table page"
#~ msgstr "Cambiar de página de tabla"
#~ msgid "Global shortcuts"
#~ msgstr "Atajos globales"
#~ msgid "Middle mouse button"
#~ msgstr "Botón central del ratón"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Orienta automáticamente los objetos seleccionados o todos los objetos. Si hay objetos seleccionados, sólo orienta los seleccionados. En caso contrario, orientará todos los objetos del proyecto actual."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Orienta automáticamente todos los objetos de la placa actual."
#~ msgid "Any arrow"
#~ msgstr "⌘+Cualquier flecha"
#~ msgid "Gizmo SLA support points"
#~ msgstr "Herramienta de puntos de soporte SLA"
#~ msgid "Plater"
#~ msgstr "Cama"
#~ msgid "Gizmo"
#~ msgstr "Herramienta"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Eliminar objetos, piezas, modificadores"
#~ msgid "Objects List"
#~ msgstr "Lista de Objetos"
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-code escrito en la parte superior del archivo de salida, antes de cualquier otro contenido. Útil para añadir metadatos que el firmware de la impresora lea desde las primeras líneas del archivo (por ejemplo, tiempo estimado de impresión, uso de filamento). Soporta marcadores como {print_time_sec} y {used_filament_length}."
#~ msgid "Print time (seconds)"
#~ msgstr "Tiempo de impresión (segundos)"
#~ msgid "Open actions speed dial"
#~ msgstr "Abrir el menú rápido de acciones"
+445 -231
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: 2026-07-20 13:33+0200\n"
"Last-Translator: Manu Goiogana <mgoiogana@gmail.com>\n"
"Language-Team: \n"
@@ -5779,12 +5779,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Eskuinekoa"
msgid "Add"
msgstr "Gehitu"
msgid "Add plate"
msgstr "Plaka gehitu"
msgid "Split to objects"
msgstr "Objektuetan zatitu"
msgid "Add"
msgstr "Gehitu"
msgid "Auto orient all/selected objects"
msgstr "Automatikoki orientatu hautatutako objektuak/objektu guztiak"
@@ -5797,9 +5800,6 @@ msgstr "Antolatu objektu guztiak"
msgid "Arrange objects on selected plates"
msgstr "Antolatu hautatutako plaketako objektu guztiak"
msgid "Split to objects"
msgstr "Objektuetan zatitu"
msgid "Assembly View"
msgstr "Multzoaren Ikuspegia"
@@ -5854,6 +5854,9 @@ msgstr "Ingerada"
msgid "Wireframe"
msgstr "Alanbre-egitura"
msgid "X-Ray"
msgstr ""
msgid "Realistic View"
msgstr "Ikuspegi errealista"
@@ -6389,9 +6392,6 @@ msgstr "Erakutsi hautatutako objektuaren inguruko ingerada 3D eszenan."
msgid "Preferences"
msgstr "Hobespenak"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6400,6 +6400,9 @@ msgstr "Editatu"
msgid "View"
msgstr "Bista"
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr "Aurrezarpen-paketea"
@@ -8186,9 +8189,6 @@ msgstr "Zabaldu alboko barra"
msgid "Collapse sidebar"
msgstr "Tolestu alboko barra"
msgid "Tab"
msgstr "Fitxa"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "%s fitxategia kargatzen"
@@ -9183,10 +9183,10 @@ msgstr "Gailu anitzen kudeaketa"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Aukera hau gaituta, zeregin bat hainbat gailutara bidali eta hainbat gailu kudea ditzakezu aldi berean."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9318,6 +9318,15 @@ msgstr "Saguaren eskuineko botoiarekin arrastatu"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Ezarri saguaren eskuineko botoia arrastatzean egin beharreko ekintza."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "Garbitu nire aukera hemen..."
@@ -9426,11 +9435,39 @@ msgstr ""
"Ikuspegiaren fotograma-tasa mugatzen du GPUaren karga eta energia-kontsumoa murrizteko.\n"
"Ezarri 0 fotograma-tasa mugagabea erabiltzeko."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Show FPS overlay"
msgstr "Erakutsi FPS gainjartzea"
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Uneko ikuspegiaren FPSa goiko eskuineko izkinan erakusten du."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -9886,13 +9923,8 @@ msgstr "Argitaratu 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Hautatu zein ezarpen argitaratuko diren 3MF fitxategian"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "3MF argitaratzeko wikia"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "3MF argitaratzeko bideo-gida"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10094,6 +10126,13 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "Erakutsi xehetasunak"
# AI Translated
msgid "Hide details"
msgstr "Ezkutatu xehetasunak"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -11893,67 +11932,39 @@ msgstr "Konfigurazio-paketea aldatu da aurreko Konfigurazio Gidan"
msgid "Configuration package changed"
msgstr "Konfigurazio-paketea aldatu da"
msgid "Toolbar"
msgstr "Tresna-barra"
msgid "Objects list"
msgstr "Objektuen zerrenda"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Inportatu geometriaren datuak STL/STEP/3MF/OBJ/AMF fitxategietatik"
msgid "Paste from clipboard"
msgstr "Itsatsi arbeletik"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Erakutsi/Ezkutatu 3Dconnexion gailuen ezarpenen elkarrizketa-koadroa"
msgid "Switch table page"
msgstr "Aldatu taula-orria"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Zuriunea"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Erakutsi teklatu-lasterbideen zerrenda"
msgid "Global shortcuts"
msgstr "Lasterbide globalak"
msgid "Pan View"
msgstr "Mugitu ikuspegia"
msgid "Rotate View"
msgstr "Biratu ikuspegia"
msgid "Middle mouse button"
msgstr "Saguaren erdiko botoia"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgid "Zoom View"
msgstr "Zooma ikuspegian"
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Hautatutako objektuak edo objektu guztiak automatikoki orientatzen ditu. Objektuak hautatuta badaude, hautatutakoak bakarrik orientatzen ditu. Bestela, uneko proiektuko objektu guztiak orientatuko ditu."
msgid "Left mouse"
msgstr ""
msgid "Auto orients all objects on the active plate."
msgstr "Objektu guztiak automatikoki orientatzen ditu plaka aktiboan."
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr "Tolestu/Zabaldu alboko barra"
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
msgid "Any arrow"
msgstr "Edozein gezi"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Movement in camera space"
msgstr "Mugimendua kameraren espazioan"
msgid "Switch to the next main tab"
msgstr ""
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Hautatu pieza bat"
@@ -11964,126 +11975,29 @@ msgstr "Hautatu objektu bat baino gehiago"
msgid "Select objects by rectangle"
msgstr "Hautatu objektuak laukizuzen bidez"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Gora gezia"
msgid "Move selection 10mm in positive Y direction"
msgstr "Mugitu hautapena 10 mm Y noranzko positiboan"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Behera gezia"
msgid "Move selection 10mm in negative Y direction"
msgstr "Mugitu hautapena 10 mm Y noranzko negatiboan"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Ezkerrera gezia"
msgid "Move selection 10mm in negative X direction"
msgstr "Mugitu hautapena 10 mm X noranzko negatiboan"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Eskuinera gezia"
msgid "Move selection 10mm in positive X direction"
msgstr "Mugitu hautapena 10 mm X noranzko positiboan"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "1-9 teklak: ezarri filamentua objektuari/piezari"
msgid "Movement step set to 1mm"
msgstr "Mugimendu-urratsa 1 mm-an ezarri da"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "1-9 teklak: ezarri filamentua objektuari/piezari"
msgid "Movement in camera space"
msgstr "Mugimendua kameraren espazioan"
msgid "Camera view - Default"
msgstr "Kameraren ikuspegia - Lehenetsia"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Kameraren ikuspegia - Goia"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "Kameraren ikuspegia - Behea"
msgid "Zoom View"
msgstr "Zooma ikuspegian"
msgid "Camera view - Front"
msgstr "Kameraren ikuspegia - Aurrea"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "Kameraren ikuspegia - Atzea"
msgid "Camera Angle - Left side"
msgstr "Kameraren angelua - Ezker aldea"
msgid "Camera Angle - Right side"
msgstr "Kameraren angelua - Eskuin aldea"
msgid "Select all objects"
msgstr "Hautatu objektu guztiak"
msgid "Gizmo move"
msgstr "Mugitzeko tresna"
msgid "Gizmo rotate"
msgstr "Biraketa tresna"
msgid "Gizmo scale"
msgstr "Eskalarako tresna"
msgid "Gizmo place face on bed"
msgstr "Aurpegia ohean kokatzeko tresna"
msgid "Gizmo cut"
msgstr "Ebakitzeko tresna"
msgid "Gizmo mesh boolean"
msgstr "Sare boolearrerako tresna"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "FDM gainazal zimurra margotzeko tresna"
msgid "Gizmo SLA support points"
msgstr "SLA euskarri-puntuentzako tresna"
msgid "Gizmo FDM paint-on seam"
msgstr "FDM josturak margotzeko tresna"
msgid "Gizmo text emboss/engrave"
msgstr "Testua erliebean/grabatuta ipintzeko tresna"
msgid "Gizmo measure"
msgstr "Neurtzeko tresna"
msgid "Gizmo assemble"
msgstr "Muntatzeko tresna"
msgid "Gizmo brim ears"
msgstr "Belarri ertzen tresna"
msgid "Zoom in"
msgstr "Zooma handitu"
msgid "Zoom out"
msgstr "Txikiagotu zooma"
msgid "Toggle printable for object/part"
msgstr "Txandakatu objektuaren/piezaren inprimagarritasuna"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "Aldatu Prestatu/Aurrebista artean"
msgid "Plater"
msgstr "Plaka-antolatzailea"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Mugitu: sakatu 1 mm-ko jauzietan atxikitzeko"
@@ -12094,14 +12008,19 @@ msgstr "Euskarri/Kolore margotzea: doitu boligrafoaren erradioa"
msgid "Support/Color Painting: adjust section position"
msgstr "Euskarri/Kolore-margotzea: doitu sekzioaren posizioa"
msgid "Gizmo"
msgstr "Tresna"
msgid "Objects list"
msgstr "Objektuen zerrenda"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Ezarri objektuen eta piezen estrusore zenbakia"
msgid "Delete objects, parts, modifiers"
msgstr "Ezabatu objektuak, piezak eta aldatzaileak"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Zuriunea"
msgid "Select the object/part and press space to change the name"
msgstr "Hautatu objektua/partea eta sakatu zuriunea izena aldatzeko"
@@ -12112,45 +12031,48 @@ msgstr "Saguaren klika"
msgid "Select the object/part and mouse click to change the name"
msgstr "Hautatu objektua/pieza eta egin klik izena aldatzeko"
msgid "Objects List"
msgstr "Objektuen zerrenda"
msgid "Vertical slider - Move active thumb Up"
msgstr "Graduatzaile bertikala - Mugitu hatz aktiboa gora"
msgid "Vertical slider - Move active thumb Down"
msgstr "Graduatzaile bertikala - Mugitu hatz aktiboa behera"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Graduatzaile horizontala - Mugitu hatz aktiboa ezkerrera"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Graduatzaile horizontala - Mugitu hatz aktiboa eskuinera"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Aktibatu/Desaktibatu graduatzaile bertikalaren geruza bakarreko modua"
msgid "On/Off G-code window"
msgstr "G-code leihoa aktibatu/desaktibatu"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Mugitu graduatzailea 5 aldiz azkarrago"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Hasiera"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "Graduatzaile horizontala - Mugitu hasierako posiziora"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "Amaiera"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "Graduatzaile horizontala - Mugitu azken posiziora"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Argitalpen-oharra"
@@ -16987,8 +16909,8 @@ msgstr "Aurrez berotzeko urratsak"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Txertatu aurrez berotzeko hainbat komando (adib. M104.1). Prusa XL-rakobakarrik da erabilgarria. Beste inprimagailuetarako, ezarri 1."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "Irteerako fitxategiaren hasiera-hasieran idatzitako G-codea, beste edozein eduki baino lehen. Inprimagailuaren firmwareak fitxategiaren lehen lerroetatik irakurtzen dituen metadatuak gehitzeko erabilgarria da (adibidez, zenbatetsitako inprimatze-denbora edo filamentuen erabilera). {print_time_sec} eta {used_filament_length} moduko leku-markak onartzen ditu."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "Hasierako G-codea"
@@ -18505,12 +18427,36 @@ msgstr "Erabilitako filamentua"
msgid "Total length of filament used in the print."
msgstr "Inprimaketan erabilitako filamentuen luzera osoa."
msgid "Print time (seconds)"
msgstr "Inprimatze-denbora (segundoak)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Kalkulatutako guztizko inprimatze-denbora, segundotan. Benetako balioarekin ordezten da osteko prozesatzean."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "Filamentuaren luzera (metroak)"
@@ -20345,6 +20291,9 @@ msgstr "Ez da baliozko saiorik detektatu. 3DPrinterOS-en saioa hasi nahi duzu?"
msgid "Success!"
msgstr "Ondo egin da!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "Ziur saioa amaitu nahi duzula?"
@@ -21300,13 +21249,6 @@ msgstr "Bambu sareko plugina beharrezkoa da hodeiko funtzioetarako, inprimagailu
msgid "Error: %s"
msgstr "Errorea: %s"
msgid "Show details"
msgstr "Erakutsi xehetasunak"
# AI Translated
msgid "Hide details"
msgstr "Ezkutatu xehetasunak"
msgid "Version to install:"
msgstr "Instalatu beharreko bertsioa:"
@@ -23891,6 +23833,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -23903,6 +23851,216 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Hasiera"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "Amaiera"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Ezkerrera gezia"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Eskuinera gezia"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Gora gezia"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Behera gezia"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Inportatu geometriaren datuak STL/STEP/3MF/OBJ/AMF fitxategietatik"
msgid "Select all objects"
msgstr "Hautatu objektu guztiak"
msgid "Paste from clipboard"
msgstr "Itsatsi arbeletik"
msgid "Toggle printable for object/part"
msgstr "Txandakatu objektuaren/piezaren inprimagarritasuna"
msgid "Move selection 10mm in negative X direction"
msgstr "Mugitu hautapena 10 mm X noranzko negatiboan"
msgid "Move selection 10mm in positive X direction"
msgstr "Mugitu hautapena 10 mm X noranzko positiboan"
msgid "Move selection 10mm in positive Y direction"
msgstr "Mugitu hautapena 10 mm Y noranzko positiboan"
msgid "Move selection 10mm in negative Y direction"
msgstr "Mugitu hautapena 10 mm Y noranzko negatiboan"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Mugitzeko tresna"
msgid "Gizmo rotate"
msgstr "Biraketa tresna"
msgid "Gizmo scale"
msgstr "Eskalarako tresna"
msgid "Gizmo place face on bed"
msgstr "Aurpegia ohean kokatzeko tresna"
msgid "Gizmo cut"
msgstr "Ebakitzeko tresna"
msgid "Gizmo mesh boolean"
msgstr "Sare boolearrerako tresna"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "FDM josturak margotzeko tresna"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "FDM gainazal zimurra margotzeko tresna"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Testua erliebean/grabatuta ipintzeko tresna"
msgid "Gizmo measure"
msgstr "Neurtzeko tresna"
msgid "Gizmo assemble"
msgstr "Muntatzeko tresna"
msgid "Gizmo brim ears"
msgstr "Belarri ertzen tresna"
msgid "Vertical slider - Move active thumb Up"
msgstr "Graduatzaile bertikala - Mugitu hatz aktiboa gora"
msgid "Vertical slider - Move active thumb Down"
msgstr "Graduatzaile bertikala - Mugitu hatz aktiboa behera"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Graduatzaile horizontala - Mugitu hatz aktiboa ezkerrera"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Graduatzaile horizontala - Mugitu hatz aktiboa eskuinera"
msgid "Horizontal slider - Move to start position"
msgstr "Graduatzaile horizontala - Mugitu hasierako posiziora"
msgid "Horizontal slider - Move to last position"
msgstr "Graduatzaile horizontala - Mugitu azken posiziora"
msgid "Camera view - Default"
msgstr "Kameraren ikuspegia - Lehenetsia"
msgid "Camera view - Top"
msgstr "Kameraren ikuspegia - Goia"
msgid "Camera view - Bottom"
msgstr "Kameraren ikuspegia - Behea"
msgid "Camera view - Front"
msgstr "Kameraren ikuspegia - Aurrea"
msgid "Camera view - Behind"
msgstr "Kameraren ikuspegia - Atzea"
msgid "Camera Angle - Left side"
msgstr "Kameraren angelua - Ezker aldea"
msgid "Camera Angle - Right side"
msgstr "Kameraren angelua - Eskuin aldea"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Zooma handitu"
msgid "Zoom out"
msgstr "Txikiagotu zooma"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Erakutsi/Ezkutatu 3Dconnexion gailuen ezarpenen elkarrizketa-koadroa"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "G-code leihoa aktibatu/desaktibatu"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Aktibatu/Desaktibatu graduatzaile bertikalaren geruza bakarreko modua"
msgid "Switch between Prepare/Preview"
msgstr "Aldatu Prestatu/Aurrebista artean"
msgid "Collapse/Expand the sidebar"
msgstr "Tolestu/Zabaldu alboko barra"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Erakutsi teklatu-lasterbideen zerrenda"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -24203,6 +24361,62 @@ msgstr ""
"Saihestu okertzea\n"
"Ba al zenekien ABS bezalako okertzeko joera duten materialak inprimatzean ohe beroaren tenperatura egoki igotzeak okertzeko probabilitatea murriztu dezakeela?"
#~ msgid "Tab"
#~ msgstr "Fitxa"
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Uneko ikuspegiaren FPSa goiko eskuineko izkinan erakusten du."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "3MF argitaratzeko wikia"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "3MF argitaratzeko bideo-gida"
#~ msgid "Toolbar"
#~ msgstr "Tresna-barra"
#~ msgid "Switch table page"
#~ msgstr "Aldatu taula-orria"
#~ msgid "Global shortcuts"
#~ msgstr "Lasterbide globalak"
#~ msgid "Middle mouse button"
#~ msgstr "Saguaren erdiko botoia"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Hautatutako objektuak edo objektu guztiak automatikoki orientatzen ditu. Objektuak hautatuta badaude, hautatutakoak bakarrik orientatzen ditu. Bestela, uneko proiektuko objektu guztiak orientatuko ditu."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Objektu guztiak automatikoki orientatzen ditu plaka aktiboan."
#~ msgid "Any arrow"
#~ msgstr "Edozein gezi"
#~ msgid "Gizmo SLA support points"
#~ msgstr "SLA euskarri-puntuentzako tresna"
#~ msgid "Plater"
#~ msgstr "Plaka-antolatzailea"
#~ msgid "Gizmo"
#~ msgstr "Tresna"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Ezabatu objektuak, piezak eta aldatzaileak"
#~ msgid "Objects List"
#~ msgstr "Objektuen zerrenda"
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "Irteerako fitxategiaren hasiera-hasieran idatzitako G-codea, beste edozein eduki baino lehen. Inprimagailuaren firmwareak fitxategiaren lehen lerroetatik irakurtzen dituen metadatuak gehitzeko erabilgarria da (adibidez, zenbatetsitako inprimatze-denbora edo filamentuen erabilera). {print_time_sec} eta {used_filament_length} moduko leku-markak onartzen ditu."
#~ msgid "Print time (seconds)"
#~ msgstr "Inprimatze-denbora (segundoak)"
#~ msgid "Open actions speed dial"
#~ msgstr "Ekintzen markatze azkarra ireki"
+445 -231
View File
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: Guislain Cyril, Thomas Lété\n"
@@ -5822,12 +5822,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Droite"
msgid "Add"
msgstr "Ajouter"
msgid "Add plate"
msgstr "Ajouter un plateau"
msgid "Split to objects"
msgstr "Diviser en objets individuels"
msgid "Add"
msgstr "Ajouter"
msgid "Auto orient all/selected objects"
msgstr "Orientation automatique de tous les objets sélectionnés"
@@ -5840,9 +5843,6 @@ msgstr "Organiser tous les objets"
msgid "Arrange objects on selected plates"
msgstr "Organiser les objets sur les plaques sélectionnées"
msgid "Split to objects"
msgstr "Diviser en objets individuels"
msgid "Assembly View"
msgstr "Vue de l'assemblage"
@@ -5897,6 +5897,9 @@ msgstr "Contour"
msgid "Wireframe"
msgstr "Fil de fer"
msgid "X-Ray"
msgstr ""
msgid "Realistic View"
msgstr "Vue réaliste"
@@ -6436,9 +6439,6 @@ msgstr "Afficher le tracé contour de lobjet sélectionné dans la scène 3D.
msgid "Preferences"
msgstr "Préférences"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6447,6 +6447,9 @@ msgstr "Édition"
msgid "View"
msgstr "Affichage"
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr "Paquet de préréglages"
@@ -8242,9 +8245,6 @@ msgstr "Agrandir la barre latérale"
msgid "Collapse sidebar"
msgstr "Réduire la barre latérale"
msgid "Tab"
msgstr "Onglet"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Chargement du fichier : %s"
@@ -9250,10 +9250,10 @@ msgstr "Gestion multi appareils"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Si cette option est activée, vous pouvez envoyer une tâche à plusieurs appareils en même temps et gérer plusieurs appareils."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9385,6 +9385,15 @@ msgstr "Glisser avec le bouton droit de la souris"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Définit laction effectuée en faisant glisser le bouton droit de la souris."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "Effacer mon choix sur…"
@@ -9495,11 +9504,39 @@ msgstr ""
"Limite la fréquence dimages de la vue pour réduire la charge du GPU et la consommation d’énergie.\n"
"Réglez sur 0 pour une fréquence dimages illimitée."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Show FPS overlay"
msgstr "Afficher la superposition des FPS"
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Affiche les FPS actuels de la vue dans le coin supérieur droit."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -9956,13 +9993,8 @@ msgstr "Publier 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Sélectionnez les réglages à publier dans le fichier 3MF"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "Wiki de Publier 3MF"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "Guide vidéo de Publier 3MF"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10164,6 +10196,13 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "Afficher les détails"
# AI Translated
msgid "Hide details"
msgstr "Masquer les détails"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -11988,67 +12027,39 @@ msgstr "Le paquet de configuration a été modifié dans le guide de configurati
msgid "Configuration package changed"
msgstr "Package de configuration modifié"
msgid "Toolbar"
msgstr "Barre d'outils"
msgid "Objects list"
msgstr "Liste des objets"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importez des données de géométrie à partir de fichiers STL/STEP/3MF/OBJ/AMF"
msgid "Paste from clipboard"
msgstr "Coller depuis le presse-papier"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Afficher/Masquer la boîte de dialogue des paramètres des périphériques 3Dconnexion"
msgid "Switch table page"
msgstr "Page du tableau de commutation"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Espace"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Afficher la liste des raccourcis clavier"
msgid "Global shortcuts"
msgstr "Raccourcis globaux"
msgid "Pan View"
msgstr "Déplacement de la vue"
msgid "Rotate View"
msgstr "Rotation de la vue"
msgid "Middle mouse button"
msgstr "Bouton central de la souris"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgid "Zoom View"
msgstr "Zoom de la vue"
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Oriente automatiquement les objets sélectionnés ou tous les objets. Sil y a des objets sélectionnés, seuls ceux-ci sont orientés. Sinon, tous les objets du projet en cours sont orientés."
msgid "Left mouse"
msgstr ""
msgid "Auto orients all objects on the active plate."
msgstr "Oriente automatiquement tous les objets de la plaque actuelle."
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr "Réduire/développer la barre latérale"
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
msgid "Any arrow"
msgstr "Toutes les flèches"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Movement in camera space"
msgstr "Mouvement dans l'espace de la caméra"
msgid "Switch to the next main tab"
msgstr ""
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Sélectionner une pièce"
@@ -12059,126 +12070,29 @@ msgstr "Sélectionner plusieurs objets"
msgid "Select objects by rectangle"
msgstr "Sélectionner les objets par rectangle"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Flèche haut"
msgid "Move selection 10mm in positive Y direction"
msgstr "Déplacer la sélection de 10 mm dans la direction positive Y"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Flèche bas"
msgid "Move selection 10mm in negative Y direction"
msgstr "Déplacer la sélection de 10 mm dans la direction négative Y"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Flèche gauche"
msgid "Move selection 10mm in negative X direction"
msgstr "Déplacer la sélection de 10 mm dans la direction négative X"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Flèche droite"
msgid "Move selection 10mm in positive X direction"
msgstr "Déplacer la sélection de 10 mm dans la direction positive X"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "clavier 1-9 : définir le filament pour l'objet/la pièce"
msgid "Movement step set to 1mm"
msgstr "Pas du mouvement réglé sur 1 mm"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "clavier 1-9 : définir le filament pour l'objet/la pièce"
msgid "Movement in camera space"
msgstr "Mouvement dans l'espace de la caméra"
msgid "Camera view - Default"
msgstr "Vue caméra - Par défaut"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Vue caméra - Haut"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "Vue caméra - Bas"
msgid "Zoom View"
msgstr "Zoom de la vue"
msgid "Camera view - Front"
msgstr "Vue de la caméra - Avant"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "Vue caméra - Derrière"
msgid "Camera Angle - Left side"
msgstr "Angle de caméra - Côté gauche"
msgid "Camera Angle - Right side"
msgstr "Angle de caméra - Côté droit"
msgid "Select all objects"
msgstr "Sélectionner tous les objets"
msgid "Gizmo move"
msgstr "Gizmo déplacer"
msgid "Gizmo rotate"
msgstr "Gizmo pivoter"
msgid "Gizmo scale"
msgstr "Gizmo redimensionner"
msgid "Gizmo place face on bed"
msgstr "Gizmo placer la face sur le plateau"
msgid "Gizmo cut"
msgstr "Gizmo couper"
msgid "Gizmo mesh boolean"
msgstr "Gizmo booléennes"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Outil FDM de surface irrégulière peinte"
msgid "Gizmo SLA support points"
msgstr "Gizmo Point de support SLA"
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo Peinture de la couture FDM"
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo embosser/graver du texte"
msgid "Gizmo measure"
msgstr "Gizmo mesurer"
msgid "Gizmo assemble"
msgstr "Gizmo assembler"
msgid "Gizmo brim ears"
msgstr "Gizmo bordure à oreilles"
msgid "Zoom in"
msgstr "Zoom avant"
msgid "Zoom out"
msgstr "Zoom arrière"
msgid "Toggle printable for object/part"
msgstr "Basculer l’état imprimable de lobjet/de la pièce"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "Basculer entre Préparer/Aperçu"
msgid "Plater"
msgstr "Plateau"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Déplacer : appuyez pour aligner de 1 mm"
@@ -12189,14 +12103,19 @@ msgstr "Support/Peinture couleur : ajustez le rayon du stylet"
msgid "Support/Color Painting: adjust section position"
msgstr "Support/Peinture couleur : ajuster la position de la section"
msgid "Gizmo"
msgstr "Gizmo"
msgid "Objects list"
msgstr "Liste des objets"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Définir le numéro d'extrudeur pour les objets et les pièces"
msgid "Delete objects, parts, modifiers"
msgstr "Supprimer des objets, des pièces, des modificateurs"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Espace"
msgid "Select the object/part and press space to change the name"
msgstr "Sélectionnez l'objet/la pièce et appuyez sur espace pour changer le nom"
@@ -12207,45 +12126,48 @@ msgstr "Clic de souris"
msgid "Select the object/part and mouse click to change the name"
msgstr "Sélectionnez l'objet/la pièce et cliquez avec la souris pour changer le nom"
msgid "Objects List"
msgstr "Liste des objets"
msgid "Vertical slider - Move active thumb Up"
msgstr "Barre de défilement verticale - Déplacer le curseur actif vers le Haut"
msgid "Vertical slider - Move active thumb Down"
msgstr "Barre de défilement verticale - Déplacer le curseur actif vers le Bas"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Barre de défilement horizontale - Déplacer le curseur actif vers la Gauche"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Barre de défilement horizontale - Déplacer le curseur actif vers la Droite"
msgid "On/Off one layer mode of the vertical slider"
msgstr "On/Off mode couche unique de la barre de défilement verticale"
msgid "On/Off G-code window"
msgstr "On/Off Fenêtre G-code"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Déplacez le curseur 5 fois plus vite"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Début"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "Curseur horizontal - Déplacement vers la position de départ"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "Fin"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "Curseur horizontal - Déplacer vers la dernière position"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Note de version"
@@ -17090,8 +17012,8 @@ msgstr "Étapes de préchauffage"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Insérer plusieurs commandes de préchauffage (par exemple M104.1). Uniquement utile pour la Prusa XL. Pour les autres imprimantes, veuillez le régler sur 1."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-code écrit tout en haut du fichier de sortie, avant tout autre contenu. Utile pour ajouter des métadonnées que le firmware de l'imprimante lit depuis les premières lignes du fichier (ex. temps d'impression estimé, utilisation du filament). Prend en charge les espaces réservés comme {print_time_sec} et {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "G-code de démarrage"
@@ -18615,12 +18537,36 @@ msgstr "Filament utilisé"
msgid "Total length of filament used in the print."
msgstr "Longueur totale de filament utilisé dans l'impression."
msgid "Print time (seconds)"
msgstr "Temps d'impression (secondes)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Temps d'impression total estimé en secondes. Remplacé par la valeur réelle lors du post-traitement."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "Longueur de filament (mètres)"
@@ -20455,6 +20401,9 @@ msgstr "Aucune session valide détectée. Procéder à la connexion à 3DPrinter
msgid "Success!"
msgstr "Succès !"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "Voulez-vous vraiment vous déconnecter ?"
@@ -21410,13 +21359,6 @@ msgstr "Le plug-in réseau Bambu est requis pour les fonctionnalités cloud, la
msgid "Error: %s"
msgstr "Erreur : %s"
msgid "Show details"
msgstr "Afficher les détails"
# AI Translated
msgid "Hide details"
msgstr "Masquer les détails"
msgid "Version to install:"
msgstr "Version à installer :"
@@ -24045,6 +23987,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -24057,6 +24005,216 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Début"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "Fin"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Flèche gauche"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Flèche droite"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Flèche haut"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Flèche bas"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importez des données de géométrie à partir de fichiers STL/STEP/3MF/OBJ/AMF"
msgid "Select all objects"
msgstr "Sélectionner tous les objets"
msgid "Paste from clipboard"
msgstr "Coller depuis le presse-papier"
msgid "Toggle printable for object/part"
msgstr "Basculer l’état imprimable de lobjet/de la pièce"
msgid "Move selection 10mm in negative X direction"
msgstr "Déplacer la sélection de 10 mm dans la direction négative X"
msgid "Move selection 10mm in positive X direction"
msgstr "Déplacer la sélection de 10 mm dans la direction positive X"
msgid "Move selection 10mm in positive Y direction"
msgstr "Déplacer la sélection de 10 mm dans la direction positive Y"
msgid "Move selection 10mm in negative Y direction"
msgstr "Déplacer la sélection de 10 mm dans la direction négative Y"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Gizmo déplacer"
msgid "Gizmo rotate"
msgstr "Gizmo pivoter"
msgid "Gizmo scale"
msgstr "Gizmo redimensionner"
msgid "Gizmo place face on bed"
msgstr "Gizmo placer la face sur le plateau"
msgid "Gizmo cut"
msgstr "Gizmo couper"
msgid "Gizmo mesh boolean"
msgstr "Gizmo booléennes"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo Peinture de la couture FDM"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Outil FDM de surface irrégulière peinte"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo embosser/graver du texte"
msgid "Gizmo measure"
msgstr "Gizmo mesurer"
msgid "Gizmo assemble"
msgstr "Gizmo assembler"
msgid "Gizmo brim ears"
msgstr "Gizmo bordure à oreilles"
msgid "Vertical slider - Move active thumb Up"
msgstr "Barre de défilement verticale - Déplacer le curseur actif vers le Haut"
msgid "Vertical slider - Move active thumb Down"
msgstr "Barre de défilement verticale - Déplacer le curseur actif vers le Bas"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Barre de défilement horizontale - Déplacer le curseur actif vers la Gauche"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Barre de défilement horizontale - Déplacer le curseur actif vers la Droite"
msgid "Horizontal slider - Move to start position"
msgstr "Curseur horizontal - Déplacement vers la position de départ"
msgid "Horizontal slider - Move to last position"
msgstr "Curseur horizontal - Déplacer vers la dernière position"
msgid "Camera view - Default"
msgstr "Vue caméra - Par défaut"
msgid "Camera view - Top"
msgstr "Vue caméra - Haut"
msgid "Camera view - Bottom"
msgstr "Vue caméra - Bas"
msgid "Camera view - Front"
msgstr "Vue de la caméra - Avant"
msgid "Camera view - Behind"
msgstr "Vue caméra - Derrière"
msgid "Camera Angle - Left side"
msgstr "Angle de caméra - Côté gauche"
msgid "Camera Angle - Right side"
msgstr "Angle de caméra - Côté droit"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Zoom avant"
msgid "Zoom out"
msgstr "Zoom arrière"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Afficher/Masquer la boîte de dialogue des paramètres des périphériques 3Dconnexion"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "On/Off Fenêtre G-code"
msgid "On/Off one layer mode of the vertical slider"
msgstr "On/Off mode couche unique de la barre de défilement verticale"
msgid "Switch between Prepare/Preview"
msgstr "Basculer entre Préparer/Aperçu"
msgid "Collapse/Expand the sidebar"
msgstr "Réduire/développer la barre latérale"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Afficher la liste des raccourcis clavier"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -24357,6 +24515,62 @@ msgstr ""
"Éviter la déformation\n"
"Saviez-vous que lors de limpression de matériaux susceptibles de se déformer, tels que lABS, une augmentation appropriée de la température du plateau chauffant peut réduire la probabilité de déformation?"
#~ msgid "Tab"
#~ msgstr "Onglet"
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Affiche les FPS actuels de la vue dans le coin supérieur droit."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "Wiki de Publier 3MF"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "Guide vidéo de Publier 3MF"
#~ msgid "Toolbar"
#~ msgstr "Barre d'outils"
#~ msgid "Switch table page"
#~ msgstr "Page du tableau de commutation"
#~ msgid "Global shortcuts"
#~ msgstr "Raccourcis globaux"
#~ msgid "Middle mouse button"
#~ msgstr "Bouton central de la souris"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Oriente automatiquement les objets sélectionnés ou tous les objets. Sil y a des objets sélectionnés, seuls ceux-ci sont orientés. Sinon, tous les objets du projet en cours sont orientés."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Oriente automatiquement tous les objets de la plaque actuelle."
#~ msgid "Any arrow"
#~ msgstr "Toutes les flèches"
#~ msgid "Gizmo SLA support points"
#~ msgstr "Gizmo Point de support SLA"
#~ msgid "Plater"
#~ msgstr "Plateau"
#~ msgid "Gizmo"
#~ msgstr "Gizmo"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Supprimer des objets, des pièces, des modificateurs"
#~ msgid "Objects List"
#~ msgstr "Liste des objets"
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-code écrit tout en haut du fichier de sortie, avant tout autre contenu. Utile pour ajouter des métadonnées que le firmware de l'imprimante lit depuis les premières lignes du fichier (ex. temps d'impression estimé, utilisation du filament). Prend en charge les espaces réservés comme {print_time_sec} et {used_filament_length}."
#~ msgid "Print time (seconds)"
#~ msgstr "Temps d'impression (secondes)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "Ouvrir le menu d'actions rapides"
+447 -233
View File
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -5919,12 +5919,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Jobb"
msgid "Add"
msgstr "Hozzáadás"
msgid "Add plate"
msgstr "Tálca hozzáadása"
msgid "Split to objects"
msgstr "Felosztás objektumokra"
msgid "Add"
msgstr "Hozzáadás"
msgid "Auto orient all/selected objects"
msgstr "Az összes/kiválasztott objektum automatikus tájolása"
@@ -5937,9 +5940,6 @@ msgstr "Összes objektum elrendezése"
msgid "Arrange objects on selected plates"
msgstr "Objektumok elrendezése a kiválasztott tálcákon"
msgid "Split to objects"
msgstr "Felosztás objektumokra"
msgid "Assembly View"
msgstr "Összeszerelési nézet"
@@ -5996,6 +5996,9 @@ msgstr "Körvonal"
msgid "Wireframe"
msgstr "Drótváz"
msgid "X-Ray"
msgstr ""
# AI Translated
msgid "Realistic View"
msgstr "Valósághű nézet"
@@ -6538,9 +6541,6 @@ msgstr "Körvonal megjelenítése a kijelölt objektum körül a 3D nézetben."
msgid "Preferences"
msgstr "Beállítások"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6549,6 +6549,9 @@ msgstr "Szerkesztés"
msgid "View"
msgstr "Nézet"
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr "Beállításcsomag"
@@ -8358,10 +8361,6 @@ msgstr "Az oldalsáv kibontása"
msgid "Collapse sidebar"
msgstr "&Az oldalsáv összecsukása"
# AI Translated
msgid "Tab"
msgstr "Tab"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Fájl betöltése: %s"
@@ -9386,10 +9385,10 @@ msgstr "Többeszközös kezelés"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Ezzel az opcióval egyszerre több eszközre küldhetsz feladatot és több eszközt kezelhetsz."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9521,6 +9520,15 @@ msgstr "Jobb egérhúzás"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Állítsd be a jobb egérgomb húzásával végrehajtandó műveletet."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "Választásom törlése ennél..."
@@ -9637,11 +9645,39 @@ msgstr ""
"Korlátozza a nézetablak képsebességét a GPU terhelés és az energiafogyasztás csökkentése érdekében.\n"
"Állítsd 0-ra a korlátlan képkockasebességhez."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Show FPS overlay"
msgstr "FPS fedvény megjelenítése"
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Megjeleníti az aktuális nézetablak FPS-t a jobb felső sarokban."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -10116,13 +10152,8 @@ msgstr "3MF közzététele..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Válaszd ki, mely beállítások kerüljenek közzétételre a 3MF fájlban"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "3MF közzététele wiki"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "3MF közzététele videós útmutató"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10324,6 +10355,13 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "Részletek megjelenítése"
# AI Translated
msgid "Hide details"
msgstr "Részletek elrejtése"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -12170,67 +12208,39 @@ msgstr "A konfigurációs csomag az előző konfigurációs útmutatóban módos
msgid "Configuration package changed"
msgstr "Konfigurációs csomag megváltozott"
msgid "Toolbar"
msgstr "Eszköztár"
msgid "Objects list"
msgstr "Objektumok listája"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Geometriai adatok importálása STL/STEP/3MF/OBJ/AMF fájlokból"
msgid "Paste from clipboard"
msgstr "Beillesztés a vágólapról"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "3Dconnexion-eszközbeállítások párbeszédablak megjelenítése/elrejtése"
msgid "Switch table page"
msgstr "Váltás táblázatra"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Szóköz"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Gyorsgombok listájának megjelenítése"
msgid "Global shortcuts"
msgstr "Globális gyorsbillentyűk"
msgid "Pan View"
msgstr "Pásztázó nézet"
msgid "Rotate View"
msgstr "Forgató nézet"
msgid "Middle mouse button"
msgstr "Középső egérgomb"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgid "Zoom View"
msgstr "Nagyító nézet"
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Automatikusan beállítja a kijelölt objektumok vagy az összes objektum tájolását. Ha vannak kijelölt objektumok, akkor csak a kijelölteket, ellenkező esetben pedig a projektben levő összes objektumot orientálja."
msgid "Left mouse"
msgstr ""
msgid "Auto orients all objects on the active plate."
msgstr "Automatikusan orientálja az aktuális tálcán levő összes objektumot."
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr "Az oldalsáv összecsukása/kinyitása"
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
msgid "Any arrow"
msgstr "Bármelyik nyílbillentyű"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Movement in camera space"
msgstr "Mozgás a kameratérben"
msgid "Switch to the next main tab"
msgstr ""
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Válassz egy tárgyat"
@@ -12241,126 +12251,29 @@ msgstr "Több objektum kijelölése"
msgid "Select objects by rectangle"
msgstr "Objektumok kijelölése téglalapok alapján"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Felfelé nyíl"
msgid "Move selection 10mm in positive Y direction"
msgstr "Kijelölés mozgatása 10 mm-rel pozitív Y irányban"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Lefelé nyíl"
msgid "Move selection 10mm in negative Y direction"
msgstr "Kijelölés mozgatása 10 mm-rel negatív Y irányban"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Balra nyíl"
msgid "Move selection 10mm in negative X direction"
msgstr "Kijelölés mozgatása 10 mm-rel negatív X irányban"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Jobbra nyíl"
msgid "Move selection 10mm in positive X direction"
msgstr "Kijelölés mozgatása 10 mm-rel pozitív X irányban"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "filament hozzárendelése az objektumhoz/tárgyhoz"
msgid "Movement step set to 1mm"
msgstr "Mozgatás lépéstávolsága 1mm-re állítva"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "filament hozzárendelése az objektumhoz/tárgyhoz"
msgid "Movement in camera space"
msgstr "Mozgás a kameratérben"
msgid "Camera view - Default"
msgstr "Kameranézet - Alapértelmezett"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Kameranézet - Felülről"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "Kameranézet - Alulról"
msgid "Zoom View"
msgstr "Nagyító nézet"
msgid "Camera view - Front"
msgstr "Kameranézet - Elölről"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "Kameranézet - Hátulról"
msgid "Camera Angle - Left side"
msgstr "Kameranézet - Bal oldal"
msgid "Camera Angle - Right side"
msgstr "Kameranézet - Jobb oldal"
msgid "Select all objects"
msgstr "Összes objektum kijelölése"
msgid "Gizmo move"
msgstr "Gizmo mozgatás"
msgid "Gizmo rotate"
msgstr "Gizmo forgatás"
msgid "Gizmo scale"
msgstr "Gizmo átméretezés"
msgid "Gizmo place face on bed"
msgstr "Gizmo felület asztalra illesztése"
msgid "Gizmo cut"
msgstr "Gizmo vágás"
msgid "Gizmo mesh boolean"
msgstr "Gizmo modellháló logikai műveletek"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM barázdált felület festése"
msgid "Gizmo SLA support points"
msgstr "Gizmo SLA támaszpontok"
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo FDM varrat festés"
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo szöveg dombornyomás/gravírozás"
msgid "Gizmo measure"
msgstr "Gizmo mérés"
msgid "Gizmo assemble"
msgstr "Gizmo összeállítás"
msgid "Gizmo brim ears"
msgstr "Gizmo peremfülek"
msgid "Zoom in"
msgstr "Zoom közelítés"
msgid "Zoom out"
msgstr "Zoom távolítás"
msgid "Toggle printable for object/part"
msgstr "Nyomtathatóság váltása objektumhoz/alkatrészhez"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "Váltás előkészítés/előnézet között"
msgid "Plater"
msgstr "Tálca"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Mozgatás: lenyomva 1 mm-es lépésekre illeszt"
@@ -12371,15 +12284,19 @@ msgstr "Támasz/Színfestés: toll méretének beállítása"
msgid "Support/Color Painting: adjust section position"
msgstr "Támasz/Színfestés: metszet pozíciójának beállítása"
# AI Translated
msgid "Gizmo"
msgstr "Gizmo"
msgid "Objects list"
msgstr "Objektumok listája"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Extruder szám beállítása az objektumok és tárgyak számára"
msgid "Delete objects, parts, modifiers"
msgstr "Objektumok, tárgyak, módosítók törlése"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Szóköz"
msgid "Select the object/part and press space to change the name"
msgstr "Válaszd ki az objektumot vagy alkatrészt, majd nyomd meg a szóközt a név megváltoztatásához"
@@ -12390,45 +12307,48 @@ msgstr "Egérkattintás"
msgid "Select the object/part and mouse click to change the name"
msgstr "Válaszd ki az objektumot vagy alkatrészt, majd kattints a nevére az átnevezéshez"
msgid "Objects List"
msgstr "Tárgyak listája"
msgid "Vertical slider - Move active thumb Up"
msgstr "Függőleges csúszka - Az aktív csúszka felfelé mozgatása"
msgid "Vertical slider - Move active thumb Down"
msgstr "Függőleges csúszka - Az aktív csúszka lefelé mozgatása"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Vízszintes csúszka - Az aktív csúszka balra mozgatása"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Vízszintes csúszka - Az aktív csúszka jobbra mozgatása"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Függőleges csúszka egyréteges módjának ki/bekapcsolása"
msgid "On/Off G-code window"
msgstr "G-kód ablak be/ki"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Csúszka 5x gyorsabb mozgatása"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "Vízszintes csúszka - Ugrás a kezdőpozícióra"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "Vízszintes csúszka - Ugrás az utolsó pozícióra"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Verzióinformáció"
@@ -17350,8 +17270,8 @@ msgstr "Előmelegítési lépések"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Több előmelegítési parancs beszúrása (pl. M104.1). Ez csak a Prusa XL esetén hasznos. Más nyomtatóknál állítsd 1-re."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "A kimeneti fájl legelejére írt G-kód, minden más tartalom előtt. Hasznos olyan metaadatok hozzáadására, amelyeket a nyomtató firmware-e a fájl első soraiból olvas ki (pl. becsült nyomtatási idő, filamentfelhasználás). Támogatja az olyan helyőrzőket, mint a {print_time_sec} és a {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "Kezdő G-kód"
@@ -18888,12 +18808,36 @@ msgstr "Használt filament"
msgid "Total length of filament used in the print."
msgstr "A nyomtatás során felhasznált filament teljes hossza."
msgid "Print time (seconds)"
msgstr "Nyomtatási idő (másodperc)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "A teljes becsült nyomtatási idő másodpercben. Az utófeldolgozás során a tényleges értékre cserélődik."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "Filament hossza (méter)"
@@ -20761,6 +20705,9 @@ msgstr "Nem található érvényes munkamenet. Folytatod a bejelentkezést a 3DP
msgid "Success!"
msgstr "Sikerült!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "Biztosan kijelentkezel?"
@@ -21810,13 +21757,6 @@ msgstr "A Bambu hálózati bővítmény szükséges a felhőfunkciókhoz, a nyom
msgid "Error: %s"
msgstr "Hiba: %s"
msgid "Show details"
msgstr "Részletek megjelenítése"
# AI Translated
msgid "Hide details"
msgstr "Részletek elrejtése"
msgid "Version to install:"
msgstr "Telepítendő verzió:"
@@ -24473,6 +24413,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -24485,6 +24431,216 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Balra nyíl"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Jobbra nyíl"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Felfelé nyíl"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Lefelé nyíl"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Geometriai adatok importálása STL/STEP/3MF/OBJ/AMF fájlokból"
msgid "Select all objects"
msgstr "Összes objektum kijelölése"
msgid "Paste from clipboard"
msgstr "Beillesztés a vágólapról"
msgid "Toggle printable for object/part"
msgstr "Nyomtathatóság váltása objektumhoz/alkatrészhez"
msgid "Move selection 10mm in negative X direction"
msgstr "Kijelölés mozgatása 10 mm-rel negatív X irányban"
msgid "Move selection 10mm in positive X direction"
msgstr "Kijelölés mozgatása 10 mm-rel pozitív X irányban"
msgid "Move selection 10mm in positive Y direction"
msgstr "Kijelölés mozgatása 10 mm-rel pozitív Y irányban"
msgid "Move selection 10mm in negative Y direction"
msgstr "Kijelölés mozgatása 10 mm-rel negatív Y irányban"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Gizmo mozgatás"
msgid "Gizmo rotate"
msgstr "Gizmo forgatás"
msgid "Gizmo scale"
msgstr "Gizmo átméretezés"
msgid "Gizmo place face on bed"
msgstr "Gizmo felület asztalra illesztése"
msgid "Gizmo cut"
msgstr "Gizmo vágás"
msgid "Gizmo mesh boolean"
msgstr "Gizmo modellháló logikai műveletek"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo FDM varrat festés"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM barázdált felület festése"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo szöveg dombornyomás/gravírozás"
msgid "Gizmo measure"
msgstr "Gizmo mérés"
msgid "Gizmo assemble"
msgstr "Gizmo összeállítás"
msgid "Gizmo brim ears"
msgstr "Gizmo peremfülek"
msgid "Vertical slider - Move active thumb Up"
msgstr "Függőleges csúszka - Az aktív csúszka felfelé mozgatása"
msgid "Vertical slider - Move active thumb Down"
msgstr "Függőleges csúszka - Az aktív csúszka lefelé mozgatása"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Vízszintes csúszka - Az aktív csúszka balra mozgatása"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Vízszintes csúszka - Az aktív csúszka jobbra mozgatása"
msgid "Horizontal slider - Move to start position"
msgstr "Vízszintes csúszka - Ugrás a kezdőpozícióra"
msgid "Horizontal slider - Move to last position"
msgstr "Vízszintes csúszka - Ugrás az utolsó pozícióra"
msgid "Camera view - Default"
msgstr "Kameranézet - Alapértelmezett"
msgid "Camera view - Top"
msgstr "Kameranézet - Felülről"
msgid "Camera view - Bottom"
msgstr "Kameranézet - Alulról"
msgid "Camera view - Front"
msgstr "Kameranézet - Elölről"
msgid "Camera view - Behind"
msgstr "Kameranézet - Hátulról"
msgid "Camera Angle - Left side"
msgstr "Kameranézet - Bal oldal"
msgid "Camera Angle - Right side"
msgstr "Kameranézet - Jobb oldal"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Zoom közelítés"
msgid "Zoom out"
msgstr "Zoom távolítás"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "3Dconnexion-eszközbeállítások párbeszédablak megjelenítése/elrejtése"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "G-kód ablak be/ki"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Függőleges csúszka egyréteges módjának ki/bekapcsolása"
msgid "Switch between Prepare/Preview"
msgstr "Váltás előkészítés/előnézet között"
msgid "Collapse/Expand the sidebar"
msgstr "Az oldalsáv összecsukása/kinyitása"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Gyorsgombok listájának megjelenítése"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -24786,6 +24942,64 @@ msgstr ""
"Kunkorodás elkerülése\n"
"Tudtad, hogy a kunkorodásra hajlamos anyagok (például ABS) nyomtatásakor az asztal hőmérsékletének növelése csökkentheti a kunkorodás valószínűségét?"
# AI Translated
#~ msgid "Tab"
#~ msgstr "Tab"
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Megjeleníti az aktuális nézetablak FPS-t a jobb felső sarokban."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "3MF közzététele wiki"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "3MF közzététele videós útmutató"
#~ msgid "Toolbar"
#~ msgstr "Eszköztár"
#~ msgid "Switch table page"
#~ msgstr "Váltás táblázatra"
#~ msgid "Global shortcuts"
#~ msgstr "Globális gyorsbillentyűk"
#~ msgid "Middle mouse button"
#~ msgstr "Középső egérgomb"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Automatikusan beállítja a kijelölt objektumok vagy az összes objektum tájolását. Ha vannak kijelölt objektumok, akkor csak a kijelölteket, ellenkező esetben pedig a projektben levő összes objektumot orientálja."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Automatikusan orientálja az aktuális tálcán levő összes objektumot."
#~ msgid "Any arrow"
#~ msgstr "Bármelyik nyílbillentyű"
#~ msgid "Gizmo SLA support points"
#~ msgstr "Gizmo SLA támaszpontok"
#~ msgid "Plater"
#~ msgstr "Tálca"
# AI Translated
#~ msgid "Gizmo"
#~ msgstr "Gizmo"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Objektumok, tárgyak, módosítók törlése"
#~ msgid "Objects List"
#~ msgstr "Tárgyak listája"
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "A kimeneti fájl legelejére írt G-kód, minden más tartalom előtt. Hasznos olyan metaadatok hozzáadására, amelyeket a nyomtató firmware-e a fájl első soraiból olvas ki (pl. becsült nyomtatási idő, filamentfelhasználás). Támogatja az olyan helyőrzőket, mint a {print_time_sec} és a {used_filament_length}."
#~ msgid "Print time (seconds)"
#~ msgstr "Nyomtatási idő (másodperc)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "Műveletek gyorsmenüjének megnyitása"
+451 -237
View File
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -5920,12 +5920,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Destra"
msgid "Add"
msgstr "Aggiungi"
msgid "Add plate"
msgstr "Aggiungi piatto"
msgid "Split to objects"
msgstr "Dividi in oggetti"
msgid "Add"
msgstr "Aggiungi"
msgid "Auto orient all/selected objects"
msgstr "Orientamento automatico tutti/selezionati oggetti"
@@ -5938,9 +5941,6 @@ msgstr "Disponi tutti gli oggetti"
msgid "Arrange objects on selected plates"
msgstr "Disponi gli oggetti sui piatti selezionati"
msgid "Split to objects"
msgstr "Dividi in oggetti"
msgid "Assembly View"
msgstr "Vista di montaggio"
@@ -5997,6 +5997,9 @@ msgstr "Contorno"
msgid "Wireframe"
msgstr "Modello reticolato"
msgid "X-Ray"
msgstr ""
# AI Translated
msgid "Realistic View"
msgstr "Vista realistica"
@@ -6540,9 +6543,6 @@ msgstr "Mostra il contorno attorno all'oggetto selezionato nella scena 3D."
msgid "Preferences"
msgstr "Preferenze"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6551,6 +6551,9 @@ msgstr "Modifica"
msgid "View"
msgstr "Vista"
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr "Pacchetto profili"
@@ -8362,10 +8365,6 @@ msgstr "Espandi barra laterale"
msgid "Collapse sidebar"
msgstr "Riduci barra laterale"
# AI Translated
msgid "Tab"
msgstr "Tab"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Caricamento file: %s"
@@ -9388,10 +9387,10 @@ msgstr "Gestione multi-dispositivo"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Abilitando questa opzione, puoi inviare un'attività a più dispositivi contemporaneamente e gestire più dispositivi."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9530,6 +9529,15 @@ msgstr "Trascinamento con il tasto destro del mouse"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Imposta l'azione che deve eseguire il trascinamento con il tasto destro del mouse."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "Cancella la mia scelta su..."
@@ -9654,13 +9662,40 @@ msgstr ""
"Limita la frequenza dei fotogrammi della vista per ridurre il carico della GPU e il consumo energetico.\n"
"Imposta a 0 per una frequenza dei fotogrammi illimitata."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
# AI Translated
msgid "Show FPS overlay"
msgstr "Mostra overlay FPS"
# AI Translated
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Mostra gli FPS correnti della vista nell'angolo in alto a destra."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -10134,13 +10169,8 @@ msgstr "Pubblica 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Seleziona quali impostazioni pubblicare nel file 3MF"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "Wiki di Pubblica 3MF"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "Guida video di Pubblica 3MF"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10342,6 +10372,13 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "Mostra dettagli"
# AI Translated
msgid "Hide details"
msgstr "Nascondi dettagli"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -12190,68 +12227,39 @@ msgstr "Il pacchetto di configurazione è stato modificato nella precedente Guid
msgid "Configuration package changed"
msgstr "Pacchetto di configurazione modificato"
msgid "Toolbar"
msgstr "Barra degli strumenti"
msgid "Objects list"
msgstr "Elenco oggetti"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importa geometrie da file STL/STEP/3MF/OBJ/AMF"
msgid "Paste from clipboard"
msgstr "Incolla dagli appunti"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Mostra/nascondi la finestra di dialogo delle impostazioni dei dispositivi 3Dconnexion"
msgid "Switch table page"
msgstr "Cambia pagina tabella"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Spazio"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Mostra elenco scorciatoie da tastiera"
msgid "Global shortcuts"
msgstr "Scorciatoie globali"
msgid "Pan View"
msgstr "Vista panoramica"
msgid "Rotate View"
msgstr "Ruota vista"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Left mouse"
msgstr ""
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
# AI Translated
msgid "Middle mouse button"
msgstr "Tasto centrale del mouse"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Zoom View"
msgstr "Vista Zoom"
msgid "Switch to the next main tab"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Questo orienta automaticamente gli oggetti selezionati o tutti gli oggetti. Se ci sono oggetti selezionati, orienta solo quelli selezionati. Altrimenti, orienterà tutti gli elementi nel progetto corrente."
msgid "Auto orients all objects on the active plate."
msgstr "Questo orienta tutti gli oggetti nel piatto corrente."
msgid "Collapse/Expand the sidebar"
msgstr "Riduci/Espandi barra laterale"
msgid "Any arrow"
msgstr "Qualsiasi freccia"
msgid "Movement in camera space"
msgstr "Movimento nello spazio della telecamera"
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Seleziona parte"
@@ -12262,126 +12270,29 @@ msgstr "Seleziona più oggetti"
msgid "Select objects by rectangle"
msgstr "Seleziona oggetti per rettangolo"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Freccia su"
msgid "Move selection 10mm in positive Y direction"
msgstr "Sposta selezione di 10 mm in direzione Y positiva"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Freccia giù"
msgid "Move selection 10mm in negative Y direction"
msgstr "Sposta selezione di 10 mm in direzione Y negativa"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Freccia sinistra"
msgid "Move selection 10mm in negative X direction"
msgstr "Sposta selezione di 10 mm in direzione X negativa"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Freccia destra"
msgid "Move selection 10mm in positive X direction"
msgstr "Sposta selezione di 10 mm in direzione X positiva"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Tastiera 1-9: imposta il filamento per l'oggetto/parte"
msgid "Movement step set to 1mm"
msgstr "Passo movimento impostato a 1 mm"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Tastiera 1-9: imposta il filamento per l'oggetto/parte"
msgid "Movement in camera space"
msgstr "Movimento nello spazio della telecamera"
msgid "Camera view - Default"
msgstr "Vista telecamera - Predefinito"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Vista telecamera - In Alto"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "Vista telecamera - In Basso"
msgid "Zoom View"
msgstr "Vista Zoom"
msgid "Camera view - Front"
msgstr "Vista telecamera - Anteriore"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "Vista telecamera - Posteriore"
msgid "Camera Angle - Left side"
msgstr "Angolo della camera - Lato sinistro"
msgid "Camera Angle - Right side"
msgstr "Angolo della camera - Lato destro"
msgid "Select all objects"
msgstr "Seleziona tutti gli oggetti"
msgid "Gizmo move"
msgstr "Strumento Muovi"
msgid "Gizmo rotate"
msgstr "Strumento Ruota"
msgid "Gizmo scale"
msgstr "Strumento Scala"
msgid "Gizmo place face on bed"
msgstr "Strumento posiziona faccia sul piatto"
msgid "Gizmo cut"
msgstr "Strumento Taglia"
msgid "Gizmo mesh boolean"
msgstr "Gizmo maglia booleana"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Strumento FDM per superficie ruvida dipinta"
msgid "Gizmo SLA support points"
msgstr "Strumento Punti di supporto SLA"
msgid "Gizmo FDM paint-on seam"
msgstr "Strumento Dipingi cucitura FDM"
msgid "Gizmo text emboss/engrave"
msgstr "Strumento testo in rilievo/incisione"
msgid "Gizmo measure"
msgstr "Gizmo misura"
msgid "Gizmo assemble"
msgstr "Gizmo assemblaggio"
msgid "Gizmo brim ears"
msgstr "Gizmo tese ad orecchio"
msgid "Zoom in"
msgstr "Ingrandisci"
msgid "Zoom out"
msgstr "Rimpicciolisci"
msgid "Toggle printable for object/part"
msgstr "Attiva/disattiva stampa per oggetto/parte"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "Passa tra Prepara e Anteprima"
msgid "Plater"
msgstr "Piatto"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Sposta: premi per muovere di 1 mm"
@@ -12392,14 +12303,19 @@ msgstr "Supporto/Pittura a colori: regola il raggio della penna"
msgid "Support/Color Painting: adjust section position"
msgstr "Supporto/Pittura a colori: regola la posizione della sezione"
msgid "Gizmo"
msgstr "Strumento"
msgid "Objects list"
msgstr "Elenco oggetti"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Imposta il numero dell'estrusore per gli oggetti e le parti"
msgid "Delete objects, parts, modifiers"
msgstr "Elimina oggetti, parti, modificatori"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Spazio"
msgid "Select the object/part and press space to change the name"
msgstr "Seleziona l'oggetto/la parte e premi la barra spaziatrice per modificare il nome"
@@ -12410,45 +12326,48 @@ msgstr "Clic del mouse"
msgid "Select the object/part and mouse click to change the name"
msgstr "Seleziona l'oggetto/la parte e fai clic con il mouse per modificare il nome"
msgid "Objects List"
msgstr "Elenco oggetti"
msgid "Vertical slider - Move active thumb Up"
msgstr "Cursore di scorrimento verticale - Solleva cursore attivo"
msgid "Vertical slider - Move active thumb Down"
msgstr "Cursore di scorrimento verticale - Abbassa cursore attivo"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Cursore di scorrimento orizzontale - Sposta a sinistra il cursore attivo"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Cursore di scorrimento orizzontale - Sposta a destra il cursore attivo"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Attiva/Disattiva modalità singolo strato del cursore di scorrimento verticale"
msgid "On/Off G-code window"
msgstr "Attiva/Disattiva finestra G-code"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Sposta il cursore 5 volte più velocemente"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "Cursore di scorrimento orizzontale - Sposta alla posizione iniziale"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "Fine"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "Cursore di scorrimento orizzontale - Sposta alla posizione finale"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Note di rilascio"
@@ -17372,8 +17291,8 @@ msgstr "Fasi preriscaldamento"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Inserisci più comandi di preriscaldamento (ad esempio M104.1). Utile solo per Prusa XL. Per altre stampanti, impostalo su 1."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-code scritto all'inizio del file di output, prima di qualsiasi altro contenuto. Utile per aggiungere metadati che il firmware della stampante legge dalle prime righe del file (ad es. tempo di stampa stimato, utilizzo filamento). Supporta segnaposto come {print_time_sec} e {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "G-code iniziale"
@@ -18911,12 +18830,36 @@ msgstr "Filamento usato"
msgid "Total length of filament used in the print."
msgstr "Lunghezza totale di filamento utilizzato nella stampa."
msgid "Print time (seconds)"
msgstr "Tempo di stampa (secondi)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Tempo di stampa stimato totale in secondi. Sostituito con il valore effettivo durante la post-elaborazione."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "Lunghezza filamento (metri)"
@@ -20779,6 +20722,9 @@ msgstr "Nessuna sessione valida rilevata. Procedere con l'accesso a 3DPrinterOS?
msgid "Success!"
msgstr "Successo!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "Sei sicuro di volerti disconnettere?"
@@ -21834,13 +21780,6 @@ msgstr "Il modulo di rete Bambu è necessario per le funzionalità cloud, il ril
msgid "Error: %s"
msgstr "Errore: %s"
msgid "Show details"
msgstr "Mostra dettagli"
# AI Translated
msgid "Hide details"
msgstr "Nascondi dettagli"
msgid "Version to install:"
msgstr "Versione da installare:"
@@ -24497,6 +24436,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -24509,6 +24454,216 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "Fine"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Freccia sinistra"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Freccia destra"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Freccia su"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Freccia giù"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importa geometrie da file STL/STEP/3MF/OBJ/AMF"
msgid "Select all objects"
msgstr "Seleziona tutti gli oggetti"
msgid "Paste from clipboard"
msgstr "Incolla dagli appunti"
msgid "Toggle printable for object/part"
msgstr "Attiva/disattiva stampa per oggetto/parte"
msgid "Move selection 10mm in negative X direction"
msgstr "Sposta selezione di 10 mm in direzione X negativa"
msgid "Move selection 10mm in positive X direction"
msgstr "Sposta selezione di 10 mm in direzione X positiva"
msgid "Move selection 10mm in positive Y direction"
msgstr "Sposta selezione di 10 mm in direzione Y positiva"
msgid "Move selection 10mm in negative Y direction"
msgstr "Sposta selezione di 10 mm in direzione Y negativa"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Strumento Muovi"
msgid "Gizmo rotate"
msgstr "Strumento Ruota"
msgid "Gizmo scale"
msgstr "Strumento Scala"
msgid "Gizmo place face on bed"
msgstr "Strumento posiziona faccia sul piatto"
msgid "Gizmo cut"
msgstr "Strumento Taglia"
msgid "Gizmo mesh boolean"
msgstr "Gizmo maglia booleana"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "Strumento Dipingi cucitura FDM"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Strumento FDM per superficie ruvida dipinta"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Strumento testo in rilievo/incisione"
msgid "Gizmo measure"
msgstr "Gizmo misura"
msgid "Gizmo assemble"
msgstr "Gizmo assemblaggio"
msgid "Gizmo brim ears"
msgstr "Gizmo tese ad orecchio"
msgid "Vertical slider - Move active thumb Up"
msgstr "Cursore di scorrimento verticale - Solleva cursore attivo"
msgid "Vertical slider - Move active thumb Down"
msgstr "Cursore di scorrimento verticale - Abbassa cursore attivo"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Cursore di scorrimento orizzontale - Sposta a sinistra il cursore attivo"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Cursore di scorrimento orizzontale - Sposta a destra il cursore attivo"
msgid "Horizontal slider - Move to start position"
msgstr "Cursore di scorrimento orizzontale - Sposta alla posizione iniziale"
msgid "Horizontal slider - Move to last position"
msgstr "Cursore di scorrimento orizzontale - Sposta alla posizione finale"
msgid "Camera view - Default"
msgstr "Vista telecamera - Predefinito"
msgid "Camera view - Top"
msgstr "Vista telecamera - In Alto"
msgid "Camera view - Bottom"
msgstr "Vista telecamera - In Basso"
msgid "Camera view - Front"
msgstr "Vista telecamera - Anteriore"
msgid "Camera view - Behind"
msgstr "Vista telecamera - Posteriore"
msgid "Camera Angle - Left side"
msgstr "Angolo della camera - Lato sinistro"
msgid "Camera Angle - Right side"
msgstr "Angolo della camera - Lato destro"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Ingrandisci"
msgid "Zoom out"
msgstr "Rimpicciolisci"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Mostra/nascondi la finestra di dialogo delle impostazioni dei dispositivi 3Dconnexion"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "Attiva/Disattiva finestra G-code"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Attiva/Disattiva modalità singolo strato del cursore di scorrimento verticale"
msgid "Switch between Prepare/Preview"
msgstr "Passa tra Prepara e Anteprima"
msgid "Collapse/Expand the sidebar"
msgstr "Riduci/Espandi barra laterale"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Mostra elenco scorciatoie da tastiera"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -24810,6 +24965,65 @@ 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?"
# AI Translated
#~ msgid "Tab"
#~ msgstr "Tab"
# AI Translated
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Mostra gli FPS correnti della vista nell'angolo in alto a destra."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "Wiki di Pubblica 3MF"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "Guida video di Pubblica 3MF"
#~ msgid "Toolbar"
#~ msgstr "Barra degli strumenti"
#~ msgid "Switch table page"
#~ msgstr "Cambia pagina tabella"
#~ msgid "Global shortcuts"
#~ msgstr "Scorciatoie globali"
# AI Translated
#~ msgid "Middle mouse button"
#~ msgstr "Tasto centrale del mouse"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Questo orienta automaticamente gli oggetti selezionati o tutti gli oggetti. Se ci sono oggetti selezionati, orienta solo quelli selezionati. Altrimenti, orienterà tutti gli elementi nel progetto corrente."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Questo orienta tutti gli oggetti nel piatto corrente."
#~ msgid "Any arrow"
#~ msgstr "Qualsiasi freccia"
#~ msgid "Gizmo SLA support points"
#~ msgstr "Strumento Punti di supporto SLA"
#~ msgid "Plater"
#~ msgstr "Piatto"
#~ msgid "Gizmo"
#~ msgstr "Strumento"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Elimina oggetti, parti, modificatori"
#~ msgid "Objects List"
#~ msgstr "Elenco oggetti"
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-code scritto all'inizio del file di output, prima di qualsiasi altro contenuto. Utile per aggiungere metadati che il firmware della stampante legge dalle prime righe del file (ad es. tempo di stampa stimato, utilizzo filamento). Supporta segnaposto come {print_time_sec} e {used_filament_length}."
#~ msgid "Print time (seconds)"
#~ msgstr "Tempo di stampa (secondi)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "Apri la selezione rapida delle azioni"
+455 -241
View File
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -5937,12 +5937,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "右"
msgid "Add"
msgstr "追加"
msgid "Add plate"
msgstr "プレートを追加"
msgid "Split to objects"
msgstr "オブジェクトに分割"
msgid "Add"
msgstr "追加"
msgid "Auto orient all/selected objects"
msgstr "すべてのオブジェクト/選択したオブジェクトの方向を自動設定する"
@@ -5955,9 +5958,6 @@ msgstr "全てをレイアウト"
msgid "Arrange objects on selected plates"
msgstr "選択したプレートをレイアウト"
msgid "Split to objects"
msgstr "オブジェクトに分割"
msgid "Assembly View"
msgstr "組立て"
@@ -6014,6 +6014,9 @@ msgstr "アウトライン"
msgid "Wireframe"
msgstr "ワイヤフレーム"
msgid "X-Ray"
msgstr ""
# AI Translated
msgid "Realistic View"
msgstr "リアルビュー"
@@ -6550,9 +6553,6 @@ msgstr "3Dシーンで選択したオブジェクトの周りにアウトライ
msgid "Preferences"
msgstr "設定"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6561,6 +6561,9 @@ msgstr "編集"
msgid "View"
msgstr "表示"
msgid "Open Speed Dial"
msgstr ""
# AI Translated
msgid "Preset Bundle"
msgstr "プリセットバンドル"
@@ -8373,10 +8376,6 @@ msgstr "サイドバーを展開"
msgid "Collapse sidebar"
msgstr "サイドバーを折りたたむ"
# AI Translated
msgid "Tab"
msgstr "Tab"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "ファイルを読込む: %s"
@@ -9411,10 +9410,10 @@ msgstr "マルチデバイス管理"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "このオプションを有効にすると、複数のデバイスに同時にタスクを送信し、複数のデバイスを管理できます。"
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9553,6 +9552,15 @@ msgstr "マウス右ドラッグ"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "マウス右ボタンのドラッグで実行する操作を設定します。"
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "選択をクリア..."
@@ -9677,13 +9685,40 @@ msgstr ""
"ビューポートのフレームレートを制限し、GPU負荷と消費電力を抑えます。\n"
"0に設定するとフレームレートは無制限になります。"
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
# AI Translated
msgid "Show FPS overlay"
msgstr "FPSオーバーレイを表示"
# AI Translated
msgid "Displays current viewport FPS in the top-right corner."
msgstr "現在のビューポートのFPSを右上に表示します。"
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -10159,13 +10194,8 @@ msgstr "3MFを公開..."
msgid "Select which settings to be published in the 3MF file"
msgstr "3MFファイルで公開する設定を選択してください"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "3MF公開のWiki"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "3MF公開のビデオガイド"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10367,6 +10397,13 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "詳細を表示"
# AI Translated
msgid "Hide details"
msgstr "詳細を隠す"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -12214,68 +12251,39 @@ msgstr "構成パッケージが前のコンフィグガイドに変更されま
msgid "Configuration package changed"
msgstr "構成パッケージが変更されました"
msgid "Toolbar"
msgstr "ツールバー"
msgid "Objects list"
msgstr "オブジェクト一覧"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "STL/STEP/3MF/OBJ/AMFファイルからジオメトリデータをインポート"
msgid "Paste from clipboard"
msgstr "貼り付け"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "3Dconnexion設定を表示/非表示"
msgid "Switch table page"
msgstr "テーブルページを切り替え"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Space"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "ショートカット一覧を表示"
msgid "Global shortcuts"
msgstr "ショートカット"
msgid "Pan View"
msgstr "移動"
msgid "Rotate View"
msgstr "回転"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Left mouse"
msgstr ""
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
# AI Translated
msgid "Middle mouse button"
msgstr "マウス中ボタン"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Zoom View"
msgstr "ズーム"
msgid "Switch to the next main tab"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "選択したオブジェクトまたはプロジェクト内のすべてのオブジェクトの方向を自動的に設定します。"
msgid "Auto orients all objects on the active plate."
msgstr "現在のプレート上のすべてのオブジェクトの方向を自動的に設定します。"
msgid "Collapse/Expand the sidebar"
msgstr "サイドバーを展開/隠す"
msgid "Any arrow"
msgstr "任意の矢印キー"
msgid "Movement in camera space"
msgstr "オブジェクト移動"
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "パーツを選択"
@@ -12286,127 +12294,29 @@ msgstr "複数のオブジェクトを選択"
msgid "Select objects by rectangle"
msgstr "矩形でオブジェクトを選択"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "↑"
msgid "Move selection 10mm in positive Y direction"
msgstr "Y方向 10mm"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "↓"
msgid "Move selection 10mm in negative Y direction"
msgstr "Y方向 -10mm"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "←"
msgid "Move selection 10mm in negative X direction"
msgstr "X方向 -10mm"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "→"
msgid "Move selection 10mm in positive X direction"
msgstr "X方向 10mm"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "キー1-9: オブジェクト/パーツのフィラメントを設定"
msgid "Movement step set to 1mm"
msgstr "移動ステップを1mmに設定"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "キー1-9: オブジェクト/パーツのフィラメントを設定"
msgid "Movement in camera space"
msgstr "オブジェクト移動"
msgid "Camera view - Default"
msgstr "デフォルト"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "トップ"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "底面"
msgid "Zoom View"
msgstr "ズーム"
msgid "Camera view - Front"
msgstr "正面"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "背面"
msgid "Camera Angle - Left side"
msgstr "左側"
msgid "Camera Angle - Right side"
msgstr "右側"
msgid "Select all objects"
msgstr "すべてのオブジェクトを選択"
msgid "Gizmo move"
msgstr "移動"
msgid "Gizmo rotate"
msgstr "回転"
msgid "Gizmo scale"
msgstr "スケール"
msgid "Gizmo place face on bed"
msgstr "底面選択"
msgid "Gizmo cut"
msgstr "カット"
msgid "Gizmo mesh boolean"
msgstr "メッシュブール"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "ギズモ FDMファジースキンペイント"
msgid "Gizmo SLA support points"
msgstr "SLAサポートポイント"
msgid "Gizmo FDM paint-on seam"
msgstr "継ぎ目ペイント"
msgid "Gizmo text emboss/engrave"
msgstr "ギズモ・テキストのエンボス/エングレーブ"
msgid "Gizmo measure"
msgstr "測る"
msgid "Gizmo assemble"
msgstr "組立てる"
msgid "Gizmo brim ears"
msgstr "ブリム"
msgid "Zoom in"
msgstr "ズームイン"
msgid "Zoom out"
msgstr "縮小"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "オブジェクト/パーツの印刷可否を切り替え"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "準備/プレビュー間の切り替え"
msgid "Plater"
msgstr "準備"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "1mm単位で移動"
@@ -12417,15 +12327,19 @@ msgstr "サポート/色塗り: 半径のサイズ"
msgid "Support/Color Painting: adjust section position"
msgstr "サポート/色塗り: 断面の位置"
# AI Translated
msgid "Gizmo"
msgstr "ギズモ"
msgid "Objects list"
msgstr "オブジェクト一覧"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "オブジェクトとパーツ造形用の押出機番号を設定"
msgid "Delete objects, parts, modifiers"
msgstr "オブジェクト、パーツ、モディファイヤを削除"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Space"
msgid "Select the object/part and press space to change the name"
msgstr "オブジェクト/パーツを選択し、名前を変更します"
@@ -12436,45 +12350,48 @@ msgstr "マウスクリック"
msgid "Select the object/part and mouse click to change the name"
msgstr "オブジェクト/パーツを選択し、名前を変更します"
msgid "Objects List"
msgstr "オブジェクト一覧"
msgid "Vertical slider - Move active thumb Up"
msgstr "垂直スライダー"
msgid "Vertical slider - Move active thumb Down"
msgstr "垂直スライダー"
msgid "Horizontal slider - Move active thumb Left"
msgstr "水平スライダー (左)"
msgid "Horizontal slider - Move active thumb Right"
msgstr "水平スライダー (右)"
msgid "On/Off one layer mode of the vertical slider"
msgstr "垂直スライダーの1レイヤーモードのオン/オフ"
msgid "On/Off G-code window"
msgstr "G-codeウィンドウのオン/オフ"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "5x"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "水平スライダー - 開始位置に移動"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "水平スライダー - 最後の位置に移動"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "リリースノート"
@@ -17711,9 +17628,8 @@ msgstr "予熱ステップ数"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "複数の予熱コマンド (M104.1など) を挿入します。Prusa XLでのみ有効です。その他のプリンターでは1に設定してください。"
# AI Translated
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "出力ファイルの先頭、他のどの内容よりも前に書き込まれるG-codeです。プリンターのファームウェアがファイル先頭の数行から読み取るメタデータ (推定印刷時間、フィラメント使用量など) を追加するのに便利です。{print_time_sec}や{used_filament_length}などのプレースホルダーに対応しています。"
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "スタートG-code"
@@ -19371,14 +19287,37 @@ msgstr "フィラメント使用量"
msgid "Total length of filament used in the print."
msgstr "プリントに使用されるフィラメントの全長。"
# AI Translated
msgid "Print time (seconds)"
msgstr "印刷時間 (秒)"
msgid "Print time (total seconds)"
msgstr ""
# AI Translated
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "推定される総印刷時間 (秒) です。後処理時に実際の値に置き換えられます。"
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
# AI Translated
msgid "Filament length (meters)"
msgstr "フィラメント長 (メートル)"
@@ -21296,6 +21235,9 @@ msgstr "有効なセッションが検出されませんでした。3DPrinterOS
msgid "Success!"
msgstr "成功!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "本当にログアウトしますか?"
@@ -22379,13 +22321,6 @@ msgstr "Bambuネットワークプラグインはクラウド機能、プリン
msgid "Error: %s"
msgstr "エラー: %s"
msgid "Show details"
msgstr "詳細を表示"
# AI Translated
msgid "Hide details"
msgstr "詳細を隠す"
msgid "Version to install:"
msgstr "インストールするバージョン:"
@@ -25042,6 +24977,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -25054,6 +24995,217 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "←"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "→"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "↑"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "↓"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "STL/STEP/3MF/OBJ/AMFファイルからジオメトリデータをインポート"
msgid "Select all objects"
msgstr "すべてのオブジェクトを選択"
msgid "Paste from clipboard"
msgstr "貼り付け"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "オブジェクト/パーツの印刷可否を切り替え"
msgid "Move selection 10mm in negative X direction"
msgstr "X方向 -10mm"
msgid "Move selection 10mm in positive X direction"
msgstr "X方向 10mm"
msgid "Move selection 10mm in positive Y direction"
msgstr "Y方向 10mm"
msgid "Move selection 10mm in negative Y direction"
msgstr "Y方向 -10mm"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "移動"
msgid "Gizmo rotate"
msgstr "回転"
msgid "Gizmo scale"
msgstr "スケール"
msgid "Gizmo place face on bed"
msgstr "底面選択"
msgid "Gizmo cut"
msgstr "カット"
msgid "Gizmo mesh boolean"
msgstr "メッシュブール"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "継ぎ目ペイント"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "ギズモ FDMファジースキンペイント"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "ギズモ・テキストのエンボス/エングレーブ"
msgid "Gizmo measure"
msgstr "測る"
msgid "Gizmo assemble"
msgstr "組立てる"
msgid "Gizmo brim ears"
msgstr "ブリム"
msgid "Vertical slider - Move active thumb Up"
msgstr "垂直スライダー"
msgid "Vertical slider - Move active thumb Down"
msgstr "垂直スライダー"
msgid "Horizontal slider - Move active thumb Left"
msgstr "水平スライダー (左)"
msgid "Horizontal slider - Move active thumb Right"
msgstr "水平スライダー (右)"
msgid "Horizontal slider - Move to start position"
msgstr "水平スライダー - 開始位置に移動"
msgid "Horizontal slider - Move to last position"
msgstr "水平スライダー - 最後の位置に移動"
msgid "Camera view - Default"
msgstr "デフォルト"
msgid "Camera view - Top"
msgstr "トップ"
msgid "Camera view - Bottom"
msgstr "底面"
msgid "Camera view - Front"
msgstr "正面"
msgid "Camera view - Behind"
msgstr "背面"
msgid "Camera Angle - Left side"
msgstr "左側"
msgid "Camera Angle - Right side"
msgstr "右側"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "ズームイン"
msgid "Zoom out"
msgstr "縮小"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "3Dconnexion設定を表示/非表示"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "G-codeウィンドウのオン/オフ"
msgid "On/Off one layer mode of the vertical slider"
msgstr "垂直スライダーの1レイヤーモードのオン/オフ"
msgid "Switch between Prepare/Preview"
msgstr "準備/プレビュー間の切り替え"
msgid "Collapse/Expand the sidebar"
msgstr "サイドバーを展開/隠す"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "ショートカット一覧を表示"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
# AI Translated
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
@@ -25366,6 +25518,68 @@ msgstr ""
"反りを避ける\n"
"ABSのような反りやすい素材を印刷する場合、ヒートベッドの温度を適切に上げることで、反りが発生する確率を下げることができることをご存知ですか?"
# AI Translated
#~ msgid "Tab"
#~ msgstr "Tab"
# AI Translated
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "現在のビューポートのFPSを右上に表示します。"
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "3MF公開のWiki"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "3MF公開のビデオガイド"
#~ msgid "Toolbar"
#~ msgstr "ツールバー"
#~ msgid "Switch table page"
#~ msgstr "テーブルページを切り替え"
#~ msgid "Global shortcuts"
#~ msgstr "ショートカット"
# AI Translated
#~ msgid "Middle mouse button"
#~ msgstr "マウス中ボタン"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "選択したオブジェクトまたはプロジェクト内のすべてのオブジェクトの方向を自動的に設定します。"
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "現在のプレート上のすべてのオブジェクトの方向を自動的に設定します。"
#~ msgid "Any arrow"
#~ msgstr "任意の矢印キー"
#~ msgid "Gizmo SLA support points"
#~ msgstr "SLAサポートポイント"
#~ msgid "Plater"
#~ msgstr "準備"
# AI Translated
#~ msgid "Gizmo"
#~ msgstr "ギズモ"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "オブジェクト、パーツ、モディファイヤを削除"
#~ msgid "Objects List"
#~ msgstr "オブジェクト一覧"
# AI Translated
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "出力ファイルの先頭、他のどの内容よりも前に書き込まれるG-codeです。プリンターのファームウェアがファイル先頭の数行から読み取るメタデータ (推定印刷時間、フィラメント使用量など) を追加するのに便利です。{print_time_sec}や{used_filament_length}などのプレースホルダーに対応しています。"
# AI Translated
#~ msgid "Print time (seconds)"
#~ msgstr "印刷時間 (秒)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "アクションスピードダイヤルを開く"
+456 -242
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: 2025-06-02 17:12+0900\n"
"Last-Translator: crwusiz <crwusiz@gmail.com>\n"
"Language-Team: \n"
@@ -5949,12 +5949,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "오른쪽"
msgid "Add"
msgstr "추가"
msgid "Add plate"
msgstr "플레이트 추가"
msgid "Split to objects"
msgstr "객체로 분할"
msgid "Add"
msgstr "추가"
msgid "Auto orient all/selected objects"
msgstr "모든/선택한 객체 자동 방향 지정"
@@ -5967,9 +5970,6 @@ msgstr "모든 객체 정렬"
msgid "Arrange objects on selected plates"
msgstr "선택한 플레이트의 객체 정렬"
msgid "Split to objects"
msgstr "객체로 분할"
msgid "Assembly View"
msgstr "조립 보기"
@@ -6026,6 +6026,9 @@ msgstr "외곽선"
msgid "Wireframe"
msgstr "와이어프레임"
msgid "X-Ray"
msgstr ""
# AI Translated
msgid "Realistic View"
msgstr "사실적 보기"
@@ -6563,9 +6566,6 @@ msgstr "3D 장면에서 선택한 객체 주변에 윤곽선 표시"
msgid "Preferences"
msgstr "기본 설정"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6574,6 +6574,9 @@ msgstr "편집"
msgid "View"
msgstr "시점"
msgid "Open Speed Dial"
msgstr ""
# AI Translated
msgid "Preset Bundle"
msgstr "사전 설정 번들"
@@ -8387,10 +8390,6 @@ msgstr "사이드바 확장"
msgid "Collapse sidebar"
msgstr "사이드바 접기"
# AI Translated
msgid "Tab"
msgstr "탭"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "파일 로드 중: %s"
@@ -9471,10 +9470,10 @@ msgstr "다중 장치 관리"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "활성화하면 여러 장치에 동시에 작업을 보내고 여러 장치를 관리할 수 있습니다."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9622,6 +9621,15 @@ msgstr "마우스 오른쪽 버튼 드래그"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "마우스 오른쪽 버튼을 드래그할 때 수행할 동작을 설정합니다."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
# AI Translated
msgid "Clear my choice on..."
msgstr "다음 항목에 대한 선택 지우기..."
@@ -9750,13 +9758,40 @@ msgstr ""
"뷰포트의 프레임 속도를 제한하여 GPU 부하와 전력 사용량을 줄입니다.\n"
"0으로 설정하면 프레임 속도가 무제한이 됩니다."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
# AI Translated
msgid "Show FPS overlay"
msgstr "FPS 오버레이 표시"
# AI Translated
msgid "Displays current viewport FPS in the top-right corner."
msgstr "현재 뷰포트의 FPS를 오른쪽 위 모서리에 표시합니다."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -10247,13 +10282,8 @@ msgstr "3MF 게시..."
msgid "Select which settings to be published in the 3MF file"
msgstr "3MF 파일에 게시할 설정을 선택하세요"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "3MF 게시 위키"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "3MF 게시 비디오 가이드"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10456,6 +10486,14 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
# AI Translated
msgid "Show details"
msgstr "세부 정보 표시"
# AI Translated
msgid "Hide details"
msgstr "세부 정보 숨기기"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -12345,68 +12383,39 @@ msgstr "이전 구성 가이드에서 구성 패키지가 변경되었습니다"
msgid "Configuration package changed"
msgstr "구성 패키지가 변경됨"
msgid "Toolbar"
msgstr "도구 모음"
msgid "Objects list"
msgstr "객체 목록"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "STL/STEP/3MF/OBJ/AMF 파일에서 형상 데이터 가져오기"
msgid "Paste from clipboard"
msgstr "클립보드에서 붙여넣기"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "3D 연결 장치 설정 표시/숨기기 대화상자"
msgid "Switch table page"
msgstr "테이블 페이지 전환"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Space"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "키보드 단축키 목록 보기"
msgid "Global shortcuts"
msgstr "전역 단축키"
msgid "Pan View"
msgstr "보기 이동"
msgid "Rotate View"
msgstr "보기 회전"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Left mouse"
msgstr ""
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
# AI Translated
msgid "Middle mouse button"
msgstr "마우스 가운데 버튼"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Zoom View"
msgstr "줌 뷰"
msgid "Switch to the next main tab"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "선택한 객체 또는 모든 객체의 방향을 자동으로 조정합니다. 선택한 객체가 있는 경우 선택한 객체만 조정되고, 그렇지 않은 경우 프로젝트의 모든 객체가 조정됩니다."
msgid "Auto orients all objects on the active plate."
msgstr "현재 플레이트에 있는 모든 객체의 방향을 자동으로 지정합니다."
msgid "Collapse/Expand the sidebar"
msgstr "사이드바 접기/펼치기"
msgid "Any arrow"
msgstr "모든 화살표"
msgid "Movement in camera space"
msgstr "카메라 공간에서 이동"
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "부품 선택"
@@ -12417,129 +12426,30 @@ msgstr "여러 객체 선택"
msgid "Select objects by rectangle"
msgstr "사각형으로 객체 선택"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "↑"
msgid "Move selection 10mm in positive Y direction"
msgstr "선택 항목을 +Y 방향으로 10mm 이동"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "↓"
msgid "Move selection 10mm in negative Y direction"
msgstr "선택 항목을 -Y 방향으로 10mm 이동"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "←"
msgid "Move selection 10mm in negative X direction"
msgstr "선택 항목을 -X 방향으로 10mm 이동"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "→"
msgid "Move selection 10mm in positive X direction"
msgstr "선택 항목을 +X 방향으로 10mm 이동"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "키보드 1-9: 객체/부품에 필라멘트 할당"
# AI Translated
msgid "Movement step set to 1mm"
msgstr "이동 단위를 1mm로 설정"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "키보드 1-9: 객체/부품에 필라멘트 할당"
msgid "Movement in camera space"
msgstr "카메라 공간에서 이동"
msgid "Camera view - Default"
msgstr "카메라 시점 - 기본"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "카메라 시점 - 위"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "카메라 시점 - 아래"
msgid "Zoom View"
msgstr "줌 뷰"
msgid "Camera view - Front"
msgstr "카메라 시점 - 앞"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "카메라 시점 - 뒤"
msgid "Camera Angle - Left side"
msgstr "카메라 각도 - 좌측"
msgid "Camera Angle - Right side"
msgstr "카메라 각도 - 우측"
msgid "Select all objects"
msgstr "모든 객체 선택"
msgid "Gizmo move"
msgstr "변형도구 이동"
msgid "Gizmo rotate"
msgstr "변형도구 회전"
msgid "Gizmo scale"
msgstr "변형도구 배율"
msgid "Gizmo place face on bed"
msgstr "변형도구 바닥면 선택"
msgid "Gizmo cut"
msgstr "변형도구 잘라내기"
msgid "Gizmo mesh boolean"
msgstr "변형도구 합집합/차집합/교집합"
# AI Translated
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "변형도구 FDM 퍼지 스킨 칠하기"
msgid "Gizmo SLA support points"
msgstr "변형도구 서포트 칠하기"
msgid "Gizmo FDM paint-on seam"
msgstr "변형도구 재봉선 칠하기"
msgid "Gizmo text emboss/engrave"
msgstr "변형도구 - 텍스트 엠보싱/인그레이빙"
msgid "Gizmo measure"
msgstr "변형도구 측정"
msgid "Gizmo assemble"
msgstr "변형도구 병합"
msgid "Gizmo brim ears"
msgstr "변형도구 브림 귀"
msgid "Zoom in"
msgstr "확대"
msgid "Zoom out"
msgstr "축소"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "객체/부품의 출력 가능 여부 전환"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "준비 하기/미리 보기 전환"
msgid "Plater"
msgstr "출력판"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "이동: 눌러서 1mm씩 이동"
@@ -12550,14 +12460,19 @@ msgstr "서포트/색상 칠하기: 펜 반경 조정"
msgid "Support/Color Painting: adjust section position"
msgstr "서포트/색상 칠하기: 단면 위치 조정"
msgid "Gizmo"
msgstr "변형도구"
msgid "Objects list"
msgstr "객체 목록"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "객체 및 부품에 대한 압출기 번호 설정"
msgid "Delete objects, parts, modifiers"
msgstr "객체, 부품, 수정자 삭제"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Space"
msgid "Select the object/part and press space to change the name"
msgstr "객체/부품을 선택하고 스페이스바를 눌러 이름을 변경합니다"
@@ -12568,45 +12483,48 @@ msgstr "마우스 클릭"
msgid "Select the object/part and mouse click to change the name"
msgstr "객체/부품을 선택하고 마우스를 클릭하여 이름을 변경합니다"
msgid "Objects List"
msgstr "객체 목록"
msgid "Vertical slider - Move active thumb Up"
msgstr "수직 슬라이더 - 활성 레이어 위로 이동"
msgid "Vertical slider - Move active thumb Down"
msgstr "수직 슬라이더 - 활성 레이어 아래로 이동"
msgid "Horizontal slider - Move active thumb Left"
msgstr "수평 슬라이더 - 활성 라인 왼쪽으로 이동"
msgid "Horizontal slider - Move active thumb Right"
msgstr "수평 슬라이더 - 활성 라인 오른쪽으로 이동"
msgid "On/Off one layer mode of the vertical slider"
msgstr "수직 슬라이더의 한 레이어 모드 켜기/끄기"
msgid "On/Off G-code window"
msgstr "Gcode 창 켜기/끄기"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "슬라이더를 5배 빠르게 이동"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "수평 슬라이더 - 시작 위치로 이동"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "수평 슬라이더 - 마지막 위치로 이동"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "릴리스 노트"
@@ -17678,9 +17596,8 @@ msgstr "예열 단계"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "여러 예열 명령(예: M104.1)을 삽입하세요. Prusa XL에만 유용합니다. 다른 프린터의 경우 1로 설정하세요."
# AI Translated
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "출력 파일의 가장 앞부분, 다른 모든 내용보다 먼저 기록되는 G-code입니다. 프린터 펌웨어가 파일의 첫 줄에서 읽는 메타데이터(예: 예상 출력 시간, 필라멘트 사용량)를 추가하는 데 유용합니다. {print_time_sec}, {used_filament_length}와 같은 자리 표시자를 지원합니다."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "시작 Gcode"
@@ -19257,14 +19174,37 @@ msgstr "사용된 필라멘트"
msgid "Total length of filament used in the print."
msgstr "출력에 사용된 필라멘트의 총 길이입니다."
# AI Translated
msgid "Print time (seconds)"
msgstr "출력 시간(초)"
msgid "Print time (total seconds)"
msgstr ""
# AI Translated
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "초 단위의 총 예상 출력 시간입니다. 후처리 중에 실제 값으로 대체됩니다."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
# AI Translated
msgid "Filament length (meters)"
msgstr "필라멘트 길이(미터)"
@@ -21172,6 +21112,9 @@ msgstr "유효한 세션이 감지되지 않았습니다. 3DPrinterOS에 로그
msgid "Success!"
msgstr "성공!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "정말 로그아웃하시겠습니까?"
@@ -22241,14 +22184,6 @@ msgstr "클라우드 기능, 프린터 검색, 원격 출력에는 Bambu 네트
msgid "Error: %s"
msgstr "오류: %s"
# AI Translated
msgid "Show details"
msgstr "세부 정보 표시"
# AI Translated
msgid "Hide details"
msgstr "세부 정보 숨기기"
# AI Translated
msgid "Version to install:"
msgstr "설치할 버전:"
@@ -24918,6 +24853,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -24930,6 +24871,218 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "←"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "→"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "↑"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "↓"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "STL/STEP/3MF/OBJ/AMF 파일에서 형상 데이터 가져오기"
msgid "Select all objects"
msgstr "모든 객체 선택"
msgid "Paste from clipboard"
msgstr "클립보드에서 붙여넣기"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "객체/부품의 출력 가능 여부 전환"
msgid "Move selection 10mm in negative X direction"
msgstr "선택 항목을 -X 방향으로 10mm 이동"
msgid "Move selection 10mm in positive X direction"
msgstr "선택 항목을 +X 방향으로 10mm 이동"
msgid "Move selection 10mm in positive Y direction"
msgstr "선택 항목을 +Y 방향으로 10mm 이동"
msgid "Move selection 10mm in negative Y direction"
msgstr "선택 항목을 -Y 방향으로 10mm 이동"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "변형도구 이동"
msgid "Gizmo rotate"
msgstr "변형도구 회전"
msgid "Gizmo scale"
msgstr "변형도구 배율"
msgid "Gizmo place face on bed"
msgstr "변형도구 바닥면 선택"
msgid "Gizmo cut"
msgstr "변형도구 잘라내기"
msgid "Gizmo mesh boolean"
msgstr "변형도구 합집합/차집합/교집합"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "변형도구 재봉선 칠하기"
# AI Translated
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "변형도구 FDM 퍼지 스킨 칠하기"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "변형도구 - 텍스트 엠보싱/인그레이빙"
msgid "Gizmo measure"
msgstr "변형도구 측정"
msgid "Gizmo assemble"
msgstr "변형도구 병합"
msgid "Gizmo brim ears"
msgstr "변형도구 브림 귀"
msgid "Vertical slider - Move active thumb Up"
msgstr "수직 슬라이더 - 활성 레이어 위로 이동"
msgid "Vertical slider - Move active thumb Down"
msgstr "수직 슬라이더 - 활성 레이어 아래로 이동"
msgid "Horizontal slider - Move active thumb Left"
msgstr "수평 슬라이더 - 활성 라인 왼쪽으로 이동"
msgid "Horizontal slider - Move active thumb Right"
msgstr "수평 슬라이더 - 활성 라인 오른쪽으로 이동"
msgid "Horizontal slider - Move to start position"
msgstr "수평 슬라이더 - 시작 위치로 이동"
msgid "Horizontal slider - Move to last position"
msgstr "수평 슬라이더 - 마지막 위치로 이동"
msgid "Camera view - Default"
msgstr "카메라 시점 - 기본"
msgid "Camera view - Top"
msgstr "카메라 시점 - 위"
msgid "Camera view - Bottom"
msgstr "카메라 시점 - 아래"
msgid "Camera view - Front"
msgstr "카메라 시점 - 앞"
msgid "Camera view - Behind"
msgstr "카메라 시점 - 뒤"
msgid "Camera Angle - Left side"
msgstr "카메라 각도 - 좌측"
msgid "Camera Angle - Right side"
msgstr "카메라 각도 - 우측"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "확대"
msgid "Zoom out"
msgstr "축소"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "3D 연결 장치 설정 표시/숨기기 대화상자"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "Gcode 창 켜기/끄기"
msgid "On/Off one layer mode of the vertical slider"
msgstr "수직 슬라이더의 한 레이어 모드 켜기/끄기"
msgid "Switch between Prepare/Preview"
msgstr "준비 하기/미리 보기 전환"
msgid "Collapse/Expand the sidebar"
msgstr "사이드바 접기/펼치기"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "키보드 단축키 목록 보기"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -25232,6 +25385,67 @@ msgstr ""
"뒤틀림 방지\n"
"ABS와 같이 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 높이면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?"
# AI Translated
#~ msgid "Tab"
#~ msgstr "탭"
# AI Translated
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "현재 뷰포트의 FPS를 오른쪽 위 모서리에 표시합니다."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "3MF 게시 위키"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "3MF 게시 비디오 가이드"
#~ msgid "Toolbar"
#~ msgstr "도구 모음"
#~ msgid "Switch table page"
#~ msgstr "테이블 페이지 전환"
#~ msgid "Global shortcuts"
#~ msgstr "전역 단축키"
# AI Translated
#~ msgid "Middle mouse button"
#~ msgstr "마우스 가운데 버튼"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "선택한 객체 또는 모든 객체의 방향을 자동으로 조정합니다. 선택한 객체가 있는 경우 선택한 객체만 조정되고, 그렇지 않은 경우 프로젝트의 모든 객체가 조정됩니다."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "현재 플레이트에 있는 모든 객체의 방향을 자동으로 지정합니다."
#~ msgid "Any arrow"
#~ msgstr "모든 화살표"
#~ msgid "Gizmo SLA support points"
#~ msgstr "변형도구 서포트 칠하기"
#~ msgid "Plater"
#~ msgstr "출력판"
#~ msgid "Gizmo"
#~ msgstr "변형도구"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "객체, 부품, 수정자 삭제"
#~ msgid "Objects List"
#~ msgstr "객체 목록"
# AI Translated
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "출력 파일의 가장 앞부분, 다른 모든 내용보다 먼저 기록되는 G-code입니다. 프린터 펌웨어가 파일의 첫 줄에서 읽는 메타데이터(예: 예상 출력 시간, 필라멘트 사용량)를 추가하는 데 유용합니다. {print_time_sec}, {used_filament_length}와 같은 자리 표시자를 지원합니다."
# AI Translated
#~ msgid "Print time (seconds)"
#~ msgstr "출력 시간(초)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "작업 스피드 다이얼 열기"
+2
View File
@@ -300,3 +300,5 @@ src/slic3r/GUI/CAD/DesignPanel.cpp
src/slic3r/GUI/CAD/SketchInlineEditor.cpp
src/slic3r/GUI/Gizmos/GLGizmoPrimitive.cpp
src/slic3r/GUI/Gizmos/GLGizmoSketch.cpp
src/slic3r/GUI/KeyChord.cpp
src/slic3r/GUI/Shortcuts.cpp
+445 -231
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: 2026-07-02 14:13+0300\n"
"Last-Translator: Gintaras Kučinskas <sharanchius@gmail.com>\n"
"Language-Team: \n"
@@ -5911,12 +5911,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Dešinė"
msgid "Add"
msgstr "Įtraukti"
msgid "Add plate"
msgstr "Įtraukti plokštę"
msgid "Split to objects"
msgstr "Padalinti į objektus"
msgid "Add"
msgstr "Įtraukti"
msgid "Auto orient all/selected objects"
msgstr "Automatiškai orientuoti visus / pasirinktus objektus"
@@ -5929,9 +5932,6 @@ msgstr "Išdėstyti visus objektus"
msgid "Arrange objects on selected plates"
msgstr "Išdėstyti objektus pasirinktose plokštėse"
msgid "Split to objects"
msgstr "Padalinti į objektus"
msgid "Assembly View"
msgstr "Surinkimo vaizdas"
@@ -5986,6 +5986,9 @@ msgstr "Kontūras"
msgid "Wireframe"
msgstr "Rodyti karkasinį vaizdą"
msgid "X-Ray"
msgstr ""
msgid "Realistic View"
msgstr "Realistiškas vaizdas"
@@ -6525,9 +6528,6 @@ msgstr "Rodyti kontūrą aplink pasirinktą objektą 3D scenoje."
msgid "Preferences"
msgstr "Parinktys"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6536,6 +6536,9 @@ msgstr "Redaguoti"
msgid "View"
msgstr "Vaizdas"
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr "Profilių rinkinys"
@@ -8353,9 +8356,6 @@ msgstr "Išskleisti šoninę juostą"
msgid "Collapse sidebar"
msgstr "Sutraukti šoninę juostą"
msgid "Tab"
msgstr "Tab"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Įkeliamas failas: %s"
@@ -9369,10 +9369,10 @@ msgstr "Kelių įrenginių valdymas"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Kai įjungta ši funkcija, jūs galite siųsti užduotį keliems įrenginiams vienu metu, taip apt kontroliuoti keletą įrenginių."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9504,6 +9504,15 @@ msgstr "Vilkti dešiniuoju pelės mygtuku"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Nustatykite veiksmą, kuris turi būti atliktas, velkant dešinįjį pelės mygtuką."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "Išvalyti mano pasirinkimą..."
@@ -9612,11 +9621,39 @@ msgid ""
"Set to 0 for unlimited frame rate."
msgstr "Riboja vaizdo srities kadrų dažnį, kad sumažintų vaizdo plokštės (GPU) apkrovą ir energijos sąnaudas. Įveskite 0, jei kadrų dažnis neribojamas."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Show FPS overlay"
msgstr "Rodyti KPS (FPS) indikatorių"
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Viršutiniame dešiniajame kampe rodo esamą vaizdo srities kadrų dažnį."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -10073,13 +10110,8 @@ msgstr "Talpinti 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Pasirinkite, kuriuos parametrus talpinti 3MF faile"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "3MF talpinimo wiki"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "3MF talpinimo vaizdo vadovas"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10281,6 +10313,13 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "Rodyti išsamiau"
# AI Translated
msgid "Hide details"
msgstr "Slėpti išsamią informaciją"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -12117,67 +12156,39 @@ msgstr "Konfigūracijos paketas buvo pakeistas ankstesniame konfigūravimo vadov
msgid "Configuration package changed"
msgstr "Pakeistas konfigūracijos paketas"
msgid "Toolbar"
msgstr "Įrankių juosta"
msgid "Objects list"
msgstr "Objektų sąrašas"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importuoti geometrijos duomenis iš STL/STEP/3MF/OBJ/AMF failų"
msgid "Paste from clipboard"
msgstr "Įklijuoti iš mainų srities"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Rodyti/slėpti 3DConnexion įrenginių nustatymų dialogo langą"
msgid "Switch table page"
msgstr "Perjungti lentelės puslapį"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Tarpas"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Rodyti sparčiųjų klavišų sąrašą"
msgid "Global shortcuts"
msgstr "Bendrieji spartieji klavišai"
msgid "Pan View"
msgstr "Vaizdo stūmimas (panoraminis vaizdas)"
msgid "Rotate View"
msgstr "Vaizdo pasukimas"
msgid "Middle mouse button"
msgstr "Vidurinis pelės mygtukas"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgid "Zoom View"
msgstr "Vaizdo mastelio keitimas (zoom)"
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Automatiškai orientuoja pasirinktus objektus arba visus objektus. Jei yra pasirinkti objektai, orientuoja tik pasirinktus. Kitais atvejais orientuoja visus esamo projekto objektus."
msgid "Left mouse"
msgstr ""
msgid "Auto orients all objects on the active plate."
msgstr "Automatiškai orientuoja visus objektus aktyvioje plokštėje."
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr "Sutraukti / išskleisti šoninę juostą"
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
msgid "Any arrow"
msgstr "Bet kuri rodyklė"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Movement in camera space"
msgstr "Judėjimas kameros erdvėje"
msgid "Switch to the next main tab"
msgstr ""
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Pasirinkti dalį"
@@ -12188,126 +12199,29 @@ msgstr "Pasirinkite kelis objektus"
msgid "Select objects by rectangle"
msgstr "Pasirinkti objektus stačiakampio rėmeliu"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Rodyklė aukštyn"
msgid "Move selection 10mm in positive Y direction"
msgstr "Perkelti pasirinkimą 10 mm teigiama Y kryptimi"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Rodyklė žemyn"
msgid "Move selection 10mm in negative Y direction"
msgstr "Perkelti pasirinkimą 10 mm neigiama Y kryptimi"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Rodyklė kairėn"
msgid "Move selection 10mm in negative X direction"
msgstr "Perkelti pasirinkimą 10 mm neigiama X kryptimi"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Rodyklė dešinėn"
msgid "Move selection 10mm in positive X direction"
msgstr "Perkelti pasirinkimą 10 mm teigiama X kryptimi"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Klaviatūra 1-9: nustatyti objekto/dalies giją"
msgid "Movement step set to 1mm"
msgstr "Judėjimo žingsnis nustatytas į 1 mm"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Klaviatūra 1-9: nustatyti objekto/dalies giją"
msgid "Movement in camera space"
msgstr "Judėjimas kameros erdvėje"
msgid "Camera view - Default"
msgstr "Kameros vaizdas - Numatytasis"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Kameros vaizdas - Viršus"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "Kameros vaizdas - Apačia"
msgid "Zoom View"
msgstr "Vaizdo mastelio keitimas (zoom)"
msgid "Camera view - Front"
msgstr "Kameros vaizdas - Priekis"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "Kameros vaizdas iš galo"
msgid "Camera Angle - Left side"
msgstr "Kameros kampas iš kairės"
msgid "Camera Angle - Right side"
msgstr "Kameros kampas iš dešinės"
msgid "Select all objects"
msgstr "Pasirinkti visus objektus"
msgid "Gizmo move"
msgstr "Perkėlimo manipuliatorius"
msgid "Gizmo rotate"
msgstr "Pasukimo manipuliatorius"
msgid "Gizmo scale"
msgstr "Mastelio keitimo manipuliatorius"
msgid "Gizmo place face on bed"
msgstr "Paviršiaus dėjimo ant pagrindo manipuliatorius"
msgid "Gizmo cut"
msgstr "Pjovimo manipuliatorius"
msgid "Gizmo mesh boolean"
msgstr "Loginių tinklelio veiksmų (Boolean) manipuliatorius"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "FDM užtepamo grublėto paviršiaus (fuzzy skin) manipuliatorius"
msgid "Gizmo SLA support points"
msgstr "SLA atramų taškų manipuliatorius"
msgid "Gizmo FDM paint-on seam"
msgstr "FDM užtepamos siūlės (seam) manipuliatorius"
msgid "Gizmo text emboss/engrave"
msgstr "Teksto iškėlimo ir įspaudimo (emboss/engrave) manipuliatorius"
msgid "Gizmo measure"
msgstr "Matavimo manipuliatorius"
msgid "Gizmo assemble"
msgstr "Surinkimo manipuliatorius"
msgid "Gizmo brim ears"
msgstr "Krašto „auselių“ (brim ears) manipuliatorius"
msgid "Zoom in"
msgstr "Padidinti"
msgid "Zoom out"
msgstr "Nutolinti"
msgid "Toggle printable for object/part"
msgstr "Perjungti objekto / dalies spausdinimą"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "Perjungimas tarp Paruošti / Peržiūrėti"
msgid "Plater"
msgstr "Plokštė"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Perkėlimas: paspauskite, kad pritrauktumėte kas 1 mm"
@@ -12318,14 +12232,19 @@ msgstr "Atramų ir spalvų užtepimas: keisti teptuko spindulį"
msgid "Support/Color Painting: adjust section position"
msgstr "Atramų ir spalvų užtepimas: keisti pjūvio padėtį"
msgid "Gizmo"
msgstr "Manipuliatorius"
msgid "Objects list"
msgstr "Objektų sąrašas"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Nustatykite ekstruderio numerį objektams ir dalims"
msgid "Delete objects, parts, modifiers"
msgstr "Ištrinti objektus, dalis, modifikatorius"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Tarpas"
msgid "Select the object/part and press space to change the name"
msgstr "Pasirinkite objektą ir (arba) dalį ir paspauskite tarpo klavišą, kad pakeistumėte pavadinimą"
@@ -12336,45 +12255,48 @@ msgstr "Pelės paspaudimas"
msgid "Select the object/part and mouse click to change the name"
msgstr "Pasirinkite objektą/dalį ir spustelėkite pele, kad pakeistumėte pavadinimą"
msgid "Objects List"
msgstr "Objektų sąrašas"
msgid "Vertical slider - Move active thumb Up"
msgstr "Vertikalus slankiklis kelti aktyvų žymeklį aukštyn"
msgid "Vertical slider - Move active thumb Down"
msgstr "Vertikalus slankiklis nuleisti aktyvų žymeklį žemyn"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Horizontalus slankiklis stumti aktyvų žymeklį kairėn"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Horizontalus slankiklis stumti aktyvų žymeklį dešinėn"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Vertikalaus slankiklio vieno sluoksnio režimas įjungimas / išjungimas"
msgid "On/Off G-code window"
msgstr "G-kodo lango įjungimas / išjungimas"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Judinkite slankiklį 5 kartus greičiau"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "Horizontalus slankiklis perkelti į pradinę padėtį"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "Horizontalus slankiklis perkelti į paskutinę padėtį"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Versijos pastabos (Release notes)"
@@ -17222,8 +17144,8 @@ msgstr "Įkaitinimo etapai"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Įterpkite kelias įkaitinimo komandas (pvz., M104.1). Naudinga tik „Prusa XL“. Kitiems spausdintuvams nustatykite 1."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-kodas, įrašomas pačiame išvesties failo viršuje, prieš bet kokį kitą turinį. Naudingas įterpti metaduomenims, kuriuos spausdintuvo aparatinė programinė įranga nuskaito iš pirmųjų failo eilučių (pvz., numatomą spausdinimo laiką, gijos sąnaudas). Palaiko kintamuosius (placeholders), tokius kaip {print_time_sec} ir {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "Pradžios G-kodas"
@@ -18765,12 +18687,36 @@ msgstr "Naudota gija"
msgid "Total length of filament used in the print."
msgstr "Bendras viso spausdinimo metu sunaudotos gijos ilgis."
msgid "Print time (seconds)"
msgstr "Spausdinimo laikas (sekundėmis)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Bendras numatomas spausdinimo laikas sekundėmis. Papildomo apdorojimo (post-processing) metu pakeičiama faktine reikšme."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "Gijos ilgis (metrais)"
@@ -20612,6 +20558,9 @@ msgstr "Nerasta galiojančios sesijos. Prisijungti prie „3DPrinterOS“?"
msgid "Success!"
msgstr "Pavyko!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "Ar tikrai norite atsijungti?"
@@ -21567,13 +21516,6 @@ msgstr "„Bambu“ tinklo papildinys yra būtinas, kad veiktų debesijos funkci
msgid "Error: %s"
msgstr "Klaida: %s"
msgid "Show details"
msgstr "Rodyti išsamiau"
# AI Translated
msgid "Hide details"
msgstr "Slėpti išsamią informaciją"
msgid "Version to install:"
msgstr "Diegiama versija:"
@@ -24202,6 +24144,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -24214,6 +24162,216 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Rodyklė kairėn"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Rodyklė dešinėn"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Rodyklė aukštyn"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Rodyklė žemyn"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importuoti geometrijos duomenis iš STL/STEP/3MF/OBJ/AMF failų"
msgid "Select all objects"
msgstr "Pasirinkti visus objektus"
msgid "Paste from clipboard"
msgstr "Įklijuoti iš mainų srities"
msgid "Toggle printable for object/part"
msgstr "Perjungti objekto / dalies spausdinimą"
msgid "Move selection 10mm in negative X direction"
msgstr "Perkelti pasirinkimą 10 mm neigiama X kryptimi"
msgid "Move selection 10mm in positive X direction"
msgstr "Perkelti pasirinkimą 10 mm teigiama X kryptimi"
msgid "Move selection 10mm in positive Y direction"
msgstr "Perkelti pasirinkimą 10 mm teigiama Y kryptimi"
msgid "Move selection 10mm in negative Y direction"
msgstr "Perkelti pasirinkimą 10 mm neigiama Y kryptimi"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Perkėlimo manipuliatorius"
msgid "Gizmo rotate"
msgstr "Pasukimo manipuliatorius"
msgid "Gizmo scale"
msgstr "Mastelio keitimo manipuliatorius"
msgid "Gizmo place face on bed"
msgstr "Paviršiaus dėjimo ant pagrindo manipuliatorius"
msgid "Gizmo cut"
msgstr "Pjovimo manipuliatorius"
msgid "Gizmo mesh boolean"
msgstr "Loginių tinklelio veiksmų (Boolean) manipuliatorius"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "FDM užtepamos siūlės (seam) manipuliatorius"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "FDM užtepamo grublėto paviršiaus (fuzzy skin) manipuliatorius"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Teksto iškėlimo ir įspaudimo (emboss/engrave) manipuliatorius"
msgid "Gizmo measure"
msgstr "Matavimo manipuliatorius"
msgid "Gizmo assemble"
msgstr "Surinkimo manipuliatorius"
msgid "Gizmo brim ears"
msgstr "Krašto „auselių“ (brim ears) manipuliatorius"
msgid "Vertical slider - Move active thumb Up"
msgstr "Vertikalus slankiklis kelti aktyvų žymeklį aukštyn"
msgid "Vertical slider - Move active thumb Down"
msgstr "Vertikalus slankiklis nuleisti aktyvų žymeklį žemyn"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Horizontalus slankiklis stumti aktyvų žymeklį kairėn"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Horizontalus slankiklis stumti aktyvų žymeklį dešinėn"
msgid "Horizontal slider - Move to start position"
msgstr "Horizontalus slankiklis perkelti į pradinę padėtį"
msgid "Horizontal slider - Move to last position"
msgstr "Horizontalus slankiklis perkelti į paskutinę padėtį"
msgid "Camera view - Default"
msgstr "Kameros vaizdas - Numatytasis"
msgid "Camera view - Top"
msgstr "Kameros vaizdas - Viršus"
msgid "Camera view - Bottom"
msgstr "Kameros vaizdas - Apačia"
msgid "Camera view - Front"
msgstr "Kameros vaizdas - Priekis"
msgid "Camera view - Behind"
msgstr "Kameros vaizdas iš galo"
msgid "Camera Angle - Left side"
msgstr "Kameros kampas iš kairės"
msgid "Camera Angle - Right side"
msgstr "Kameros kampas iš dešinės"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Padidinti"
msgid "Zoom out"
msgstr "Nutolinti"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Rodyti/slėpti 3DConnexion įrenginių nustatymų dialogo langą"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "G-kodo lango įjungimas / išjungimas"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Vertikalaus slankiklio vieno sluoksnio režimas įjungimas / išjungimas"
msgid "Switch between Prepare/Preview"
msgstr "Perjungimas tarp Paruošti / Peržiūrėti"
msgid "Collapse/Expand the sidebar"
msgstr "Sutraukti / išskleisti šoninę juostą"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Rodyti sparčiųjų klavišų sąrašą"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -24514,6 +24672,62 @@ msgstr ""
"Venkite deformacijų (warping)\n"
"Ar žinojote, kad spausdinant medžiagas, kurios yra linkusios trauktis ir riestis (pvz., ABS), tinkamas kaitinamojo pagrindo temperatūros padidinimas gali sumažinti deformacijų (warping) tikimybę?"
#~ msgid "Tab"
#~ msgstr "Tab"
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Viršutiniame dešiniajame kampe rodo esamą vaizdo srities kadrų dažnį."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "3MF talpinimo wiki"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "3MF talpinimo vaizdo vadovas"
#~ msgid "Toolbar"
#~ msgstr "Įrankių juosta"
#~ msgid "Switch table page"
#~ msgstr "Perjungti lentelės puslapį"
#~ msgid "Global shortcuts"
#~ msgstr "Bendrieji spartieji klavišai"
#~ msgid "Middle mouse button"
#~ msgstr "Vidurinis pelės mygtukas"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Automatiškai orientuoja pasirinktus objektus arba visus objektus. Jei yra pasirinkti objektai, orientuoja tik pasirinktus. Kitais atvejais orientuoja visus esamo projekto objektus."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Automatiškai orientuoja visus objektus aktyvioje plokštėje."
#~ msgid "Any arrow"
#~ msgstr "Bet kuri rodyklė"
#~ msgid "Gizmo SLA support points"
#~ msgstr "SLA atramų taškų manipuliatorius"
#~ msgid "Plater"
#~ msgstr "Plokštė"
#~ msgid "Gizmo"
#~ msgstr "Manipuliatorius"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Ištrinti objektus, dalis, modifikatorius"
#~ msgid "Objects List"
#~ msgstr "Objektų sąrašas"
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-kodas, įrašomas pačiame išvesties failo viršuje, prieš bet kokį kitą turinį. Naudingas įterpti metaduomenims, kuriuos spausdintuvo aparatinė programinė įranga nuskaito iš pirmųjų failo eilučių (pvz., numatomą spausdinimo laiką, gijos sąnaudas). Palaiko kintamuosius (placeholders), tokius kaip {print_time_sec} ir {used_filament_length}."
#~ msgid "Print time (seconds)"
#~ msgstr "Spausdinimo laikas (sekundėmis)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "Atidaryti veiksmų greitosios prieigos meniu"
+462 -248
View File
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -6454,12 +6454,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Rechts"
msgid "Add"
msgstr "Toevoegen"
msgid "Add plate"
msgstr "Printbed toevoegen"
msgid "Split to objects"
msgstr "Opsplitsen in objecten"
msgid "Add"
msgstr "Toevoegen"
msgid "Auto orient all/selected objects"
msgstr "Automatisch oriënteren alle/geselecteerde objecten"
@@ -6472,9 +6475,6 @@ msgstr "Alle objecten rangschikken"
msgid "Arrange objects on selected plates"
msgstr "Rangschikt de objecten op de gelecteerde printbedden"
msgid "Split to objects"
msgstr "Opsplitsen in objecten"
msgid "Assembly View"
msgstr "Montageweergave"
@@ -6533,6 +6533,9 @@ msgstr "Omtrek"
msgid "Wireframe"
msgstr "Draadmodel"
msgid "X-Ray"
msgstr ""
# AI Translated
msgid "Realistic View"
msgstr "Realistische weergave"
@@ -7119,9 +7122,6 @@ msgstr "Toon een omtrek rond het geselecteerde object in de 3D-scène."
msgid "Preferences"
msgstr "Voorkeuren"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -7130,6 +7130,9 @@ msgstr "Bewerken"
msgid "View"
msgstr "Weergave"
msgid "Open Speed Dial"
msgstr ""
# AI Translated
msgid "Preset Bundle"
msgstr "Voorinstellingenbundel"
@@ -9088,10 +9091,6 @@ msgstr "Zijbalk uitklappen"
msgid "Collapse sidebar"
msgstr "Zijbalk inklappen"
# AI Translated
msgid "Tab"
msgstr "Tab"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Bestand laden: %s"
@@ -10218,10 +10217,10 @@ msgstr "Beheer van meerdere apparaten"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Met deze optie ingeschakeld kunt u een taak tegelijkertijd naar meerdere apparaten sturen en meerdere apparaten beheren."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -10371,6 +10370,15 @@ msgstr "Slepen met rechtermuisknop"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Stel de actie in die het slepen met de rechtermuisknop moet uitvoeren."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
# AI Translated
msgid "Clear my choice on..."
msgstr "Mijn keuze wissen voor..."
@@ -10500,13 +10508,40 @@ msgstr ""
"Beperkt de framesnelheid van de viewport om de GPU-belasting en het stroomverbruik te verlagen.\n"
"Stel in op 0 voor een onbeperkte framesnelheid."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
# AI Translated
msgid "Show FPS overlay"
msgstr "FPS-overlay tonen"
# AI Translated
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Toont de huidige FPS van de viewport in de rechterbovenhoek."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -11006,13 +11041,8 @@ msgstr "3MF publiceren..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Selecteer welke instellingen in het 3MF-bestand worden gepubliceerd"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "Wiki over 3MF publiceren"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "Videohandleiding over 3MF publiceren"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -11215,6 +11245,14 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
# AI Translated
msgid "Show details"
msgstr "Details tonen"
# AI Translated
msgid "Hide details"
msgstr "Details verbergen"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -13238,71 +13276,39 @@ msgstr "Het configuratiebestand is aangepast in de vorige Config Guide"
msgid "Configuration package changed"
msgstr "Het configuratiepakket is gewijzigd"
msgid "Toolbar"
msgstr "Gereedschapsbalk"
msgid "Objects list"
msgstr "Object lijst"
# AI Translated
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importeer geometriegegevens uit STL-/STEP-/3MF-/OBJ-/AMF-bestanden"
msgid "Paste from clipboard"
msgstr "Plakken vanuit klembord"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Dialoogvenster met instellingen voor 3Dconnexion-apparaten weergeven/verbergen"
msgid "Switch table page"
msgstr "Schakeltabel pagina"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Spatie"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Toon lijst met sneltoetsen"
msgid "Global shortcuts"
msgstr "Globale snelkoppelingen"
msgid "Pan View"
msgstr "Panweergave"
msgid "Rotate View"
msgstr "Weergave roteren"
# AI Translated
msgid "Middle mouse button"
msgstr "Middelste muisknop"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgid "Zoom View"
msgstr "Zoom weergave"
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Oriënteert automatisch geselecteerde objecten of alle objecten. Als er geselecteerde objecten zijn, oriënteert het alleen de geselecteerde objecten. Anders worden alle objecten van het project georiënteerd."
msgid "Left mouse"
msgstr ""
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
# AI Translated
msgid "Auto orients all objects on the active plate."
msgstr "Oriënteert alle objecten op het actieve printbed automatisch."
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Collapse/Expand the sidebar"
msgstr "De menubalk in-/uitschuiven"
msgid "Switch to the next main tab"
msgstr ""
# AI Translated
msgid "Any arrow"
msgstr "Willekeurige pijltoets"
msgid "Movement in camera space"
msgstr "Beweging in cameragebied"
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Selecteer een onderdeel"
@@ -13313,130 +13319,29 @@ msgstr "Selecteer meerdere objecten"
msgid "Select objects by rectangle"
msgstr "Objecten selecteren door rechthoek"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Pijl omhoog"
msgid "Move selection 10mm in positive Y direction"
msgstr "Verplaats de selectie 10mm in een positieve Y richting"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Pijl omlaag"
msgid "Move selection 10mm in negative Y direction"
msgstr "Verplaats de selectie 10mm in een negatieve Y richting"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Pijl links"
msgid "Move selection 10mm in negative X direction"
msgstr "Verplaats de selectie 10mm in een negatieve X richting"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Pijl rechts"
msgid "Move selection 10mm in positive X direction"
msgstr "Verplaats de selectie 10mm in een positieve X richting"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Toets 1-9: kies filament voor het object/onderdeel"
msgid "Movement step set to 1mm"
msgstr "Bewegingsinterval ingesteld op 1mm"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Toets 1-9: kies filament voor het object/onderdeel"
msgid "Movement in camera space"
msgstr "Beweging in cameragebied"
msgid "Camera view - Default"
msgstr "Camera hoek - Standaard"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Camera hoek - Bovenkant"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "Camera hoek - Onderkant"
msgid "Zoom View"
msgstr "Zoom weergave"
msgid "Camera view - Front"
msgstr "Camera hoek - Voorkant"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "Camera hoek - Achter"
msgid "Camera Angle - Left side"
msgstr "Camera hoek - Linker zijde"
msgid "Camera Angle - Right side"
msgstr "Camera hoek - Rechter zijde"
msgid "Select all objects"
msgstr "Selecteer alle objecten"
msgid "Gizmo move"
msgstr "Gizmo bewegen"
msgid "Gizmo rotate"
msgstr "Gizmo roteren"
msgid "Gizmo scale"
msgstr "Gizmo schalen"
msgid "Gizmo place face on bed"
msgstr "Gizmo plaats gebied op het bed"
msgid "Gizmo cut"
msgstr "Gizmo snijden"
msgid "Gizmo mesh boolean"
msgstr "Gizmo mesh booleaan"
# AI Translated
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM vage buitenkant schilderen"
msgid "Gizmo SLA support points"
msgstr "Gizmo SLA-ondersteuningspunten"
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo FDM seam schilderen"
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo tekst reliëf/graveren"
msgid "Gizmo measure"
msgstr "Gizmo maatregel"
msgid "Gizmo assemble"
msgstr "Gizmo monteren"
msgid "Gizmo brim ears"
msgstr "Gizmo rand oren"
# AI Translated
msgid "Zoom in"
msgstr "Inzoomen"
msgid "Zoom out"
msgstr "Zoom uit"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "Printbaar in-/uitschakelen voor object/onderdeel"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
# AI Translated
msgid "Switch between Prepare/Preview"
msgstr "Wisselen tussen Voorbereiden/Voorvertoning"
msgid "Plater"
msgstr "Plaat"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Verplaatsen: druk om 1 mm te verplaatsen"
@@ -13447,15 +13352,19 @@ msgstr "Support/kleur intekenen: pas de pen diameter aan"
msgid "Support/Color Painting: adjust section position"
msgstr "Support/kleur intekenen: pas de sectie positie aan"
# AI Translated
msgid "Gizmo"
msgstr "Gizmo"
msgid "Objects list"
msgstr "Object lijst"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Stel het extrudernnumer in voor de objecten en onderdelen"
msgid "Delete objects, parts, modifiers"
msgstr "Verwijder objecten, onderdelen, aanpassingen"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Spatie"
msgid "Select the object/part and press space to change the name"
msgstr "Selecteer het object/onderdeel en druk op de spatiebalk om de naam aan te passen"
@@ -13466,48 +13375,48 @@ msgstr "Muisklik"
msgid "Select the object/part and mouse click to change the name"
msgstr "Selecteer het object/onderdeel en rechtermuisklik om de naam aan te passen"
msgid "Objects List"
msgstr "Objecten lijst"
msgid "Vertical slider - Move active thumb Up"
msgstr "Verticale schuifregelaar - Actieve thumb omhoog bewegen"
msgid "Vertical slider - Move active thumb Down"
msgstr "Verticale schuifregelaar - Actieve thumb omlaag bewegen"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Horizontale schuifbalk - Beweeg actieve duim naar links"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Horizontale schuifbalk - Beweeg actieve duim naar rechts"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Aan/uit één laagmodus van de verticale schuifregelaar"
# AI Translated
msgid "On/Off G-code window"
msgstr "G-code-venster aan/uit"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Schuifregelaar 5x sneller verplaatsen"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
# AI Translated
msgid "Horizontal slider - Move to start position"
msgstr "Horizontale schuifregelaar - Naar de startpositie"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
# AI Translated
msgid "Horizontal slider - Move to last position"
msgstr "Horizontale schuifregelaar - Naar de laatste positie"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Release-opmerkingen"
@@ -18992,9 +18901,8 @@ msgstr "Voorverwarmstappen"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Voeg meerdere voorverwarmopdrachten in (bijv. M104.1). Alleen nuttig voor de Prusa XL. Stel dit voor andere printers in op 1."
# AI Translated
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-code die helemaal bovenaan het uitvoerbestand wordt geschreven, vóór alle andere inhoud. Nuttig voor het toevoegen van metagegevens die de printerfirmware uit de eerste regels van het bestand leest (bijv. geschatte printtijd, filamentverbruik). Ondersteunt plaatshouders zoals {print_time_sec} en {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
# AI Translated
msgid "Start G-code"
@@ -20730,14 +20638,37 @@ msgstr "Verbruikt filament"
msgid "Total length of filament used in the print."
msgstr "Totale lengte filament die in de print is gebruikt."
# AI Translated
msgid "Print time (seconds)"
msgstr "Printtijd (seconden)"
msgid "Print time (total seconds)"
msgstr ""
# AI Translated
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Totale geschatte printtijd in seconden. Wordt tijdens de nabewerking vervangen door de werkelijke waarde."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
# AI Translated
msgid "Filament length (meters)"
msgstr "Filamentlengte (meters)"
@@ -22761,6 +22692,9 @@ msgstr "Er is geen geldige sessie gedetecteerd. Doorgaan met inloggen op 3DPrint
msgid "Success!"
msgstr "Succes!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "Weet u zeker dat u wilt uitloggen?"
@@ -23943,14 +23877,6 @@ msgstr "De Bambu-netwerkplug-in is vereist voor cloudfuncties, het vinden van pr
msgid "Error: %s"
msgstr "Fout: %s"
# AI Translated
msgid "Show details"
msgstr "Details tonen"
# AI Translated
msgid "Hide details"
msgstr "Details verbergen"
# AI Translated
msgid "Version to install:"
msgstr "Te installeren versie:"
@@ -26633,6 +26559,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -26645,6 +26577,224 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Pijl links"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Pijl rechts"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Pijl omhoog"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Pijl omlaag"
# AI Translated
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importeer geometriegegevens uit STL-/STEP-/3MF-/OBJ-/AMF-bestanden"
msgid "Select all objects"
msgstr "Selecteer alle objecten"
msgid "Paste from clipboard"
msgstr "Plakken vanuit klembord"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "Printbaar in-/uitschakelen voor object/onderdeel"
msgid "Move selection 10mm in negative X direction"
msgstr "Verplaats de selectie 10mm in een negatieve X richting"
msgid "Move selection 10mm in positive X direction"
msgstr "Verplaats de selectie 10mm in een positieve X richting"
msgid "Move selection 10mm in positive Y direction"
msgstr "Verplaats de selectie 10mm in een positieve Y richting"
msgid "Move selection 10mm in negative Y direction"
msgstr "Verplaats de selectie 10mm in een negatieve Y richting"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Gizmo bewegen"
msgid "Gizmo rotate"
msgstr "Gizmo roteren"
msgid "Gizmo scale"
msgstr "Gizmo schalen"
msgid "Gizmo place face on bed"
msgstr "Gizmo plaats gebied op het bed"
msgid "Gizmo cut"
msgstr "Gizmo snijden"
msgid "Gizmo mesh boolean"
msgstr "Gizmo mesh booleaan"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo FDM seam schilderen"
# AI Translated
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM vage buitenkant schilderen"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo tekst reliëf/graveren"
msgid "Gizmo measure"
msgstr "Gizmo maatregel"
msgid "Gizmo assemble"
msgstr "Gizmo monteren"
msgid "Gizmo brim ears"
msgstr "Gizmo rand oren"
msgid "Vertical slider - Move active thumb Up"
msgstr "Verticale schuifregelaar - Actieve thumb omhoog bewegen"
msgid "Vertical slider - Move active thumb Down"
msgstr "Verticale schuifregelaar - Actieve thumb omlaag bewegen"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Horizontale schuifbalk - Beweeg actieve duim naar links"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Horizontale schuifbalk - Beweeg actieve duim naar rechts"
# AI Translated
msgid "Horizontal slider - Move to start position"
msgstr "Horizontale schuifregelaar - Naar de startpositie"
# AI Translated
msgid "Horizontal slider - Move to last position"
msgstr "Horizontale schuifregelaar - Naar de laatste positie"
msgid "Camera view - Default"
msgstr "Camera hoek - Standaard"
msgid "Camera view - Top"
msgstr "Camera hoek - Bovenkant"
msgid "Camera view - Bottom"
msgstr "Camera hoek - Onderkant"
msgid "Camera view - Front"
msgstr "Camera hoek - Voorkant"
msgid "Camera view - Behind"
msgstr "Camera hoek - Achter"
msgid "Camera Angle - Left side"
msgstr "Camera hoek - Linker zijde"
msgid "Camera Angle - Right side"
msgstr "Camera hoek - Rechter zijde"
msgid "Camera view - Current plate"
msgstr ""
# AI Translated
msgid "Zoom in"
msgstr "Inzoomen"
msgid "Zoom out"
msgstr "Zoom uit"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Dialoogvenster met instellingen voor 3Dconnexion-apparaten weergeven/verbergen"
msgid "Show/Hide wireframe"
msgstr ""
# AI Translated
msgid "On/Off G-code window"
msgstr "G-code-venster aan/uit"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Aan/uit één laagmodus van de verticale schuifregelaar"
# AI Translated
msgid "Switch between Prepare/Preview"
msgstr "Wisselen tussen Voorbereiden/Voorvertoning"
msgid "Collapse/Expand the sidebar"
msgstr "De menubalk in-/uitschuiven"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Toon lijst met sneltoetsen"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -26946,6 +27096,70 @@ 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?"
# AI Translated
#~ msgid "Tab"
#~ msgstr "Tab"
# AI Translated
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Toont de huidige FPS van de viewport in de rechterbovenhoek."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "Wiki over 3MF publiceren"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "Videohandleiding over 3MF publiceren"
#~ msgid "Toolbar"
#~ msgstr "Gereedschapsbalk"
#~ msgid "Switch table page"
#~ msgstr "Schakeltabel pagina"
#~ msgid "Global shortcuts"
#~ msgstr "Globale snelkoppelingen"
# AI Translated
#~ msgid "Middle mouse button"
#~ msgstr "Middelste muisknop"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Oriënteert automatisch geselecteerde objecten of alle objecten. Als er geselecteerde objecten zijn, oriënteert het alleen de geselecteerde objecten. Anders worden alle objecten van het project georiënteerd."
# AI Translated
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Oriënteert alle objecten op het actieve printbed automatisch."
# AI Translated
#~ msgid "Any arrow"
#~ msgstr "Willekeurige pijltoets"
#~ msgid "Gizmo SLA support points"
#~ msgstr "Gizmo SLA-ondersteuningspunten"
#~ msgid "Plater"
#~ msgstr "Plaat"
# AI Translated
#~ msgid "Gizmo"
#~ msgstr "Gizmo"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Verwijder objecten, onderdelen, aanpassingen"
#~ msgid "Objects List"
#~ msgstr "Objecten lijst"
# AI Translated
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-code die helemaal bovenaan het uitvoerbestand wordt geschreven, vóór alle andere inhoud. Nuttig voor het toevoegen van metagegevens die de printerfirmware uit de eerste regels van het bestand leest (bijv. geschatte printtijd, filamentverbruik). Ondersteunt plaatshouders zoals {print_time_sec} en {used_filament_length}."
# AI Translated
#~ msgid "Print time (seconds)"
#~ msgstr "Printtijd (seconden)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "Snelmenu met acties openen"
+454 -240
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-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: Krzysztof Morga <<tlumaczeniebs@gmail.com>>\n"
"Language-Team: \n"
@@ -6047,12 +6047,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Prawy"
msgid "Add"
msgstr "Dodaj"
msgid "Add plate"
msgstr "Dodaj płytę"
msgid "Split to objects"
msgstr "Podziel na obiekty"
msgid "Add"
msgstr "Dodaj"
msgid "Auto orient all/selected objects"
msgstr "Automatyczna orientacja wszystkie/wybrane obiekty"
@@ -6065,9 +6068,6 @@ msgstr "Rozmieść wszystkie obiekty"
msgid "Arrange objects on selected plates"
msgstr "Rozmieść obiekty na wybranych płytach"
msgid "Split to objects"
msgstr "Podziel na obiekty"
msgid "Assembly View"
msgstr "Widok montażu"
@@ -6130,6 +6130,9 @@ msgstr "kontur"
msgid "Wireframe"
msgstr "Siatka"
msgid "X-Ray"
msgstr ""
# AI Translated
msgid "Realistic View"
msgstr "Widok realistyczny"
@@ -6686,9 +6689,6 @@ msgstr "Przełącza wyświetlanie konturu wokół zaznaczonego obiektu w scenie
msgid "Preferences"
msgstr "Preferencje"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6697,6 +6697,9 @@ msgstr "Edycja"
msgid "View"
msgstr "Widok"
msgid "Open Speed Dial"
msgstr ""
# AI Translated
msgid "Preset Bundle"
msgstr "Pakiet profili"
@@ -8546,9 +8549,6 @@ msgstr "Rozwiń pasek boczny"
msgid "Collapse sidebar"
msgstr "Zwiń pasek boczny"
msgid "Tab"
msgstr "Karty"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Wczytywanie pliku: %s"
@@ -9626,10 +9626,10 @@ msgstr "Obsługiwanie wielu urządzeń"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Umożliwia wysyłanie zadania do wielu urządzeń jednocześnie i zarządzanie nimi."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9777,6 +9777,15 @@ msgstr "Przeciąganie prawym przyciskiem myszy"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Ustaw akcję wykonywaną przy przeciąganiu prawym przyciskiem myszy."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
# AI Translated
msgid "Clear my choice on..."
msgstr "Wyczyść mój wybór dla..."
@@ -9905,13 +9914,40 @@ msgstr ""
"Ogranicza liczbę klatek w widoku, aby zmniejszyć obciążenie GPU i zużycie energii.\n"
"Ustaw 0, aby nie ograniczać liczby klatek."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
# AI Translated
msgid "Show FPS overlay"
msgstr "Pokaż nakładkę FPS"
# AI Translated
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Wyświetla bieżącą wartość FPS widoku w prawym górnym rogu."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -10403,13 +10439,8 @@ msgstr "Opublikuj 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Wybierz, które ustawienia zostaną opublikowane w pliku 3MF"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "Wiki publikowania 3MF"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "Poradnik wideo publikowania 3MF"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10612,6 +10643,14 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
# AI Translated
msgid "Show details"
msgstr "Pokaż szczegóły"
# AI Translated
msgid "Hide details"
msgstr "Ukryj szczegóły"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -12518,68 +12557,39 @@ msgstr "Pakiet konfiguracyjny został zmieniony w poprzednim Przewodniku konfigu
msgid "Configuration package changed"
msgstr "Zmieniono pakiet konfiguracyjny"
msgid "Toolbar"
msgstr "Pasek narzędzi"
msgid "Objects list"
msgstr "Lista obiektów"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Import danych geometrycznych z plików STL/STEP/3MF/OBJ/AMF"
msgid "Paste from clipboard"
msgstr "Wklej z schowka"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Pokaż/ukryj okno dialogowe ustawień urządzeń 3Dconnexion"
msgid "Switch table page"
msgstr "Przełącz stronę tabeli"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Spacja"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Pokaż listę skrótów klawiszowych"
msgid "Global shortcuts"
msgstr "Globalne skróty"
msgid "Pan View"
msgstr "Przesuń widok"
msgid "Rotate View"
msgstr "Obróć widok"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Left mouse"
msgstr ""
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
# AI Translated
msgid "Middle mouse button"
msgstr "Środkowy przycisk myszy"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Zoom View"
msgstr "Powiększ widok"
msgid "Switch to the next main tab"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Ta funkcja automatycznie ustawia orientację zaznaczonych lub wszystkich obiektów. Jeśli są wybrane obiekty, ustawi tylko te wybrane. W przeciwnym razie ustawi wszystkie obiekty bieżącego projektu."
msgid "Auto orients all objects on the active plate."
msgstr "Ta funkcja automatycznie ustawia orientację wszystkie obiekty na aktualnej płycie roboczej."
msgid "Collapse/Expand the sidebar"
msgstr "Zwiń/Rozwiń pasek boczny"
msgid "Any arrow"
msgstr "Dowolna strzałka"
msgid "Movement in camera space"
msgstr "Ruch w przestrzeni kamery"
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Wybierz część"
@@ -12590,127 +12600,29 @@ msgstr "Wybierz wiele obiektów"
msgid "Select objects by rectangle"
msgstr "Wybierz obiekty prostokątem"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Strzałka w górę"
msgid "Move selection 10mm in positive Y direction"
msgstr "Przesuń wybrane o 10 mm w kierunku dodatnim osi Y"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Strzałka w dół"
msgid "Move selection 10mm in negative Y direction"
msgstr "Przesuń wybrane o 10 mm w kierunku ujemnym osi Y"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Strzałka w lewo"
msgid "Move selection 10mm in negative X direction"
msgstr "Przesuń wybrane o 10 mm w kierunku ujemnym osi X"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Strzałka w prawo"
msgid "Move selection 10mm in positive X direction"
msgstr "Przesuń wybrane o 10 mm w kierunku dodatnim osi X"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "klawiatura 1-9: ustaw filament dla obiektu/części"
msgid "Movement step set to 1mm"
msgstr "Ustaw krok ruchu na 1 mm"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "klawiatura 1-9: ustaw filament dla obiektu/części"
msgid "Movement in camera space"
msgstr "Ruch w przestrzeni kamery"
msgid "Camera view - Default"
msgstr "Widok kamery - Domyślny"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Widok kamery - Z góry"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "Widok kamery - Z dołu"
msgid "Zoom View"
msgstr "Powiększ widok"
msgid "Camera view - Front"
msgstr "Widok kamery - Z przodu"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "Widok kamery - Z tyłu"
msgid "Camera Angle - Left side"
msgstr "Kąt kamery - Lewa strona"
msgid "Camera Angle - Right side"
msgstr "Kąt kamery - Prawa strona"
msgid "Select all objects"
msgstr "Wybierz wszystkie obiekty"
msgid "Gizmo move"
msgstr "Przenoszenie za pomocą „uchwytów”"
msgid "Gizmo rotate"
msgstr "Obracanie za pomocą „uchwytów”"
msgid "Gizmo scale"
msgstr "Skalowanie za pomocą „uchwytów”"
msgid "Gizmo place face on bed"
msgstr "Położenie na płaszczyźnie za pomocą „uchwytów”"
msgid "Gizmo cut"
msgstr "Cięcie za pomocą „uchwytów”"
msgid "Gizmo mesh boolean"
msgstr "Gizmo operacje boolowskie na siatce"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Uchwyt malowania Fuzzy Skin FDM"
msgid "Gizmo SLA support points"
msgstr "Punkty podpór SLA za pomocą „uchwytów”"
msgid "Gizmo FDM paint-on seam"
msgstr "Uchwyt malowania szwu FDM"
msgid "Gizmo text emboss/engrave"
msgstr "Uchwyt wytłaczania/grawerowania tekstu"
msgid "Gizmo measure"
msgstr "Gizmo mierzyć"
msgid "Gizmo assemble"
msgstr "Gizmo montować"
msgid "Gizmo brim ears"
msgstr "Gizmo uszy brim"
msgid "Zoom in"
msgstr "Przybliżenie"
msgid "Zoom out"
msgstr "Oddalenie"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "Przełącz drukowalność obiektu/części"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "Przełączanie między przygotowaniem/podglądem"
msgid "Plater"
msgstr "Płyta"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Przesuń: naciśnij, aby przyciągnąć co 1 mm"
@@ -12721,14 +12633,19 @@ msgstr "Podpory/Kolorowanie: dostosuj promień pędzla"
msgid "Support/Color Painting: adjust section position"
msgstr "Podpory/Kolorowanie: dostosuj pozycję sekcji"
msgid "Gizmo"
msgstr "Uchwyt"
msgid "Objects list"
msgstr "Lista obiektów"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Ustaw numer extrudera dla obiektów i części"
msgid "Delete objects, parts, modifiers"
msgstr "Usuń obiekty, części, modyfikatory"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Spacja"
msgid "Select the object/part and press space to change the name"
msgstr "Wybierz obiekt/część i naciśnij spację, aby zmienić nazwę"
@@ -12739,45 +12656,48 @@ msgstr "Kliknięcie myszą"
msgid "Select the object/part and mouse click to change the name"
msgstr "Wybierz obiekt/część i kliknij myszą, aby zmienić nazwę"
msgid "Objects List"
msgstr "Lista obiektów"
msgid "Vertical slider - Move active thumb Up"
msgstr "Pionowy suwak - Przesuń aktywny punkt w górę"
msgid "Vertical slider - Move active thumb Down"
msgstr "Pionowy suwak - Przesuń aktywny punkt w dół"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Poziomy suwak - Przesuń aktywny punkt w lewo"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Poziomy suwak - Przesuń aktywny punkt w prawo"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Włącz/wyłącz wyświetlanie jednej warstwy suwaka pionowego"
msgid "On/Off G-code window"
msgstr "Włącz/Wyłącz okno G-code"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Przesuń suwak 5x szybciej"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "Suwak poziomy - Przesuń do pozycji początkowej"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "Suwak poziomy - Przesuń do ostatniej pozycji"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Informacje o wydaniu"
@@ -17852,9 +17772,8 @@ msgstr "Kroki wstępnego podgrzewania"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Wprowadź wiele poleceń dotyczących podgrzewania (np. M104.1). Funkcja ta działa tylko w drukarce Prusa XL. Dla pozostałych drukarek ustaw wartość na 1."
# AI Translated
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-code zapisywany na samej górze pliku wyjściowego, przed jakąkolwiek inną treścią. Przydatny do dodawania metadanych, które oprogramowanie sprzętowe drukarki odczytuje z pierwszych wierszy pliku (np. szacowany czas druku, zużycie filamentu). Obsługuje symbole zastępcze, takie jak {print_time_sec} i {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "Początkowy G-code"
@@ -19433,14 +19352,37 @@ msgstr "Użyty filament"
msgid "Total length of filament used in the print."
msgstr "Całkowita długość filamentu użytego w wydruku."
# AI Translated
msgid "Print time (seconds)"
msgstr "Czas druku (sekundy)"
msgid "Print time (total seconds)"
msgstr ""
# AI Translated
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Całkowity szacowany czas druku w sekundach. Zastępowany rzeczywistą wartością podczas postprocessingu."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
# AI Translated
msgid "Filament length (meters)"
msgstr "Długość filamentu (metry)"
@@ -21356,6 +21298,9 @@ msgstr "Nie wykryto prawidłowej sesji. Kontynuować logowaniem do 3DPrinterOS?"
msgid "Success!"
msgstr "Powodzenie!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "Czy na pewno wylogować?"
@@ -22427,14 +22372,6 @@ msgstr "Wtyczka Bambu Network jest wymagana do funkcji chmurowych, wykrywania dr
msgid "Error: %s"
msgstr "Błąd: %s"
# AI Translated
msgid "Show details"
msgstr "Pokaż szczegóły"
# AI Translated
msgid "Hide details"
msgstr "Ukryj szczegóły"
# AI Translated
msgid "Version to install:"
msgstr "Wersja do zainstalowania:"
@@ -25096,6 +25033,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -25108,6 +25051,217 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Strzałka w lewo"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Strzałka w prawo"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Strzałka w górę"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Strzałka w dół"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Import danych geometrycznych z plików STL/STEP/3MF/OBJ/AMF"
msgid "Select all objects"
msgstr "Wybierz wszystkie obiekty"
msgid "Paste from clipboard"
msgstr "Wklej z schowka"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "Przełącz drukowalność obiektu/części"
msgid "Move selection 10mm in negative X direction"
msgstr "Przesuń wybrane o 10 mm w kierunku ujemnym osi X"
msgid "Move selection 10mm in positive X direction"
msgstr "Przesuń wybrane o 10 mm w kierunku dodatnim osi X"
msgid "Move selection 10mm in positive Y direction"
msgstr "Przesuń wybrane o 10 mm w kierunku dodatnim osi Y"
msgid "Move selection 10mm in negative Y direction"
msgstr "Przesuń wybrane o 10 mm w kierunku ujemnym osi Y"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Przenoszenie za pomocą „uchwytów”"
msgid "Gizmo rotate"
msgstr "Obracanie za pomocą „uchwytów”"
msgid "Gizmo scale"
msgstr "Skalowanie za pomocą „uchwytów”"
msgid "Gizmo place face on bed"
msgstr "Położenie na płaszczyźnie za pomocą „uchwytów”"
msgid "Gizmo cut"
msgstr "Cięcie za pomocą „uchwytów”"
msgid "Gizmo mesh boolean"
msgstr "Gizmo operacje boolowskie na siatce"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "Uchwyt malowania szwu FDM"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Uchwyt malowania Fuzzy Skin FDM"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Uchwyt wytłaczania/grawerowania tekstu"
msgid "Gizmo measure"
msgstr "Gizmo mierzyć"
msgid "Gizmo assemble"
msgstr "Gizmo montować"
msgid "Gizmo brim ears"
msgstr "Gizmo uszy brim"
msgid "Vertical slider - Move active thumb Up"
msgstr "Pionowy suwak - Przesuń aktywny punkt w górę"
msgid "Vertical slider - Move active thumb Down"
msgstr "Pionowy suwak - Przesuń aktywny punkt w dół"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Poziomy suwak - Przesuń aktywny punkt w lewo"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Poziomy suwak - Przesuń aktywny punkt w prawo"
msgid "Horizontal slider - Move to start position"
msgstr "Suwak poziomy - Przesuń do pozycji początkowej"
msgid "Horizontal slider - Move to last position"
msgstr "Suwak poziomy - Przesuń do ostatniej pozycji"
msgid "Camera view - Default"
msgstr "Widok kamery - Domyślny"
msgid "Camera view - Top"
msgstr "Widok kamery - Z góry"
msgid "Camera view - Bottom"
msgstr "Widok kamery - Z dołu"
msgid "Camera view - Front"
msgstr "Widok kamery - Z przodu"
msgid "Camera view - Behind"
msgstr "Widok kamery - Z tyłu"
msgid "Camera Angle - Left side"
msgstr "Kąt kamery - Lewa strona"
msgid "Camera Angle - Right side"
msgstr "Kąt kamery - Prawa strona"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Przybliżenie"
msgid "Zoom out"
msgstr "Oddalenie"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Pokaż/ukryj okno dialogowe ustawień urządzeń 3Dconnexion"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "Włącz/Wyłącz okno G-code"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Włącz/wyłącz wyświetlanie jednej warstwy suwaka pionowego"
msgid "Switch between Prepare/Preview"
msgstr "Przełączanie między przygotowaniem/podglądem"
msgid "Collapse/Expand the sidebar"
msgstr "Zwiń/Rozwiń pasek boczny"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Pokaż listę skrótów klawiszowych"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -25409,6 +25563,66 @@ 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 "Tab"
#~ msgstr "Karty"
# AI Translated
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Wyświetla bieżącą wartość FPS widoku w prawym górnym rogu."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "Wiki publikowania 3MF"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "Poradnik wideo publikowania 3MF"
#~ msgid "Toolbar"
#~ msgstr "Pasek narzędzi"
#~ msgid "Switch table page"
#~ msgstr "Przełącz stronę tabeli"
#~ msgid "Global shortcuts"
#~ msgstr "Globalne skróty"
# AI Translated
#~ msgid "Middle mouse button"
#~ msgstr "Środkowy przycisk myszy"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Ta funkcja automatycznie ustawia orientację zaznaczonych lub wszystkich obiektów. Jeśli są wybrane obiekty, ustawi tylko te wybrane. W przeciwnym razie ustawi wszystkie obiekty bieżącego projektu."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Ta funkcja automatycznie ustawia orientację wszystkie obiekty na aktualnej płycie roboczej."
#~ msgid "Any arrow"
#~ msgstr "Dowolna strzałka"
#~ msgid "Gizmo SLA support points"
#~ msgstr "Punkty podpór SLA za pomocą „uchwytów”"
#~ msgid "Plater"
#~ msgstr "Płyta"
#~ msgid "Gizmo"
#~ msgstr "Uchwyt"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Usuń obiekty, części, modyfikatory"
#~ msgid "Objects List"
#~ msgstr "Lista obiektów"
# AI Translated
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-code zapisywany na samej górze pliku wyjściowego, przed jakąkolwiek inną treścią. Przydatny do dodawania metadanych, które oprogramowanie sprzętowe drukarki odczytuje z pierwszych wierszy pliku (np. szacowany czas druku, zużycie filamentu). Obsługuje symbole zastępcze, takie jak {print_time_sec} i {used_filament_length}."
# AI Translated
#~ msgid "Print time (seconds)"
#~ msgstr "Czas druku (sekundy)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "Otwórz szybkie menu akcji"
+436 -222
View File
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: 2026-07-26 11:14-0300\n"
"Last-Translator: Alexandre Folle de Menezes\n"
"Language-Team: Portuguese, Brazilian\n"
@@ -5745,12 +5745,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Direita"
msgid "Add"
msgstr "Adicionar"
msgid "Add plate"
msgstr "Adicionar placa"
msgid "Split to objects"
msgstr "Dividir em objetos"
msgid "Add"
msgstr "Adicionar"
msgid "Auto orient all/selected objects"
msgstr "Orientação automática todos/selecionados objetos"
@@ -5763,9 +5766,6 @@ msgstr "Organizar todos os objetos"
msgid "Arrange objects on selected plates"
msgstr "Organizar objetos nas placas selecionadas"
msgid "Split to objects"
msgstr "Dividir em objetos"
msgid "Assembly View"
msgstr "Vista de Montagem"
@@ -5821,6 +5821,9 @@ msgstr "Contorno"
msgid "Wireframe"
msgstr "Malha"
msgid "X-Ray"
msgstr ""
msgid "Realistic View"
msgstr "Visualização Realista"
@@ -6360,9 +6363,6 @@ msgstr "Mostrar contorno ao redor do objeto selecionado na cena 3D."
msgid "Preferences"
msgstr "Preferências"
msgid "Open speed dial..."
msgstr ""
msgctxt "Menu"
msgid "Edit"
msgstr "Editar"
@@ -6370,6 +6370,9 @@ msgstr "Editar"
msgid "View"
msgstr "Visualizar"
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr "Pacote de Predefinições"
@@ -8142,9 +8145,6 @@ msgstr "Expandir barra lateral"
msgid "Collapse sidebar"
msgstr "Recolher barra lateral"
msgid "Tab"
msgstr "Tab"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Carregando arquivo: %s"
@@ -9154,10 +9154,10 @@ msgstr "Gerenciamento de multi dispositivos"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Com esta opção habilitada, você pode enviar uma tarefa para vários dispositivos ao mesmo tempo e gerenciar vários dispositivos."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9289,6 +9289,15 @@ msgstr "Arrastar com Mouse Direito"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Defina a ação que arrastar com o botão direito do mouse deve executar."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "Limpar minha escolha em…"
@@ -9399,11 +9408,39 @@ msgstr ""
"Limita a taxa de quadros da janela de visualização para reduzir a carga da GPU e o consumo de energia.\n"
"Defina como 0 para taxa de quadros ilimitada."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Show FPS overlay"
msgstr "Mostrar painel de FPS"
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Exibe o FPS atual da janela de visualização no canto superior direito."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
msgid "G-code Preview"
msgstr "Pré-visualização de G-code"
@@ -9859,13 +9896,8 @@ msgstr "Publicar 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Selecione quais configurações serão publicadas no arquivo 3MF"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "Documentação de Publicar 3MF"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "Guia em vídeo de Publicar 3MF"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10067,6 +10099,12 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "Mostrar detalhes"
msgid "Hide details"
msgstr "Esconder detalhes"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -11853,66 +11891,38 @@ msgstr "O pacote de configuração é alterado no Guia de Configuração anterio
msgid "Configuration package changed"
msgstr "Pacote de configuração alterado"
msgid "Toolbar"
msgstr "Barra de Ferramentas"
msgid "Objects list"
msgstr "Lista de objetos"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importar dados de geometria de arquivos STL/STEP/3MF/OBJ/AMF"
msgid "Paste from clipboard"
msgstr "Colar da área de transferência"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Mostrar/Ocultar diálogo de configurações de dispositivos 3Dconnexion"
msgid "Switch table page"
msgstr "Trocar página da tabela"
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Espaço"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Mostrar lista de atalhos de teclado"
msgid "Global shortcuts"
msgstr "Atalhos globais"
msgid "Pan View"
msgstr "Mover Vista"
msgid "Rotate View"
msgstr "Rotacionar Vista"
msgid "Middle mouse button"
msgstr "Botão do meio do mouse"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgid "Zoom View"
msgstr "Aproximar Vista"
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Orienta automaticamente os objetos selecionados ou todos os objetos. Se houver objetos selecionados, ele apenas orientará os selecionados. Caso contrário, ele orientará todos os objetos do projeto atual."
msgid "Left mouse"
msgstr ""
msgid "Auto orients all objects on the active plate."
msgstr "Orienta automaticamente todos os objetos na placa atual."
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr "Recolher/Expandir a barra lateral"
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
msgid "Any arrow"
msgstr "Qualquer seta"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Movement in camera space"
msgstr "Movimento no espaço da câmera"
msgid "Switch to the next main tab"
msgstr ""
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Selecionar uma peça"
@@ -11923,121 +11933,29 @@ msgstr "Selecionar vários objetos"
msgid "Select objects by rectangle"
msgstr "Selecionar objetos por retângulo"
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Seta para Cima"
msgid "Move selection 10mm in positive Y direction"
msgstr "Mover seleção 10mm na direção Y positiva"
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Seta para Baixo"
msgid "Move selection 10mm in negative Y direction"
msgstr "Mover seleção 10mm na direção Y negativa"
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Seta para Esquerda"
msgid "Move selection 10mm in negative X direction"
msgstr "Mover seleção 10mm na direção X negativa"
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Seta para Direita"
msgid "Move selection 10mm in positive X direction"
msgstr "Mover seleção 10mm na direção X positiva"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Teclado 1-9: ajustar filamento para objeto/peça"
msgid "Movement step set to 1mm"
msgstr "Passo de movimento definido para 1mm"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Teclado 1-9: ajustar filamento para objeto/peça"
msgid "Movement in camera space"
msgstr "Movimento no espaço da câmera"
msgid "Camera view - Default"
msgstr "Vista da câmera - Padrão"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Vista da câmera - Superior"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "Vista da câmera - Inferior"
msgid "Zoom View"
msgstr "Aproximar Vista"
msgid "Camera view - Front"
msgstr "Vista da câmera - Frontal"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "Vista da câmera - Posterior"
msgid "Camera Angle - Left side"
msgstr "Ângulo da câmera - Lado esquerdo"
msgid "Camera Angle - Right side"
msgstr "Ângulo da câmera - Lado direito"
msgid "Select all objects"
msgstr "Selecionar todos os objetos"
msgid "Gizmo move"
msgstr "Gizmo mover"
msgid "Gizmo rotate"
msgstr "Gizmo rotacionar"
msgid "Gizmo scale"
msgstr "Gizmo escala"
msgid "Gizmo place face on bed"
msgstr "Gizmo posicionar face na mesa"
msgid "Gizmo cut"
msgstr "Gizmo cortar"
msgid "Gizmo mesh boolean"
msgstr "Gizmo malha booleana"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo de pintura de textura difusa FDM"
msgid "Gizmo SLA support points"
msgstr "Gizmo de pontos de suporte SLA"
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo de pintura de costura FDM"
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo Texturizar/gravar texto"
msgid "Gizmo measure"
msgstr "Gizmo medir"
msgid "Gizmo assemble"
msgstr "Gizmo montar"
msgid "Gizmo brim ears"
msgstr "Gizmo orelhas da borda"
msgid "Zoom in"
msgstr "Aproximar zoom"
msgid "Zoom out"
msgstr "Afastar zoom"
msgid "Toggle printable for object/part"
msgstr "Alternar modo de impressão para objeto/peça"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "Alternar entre Preparar/Pré-visualizar"
msgid "Plater"
msgstr "Mesa"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Mover: pressione para ajustar em 1mm"
@@ -12048,14 +11966,18 @@ msgstr "Suporte/Pintura em cores: ajustar o raio da caneta"
msgid "Support/Color Painting: adjust section position"
msgstr "Suporte/Pintura em cores: ajustar a posição da seção"
msgid "Gizmo"
msgstr "Gizmo"
msgid "Objects list"
msgstr "Lista de objetos"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Definir o número da extrusora para os objetos e peças"
msgid "Delete objects, parts, modifiers"
msgstr "Excluir objetos, peças, modificadores"
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Espaço"
msgid "Select the object/part and press space to change the name"
msgstr "Selecione o objeto/peça e pressione espaço para mudar o nome"
@@ -12066,43 +11988,48 @@ msgstr "Clique do mouse"
msgid "Select the object/part and mouse click to change the name"
msgstr "Selecione o objeto/peça e clique do mouse para mudar o nome"
msgid "Objects List"
msgstr "Lista de Objetos"
msgid "Vertical slider - Move active thumb Up"
msgstr "Controle deslizante vertical - Mover o polegar ativo para cima"
msgid "Vertical slider - Move active thumb Down"
msgstr "Controle deslizante vertical - Mover o polegar ativo para baixo"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Controle deslizante horizontal - Mover o polegar ativo para a esquerda"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Controle deslizante horizontal - Mover o polegar ativo para a direita"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Ativar/Desativar modo de uma camada do controle deslizante vertical"
msgid "On/Off G-code window"
msgstr "Ativar/Desativar janela de G-code"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Mover o controle deslizante 5 vezes mais rápido"
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "Barra deslizante horizontal — Mover para a posição inicial"
msgid "Not customizable"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "Barra deslizante horizontal — Mover para a última posição"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Nota de lançamento"
@@ -16888,8 +16815,8 @@ msgstr "Passos de pré-aquecimento"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Insire múltiplos comandos de pré-aquecimento (ex.: M104.1). Útil apenas para Prusa XL. Para outras impressoras, defina como 1."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "Código G escrito no início do arquivo de saída, antes de qualquer outro conteúdo. Útil para adicionar metadados que o firmware da impressora lê das primeiras linhas do arquivo (ex.: tempo estimado de impressão, consumo de filamento). Suporta marcadores como {print_time_sec} e {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "G-code Inicial"
@@ -18389,12 +18316,36 @@ msgstr "Fil. usado"
msgid "Total length of filament used in the print."
msgstr "Comprimento total de filamento usado na impressão."
msgid "Print time (seconds)"
msgstr "Tempo de impressão (segundos)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Tempo total estimado de impressão em segundos. Substituído pelo valor real durante o pós-processamento."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "Comprimento do filamento (metros)"
@@ -20218,6 +20169,9 @@ msgstr "Sessão válida não detectada. Prosseguir com o login no 3DPrinterOS?"
msgid "Success!"
msgstr "Sucesso!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "Tem certeza de que deseja sair?"
@@ -21167,12 +21121,6 @@ msgstr "O Plug-in de Rede Bambu é necessário para recursos de nuvem, detecçã
msgid "Error: %s"
msgstr "Erro: %s"
msgid "Show details"
msgstr "Mostrar detalhes"
msgid "Hide details"
msgstr "Esconder detalhes"
msgid "Version to install:"
msgstr "Versão para instalar:"
@@ -23756,6 +23704,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -23768,6 +23722,210 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Seta para Esquerda"
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Seta para Direita"
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Seta para Cima"
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Seta para Baixo"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importar dados de geometria de arquivos STL/STEP/3MF/OBJ/AMF"
msgid "Select all objects"
msgstr "Selecionar todos os objetos"
msgid "Paste from clipboard"
msgstr "Colar da área de transferência"
msgid "Toggle printable for object/part"
msgstr "Alternar modo de impressão para objeto/peça"
msgid "Move selection 10mm in negative X direction"
msgstr "Mover seleção 10mm na direção X negativa"
msgid "Move selection 10mm in positive X direction"
msgstr "Mover seleção 10mm na direção X positiva"
msgid "Move selection 10mm in positive Y direction"
msgstr "Mover seleção 10mm na direção Y positiva"
msgid "Move selection 10mm in negative Y direction"
msgstr "Mover seleção 10mm na direção Y negativa"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Gizmo mover"
msgid "Gizmo rotate"
msgstr "Gizmo rotacionar"
msgid "Gizmo scale"
msgstr "Gizmo escala"
msgid "Gizmo place face on bed"
msgstr "Gizmo posicionar face na mesa"
msgid "Gizmo cut"
msgstr "Gizmo cortar"
msgid "Gizmo mesh boolean"
msgstr "Gizmo malha booleana"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo de pintura de costura FDM"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo de pintura de textura difusa FDM"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo Texturizar/gravar texto"
msgid "Gizmo measure"
msgstr "Gizmo medir"
msgid "Gizmo assemble"
msgstr "Gizmo montar"
msgid "Gizmo brim ears"
msgstr "Gizmo orelhas da borda"
msgid "Vertical slider - Move active thumb Up"
msgstr "Controle deslizante vertical - Mover o polegar ativo para cima"
msgid "Vertical slider - Move active thumb Down"
msgstr "Controle deslizante vertical - Mover o polegar ativo para baixo"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Controle deslizante horizontal - Mover o polegar ativo para a esquerda"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Controle deslizante horizontal - Mover o polegar ativo para a direita"
msgid "Horizontal slider - Move to start position"
msgstr "Barra deslizante horizontal — Mover para a posição inicial"
msgid "Horizontal slider - Move to last position"
msgstr "Barra deslizante horizontal — Mover para a última posição"
msgid "Camera view - Default"
msgstr "Vista da câmera - Padrão"
msgid "Camera view - Top"
msgstr "Vista da câmera - Superior"
msgid "Camera view - Bottom"
msgstr "Vista da câmera - Inferior"
msgid "Camera view - Front"
msgstr "Vista da câmera - Frontal"
msgid "Camera view - Behind"
msgstr "Vista da câmera - Posterior"
msgid "Camera Angle - Left side"
msgstr "Ângulo da câmera - Lado esquerdo"
msgid "Camera Angle - Right side"
msgstr "Ângulo da câmera - Lado direito"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Aproximar zoom"
msgid "Zoom out"
msgstr "Afastar zoom"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Mostrar/Ocultar diálogo de configurações de dispositivos 3Dconnexion"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "Ativar/Desativar janela de G-code"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Ativar/Desativar modo de uma camada do controle deslizante vertical"
msgid "Switch between Prepare/Preview"
msgstr "Alternar entre Preparar/Pré-visualizar"
msgid "Collapse/Expand the sidebar"
msgstr "Recolher/Expandir a barra lateral"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Mostrar lista de atalhos de teclado"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -24068,6 +24226,62 @@ msgstr ""
"Evitar empenamento\n"
"Você sabia que ao imprimir materiais propensos ao empenamento como ABS, aumentar adequadamente a temperatura da mesa aquecida pode reduzir a probabilidade de empenamento?"
#~ msgid "Tab"
#~ msgstr "Tab"
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Exibe o FPS atual da janela de visualização no canto superior direito."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "Documentação de Publicar 3MF"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "Guia em vídeo de Publicar 3MF"
#~ msgid "Toolbar"
#~ msgstr "Barra de Ferramentas"
#~ msgid "Switch table page"
#~ msgstr "Trocar página da tabela"
#~ msgid "Global shortcuts"
#~ msgstr "Atalhos globais"
#~ msgid "Middle mouse button"
#~ msgstr "Botão do meio do mouse"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Orienta automaticamente os objetos selecionados ou todos os objetos. Se houver objetos selecionados, ele apenas orientará os selecionados. Caso contrário, ele orientará todos os objetos do projeto atual."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Orienta automaticamente todos os objetos na placa atual."
#~ msgid "Any arrow"
#~ msgstr "Qualquer seta"
#~ msgid "Gizmo SLA support points"
#~ msgstr "Gizmo de pontos de suporte SLA"
#~ msgid "Plater"
#~ msgstr "Mesa"
#~ msgid "Gizmo"
#~ msgstr "Gizmo"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Excluir objetos, peças, modificadores"
#~ msgid "Objects List"
#~ msgstr "Lista de Objetos"
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "Código G escrito no início do arquivo de saída, antes de qualquer outro conteúdo. Útil para adicionar metadados que o firmware da impressora lê das primeiras linhas do arquivo (ex.: tempo estimado de impressão, consumo de filamento). Suporta marcadores como {print_time_sec} e {used_filament_length}."
#~ msgid "Print time (seconds)"
#~ msgstr "Tempo de impressão (segundos)"
#~ msgid "Open actions speed dial"
#~ msgstr "Abrir menu rápido de ações"
+441 -227
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-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\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"
@@ -5938,12 +5938,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Справа"
msgid "Add"
msgstr "Добавить"
msgid "Add plate"
msgstr "Добавить стол"
msgid "Split to objects"
msgstr "Разделить на модели"
msgid "Add"
msgstr "Добавить"
msgid "Auto orient all/selected objects"
msgstr "Положить все/выбранные модели"
@@ -5956,9 +5959,6 @@ msgstr "Расставить все модели"
msgid "Arrange objects on selected plates"
msgstr "Расставить модели на активном столе"
msgid "Split to objects"
msgstr "Разделить на модели"
msgid "Assembly View"
msgstr "Сборочный вид"
@@ -6018,6 +6018,9 @@ msgstr "Обводка выбранного"
msgid "Wireframe"
msgstr "Сетка модели"
msgid "X-Ray"
msgstr ""
msgid "Realistic View"
msgstr "Продвинутая графика"
@@ -6594,9 +6597,6 @@ msgstr "Отображение контура вокруг выбранных м
msgid "Preferences"
msgstr "Настройки"
msgid "Open speed dial..."
msgstr ""
msgctxt "Menu"
msgid "Edit"
msgstr "Правка"
@@ -6604,6 +6604,9 @@ msgstr "Правка"
msgid "View"
msgstr "Вид"
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr "Пакет профилей"
@@ -8405,11 +8408,6 @@ msgstr "Развернуть боковую панель"
msgid "Collapse sidebar"
msgstr "Свернуть боковую панель"
# Название кнопки на клавиатуре, на момент 2.3.2 используется в 5 местах в
# значении названия кнопки
msgid "Tab"
msgstr "Tab"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Загрузка файла: %s"
@@ -9433,10 +9431,10 @@ msgstr "Управление несколькими устройствами Bam
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Если включено, вы сможете управлять несколькими устройствами и отправлять задания на печать на несколько устройств одновременно."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9571,6 +9569,15 @@ msgstr "Перетаскивание правой кнопкой мыши"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Действие при перемещении курсора с зажатой правой кнопкой мыши."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "Сброс выбора по умолчанию"
@@ -9685,11 +9692,39 @@ msgstr ""
"Ограничить частоту отрисовки рабочего пространства для снижения энергопотребления и нагрузки на ГП.\n"
"0 – не ограничивать частоту кадров."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Show FPS overlay"
msgstr "Отображать частоту кадров"
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Выводить частоту кадров рабочего пространства в правом верхнем углу."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
msgid "G-code Preview"
msgstr "Просмотр нарезки"
@@ -10151,13 +10186,8 @@ msgstr "Опубликовать 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Выберите, какие настройки будут опубликованы в файле 3MF"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "Wiki по публикации 3MF"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "Видеоруководство по публикации 3MF"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10363,6 +10393,13 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "Подробнее"
# В информации о сетевом плагине
msgid "Hide details"
msgstr "Скрыть подробности"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -12206,66 +12243,38 @@ msgstr "Пакет профилей был изменён при предыду
msgid "Configuration package changed"
msgstr "Пакет профилей изменён"
msgid "Toolbar"
msgstr "Панель инструментов"
msgid "Objects list"
msgstr "Список моделей"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Импорт геометрических данных из STL/STEP/3MF/OBJ/AMF файлов"
msgid "Paste from clipboard"
msgstr "Вставить из буфера обмена"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Показать/скрыть диалоговое окно настроек и устройств 3Dconnexion"
msgid "Switch table page"
msgstr "Переключение между вкладками"
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Пробел"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Показать список сочетаний клавиш"
msgid "Global shortcuts"
msgstr "Глобальные горячие клавиши"
msgid "Pan View"
msgstr "Перемещение камеры"
msgid "Rotate View"
msgstr "Вращение камеры"
msgid "Middle mouse button"
msgstr "Средняя кнопка мыши"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgid "Zoom View"
msgstr "Масштабирование вида"
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Попытаться положить модели на стол. При выборе отдельных моделей операция применяется только к ним."
msgid "Left mouse"
msgstr ""
msgid "Auto orients all objects on the active plate."
msgstr "Положить все модели только на активном столе"
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr "Свернуть/развернуть боковую панель"
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
msgid "Any arrow"
msgstr "Любая стрелка"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Movement in camera space"
msgstr "Перемещение выбранного по отношению к камере"
msgid "Switch to the next main tab"
msgstr ""
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Выбор части модели"
@@ -12276,123 +12285,29 @@ msgstr "Выбор нескольких моделей"
msgid "Select objects by rectangle"
msgstr "Выбор прямоугольником"
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Стрелка вверх"
msgid "Move selection 10mm in positive Y direction"
msgstr "Перемещение выбранного на +10 мм по оси Y"
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Стрелка вниз"
msgid "Move selection 10mm in negative Y direction"
msgstr "Перемещение выбранного на -10 мм по оси Y"
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Стрелка влево"
msgid "Move selection 10mm in negative X direction"
msgstr "Перемещение выбранного на -10 мм по оси X"
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Стрелка вправо"
msgid "Move selection 10mm in positive X direction"
msgstr "Перемещение выбранного на +10 мм по оси X"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Клавиши 1-9: задать материал для модели/части модели"
msgid "Movement step set to 1mm"
msgstr "Зафиксировать шаг перемещения на 1 мм"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Клавиши 1-9: задать материал для модели/части модели"
msgid "Movement in camera space"
msgstr "Перемещение выбранного по отношению к камере"
msgid "Camera view - Default"
msgstr "Камера по умолчанию"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Камера сверху"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "Камера снизу"
msgid "Zoom View"
msgstr "Масштабирование вида"
msgid "Camera view - Front"
msgstr "Камера спереди"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "Камера сзади"
msgid "Camera Angle - Left side"
msgstr "Камера слева"
msgid "Camera Angle - Right side"
msgstr "Камера справа"
msgid "Select all objects"
msgstr "Выбрать все модели"
msgid "Gizmo move"
msgstr "Инструмент перемещения"
msgid "Gizmo rotate"
msgstr "Инструмент вращения"
msgid "Gizmo scale"
msgstr "Инструмент масштабирования"
msgid "Gizmo place face on bed"
msgstr "Выбор контактной поверхности"
msgid "Gizmo cut"
msgstr "Инструмент разрезания"
msgid "Gizmo mesh boolean"
msgstr "Булевы операции"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Рисование нечёткой оболочки"
msgid "Gizmo SLA support points"
msgstr "Размещение поддержек (SLA)"
msgid "Gizmo FDM paint-on seam"
msgstr "Рисование шва (FDM)"
msgid "Gizmo text emboss/engrave"
msgstr "Инструмент размещения текста"
msgid "Gizmo measure"
msgstr "Инструмент измерения"
msgid "Gizmo assemble"
msgstr "Размещение частей сборки"
msgid "Gizmo brim ears"
msgstr "Размещение «мышиных ушек»"
msgid "Zoom in"
msgstr "Приблизить"
msgid "Zoom out"
msgstr "Отдалить"
# Ошибка в оригинале – переключить печать частей невозможно, функция работает только для всей сборки
msgid "Toggle printable for object/part"
msgstr "Переключить печать модели"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "Переключение между подготовкой и просмотром нарезки"
# Plater – это название библиотеки. Используется в меню горячих клавиш в качестве заголовка сочетаний клавиш, которые работают внутри пространства Plater. Как минимум на Windows не отображается.
msgid "Plater"
msgstr "Рабочая область"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Перемещение: Фиксация перемещения на 1 мм"
@@ -12403,14 +12318,18 @@ msgstr "Рисование поддержек/Шва/Покраски: регу
msgid "Support/Color Painting: adjust section position"
msgstr "Рисование поддержек/Шва/Покраски: регулировка положения сечения"
msgid "Gizmo"
msgstr "Инструмент"
msgid "Objects list"
msgstr "Список моделей"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Задать номер экструдера для моделей/частей"
msgid "Delete objects, parts, modifiers"
msgstr "Удаление моделей, частей, модификаторов"
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Пробел"
msgid "Select the object/part and press space to change the name"
msgstr "Выберите модель/часть и нажмите пробел, чтобы изменить имя"
@@ -12421,43 +12340,48 @@ msgstr "Левая кнопка мыши"
msgid "Select the object/part and mouse click to change the name"
msgstr "Выберите модель/часть и нажмите левую клавишу мыши, чтобы изменить имя"
msgid "Objects List"
msgstr "Список моделей"
msgid "Vertical slider - Move active thumb Up"
msgstr "Вертикальный ползунок - Сдвинуть активный ползунок вверх"
msgid "Vertical slider - Move active thumb Down"
msgstr "Вертикальный ползунок - Сдвинуть активный ползунок вниз"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Горизонтальный ползунок - Сдвинуть активный ползунок влево"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Горизонтальный ползунок - Сдвинуть активный ползунок вправо"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Включение/отключение функции «Режим одного слоя» у вертикального ползунка"
msgid "On/Off G-code window"
msgstr "Показать/скрыть окно отображения G-кода"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Перемещение ползунка быстрее в 5 раз"
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "Горизонтальный ползунок - перемещение в начальную позицию"
msgid "Not customizable"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "Горизонтальный ползунок - перемещение в конечную позицию"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Информация о версии"
@@ -17716,8 +17640,8 @@ msgstr "Шагов преднагрева"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Задание нескольких команд преднагрева (например, M104.1). Полезно только для Prusa XL. Для других принтеров установите значение 1."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "Код для вставки в первые строки файла (перед началом всего остального содержимого). Полезно для добавления метаданных для считывания прошивкой принтера, таких как время печати или расход материала. Можно использовать вставку переменных (например, {print_time_sec} и {used_filament_length} соответственно)."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "Стартовый G-код"
@@ -19394,8 +19318,8 @@ msgstr "Расход прутка"
msgid "Total length of filament used in the print."
msgstr "Общая длина прутка, затрачиваемая для печати."
msgid "Print time (seconds)"
msgstr "Время печати (в секундах)"
msgid "Print time (total seconds)"
msgstr ""
# Пользователи даже не знают, что и как там слайсер у себя под капотом пост-
# процессит после генерации кода до его парсинга и визуализации, не нужно этим
@@ -19403,6 +19327,30 @@ msgstr "Время печати (в секундах)"
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Оценка полного времени печати (в секундах). Заменяется числом при генерации G-кода."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "Длина материала (в метрах)"
@@ -21277,6 +21225,9 @@ msgstr "Недействительная сессия. Выполнить вхо
msgid "Success!"
msgstr "Успешно!"
msgid "Generate API Key"
msgstr ""
# ??? Вы уверены, что хотите разлогиниться, Вы уверены, что хотите выйти из
# аккаунта?"
msgid "Are you sure to log out?"
@@ -22243,13 +22194,6 @@ msgstr "Для удалённой печати, облачных функций
msgid "Error: %s"
msgstr "Ошибка: %s"
msgid "Show details"
msgstr "Подробнее"
# В информации о сетевом плагине
msgid "Hide details"
msgstr "Скрыть подробности"
msgid "Version to install:"
msgstr "Версия для установки:"
@@ -24855,6 +24799,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -24867,6 +24817,211 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Стрелка влево"
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Стрелка вправо"
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Стрелка вверх"
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Стрелка вниз"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Импорт геометрических данных из STL/STEP/3MF/OBJ/AMF файлов"
msgid "Select all objects"
msgstr "Выбрать все модели"
msgid "Paste from clipboard"
msgstr "Вставить из буфера обмена"
# Ошибка в оригинале – переключить печать частей невозможно, функция работает только для всей сборки
msgid "Toggle printable for object/part"
msgstr "Переключить печать модели"
msgid "Move selection 10mm in negative X direction"
msgstr "Перемещение выбранного на -10 мм по оси X"
msgid "Move selection 10mm in positive X direction"
msgstr "Перемещение выбранного на +10 мм по оси X"
msgid "Move selection 10mm in positive Y direction"
msgstr "Перемещение выбранного на +10 мм по оси Y"
msgid "Move selection 10mm in negative Y direction"
msgstr "Перемещение выбранного на -10 мм по оси Y"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Инструмент перемещения"
msgid "Gizmo rotate"
msgstr "Инструмент вращения"
msgid "Gizmo scale"
msgstr "Инструмент масштабирования"
msgid "Gizmo place face on bed"
msgstr "Выбор контактной поверхности"
msgid "Gizmo cut"
msgstr "Инструмент разрезания"
msgid "Gizmo mesh boolean"
msgstr "Булевы операции"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "Рисование шва (FDM)"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Рисование нечёткой оболочки"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Инструмент размещения текста"
msgid "Gizmo measure"
msgstr "Инструмент измерения"
msgid "Gizmo assemble"
msgstr "Размещение частей сборки"
msgid "Gizmo brim ears"
msgstr "Размещение «мышиных ушек»"
msgid "Vertical slider - Move active thumb Up"
msgstr "Вертикальный ползунок - Сдвинуть активный ползунок вверх"
msgid "Vertical slider - Move active thumb Down"
msgstr "Вертикальный ползунок - Сдвинуть активный ползунок вниз"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Горизонтальный ползунок - Сдвинуть активный ползунок влево"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Горизонтальный ползунок - Сдвинуть активный ползунок вправо"
msgid "Horizontal slider - Move to start position"
msgstr "Горизонтальный ползунок - перемещение в начальную позицию"
msgid "Horizontal slider - Move to last position"
msgstr "Горизонтальный ползунок - перемещение в конечную позицию"
msgid "Camera view - Default"
msgstr "Камера по умолчанию"
msgid "Camera view - Top"
msgstr "Камера сверху"
msgid "Camera view - Bottom"
msgstr "Камера снизу"
msgid "Camera view - Front"
msgstr "Камера спереди"
msgid "Camera view - Behind"
msgstr "Камера сзади"
msgid "Camera Angle - Left side"
msgstr "Камера слева"
msgid "Camera Angle - Right side"
msgstr "Камера справа"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Приблизить"
msgid "Zoom out"
msgstr "Отдалить"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Показать/скрыть диалоговое окно настроек и устройств 3Dconnexion"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "Показать/скрыть окно отображения G-кода"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Включение/отключение функции «Режим одного слоя» у вертикального ползунка"
msgid "Switch between Prepare/Preview"
msgstr "Переключение между подготовкой и просмотром нарезки"
msgid "Collapse/Expand the sidebar"
msgstr "Свернуть/развернуть боковую панель"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Показать список сочетаний клавиш"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -25165,6 +25320,65 @@ msgstr ""
"Предотвращение коробления материала\n"
"Знаете ли вы, что при печати материалами, склонными к короблению, таких как ABS, повышение температуры подогреваемого стола может снизить эту вероятность?"
# Название кнопки на клавиатуре, на момент 2.3.2 используется в 5 местах в
# значении названия кнопки
#~ msgid "Tab"
#~ msgstr "Tab"
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Выводить частоту кадров рабочего пространства в правом верхнем углу."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "Wiki по публикации 3MF"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "Видеоруководство по публикации 3MF"
#~ msgid "Toolbar"
#~ msgstr "Панель инструментов"
#~ msgid "Switch table page"
#~ msgstr "Переключение между вкладками"
#~ msgid "Global shortcuts"
#~ msgstr "Глобальные горячие клавиши"
#~ msgid "Middle mouse button"
#~ msgstr "Средняя кнопка мыши"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Попытаться положить модели на стол. При выборе отдельных моделей операция применяется только к ним."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Положить все модели только на активном столе"
#~ msgid "Any arrow"
#~ msgstr "Любая стрелка"
#~ msgid "Gizmo SLA support points"
#~ msgstr "Размещение поддержек (SLA)"
# Plater – это название библиотеки. Используется в меню горячих клавиш в качестве заголовка сочетаний клавиш, которые работают внутри пространства Plater. Как минимум на Windows не отображается.
#~ msgid "Plater"
#~ msgstr "Рабочая область"
#~ msgid "Gizmo"
#~ msgstr "Инструмент"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Удаление моделей, частей, модификаторов"
#~ msgid "Objects List"
#~ msgstr "Список моделей"
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "Код для вставки в первые строки файла (перед началом всего остального содержимого). Полезно для добавления метаданных для считывания прошивкой принтера, таких как время печати или расход материала. Можно использовать вставку переменных (например, {print_time_sec} и {used_filament_length} соответственно)."
#~ msgid "Print time (seconds)"
#~ msgstr "Время печати (в секундах)"
#~ msgid "Open actions speed dial"
#~ msgstr "Открыть строку быстрых действий"
+458 -244
View File
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -6535,12 +6535,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Höger"
msgid "Add"
msgstr "Lägg till"
msgid "Add plate"
msgstr "Lägg till byggplata"
msgid "Split to objects"
msgstr "Dela upp till objekt"
msgid "Add"
msgstr "Lägg till"
msgid "Auto orient all/selected objects"
msgstr "Autoorientering alla/valda objekt"
@@ -6553,9 +6556,6 @@ msgstr "Ordna alla objekt"
msgid "Arrange objects on selected plates"
msgstr "Ordna alla objekt på vald platta"
msgid "Split to objects"
msgstr "Dela upp till objekt"
msgid "Assembly View"
msgstr "Monterings vy"
@@ -6617,6 +6617,9 @@ msgstr "Kontur"
msgid "Wireframe"
msgstr "Trådram"
msgid "X-Ray"
msgstr ""
# AI Translated
msgid "Realistic View"
msgstr "Realistisk vy"
@@ -7202,9 +7205,6 @@ msgstr "Visa en kontur runt det markerade objektet i 3D-scenen."
msgid "Preferences"
msgstr "Inställningar"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -7213,6 +7213,9 @@ msgstr "Redigera"
msgid "View"
msgstr "Vy"
msgid "Open Speed Dial"
msgstr ""
# AI Translated
msgid "Preset Bundle"
msgstr "Förinställningspaket"
@@ -9182,10 +9185,6 @@ msgstr "Expandera sidopanelen"
msgid "Collapse sidebar"
msgstr "Fäll ihop sidopanelen"
# AI Translated
msgid "Tab"
msgstr "Tabb"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Laddar fil: %s"
@@ -10324,10 +10323,10 @@ msgstr "Hantering av flera enheter"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Med det här alternativet aktiverat kan du skicka en uppgift till flera enheter samtidigt och hantera flera enheter."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -10481,6 +10480,15 @@ msgstr "Dra med höger musknapp"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Ange vilken åtgärd som ska utföras när du drar med höger musknapp."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
# AI Translated
msgid "Clear my choice on..."
msgstr "Rensa mitt val för..."
@@ -10611,13 +10619,40 @@ msgstr ""
"Begränsar vyns bildfrekvens för att minska GPU-belastning och strömförbrukning.\n"
"Sätt till 0 för obegränsad bildfrekvens."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
# AI Translated
msgid "Show FPS overlay"
msgstr "Visa FPS-överlägg"
# AI Translated
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Visar vyns aktuella FPS i det övre högra hörnet."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -11120,13 +11155,8 @@ msgstr "Publicera 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Välj vilka inställningar som ska publiceras i 3MF-filen"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "Wiki för Publicera 3MF"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "Videoguide för Publicera 3MF"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -11329,6 +11359,14 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
# AI Translated
msgid "Show details"
msgstr "Visa detaljer"
# AI Translated
msgid "Hide details"
msgstr "Dölj detaljer"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -13403,69 +13441,39 @@ msgstr "Konfigurations paketet är ändrat i föregående Kofigurations Guide"
msgid "Configuration package changed"
msgstr "Konfigurations paketet är ändrat"
msgid "Toolbar"
msgstr "Verktygsfält"
msgid "Objects list"
msgstr "Objektlista"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importera geometri data från STL/STEP/3MF/OBJ/AMF filer"
msgid "Paste from clipboard"
msgstr "Klistra in ifrån urklipp"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Visa/Dölj 3Dconnexion enheternas inställnings dialogruta"
msgid "Switch table page"
msgstr "Byt tabellsida"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Blanksteg"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Visa tangentbordets genvägs lista"
msgid "Global shortcuts"
msgstr "Övergripande genvägar"
msgid "Pan View"
msgstr "Panoreringsvy"
msgid "Rotate View"
msgstr "Rotera vy"
# AI Translated
msgid "Middle mouse button"
msgstr "Mittersta musknappen"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgid "Zoom View"
msgstr "Zoomvy"
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Auto placera valda objekt eller alla objekt. Om det finns valda objekt så placeras endast dem. Annars kommer den att orientera alla objekt i det aktuella projektet."
msgid "Left mouse"
msgstr ""
msgid "Auto orients all objects on the active plate."
msgstr "Placera alla föremål automatiskt på aktuell tallrik."
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr "Dölj/Visa meny"
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
# AI Translated
msgid "Any arrow"
msgstr "Valfri piltangent"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tabb"
msgid "Movement in camera space"
msgstr "Rörelse i kamera område"
msgid "Switch to the next main tab"
msgstr ""
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Välj del"
@@ -13476,129 +13484,29 @@ msgstr "Välj flera objekt"
msgid "Select objects by rectangle"
msgstr "Välj objekt efter rektangel"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Uppåtpil"
msgid "Move selection 10mm in positive Y direction"
msgstr "Flytta markeringen 10mm i positiv Y riktning"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Nedåtpil"
msgid "Move selection 10mm in negative Y direction"
msgstr "Flytta markeringen 10mm i negativ Y riktning"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Vänsterpil"
msgid "Move selection 10mm in negative X direction"
msgstr "Flytta markeringen 10mm i negativ X riktning"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Högerpil"
msgid "Move selection 10mm in positive X direction"
msgstr "Flytta markeringen 10mm i positiv X riktning"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "tangentbord 1-9: fastställer filament för objekt/del"
msgid "Movement step set to 1mm"
msgstr "Rörelse steg är vald till 1mm"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "tangentbord 1-9: fastställer filament för objekt/del"
msgid "Movement in camera space"
msgstr "Rörelse i kamera område"
msgid "Camera view - Default"
msgstr "Kamera vy - Standard"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Kamera vy - Topp"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "Kamera vy - Botten"
msgid "Zoom View"
msgstr "Zoomvy"
msgid "Camera view - Front"
msgstr "Kamera vy - Fram"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "Kamera vy - Bakom"
msgid "Camera Angle - Left side"
msgstr "Kamera vy - Vänster sida"
msgid "Camera Angle - Right side"
msgstr "Kamera vy - Höger sida"
msgid "Select all objects"
msgstr "Välj alla objekt"
msgid "Gizmo move"
msgstr "Gizmo flytta"
msgid "Gizmo rotate"
msgstr "Gizmo rotera"
msgid "Gizmo scale"
msgstr "Gizmo skala"
msgid "Gizmo place face on bed"
msgstr "Gizmo placera ansiktet på byggytan"
msgid "Gizmo cut"
msgstr "Gizmo skär"
# AI Translated
msgid "Gizmo mesh boolean"
msgstr "Gizmo boolesk mesh-operation"
# AI Translated
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM måla ojämn yta"
msgid "Gizmo SLA support points"
msgstr "Gizmo SLA support punkter"
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo FDM målad söm"
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo textprägling/gravering"
msgid "Gizmo measure"
msgstr "Gizmo mäta"
msgid "Gizmo assemble"
msgstr "Gizmo montera"
msgid "Gizmo brim ears"
msgstr "Gizmo brätte öron"
msgid "Zoom in"
msgstr "Zooma in"
msgid "Zoom out"
msgstr "Zooma ut"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "Växla utskrivbar för objekt/del"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tabb"
msgid "Switch between Prepare/Preview"
msgstr "Växla mellan Förbered/Förhandsgranska"
msgid "Plater"
msgstr "Plätering/Förgyllning"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Flytta: tryck för att låsa med 1mm"
@@ -13609,15 +13517,19 @@ msgstr "Support/Färgläggning: justera penn radie"
msgid "Support/Color Painting: adjust section position"
msgstr "Support/Färgläggning:justera sektions positionen"
# AI Translated
msgid "Gizmo"
msgstr "Gizmo"
msgid "Objects list"
msgstr "Objektlista"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Välj extruder nummer för objekten och delarna"
msgid "Delete objects, parts, modifiers"
msgstr "Radera objekten, delarna och anpassningar"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Blanksteg"
msgid "Select the object/part and press space to change the name"
msgstr "Välj objektet/delen och tryck space för att ändra namnet"
@@ -13628,48 +13540,48 @@ msgstr "Mus klick"
msgid "Select the object/part and mouse click to change the name"
msgstr "Välj objektet/delen och mus klicka för att ändra namnet"
msgid "Objects List"
msgstr "Objekts lista"
msgid "Vertical slider - Move active thumb Up"
msgstr "Vertikal reglage - Flytta aktivt tryck Upp"
msgid "Vertical slider - Move active thumb Down"
msgstr "Vertikal reglage - Flytta aktivt tryck Ner"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Horisontell reglage - Flytta aktivt tryck Vänster"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Horisontell reglage - Flytta aktivt tryck Höger"
msgid "On/Off one layer mode of the vertical slider"
msgstr "På/Av 1 lager läge för det vertikala reglaget"
# AI Translated
msgid "On/Off G-code window"
msgstr "På/av för G-code-fönstret"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Flytta reglage 5x snabbare"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
# AI Translated
msgid "Horizontal slider - Move to start position"
msgstr "Horisontellt reglage flytta till startpositionen"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
# AI Translated
msgid "Horizontal slider - Move to last position"
msgstr "Horisontellt reglage flytta till sista positionen"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Meddelande om utgåvan"
@@ -19215,9 +19127,8 @@ msgstr "Förvärmningssteg"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Infoga flera förvärmningskommandon (t.ex. M104.1). Endast användbart för Prusa XL. Ställ in det på 1 för andra skrivare."
# AI Translated
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-code som skrivs allra överst i utdatafilen, före allt annat innehåll. Användbart för att lägga till metadata som skrivarens fasta programvara läser från filens första rader (t.ex. beräknad utskriftstid, filamentåtgång). Stöder platshållare som {print_time_sec} och {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "Starta G-kod"
@@ -20963,14 +20874,37 @@ msgstr "Använt filament"
msgid "Total length of filament used in the print."
msgstr "Total längd filament som används i utskriften."
# AI Translated
msgid "Print time (seconds)"
msgstr "Utskriftstid (sekunder)"
msgid "Print time (total seconds)"
msgstr ""
# AI Translated
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Total beräknad utskriftstid i sekunder. Ersätts med det faktiska värdet under efterbearbetningen."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
# AI Translated
msgid "Filament length (meters)"
msgstr "Filamentlängd (meter)"
@@ -23000,6 +22934,9 @@ msgstr "Ingen giltig session upptäcktes. Vill du fortsätta med inloggning till
msgid "Success!"
msgstr "Lyckades!"
msgid "Generate API Key"
msgstr ""
# AI Translated
msgid "Are you sure to log out?"
msgstr "Är du säker på att du vill logga ut?"
@@ -24215,14 +24152,6 @@ msgstr "Bambu Network Plug-in krävs för molnfunktioner, upptäckt av skrivare
msgid "Error: %s"
msgstr "Fel: %s"
# AI Translated
msgid "Show details"
msgstr "Visa detaljer"
# AI Translated
msgid "Hide details"
msgstr "Dölj detaljer"
# AI Translated
msgid "Version to install:"
msgstr "Version att installera:"
@@ -26906,6 +26835,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -26918,6 +26853,222 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Vänsterpil"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Högerpil"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Uppåtpil"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Nedåtpil"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importera geometri data från STL/STEP/3MF/OBJ/AMF filer"
msgid "Select all objects"
msgstr "Välj alla objekt"
msgid "Paste from clipboard"
msgstr "Klistra in ifrån urklipp"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "Växla utskrivbar för objekt/del"
msgid "Move selection 10mm in negative X direction"
msgstr "Flytta markeringen 10mm i negativ X riktning"
msgid "Move selection 10mm in positive X direction"
msgstr "Flytta markeringen 10mm i positiv X riktning"
msgid "Move selection 10mm in positive Y direction"
msgstr "Flytta markeringen 10mm i positiv Y riktning"
msgid "Move selection 10mm in negative Y direction"
msgstr "Flytta markeringen 10mm i negativ Y riktning"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Gizmo flytta"
msgid "Gizmo rotate"
msgstr "Gizmo rotera"
msgid "Gizmo scale"
msgstr "Gizmo skala"
msgid "Gizmo place face on bed"
msgstr "Gizmo placera ansiktet på byggytan"
msgid "Gizmo cut"
msgstr "Gizmo skär"
# AI Translated
msgid "Gizmo mesh boolean"
msgstr "Gizmo boolesk mesh-operation"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo FDM målad söm"
# AI Translated
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM måla ojämn yta"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo textprägling/gravering"
msgid "Gizmo measure"
msgstr "Gizmo mäta"
msgid "Gizmo assemble"
msgstr "Gizmo montera"
msgid "Gizmo brim ears"
msgstr "Gizmo brätte öron"
msgid "Vertical slider - Move active thumb Up"
msgstr "Vertikal reglage - Flytta aktivt tryck Upp"
msgid "Vertical slider - Move active thumb Down"
msgstr "Vertikal reglage - Flytta aktivt tryck Ner"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Horisontell reglage - Flytta aktivt tryck Vänster"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Horisontell reglage - Flytta aktivt tryck Höger"
# AI Translated
msgid "Horizontal slider - Move to start position"
msgstr "Horisontellt reglage flytta till startpositionen"
# AI Translated
msgid "Horizontal slider - Move to last position"
msgstr "Horisontellt reglage flytta till sista positionen"
msgid "Camera view - Default"
msgstr "Kamera vy - Standard"
msgid "Camera view - Top"
msgstr "Kamera vy - Topp"
msgid "Camera view - Bottom"
msgstr "Kamera vy - Botten"
msgid "Camera view - Front"
msgstr "Kamera vy - Fram"
msgid "Camera view - Behind"
msgstr "Kamera vy - Bakom"
msgid "Camera Angle - Left side"
msgstr "Kamera vy - Vänster sida"
msgid "Camera Angle - Right side"
msgstr "Kamera vy - Höger sida"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Zooma in"
msgid "Zoom out"
msgstr "Zooma ut"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Visa/Dölj 3Dconnexion enheternas inställnings dialogruta"
msgid "Show/Hide wireframe"
msgstr ""
# AI Translated
msgid "On/Off G-code window"
msgstr "På/av för G-code-fönstret"
msgid "On/Off one layer mode of the vertical slider"
msgstr "På/Av 1 lager läge för det vertikala reglaget"
msgid "Switch between Prepare/Preview"
msgstr "Växla mellan Förbered/Förhandsgranska"
msgid "Collapse/Expand the sidebar"
msgstr "Dölj/Visa meny"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Visa tangentbordets genvägs lista"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
# AI Translated
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
@@ -27233,6 +27384,69 @@ msgstr ""
"Undvik vridning\n"
"Visste du att när du skriver ut material som är benägna att vrida, såsom ABS, kan en lämplig ökning av värmebäddens temperatur minska sannolikheten för vridning?"
# AI Translated
#~ msgid "Tab"
#~ msgstr "Tabb"
# AI Translated
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Visar vyns aktuella FPS i det övre högra hörnet."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "Wiki för Publicera 3MF"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "Videoguide för Publicera 3MF"
#~ msgid "Toolbar"
#~ msgstr "Verktygsfält"
#~ msgid "Switch table page"
#~ msgstr "Byt tabellsida"
#~ msgid "Global shortcuts"
#~ msgstr "Övergripande genvägar"
# AI Translated
#~ msgid "Middle mouse button"
#~ msgstr "Mittersta musknappen"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Auto placera valda objekt eller alla objekt. Om det finns valda objekt så placeras endast dem. Annars kommer den att orientera alla objekt i det aktuella projektet."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Placera alla föremål automatiskt på aktuell tallrik."
# AI Translated
#~ msgid "Any arrow"
#~ msgstr "Valfri piltangent"
#~ msgid "Gizmo SLA support points"
#~ msgstr "Gizmo SLA support punkter"
#~ msgid "Plater"
#~ msgstr "Plätering/Förgyllning"
# AI Translated
#~ msgid "Gizmo"
#~ msgstr "Gizmo"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Radera objekten, delarna och anpassningar"
#~ msgid "Objects List"
#~ msgstr "Objekts lista"
# AI Translated
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-code som skrivs allra överst i utdatafilen, före allt annat innehåll. Användbart för att lägga till metadata som skrivarens fasta programvara läser från filens första rader (t.ex. beräknad utskriftstid, filamentåtgång). Stöder platshållare som {print_time_sec} och {used_filament_length}."
# AI Translated
#~ msgid "Print time (seconds)"
#~ msgstr "Utskriftstid (sekunder)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "Öppna snabbvalsmenyn för åtgärder"
+445 -231
View File
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: 2026-06-19 13:40+0700\n"
"Last-Translator: Icezaza\n"
"Language-Team: Thai\n"
@@ -5901,12 +5901,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "ขวา"
msgid "Add"
msgstr "เพิ่ม"
msgid "Add plate"
msgstr "เพิ่มจาน"
msgid "Split to objects"
msgstr "แยกเป็นวัตถุ"
msgid "Add"
msgstr "เพิ่ม"
msgid "Auto orient all/selected objects"
msgstr "ปรับทิศทางวัตถุทั้งหมด/ที่เลือกโดยอัตโนมัติ"
@@ -5919,9 +5922,6 @@ msgstr "จัดเรียงวัตถุทั้งหมด"
msgid "Arrange objects on selected plates"
msgstr "จัดเรียงวัตถุบนจานที่เลือก"
msgid "Split to objects"
msgstr "แยกเป็นวัตถุ"
msgid "Assembly View"
msgstr "มุมมองการประกอบ"
@@ -5978,6 +5978,9 @@ msgstr "เส้นขอบ"
msgid "Wireframe"
msgstr "โครงลวด"
msgid "X-Ray"
msgstr ""
msgid "Realistic View"
msgstr "มุมมองสมจริง"
@@ -6517,9 +6520,6 @@ msgstr "แสดงเค้าร่างรอบๆ วัตถุที
msgid "Preferences"
msgstr "การตั้งค่า"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6528,6 +6528,9 @@ msgstr "แก้ไข"
msgid "View"
msgstr "มุมมอง"
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr "ชุดที่ตั้งไว้ล่วงหน้า"
@@ -8318,9 +8321,6 @@ msgstr "ขยายแถบด้านข้าง"
msgid "Collapse sidebar"
msgstr "ยุบแถบด้านข้าง"
msgid "Tab"
msgstr "แท็บ"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "กำลังโหลดไฟล์: %s"
@@ -9338,10 +9338,10 @@ msgstr "การจัดการอุปกรณ์หลายเครื
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "เมื่อเปิดใช้งานตัวเลือกนี้ คุณสามารถส่งงานไปยังอุปกรณ์หลายเครื่องพร้อมกันและจัดการอุปกรณ์หลายเครื่องได้"
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9473,6 +9473,15 @@ msgstr "ลากเมาส์ขวา"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "ตั้งค่าการดำเนินการที่ควรดำเนินการด้วยการลากปุ่มเมาส์ขวา"
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "ล้างตัวเลือกของฉันใน..."
@@ -9583,11 +9592,39 @@ msgstr ""
"จำกัดอัตราเฟรมวิวพอร์ตเพื่อลดภาระของ GPU และการใช้พลังงาน\n"
"ตั้งค่าเป็น 0 สำหรับอัตราเฟรมไม่จำกัด"
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Show FPS overlay"
msgstr "แสดงการซ้อนทับ FPS"
msgid "Displays current viewport FPS in the top-right corner."
msgstr "แสดงวิวพอร์ต FPS ปัจจุบันที่มุมขวาบน"
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -10047,13 +10084,8 @@ msgstr "เผยแพร่ 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "เลือกว่าจะเผยแพร่การตั้งค่าใดในไฟล์ 3MF"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "วิกิการเผยแพร่ 3MF"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "คู่มือวีดีโอการเผยแพร่ 3MF"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10255,6 +10287,13 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "แสดงรายละเอียด"
# AI Translated
msgid "Hide details"
msgstr "ซ่อนรายละเอียด"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -12087,67 +12126,39 @@ msgstr "แพ็คเกจการกำหนดค่ามีการเ
msgid "Configuration package changed"
msgstr "แพ็คเกจการกำหนดค่ามีการเปลี่ยนแปลง"
msgid "Toolbar"
msgstr "แถบเครื่องมือ"
msgid "Objects list"
msgstr "รายการวัตถุ"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "นำเข้าข้อมูลเรขาคณิตจากไฟล์ STL/STEP/3MF/OBJ/AMF"
msgid "Paste from clipboard"
msgstr "วางจากคลิปบอร์ด"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "แสดง/ซ่อนกล่องโต้ตอบการตั้งค่าอุปกรณ์ 3Dconnexion"
msgid "Switch table page"
msgstr "สลับหน้าตาราง"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Space"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "แสดงรายการแป้นพิมพ์ลัด"
msgid "Global shortcuts"
msgstr "ทางลัดทั่วโลก"
msgid "Pan View"
msgstr "แพนวิว"
msgid "Rotate View"
msgstr "หมุนมุมมอง"
msgid "Middle mouse button"
msgstr "ปุ่มกลางของเมาส์"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgid "Zoom View"
msgstr "ซูมดู"
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "ปรับทิศทางวัตถุที่เลือกหรือวัตถุทั้งหมดโดยอัตโนมัติ หากมีวัตถุที่เลือกไว้ วัตถุนั้นจะปรับทิศทางวัตถุที่เลือกเท่านั้น มิฉะนั้นจะวางแนววัตถุทั้งหมดในโปรเจ็กต์ปัจจุบัน"
msgid "Left mouse"
msgstr ""
msgid "Auto orients all objects on the active plate."
msgstr "ปรับทิศทางวัตถุทั้งหมดบนเพลตที่ใช้งานอยู่โดยอัตโนมัติ"
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr "ยุบ/ขยายแถบด้านข้าง"
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
msgid "Any arrow"
msgstr "ลูกศรอะไรก็ได้"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Movement in camera space"
msgstr "การเคลื่อนไหวในพื้นที่กล้อง"
msgid "Switch to the next main tab"
msgstr ""
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "เลือกส่วนหนึ่ง"
@@ -12158,126 +12169,29 @@ msgstr "เลือกหลายวัตถุ"
msgid "Select objects by rectangle"
msgstr "เลือกวัตถุตามสี่เหลี่ยม"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "ลูกศรขึ้น"
msgid "Move selection 10mm in positive Y direction"
msgstr "เลื่อนส่วนที่เลือกไป 10 มม. ในทิศทางบวก Y"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "ลูกศรลง"
msgid "Move selection 10mm in negative Y direction"
msgstr "ย้ายส่วนที่เลือกไป 10 มม. ในทิศทางลบ Y"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "ลูกศรซ้าย"
msgid "Move selection 10mm in negative X direction"
msgstr "ย้ายส่วนที่เลือกไป 10 มม. ในทิศทาง X ลบ"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "ลูกศรขวา"
msgid "Move selection 10mm in positive X direction"
msgstr "เลื่อนส่วนที่เลือกไป 10 มม. ในทิศทาง X บวก"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "แป้นพิมพ์ 1-9: ตั้งค่าเส้นพลาสติกสำหรับวัตถุ/ชิ้นส่วน"
msgid "Movement step set to 1mm"
msgstr "ตั้งระยะขยับเป็น 1 มม."
msgid "Keyboard 1-9: set filament for object/part"
msgstr "แป้นพิมพ์ 1-9: ตั้งค่าเส้นพลาสติกสำหรับวัตถุ/ชิ้นส่วน"
msgid "Movement in camera space"
msgstr "การเคลื่อนไหวในพื้นที่กล้อง"
msgid "Camera view - Default"
msgstr "มุมมองกล้อง - ค่าเริ่มต้น"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "มุมมองกล้อง - ด้านบน"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "มุมมองกล้อง - ด้านล่าง"
msgid "Zoom View"
msgstr "ซูมดู"
msgid "Camera view - Front"
msgstr "มุมมองกล้อง - ด้านหน้า"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "มุมมองกล้อง - ด้านหลัง"
msgid "Camera Angle - Left side"
msgstr "มุมกล้อง - ด้านซ้าย"
msgid "Camera Angle - Right side"
msgstr "มุมกล้อง - ด้านขวา"
msgid "Select all objects"
msgstr "เลือกวัตถุทั้งหมด"
msgid "Gizmo move"
msgstr "กิสโม่ย้าย"
msgid "Gizmo rotate"
msgstr "กิสโม่หมุน"
msgid "Gizmo scale"
msgstr "ขนาดกิสโม่"
msgid "Gizmo place face on bed"
msgstr "กิสโมวางหน้าบนฐานพิมพ์"
msgid "Gizmo cut"
msgstr "กิสโม่ตัด"
msgid "Gizmo mesh boolean"
msgstr "Gizmo mesh บูลีน"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM เพ้นท์ผิวฟัซซี"
msgid "Gizmo SLA support points"
msgstr "จุดส่วนรองรับ Gizmo SLA"
msgid "Gizmo FDM paint-on seam"
msgstr "รอยตะเข็บทาสี Gizmo FDM"
msgid "Gizmo text emboss/engrave"
msgstr "ข้อความ Gizmo นูน/แกะสลัก"
msgid "Gizmo measure"
msgstr "เครื่องวัดกิสโม่"
msgid "Gizmo assemble"
msgstr "กิสโมประกอบ"
msgid "Gizmo brim ears"
msgstr "Gizmo หูขอบยึดชิ้นงาน (Brim Ears)"
msgid "Zoom in"
msgstr "ซูมเข้า"
msgid "Zoom out"
msgstr "ซูมออก"
msgid "Toggle printable for object/part"
msgstr "สลับการพิมพ์สำหรับวัตถุ/ชิ้นส่วน"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "สลับระหว่างการเตรียม/ดูตัวอย่าง"
msgid "Plater"
msgstr "เพลเตอร์"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "ย้าย: กดเพื่อสแน็ป 1 มม"
@@ -12288,14 +12202,19 @@ msgstr "ส่วนรองรับ / การวาดภาพสี: ป
msgid "Support/Color Painting: adjust section position"
msgstr "ส่วนรองรับ / การวาดภาพสี: ปรับตำแหน่งส่วน"
msgid "Gizmo"
msgstr "กิสโม่"
msgid "Objects list"
msgstr "รายการวัตถุ"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "กำหนดหมายเลขชุดดันเส้นสำหรับวัตถุและชิ้นส่วน"
msgid "Delete objects, parts, modifiers"
msgstr "ลบวัตถุ ชิ้นส่วน ตัวดัดแปลง"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Space"
msgid "Select the object/part and press space to change the name"
msgstr "เลือกวัตถุ/ชิ้นส่วนแล้วกด Space เพื่อเปลี่ยนชื่อ"
@@ -12306,45 +12225,48 @@ msgstr "คลิกเมาส์"
msgid "Select the object/part and mouse click to change the name"
msgstr "เลือกวัตถุ/ชิ้นส่วนแล้วคลิกเมาส์เพื่อเปลี่ยนชื่อ"
msgid "Objects List"
msgstr "รายการวัตถุ"
msgid "Vertical slider - Move active thumb Up"
msgstr "แถบเลื่อนแนวตั้ง - เลื่อนนิ้วโป้งที่ใช้งานอยู่ขึ้น"
msgid "Vertical slider - Move active thumb Down"
msgstr "แถบเลื่อนแนวตั้ง - เลื่อนนิ้วโป้งที่ใช้งานอยู่ลง"
msgid "Horizontal slider - Move active thumb Left"
msgstr "แถบเลื่อนแนวนอน - เลื่อนนิ้วหัวแม่มือที่ใช้งานไปทางซ้าย"
msgid "Horizontal slider - Move active thumb Right"
msgstr "แถบเลื่อนแนวนอน - เลื่อนนิ้วหัวแม่มือที่ใช้งานไปทางขวา"
msgid "On/Off one layer mode of the vertical slider"
msgstr "เปิด/ปิดโหมดเลเยอร์เดียวของแถบเลื่อนแนวตั้ง"
msgid "On/Off G-code window"
msgstr "เปิด/ปิดหน้าต่างรหัส G"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "เลื่อนตัวเลื่อนเร็วขึ้น 5 เท่า"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "แถบเลื่อนแนวนอน - เลื่อนไปยังตำแหน่งเริ่มต้น"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "แถบเลื่อนแนวนอน - เลื่อนไปยังตำแหน่งสุดท้าย"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "บันทึกประจำรุ่น"
@@ -17213,8 +17135,8 @@ msgstr "อุ่นเครื่องตามขั้นตอน"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "ใส่คำสั่งอุ่นล่วงหน้าหลายคำสั่ง (เช่น M104.1) มีประโยชน์สำหรับ Prusa XL เท่านั้น สำหรับเครื่องพิมพ์อื่นๆ โปรดตั้งค่าเป็น 1"
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-code เขียนไว้ที่ด้านบนสุดของไฟล์เอาต์พุต ก่อนเนื้อหาอื่นๆ มีประโยชน์สำหรับการเพิ่มข้อมูลเมตาที่เฟิร์มแวร์เครื่องพิมพ์อ่านจากบรรทัดแรกของไฟล์ (เช่น เวลาในการพิมพ์โดยประมาณ การใช้เส้นพลาสติก) รองรับตัวยึดตำแหน่ง เช่น {print_time_sec} และ {used_filament_length}"
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "เริ่ม G-code"
@@ -18753,12 +18675,36 @@ msgstr "เส้นพลาสติกที่ใช้แล้ว"
msgid "Total length of filament used in the print."
msgstr "ความยาวรวมของเส้นพลาสติกที่ใช้ในการพิมพ์"
msgid "Print time (seconds)"
msgstr "เวลาในการพิมพ์ (วินาที)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "เวลาพิมพ์ทั้งหมดโดยประมาณเป็นวินาที แทนที่ด้วยค่าจริงระหว่างการประมวลผลภายหลัง"
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "ความยาวเส้นพลาสติก (เมตร)"
@@ -20592,6 +20538,9 @@ msgstr "ไม่พบเซสชันที่ถูกต้อง ดำ
msgid "Success!"
msgstr "สำเร็จ!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "คุณแน่ใจหรือว่าจะออกจากระบบ?"
@@ -21591,13 +21540,6 @@ msgstr "ปลั๊กอินเครือข่าย Bambu จำเป
msgid "Error: %s"
msgstr "ข้อผิดพลาด: %s"
msgid "Show details"
msgstr "แสดงรายละเอียด"
# AI Translated
msgid "Hide details"
msgstr "ซ่อนรายละเอียด"
msgid "Version to install:"
msgstr "เวอร์ชันที่จะติดตั้ง:"
@@ -24228,6 +24170,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -24240,6 +24188,216 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "ลูกศรซ้าย"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "ลูกศรขวา"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "ลูกศรขึ้น"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "ลูกศรลง"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "นำเข้าข้อมูลเรขาคณิตจากไฟล์ STL/STEP/3MF/OBJ/AMF"
msgid "Select all objects"
msgstr "เลือกวัตถุทั้งหมด"
msgid "Paste from clipboard"
msgstr "วางจากคลิปบอร์ด"
msgid "Toggle printable for object/part"
msgstr "สลับการพิมพ์สำหรับวัตถุ/ชิ้นส่วน"
msgid "Move selection 10mm in negative X direction"
msgstr "ย้ายส่วนที่เลือกไป 10 มม. ในทิศทาง X ลบ"
msgid "Move selection 10mm in positive X direction"
msgstr "เลื่อนส่วนที่เลือกไป 10 มม. ในทิศทาง X บวก"
msgid "Move selection 10mm in positive Y direction"
msgstr "เลื่อนส่วนที่เลือกไป 10 มม. ในทิศทางบวก Y"
msgid "Move selection 10mm in negative Y direction"
msgstr "ย้ายส่วนที่เลือกไป 10 มม. ในทิศทางลบ Y"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "กิสโม่ย้าย"
msgid "Gizmo rotate"
msgstr "กิสโม่หมุน"
msgid "Gizmo scale"
msgstr "ขนาดกิสโม่"
msgid "Gizmo place face on bed"
msgstr "กิสโมวางหน้าบนฐานพิมพ์"
msgid "Gizmo cut"
msgstr "กิสโม่ตัด"
msgid "Gizmo mesh boolean"
msgstr "Gizmo mesh บูลีน"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "รอยตะเข็บทาสี Gizmo FDM"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM เพ้นท์ผิวฟัซซี"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "ข้อความ Gizmo นูน/แกะสลัก"
msgid "Gizmo measure"
msgstr "เครื่องวัดกิสโม่"
msgid "Gizmo assemble"
msgstr "กิสโมประกอบ"
msgid "Gizmo brim ears"
msgstr "Gizmo หูขอบยึดชิ้นงาน (Brim Ears)"
msgid "Vertical slider - Move active thumb Up"
msgstr "แถบเลื่อนแนวตั้ง - เลื่อนนิ้วโป้งที่ใช้งานอยู่ขึ้น"
msgid "Vertical slider - Move active thumb Down"
msgstr "แถบเลื่อนแนวตั้ง - เลื่อนนิ้วโป้งที่ใช้งานอยู่ลง"
msgid "Horizontal slider - Move active thumb Left"
msgstr "แถบเลื่อนแนวนอน - เลื่อนนิ้วหัวแม่มือที่ใช้งานไปทางซ้าย"
msgid "Horizontal slider - Move active thumb Right"
msgstr "แถบเลื่อนแนวนอน - เลื่อนนิ้วหัวแม่มือที่ใช้งานไปทางขวา"
msgid "Horizontal slider - Move to start position"
msgstr "แถบเลื่อนแนวนอน - เลื่อนไปยังตำแหน่งเริ่มต้น"
msgid "Horizontal slider - Move to last position"
msgstr "แถบเลื่อนแนวนอน - เลื่อนไปยังตำแหน่งสุดท้าย"
msgid "Camera view - Default"
msgstr "มุมมองกล้อง - ค่าเริ่มต้น"
msgid "Camera view - Top"
msgstr "มุมมองกล้อง - ด้านบน"
msgid "Camera view - Bottom"
msgstr "มุมมองกล้อง - ด้านล่าง"
msgid "Camera view - Front"
msgstr "มุมมองกล้อง - ด้านหน้า"
msgid "Camera view - Behind"
msgstr "มุมมองกล้อง - ด้านหลัง"
msgid "Camera Angle - Left side"
msgstr "มุมกล้อง - ด้านซ้าย"
msgid "Camera Angle - Right side"
msgstr "มุมกล้อง - ด้านขวา"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "ซูมเข้า"
msgid "Zoom out"
msgstr "ซูมออก"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "แสดง/ซ่อนกล่องโต้ตอบการตั้งค่าอุปกรณ์ 3Dconnexion"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "เปิด/ปิดหน้าต่างรหัส G"
msgid "On/Off one layer mode of the vertical slider"
msgstr "เปิด/ปิดโหมดเลเยอร์เดียวของแถบเลื่อนแนวตั้ง"
msgid "Switch between Prepare/Preview"
msgstr "สลับระหว่างการเตรียม/ดูตัวอย่าง"
msgid "Collapse/Expand the sidebar"
msgstr "ยุบ/ขยายแถบด้านข้าง"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "แสดงรายการแป้นพิมพ์ลัด"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -24540,6 +24698,62 @@ msgstr ""
"หลีกเลี่ยงการบิดเบี้ยว\n"
"คุณรู้หรือไม่ว่าเมื่อพิมพ์วัสดุที่มีแนวโน้มที่จะเกิดการบิดเบี้ยว เช่น ABS การเพิ่มอุณหภูมิฐานพิมพ์อย่างเหมาะสมสามารถลดความน่าจะเป็นของการบิดเบี้ยวได้"
#~ msgid "Tab"
#~ msgstr "แท็บ"
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "แสดงวิวพอร์ต FPS ปัจจุบันที่มุมขวาบน"
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "วิกิการเผยแพร่ 3MF"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "คู่มือวีดีโอการเผยแพร่ 3MF"
#~ msgid "Toolbar"
#~ msgstr "แถบเครื่องมือ"
#~ msgid "Switch table page"
#~ msgstr "สลับหน้าตาราง"
#~ msgid "Global shortcuts"
#~ msgstr "ทางลัดทั่วโลก"
#~ msgid "Middle mouse button"
#~ msgstr "ปุ่มกลางของเมาส์"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "ปรับทิศทางวัตถุที่เลือกหรือวัตถุทั้งหมดโดยอัตโนมัติ หากมีวัตถุที่เลือกไว้ วัตถุนั้นจะปรับทิศทางวัตถุที่เลือกเท่านั้น มิฉะนั้นจะวางแนววัตถุทั้งหมดในโปรเจ็กต์ปัจจุบัน"
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "ปรับทิศทางวัตถุทั้งหมดบนเพลตที่ใช้งานอยู่โดยอัตโนมัติ"
#~ msgid "Any arrow"
#~ msgstr "ลูกศรอะไรก็ได้"
#~ msgid "Gizmo SLA support points"
#~ msgstr "จุดส่วนรองรับ Gizmo SLA"
#~ msgid "Plater"
#~ msgstr "เพลเตอร์"
#~ msgid "Gizmo"
#~ msgstr "กิสโม่"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "ลบวัตถุ ชิ้นส่วน ตัวดัดแปลง"
#~ msgid "Objects List"
#~ msgstr "รายการวัตถุ"
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-code เขียนไว้ที่ด้านบนสุดของไฟล์เอาต์พุต ก่อนเนื้อหาอื่นๆ มีประโยชน์สำหรับการเพิ่มข้อมูลเมตาที่เฟิร์มแวร์เครื่องพิมพ์อ่านจากบรรทัดแรกของไฟล์ (เช่น เวลาในการพิมพ์โดยประมาณ การใช้เส้นพลาสติก) รองรับตัวยึดตำแหน่ง เช่น {print_time_sec} และ {used_filament_length}"
#~ msgid "Print time (seconds)"
#~ msgstr "เวลาในการพิมพ์ (วินาที)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "เปิดสปีดไดอัลการดำเนินการ"
+453 -239
View File
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: 2026-08-21 23:18+0300\n"
"Last-Translator: GlauTech\n"
"Language-Team: \n"
@@ -5967,12 +5967,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Sağ"
msgid "Add"
msgstr "Ekle"
msgid "Add plate"
msgstr "Plaka ekle"
msgid "Split to objects"
msgstr "Nesnelere böl"
msgid "Add"
msgstr "Ekle"
msgid "Auto orient all/selected objects"
msgstr "Otomatik yönlendir tüm/seçili nesneler"
@@ -5985,9 +5988,6 @@ msgstr "Tüm nesneleri hizala"
msgid "Arrange objects on selected plates"
msgstr "Seçilen plakalardaki nesneleri hizala"
msgid "Split to objects"
msgstr "Nesnelere böl"
msgid "Assembly View"
msgstr "Montaj görünümü"
@@ -6044,6 +6044,9 @@ msgstr "Taslak"
msgid "Wireframe"
msgstr "Wireframe"
msgid "X-Ray"
msgstr ""
# AI Translated
msgid "Realistic View"
msgstr "Gerçekçi Görünüm"
@@ -6585,9 +6588,6 @@ msgstr "3D sahnede seçilen nesnenin etrafındaki ana hatları göster."
msgid "Preferences"
msgstr "Tercihler"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6596,6 +6596,9 @@ msgstr "Düzen"
msgid "View"
msgstr "Görünüm"
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr "Ön ayar paketi"
@@ -8409,10 +8412,6 @@ msgstr "Kenar çubuğunu genişlet"
msgid "Collapse sidebar"
msgstr "Kenar çubuğunu daralt"
# AI Translated
msgid "Tab"
msgstr "Sekme"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Dosya yükleniyor: %s"
@@ -9444,10 +9443,10 @@ msgstr "Çoklu cihaz yönetimi"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Bu seçenek etkinleştirildiğinde, aynı anda birden fazla cihaza bir görev gönderebilir ve birden fazla cihazı yönetebilirsiniz."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9586,6 +9585,15 @@ msgstr "Sağ fare sürükleme"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Sağ fare düğmesiyle sürüklemenin gerçekleştireceği eylemi ayarlayın."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "Seçimimi Temizle"
@@ -9710,13 +9718,40 @@ msgstr ""
"GPU yükünü ve güç tüketimini azaltmak için görünüm penceresinin kare hızını sınırlar.\n"
"Sınırsız kare hızı için 0 olarak ayarlayın."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
# AI Translated
msgid "Show FPS overlay"
msgstr "FPS göstergesini göster"
# AI Translated
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Geçerli görünüm penceresinin FPS değerini sağ üst köşede gösterir."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -10192,13 +10227,8 @@ msgstr "3MF Yayınla..."
msgid "Select which settings to be published in the 3MF file"
msgstr "3MF dosyasında hangi ayarların yayınlanacağını seçin"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "3MF Yayınlama Wiki"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "3MF Yayınlama Video Kılavuzu"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10400,6 +10430,13 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "Ayrıntıları göster"
# AI Translated
msgid "Hide details"
msgstr "Ayrıntıları gizle"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -12274,68 +12311,39 @@ msgstr "Yapılandırma paketi önceki Yapılandırma Kılavuzu'nda değiştirild
msgid "Configuration package changed"
msgstr "Yapılandırma paketi değiştirildi"
msgid "Toolbar"
msgstr "Araç Çubuğu"
msgid "Objects list"
msgstr "Nesne listesi"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "STL/STEP/3MF/OBJ/AMF dosyalarından geometri verilerini içe aktarın"
msgid "Paste from clipboard"
msgstr "Panodan yapıştır"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "3Dconnexion cihazları ayarları iletişim kutusunu Göster/Gizle"
msgid "Switch table page"
msgstr "Tablo sayfasını değiştir"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Boşluk"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Klavye kısayolları listesini göster"
msgid "Global shortcuts"
msgstr "Genel kısayollar"
msgid "Pan View"
msgstr "Pan Görünümü"
msgid "Rotate View"
msgstr "Görüntüyü döndür"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Left mouse"
msgstr ""
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
# AI Translated
msgid "Middle mouse button"
msgstr "Orta fare düğmesi"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Zoom View"
msgstr "Zoom Görünümü"
msgid "Switch to the next main tab"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Seçilen nesneleri veya tüm nesneleri otomatik olarak yönlendirir. Seçilen nesneler varsa, yalnızca seçilenleri yönlendirir. Aksi takdirde mevcut projedeki tüm nesneler yönlendirilecektir."
msgid "Auto orients all objects on the active plate."
msgstr "Aktif plakadaki tüm nesneleri otomatik olarak yönlendirir."
msgid "Collapse/Expand the sidebar"
msgstr "Kenar çubuğunu daralt/genişlet"
msgid "Any arrow"
msgstr "Herhangi bir ok"
msgid "Movement in camera space"
msgstr "Kamera alanında hareket"
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Parça seçin"
@@ -12346,127 +12354,29 @@ msgstr "Birden fazla nesne seç"
msgid "Select objects by rectangle"
msgstr "Nesneleri dikdörtgene göre seç"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Yukarı Ok"
msgid "Move selection 10mm in positive Y direction"
msgstr "Seçimi pozitif Y yönünde 10 mm taşı"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Aşağı Ok"
msgid "Move selection 10mm in negative Y direction"
msgstr "Seçimi negatif Y yönünde 10 mm taşı"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Sol Ok"
msgid "Move selection 10mm in negative X direction"
msgstr "Seçimi negatif X yönünde 10 mm taşı"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Sağ Ok"
msgid "Move selection 10mm in positive X direction"
msgstr "Seçimi pozitif X yönünde 10 mm taşı"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Klavye 1-9: nesneye/parçaya filament ata"
msgid "Movement step set to 1mm"
msgstr "Hareket adımı 1 mm'ye ayarlandı"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "Klavye 1-9: nesneye/parçaya filament ata"
msgid "Movement in camera space"
msgstr "Kamera alanında hareket"
msgid "Camera view - Default"
msgstr "Kamera görünümü - Varsayılan"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Kamera görünümü - Üst"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "Kamera görünümü - Alt"
msgid "Zoom View"
msgstr "Zoom Görünümü"
msgid "Camera view - Front"
msgstr "Kamera görünümü - Ön"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "Kamera görünümü - Arka"
msgid "Camera Angle - Left side"
msgstr "Kamera Açısı - Sol"
msgid "Camera Angle - Right side"
msgstr "Kamera Açısı - Sağ"
msgid "Select all objects"
msgstr "Tüm nesneleri seç"
msgid "Gizmo move"
msgstr "Gizmo hareket"
msgid "Gizmo rotate"
msgstr "Gizmo döndürme"
msgid "Gizmo scale"
msgstr "Gizmo ölçek"
msgid "Gizmo place face on bed"
msgstr "Gizmo yüzünüzü yatağa yerleştirin"
msgid "Gizmo cut"
msgstr "Gizmo kesim"
msgid "Gizmo mesh boolean"
msgstr "Gizmo mesh bölme"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM boyama ile uygulanan pütürlü yüzey"
msgid "Gizmo SLA support points"
msgstr "Gizmo SLA destek noktaları"
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo FDM boyalı dikiş"
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo metin kabartma/kazıma"
msgid "Gizmo measure"
msgstr "Gizmo ölçüm"
msgid "Gizmo assemble"
msgstr "Gizmo birleştir"
msgid "Gizmo brim ears"
msgstr "Gizmo lenarlık kulakları"
msgid "Zoom in"
msgstr "Yakınlaştır"
msgid "Zoom out"
msgstr "Uzaklaştır"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "Nesne/parça için yazdırılabilirliği aç/kapat"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "Hazırlama/Önizleme arasında geçiş yap"
msgid "Plater"
msgstr "Plakacı"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Hareket Ettir: 1 mm kadar yaslamak için basın"
@@ -12477,15 +12387,19 @@ msgstr "Destek/Renkli Boyama: kalem yarıçapını ayarlayın"
msgid "Support/Color Painting: adjust section position"
msgstr "Destek/Renkli Boyama: bölüm konumunu ayarlayın"
# AI Translated
msgid "Gizmo"
msgstr "Gizmo"
msgid "Objects list"
msgstr "Nesne listesi"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Nesneler ve parçalar için ekstruder numarasını ayarlayın"
msgid "Delete objects, parts, modifiers"
msgstr "Nesneleri, parçaları, değiştiricileri silin"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Boşluk"
msgid "Select the object/part and press space to change the name"
msgstr "Nesneyi/parçayı seçin ve adını değiştirmek için boşluk tuşuna basın"
@@ -12496,45 +12410,48 @@ msgstr "Fare tıklaması"
msgid "Select the object/part and mouse click to change the name"
msgstr "Nesneyi/parçayı seçin ve adını değiştirmek için fareye tıklayın"
msgid "Objects List"
msgstr "Nesne Listesi"
msgid "Vertical slider - Move active thumb Up"
msgstr "Dikey kaydırıcı - Etkin başparmağı yukarı hareket ettir"
msgid "Vertical slider - Move active thumb Down"
msgstr "Dikey kaydırıcı - Etkin başparmağı Aşağı hareket ettir"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Yatay kaydırıcı - Etkin başparmağı sola taşı"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Yatay kaydırıcı - Etkin başparmağı sağa taşı"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Dikey kaydırıcının tek katman modunu açma/kapama"
msgid "On/Off G-code window"
msgstr "G-code penceresini aç/kapat"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Kaydırıcıyı 5 kat daha hızlı hareket ettirin"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "Yatay kaydırıcı - Başlangıç konumuna taşıyın"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "Yatay kaydırıcı - Son konuma git"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Sürüm notu"
@@ -17528,8 +17445,8 @@ msgstr "Ön ısıtma adımları"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Birden fazla ön ısıtma komutu ekleyin (örn. M104.1). Yalnızca Prusa XL için kullanışlıdır. Diğer yazıcılar için lütfen 1e ayarlayın."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-code, çıktı dosyasının en üstünde, diğer içeriklerden önce yazılır. Yazıcı ürün yazılımının dosyanın ilk satırlarından okuduğu meta verileri (ör. tahmini yazdırma süresi, filament kullanımı) eklemek için kullanışlıdır. {print_time_sec} ve {used_filament_length} gibi yer tutucuları destekler."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "Başlangıç G-code"
@@ -19087,12 +19004,36 @@ msgstr "Kullanılan"
msgid "Total length of filament used in the print."
msgstr "Baskıda kullanılan filamentin toplam uzunluğu."
msgid "Print time (seconds)"
msgstr "Yazdırma süresi (saniye)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Saniye cinsinden toplam tahmini yazdırma süresi. Son işlem sırasında gerçek değerle değiştirilir."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "Filament uzunluğu (metre)"
@@ -20965,6 +20906,9 @@ msgstr "Geçerli oturum algılanmadı. 3DPrinterOS'a giriş yapılsın mı?"
msgid "Success!"
msgstr "Başarılı!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "Çıkış yaptığınızdan emin misiniz?"
@@ -22018,13 +21962,6 @@ msgstr "Bulut özellikleri, yazıcı keşfi ve uzaktan yazdırma için Bambu Ağ
msgid "Error: %s"
msgstr "Hata: %s"
msgid "Show details"
msgstr "Ayrıntıları göster"
# AI Translated
msgid "Hide details"
msgstr "Ayrıntıları gizle"
msgid "Version to install:"
msgstr "Yüklenecek sürüm:"
@@ -24681,6 +24618,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -24693,6 +24636,217 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Sol Ok"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Sağ Ok"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Yukarı Ok"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Aşağı Ok"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "STL/STEP/3MF/OBJ/AMF dosyalarından geometri verilerini içe aktarın"
msgid "Select all objects"
msgstr "Tüm nesneleri seç"
msgid "Paste from clipboard"
msgstr "Panodan yapıştır"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "Nesne/parça için yazdırılabilirliği aç/kapat"
msgid "Move selection 10mm in negative X direction"
msgstr "Seçimi negatif X yönünde 10 mm taşı"
msgid "Move selection 10mm in positive X direction"
msgstr "Seçimi pozitif X yönünde 10 mm taşı"
msgid "Move selection 10mm in positive Y direction"
msgstr "Seçimi pozitif Y yönünde 10 mm taşı"
msgid "Move selection 10mm in negative Y direction"
msgstr "Seçimi negatif Y yönünde 10 mm taşı"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Gizmo hareket"
msgid "Gizmo rotate"
msgstr "Gizmo döndürme"
msgid "Gizmo scale"
msgstr "Gizmo ölçek"
msgid "Gizmo place face on bed"
msgstr "Gizmo yüzünüzü yatağa yerleştirin"
msgid "Gizmo cut"
msgstr "Gizmo kesim"
msgid "Gizmo mesh boolean"
msgstr "Gizmo mesh bölme"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo FDM boyalı dikiş"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM boyama ile uygulanan pütürlü yüzey"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo metin kabartma/kazıma"
msgid "Gizmo measure"
msgstr "Gizmo ölçüm"
msgid "Gizmo assemble"
msgstr "Gizmo birleştir"
msgid "Gizmo brim ears"
msgstr "Gizmo lenarlık kulakları"
msgid "Vertical slider - Move active thumb Up"
msgstr "Dikey kaydırıcı - Etkin başparmağı yukarı hareket ettir"
msgid "Vertical slider - Move active thumb Down"
msgstr "Dikey kaydırıcı - Etkin başparmağı Aşağı hareket ettir"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Yatay kaydırıcı - Etkin başparmağı sola taşı"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Yatay kaydırıcı - Etkin başparmağı sağa taşı"
msgid "Horizontal slider - Move to start position"
msgstr "Yatay kaydırıcı - Başlangıç konumuna taşıyın"
msgid "Horizontal slider - Move to last position"
msgstr "Yatay kaydırıcı - Son konuma git"
msgid "Camera view - Default"
msgstr "Kamera görünümü - Varsayılan"
msgid "Camera view - Top"
msgstr "Kamera görünümü - Üst"
msgid "Camera view - Bottom"
msgstr "Kamera görünümü - Alt"
msgid "Camera view - Front"
msgstr "Kamera görünümü - Ön"
msgid "Camera view - Behind"
msgstr "Kamera görünümü - Arka"
msgid "Camera Angle - Left side"
msgstr "Kamera Açısı - Sol"
msgid "Camera Angle - Right side"
msgstr "Kamera Açısı - Sağ"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Yakınlaştır"
msgid "Zoom out"
msgstr "Uzaklaştır"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "3Dconnexion cihazları ayarları iletişim kutusunu Göster/Gizle"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "G-code penceresini aç/kapat"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Dikey kaydırıcının tek katman modunu açma/kapama"
msgid "Switch between Prepare/Preview"
msgstr "Hazırlama/Önizleme arasında geçiş yap"
msgid "Collapse/Expand the sidebar"
msgstr "Kenar çubuğunu daralt/genişlet"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Klavye kısayolları listesini göster"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -24995,6 +25149,66 @@ 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?"
# AI Translated
#~ msgid "Tab"
#~ msgstr "Sekme"
# AI Translated
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Geçerli görünüm penceresinin FPS değerini sağ üst köşede gösterir."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "3MF Yayınlama Wiki"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "3MF Yayınlama Video Kılavuzu"
#~ msgid "Toolbar"
#~ msgstr "Araç Çubuğu"
#~ msgid "Switch table page"
#~ msgstr "Tablo sayfasını değiştir"
#~ msgid "Global shortcuts"
#~ msgstr "Genel kısayollar"
# AI Translated
#~ msgid "Middle mouse button"
#~ msgstr "Orta fare düğmesi"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Seçilen nesneleri veya tüm nesneleri otomatik olarak yönlendirir. Seçilen nesneler varsa, yalnızca seçilenleri yönlendirir. Aksi takdirde mevcut projedeki tüm nesneler yönlendirilecektir."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Aktif plakadaki tüm nesneleri otomatik olarak yönlendirir."
#~ msgid "Any arrow"
#~ msgstr "Herhangi bir ok"
#~ msgid "Gizmo SLA support points"
#~ msgstr "Gizmo SLA destek noktaları"
#~ msgid "Plater"
#~ msgstr "Plakacı"
# AI Translated
#~ msgid "Gizmo"
#~ msgstr "Gizmo"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Nesneleri, parçaları, değiştiricileri silin"
#~ msgid "Objects List"
#~ msgstr "Nesne Listesi"
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-code, çıktı dosyasının en üstünde, diğer içeriklerden önce yazılır. Yazıcı ürün yazılımının dosyanın ilk satırlarından okuduğu meta verileri (ör. tahmini yazdırma süresi, filament kullanımı) eklemek için kullanışlıdır. {print_time_sec} ve {used_filament_length} gibi yer tutucuları destekler."
#~ msgid "Print time (seconds)"
#~ msgstr "Yazdırma süresi (saniye)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "Eylem hızlı erişim menüsünü aç"
+452 -238
View File
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: orcaslicerua\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: 2026-07-17 16:25+0300\n"
"Last-Translator: Andrij Mizyk <andm1zyk@proton.me>\n"
"Language-Team: Ukrainian\n"
@@ -5926,12 +5926,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Право"
msgid "Add"
msgstr "Додати"
msgid "Add plate"
msgstr "Додати пластину"
msgid "Split to objects"
msgstr "Розділити на обʼєкти"
msgid "Add"
msgstr "Додати"
msgid "Auto orient all/selected objects"
msgstr "Автоорієнтація всі/вибрані обʼєкти"
@@ -5944,9 +5947,6 @@ msgstr "Впорядкувати всі обʼєкти"
msgid "Arrange objects on selected plates"
msgstr "Впорядкувати обʼєкти на вибраних пластинах"
msgid "Split to objects"
msgstr "Розділити на обʼєкти"
msgid "Assembly View"
msgstr "Вигляд збирання"
@@ -6002,6 +6002,9 @@ msgstr "Контур"
msgid "Wireframe"
msgstr "Каркас"
msgid "X-Ray"
msgstr ""
msgid "Realistic View"
msgstr "Реалістичний вигляд"
@@ -6554,9 +6557,6 @@ msgstr "Показувати контур навколо виділеного о
msgid "Preferences"
msgstr "Налаштування"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6565,6 +6565,9 @@ msgstr "Редагування"
msgid "View"
msgstr "Вигляд"
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr "Набір пресетів"
@@ -8411,9 +8414,6 @@ msgstr "Розгорнути бічну панель"
msgid "Collapse sidebar"
msgstr "Згорнути бічну панель"
msgid "Tab"
msgstr "Табуляції"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Завантаження файлу: %s"
@@ -9462,10 +9462,10 @@ msgstr "Керування кількома пристроями"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "З цією опцією ввімкненою, ви можете відправляти завдання на кілька пристроїв одночасно та керувати декількома пристроями."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9609,6 +9609,15 @@ msgstr "Перетягування правою кнопкою миші"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Задає дію, яку має виконувати перетягування правою кнопкою миші."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
# AI Translated
msgid "Clear my choice on..."
msgstr "Очистити мій вибір для..."
@@ -9723,13 +9732,40 @@ msgstr ""
"Обмежує частоту кадрів вікна перегляду, щоб зменшити навантаження на GPU та енергоспоживання.\n"
"Встановіть 0 для необмеженої частоти кадрів."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
# AI Translated
msgid "Show FPS overlay"
msgstr "Показувати накладку FPS"
# AI Translated
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Показує поточний FPS вікна перегляду у верхньому правому куті."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -10195,13 +10231,8 @@ msgstr "Публікувати 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Виберіть, які налаштування буде опубліковано у файлі 3MF"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "Енциклопедія з публікації 3MF"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "Відеопосібник з публікації 3MF"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10404,6 +10435,13 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "Показати подробиці"
# AI Translated
msgid "Hide details"
msgstr "Сховати подробиці"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -12338,68 +12376,39 @@ msgstr "Пакет конфігурації змінено в попереднь
msgid "Configuration package changed"
msgstr "Змінено пакет конфігурації"
msgid "Toolbar"
msgstr "Панель інструментів"
msgid "Objects list"
msgstr "Список обʼєктів"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Імпорт геометричних даних із файлів STL/STEP/3MF/OBJ/AMF"
msgid "Paste from clipboard"
msgstr "Вставити з буфера обміну"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Показати/приховати діалог налаштувань пристроїв 3Dconnexion"
msgid "Switch table page"
msgstr "Перемкнути сторінку таблиці"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Пробіл"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Показати список клавіш"
msgid "Global shortcuts"
msgstr "Глобальні ярлики"
msgid "Pan View"
msgstr "Панорамний вигляд"
msgid "Rotate View"
msgstr "Повернути вигляд"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Left mouse"
msgstr ""
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
# AI Translated
msgid "Middle mouse button"
msgstr "Середня кнопка миші"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Zoom View"
msgstr "Перегляд масштабу"
msgid "Switch to the next main tab"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Автоматично орієнтує вибрані обʼєкти або всі обʼєкти. Якщо вибрано обʼєкти, він просто орієнтує обрані. В іншому випадку він будеОрієнтувати всі обʼєкти на поточному проєкт."
msgid "Auto orients all objects on the active plate."
msgstr "Автоматично орієнтує всі обʼєкти на поточному диску."
msgid "Collapse/Expand the sidebar"
msgstr "Згорнути/розгорнути бічну панель"
msgid "Any arrow"
msgstr "Будь-яка стрілка"
msgid "Movement in camera space"
msgstr "Рух у просторі камери"
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Виберіть частину"
@@ -12410,127 +12419,29 @@ msgstr "Вибрати кілька обʼєктів"
msgid "Select objects by rectangle"
msgstr "Виділити обʼєкти прямокутником"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Стрілка вгору"
msgid "Move selection 10mm in positive Y direction"
msgstr "Перемістити виділення на 10 мм у позитивному напрямку Y"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Стрілка вниз"
msgid "Move selection 10mm in negative Y direction"
msgstr "Перемістити виділення на 10 мм у негативному напрямку Y"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Стрілка вліво"
msgid "Move selection 10mm in negative X direction"
msgstr "Перемістити виділення на 10 мм у негативному напрямку по осі X"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Стрілка вправо"
msgid "Move selection 10mm in positive X direction"
msgstr "Перемістити виділення на 10 мм у позитивному напрямку X"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "клавіатура 1-9: встановити філамент для обʼєкта/деталі"
msgid "Movement step set to 1mm"
msgstr "Крок переміщення встановлено на 1 мм"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "клавіатура 1-9: встановити філамент для обʼєкта/деталі"
msgid "Movement in camera space"
msgstr "Рух у просторі камери"
msgid "Camera view - Default"
msgstr "Вигляд камери - Типовий"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Вигляд камери - Верх"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "Вигляд камери - Низ"
msgid "Zoom View"
msgstr "Перегляд масштабу"
msgid "Camera view - Front"
msgstr "Вигляд камери - Перед"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "Вигляд камери - Зад"
msgid "Camera Angle - Left side"
msgstr "Кут камери – Лівий бік"
msgid "Camera Angle - Right side"
msgstr "Кут камери - Правий бік"
msgid "Select all objects"
msgstr "Вибрати всі обʼєкти"
msgid "Gizmo move"
msgstr "Рух Gizmo"
msgid "Gizmo rotate"
msgstr "Поворот Gizmo"
msgid "Gizmo scale"
msgstr "Шкала Gizmo"
msgid "Gizmo place face on bed"
msgstr "Покласти грань на стіл Gizmo"
msgid "Gizmo cut"
msgstr "Виріз Gizmo"
msgid "Gizmo mesh boolean"
msgstr "Булеві операції Gizmo"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo Малювання шорсткої поверхні"
msgid "Gizmo SLA support points"
msgstr "Точки підтримки Gizmo SL"
msgid "Gizmo FDM paint-on seam"
msgstr "Швид, що фарбується Gizmo FDM"
msgid "Gizmo text emboss/engrave"
msgstr "Текстове тиснення/гравіювання Gizmo"
msgid "Gizmo measure"
msgstr "виміряти Gizmo"
msgid "Gizmo assemble"
msgstr "Зібрати Gizmo"
msgid "Gizmo brim ears"
msgstr "Краєчки Gizmo"
msgid "Zoom in"
msgstr "Приблизити"
msgid "Zoom out"
msgstr "Віддалити"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "Перемкнути можливість друку для обʼєкта/частини"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "Переключення між Підготовка/Попередній перегляд"
msgid "Plater"
msgstr "Тарілка"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Переміщення: натисніть для переміщення на 1 мм"
@@ -12541,14 +12452,19 @@ msgstr "Підтримка/Фарбування: регулювання раді
msgid "Support/Color Painting: adjust section position"
msgstr "Підтримка/Фарбування: регулювання положення секцій"
msgid "Gizmo"
msgstr "Gizmo"
msgid "Objects list"
msgstr "Список обʼєктів"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Встановіть номер екструдера для обʼєктів та деталей"
msgid "Delete objects, parts, modifiers"
msgstr "Видалення обʼєктів, частин, модифікаторів"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Пробіл"
msgid "Select the object/part and press space to change the name"
msgstr "Виберіть обʼєкт/деталь і натисніть пробіл, щоб змінити назву"
@@ -12559,45 +12475,48 @@ msgstr "Клацання миші"
msgid "Select the object/part and mouse click to change the name"
msgstr "Виберіть обʼєкт/деталь і клацніть, щоб змінити назву"
msgid "Objects List"
msgstr "Список обʼєктів"
msgid "Vertical slider - Move active thumb Up"
msgstr "Вертикальний повзунок - рух активного великого пальця вгору"
msgid "Vertical slider - Move active thumb Down"
msgstr "Вертикальний повзунок - Перемістити активний палець вниз"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Горизонтальний повзунок - Перемістити активний палець вліво"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Горизонтальний повзунок - Перемістити активний палець праворуч"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Увімкнення/вимкнення одношарового режиму вертикального повзунка"
msgid "On/Off G-code window"
msgstr "Увімкнення/вимкнення вікна G-коду"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Переміщення повзунка в 5 разів швидше"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "Горизонтальний повзунок - Перемістити в початкове положення"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "Горизонтальний повзунок - Перемістити в останню позицію"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Примітка до випуску"
@@ -17717,9 +17636,8 @@ msgstr "Кроки підігріву"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Вставляє кілька команд попереднього нагріву (наприклад, M104.1). Корисно лише для Prusa XL. Для інших принтерів слід встановити значення 1."
# AI Translated
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-код, що записується на самому початку вихідного файлу, перед будь-яким іншим вмістом. Корисно для додавання метаданих, які прошивка принтера читає з перших рядків файлу (наприклад, орієнтовний час друку, витрата філаменту). Підтримує підстановки на кшталт {print_time_sec} та {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "Початковий G-код"
@@ -19307,13 +19225,37 @@ msgstr "Філамент, що використовується"
msgid "Total length of filament used in the print."
msgstr "Загальна довжина філаменту, використаної під час друку."
msgid "Print time (seconds)"
msgstr "Час друку (в секундах)"
msgid "Print time (total seconds)"
msgstr ""
# AI Translated
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Загальний орієнтовний час друку в секундах. Замінюється фактичним значенням під час постобробки."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "Довжина філаменту (в метрах)"
@@ -21216,6 +21158,9 @@ msgstr "Дійсний сеанс не виявлено. Продовжити в
msgid "Success!"
msgstr "Успішно!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "Ви впевнені, що вийшли?"
@@ -22197,13 +22142,6 @@ msgstr "Мережевий плагін Bambu потрібен для можли
msgid "Error: %s"
msgstr "Помилка: %s"
msgid "Show details"
msgstr "Показати подробиці"
# AI Translated
msgid "Hide details"
msgstr "Сховати подробиці"
msgid "Version to install:"
msgstr "Версія для встановлення:"
@@ -24841,6 +24779,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -24853,6 +24797,217 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Стрілка вліво"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Стрілка вправо"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Стрілка вгору"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Стрілка вниз"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Імпорт геометричних даних із файлів STL/STEP/3MF/OBJ/AMF"
msgid "Select all objects"
msgstr "Вибрати всі обʼєкти"
msgid "Paste from clipboard"
msgstr "Вставити з буфера обміну"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "Перемкнути можливість друку для обʼєкта/частини"
msgid "Move selection 10mm in negative X direction"
msgstr "Перемістити виділення на 10 мм у негативному напрямку по осі X"
msgid "Move selection 10mm in positive X direction"
msgstr "Перемістити виділення на 10 мм у позитивному напрямку X"
msgid "Move selection 10mm in positive Y direction"
msgstr "Перемістити виділення на 10 мм у позитивному напрямку Y"
msgid "Move selection 10mm in negative Y direction"
msgstr "Перемістити виділення на 10 мм у негативному напрямку Y"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Рух Gizmo"
msgid "Gizmo rotate"
msgstr "Поворот Gizmo"
msgid "Gizmo scale"
msgstr "Шкала Gizmo"
msgid "Gizmo place face on bed"
msgstr "Покласти грань на стіл Gizmo"
msgid "Gizmo cut"
msgstr "Виріз Gizmo"
msgid "Gizmo mesh boolean"
msgstr "Булеві операції Gizmo"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "Швид, що фарбується Gizmo FDM"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo Малювання шорсткої поверхні"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Текстове тиснення/гравіювання Gizmo"
msgid "Gizmo measure"
msgstr "виміряти Gizmo"
msgid "Gizmo assemble"
msgstr "Зібрати Gizmo"
msgid "Gizmo brim ears"
msgstr "Краєчки Gizmo"
msgid "Vertical slider - Move active thumb Up"
msgstr "Вертикальний повзунок - рух активного великого пальця вгору"
msgid "Vertical slider - Move active thumb Down"
msgstr "Вертикальний повзунок - Перемістити активний палець вниз"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Горизонтальний повзунок - Перемістити активний палець вліво"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Горизонтальний повзунок - Перемістити активний палець праворуч"
msgid "Horizontal slider - Move to start position"
msgstr "Горизонтальний повзунок - Перемістити в початкове положення"
msgid "Horizontal slider - Move to last position"
msgstr "Горизонтальний повзунок - Перемістити в останню позицію"
msgid "Camera view - Default"
msgstr "Вигляд камери - Типовий"
msgid "Camera view - Top"
msgstr "Вигляд камери - Верх"
msgid "Camera view - Bottom"
msgstr "Вигляд камери - Низ"
msgid "Camera view - Front"
msgstr "Вигляд камери - Перед"
msgid "Camera view - Behind"
msgstr "Вигляд камери - Зад"
msgid "Camera Angle - Left side"
msgstr "Кут камери – Лівий бік"
msgid "Camera Angle - Right side"
msgstr "Кут камери - Правий бік"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Приблизити"
msgid "Zoom out"
msgstr "Віддалити"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Показати/приховати діалог налаштувань пристроїв 3Dconnexion"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "Увімкнення/вимкнення вікна G-коду"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Увімкнення/вимкнення одношарового режиму вертикального повзунка"
msgid "Switch between Prepare/Preview"
msgstr "Переключення між Підготовка/Попередній перегляд"
msgid "Collapse/Expand the sidebar"
msgstr "Згорнути/розгорнути бічну панель"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Показати список клавіш"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -25158,6 +25313,65 @@ msgstr ""
"Уникнення деформації\n"
"Чи знаєте ви, що при друку матеріалами, схильними до деформації, такими як ABS, відповідне підвищення температури столу може зменшити ймовірність деформації?"
#~ msgid "Tab"
#~ msgstr "Табуляції"
# AI Translated
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Показує поточний FPS вікна перегляду у верхньому правому куті."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "Енциклопедія з публікації 3MF"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "Відеопосібник з публікації 3MF"
#~ msgid "Toolbar"
#~ msgstr "Панель інструментів"
#~ msgid "Switch table page"
#~ msgstr "Перемкнути сторінку таблиці"
#~ msgid "Global shortcuts"
#~ msgstr "Глобальні ярлики"
# AI Translated
#~ msgid "Middle mouse button"
#~ msgstr "Середня кнопка миші"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Автоматично орієнтує вибрані обʼєкти або всі обʼєкти. Якщо вибрано обʼєкти, він просто орієнтує обрані. В іншому випадку він будеОрієнтувати всі обʼєкти на поточному проєкт."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Автоматично орієнтує всі обʼєкти на поточному диску."
#~ msgid "Any arrow"
#~ msgstr "Будь-яка стрілка"
#~ msgid "Gizmo SLA support points"
#~ msgstr "Точки підтримки Gizmo SL"
#~ msgid "Plater"
#~ msgstr "Тарілка"
#~ msgid "Gizmo"
#~ msgstr "Gizmo"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Видалення обʼєктів, частин, модифікаторів"
#~ msgid "Objects List"
#~ msgstr "Список обʼєктів"
# AI Translated
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-код, що записується на самому початку вихідного файлу, перед будь-яким іншим вмістом. Корисно для додавання метаданих, які прошивка принтера читає з перших рядків файлу (наприклад, орієнтовний час друку, витрата філаменту). Підтримує підстановки на кшталт {print_time_sec} та {used_filament_length}."
#~ msgid "Print time (seconds)"
#~ msgstr "Час друку (в секундах)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "Відкрити панель швидких дій"
+456 -242
View File
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: 2025-10-02 17:43+0700\n"
"Last-Translator: \n"
"Language-Team: hainguyen.ts13@gmail.com\n"
@@ -6253,12 +6253,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "Phải"
msgid "Add"
msgstr "Thêm"
msgid "Add plate"
msgstr "Thêm plate"
msgid "Split to objects"
msgstr "Tách thành vật thể"
msgid "Add"
msgstr "Thêm"
msgid "Auto orient all/selected objects"
msgstr "Tự động định hướng tất cả/các vật thể đã chọn"
@@ -6271,9 +6274,6 @@ msgstr "Sắp xếp tất cả vật thể"
msgid "Arrange objects on selected plates"
msgstr "Sắp xếp vật thể trên các plate đã chọn"
msgid "Split to objects"
msgstr "Tách thành vật thể"
msgid "Assembly View"
msgstr "Chế độ xem lắp ráp"
@@ -6336,6 +6336,9 @@ msgstr "Đường viền"
msgid "Wireframe"
msgstr "Khung dây"
msgid "X-Ray"
msgstr ""
# AI Translated
msgid "Realistic View"
msgstr "Chế độ xem thực tế"
@@ -6904,9 +6907,6 @@ msgstr "Hiện đường viền xung quanh vật thể đã chọn trong cảnh
msgid "Preferences"
msgstr "Tùy chọn"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6915,6 +6915,9 @@ msgstr "Chỉnh sửa"
msgid "View"
msgstr "Xem"
msgid "Open Speed Dial"
msgstr ""
# AI Translated
msgid "Preset Bundle"
msgstr "Gói cài đặt sẵn"
@@ -8820,10 +8823,6 @@ msgstr "Mở rộng thanh bên"
msgid "Collapse sidebar"
msgstr "Thu gọn thanh bên"
# AI Translated
msgid "Tab"
msgstr "Tab"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "Đang tải file: %s"
@@ -9923,10 +9922,10 @@ msgstr "Quản lý nhiều thiết bị"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "Với tùy chọn này được bật, bạn có thể gửi tác vụ đến nhiều thiết bị cùng lúc và quản lý nhiều thiết bị."
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -10074,6 +10073,15 @@ msgstr "Kéo chuột phải"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "Đặt hành động sẽ thực hiện khi kéo nút chuột phải."
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
# AI Translated
msgid "Clear my choice on..."
msgstr "Xóa lựa chọn của tôi về..."
@@ -10203,13 +10211,40 @@ msgstr ""
"Giới hạn tốc độ khung hình của khung nhìn để giảm tải GPU và mức tiêu thụ điện.\n"
"Đặt 0 để không giới hạn tốc độ khung hình."
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
# AI Translated
msgid "Show FPS overlay"
msgstr "Hiện lớp phủ FPS"
# AI Translated
msgid "Displays current viewport FPS in the top-right corner."
msgstr "Hiển thị FPS hiện tại của khung nhìn ở góc trên bên phải."
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -10706,13 +10741,8 @@ msgstr "Xuất bản 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "Chọn những cài đặt sẽ được xuất bản trong tệp 3MF"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "Wiki về Xuất bản 3MF"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "Hướng dẫn video về Xuất bản 3MF"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10915,6 +10945,14 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
# AI Translated
msgid "Show details"
msgstr "Hiện chi tiết"
# AI Translated
msgid "Hide details"
msgstr "Ẩn chi tiết"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -12886,41 +12924,6 @@ msgstr "Gói cấu hình đã được thay đổi trong hướng dẫn cấu h
msgid "Configuration package changed"
msgstr "Gói cấu hình đã thay đổi"
msgid "Toolbar"
msgstr "Thanh công cụ"
msgid "Objects list"
msgstr "Danh sách đối tượng"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Nhập dữ liệu hình học từ file STL/STEP/3MF/OBJ/AMF"
msgid "Paste from clipboard"
msgstr "Dán từ clipboard"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Hiển thị/Ẩn hộp thoại cài đặt thiết bị 3Dconnexion"
msgid "Switch table page"
msgstr "Chuyển trang bảng"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Space"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Hiển thị danh sách phím tắt"
msgid "Global shortcuts"
msgstr "Phím tắt toàn cục"
# AI Translated
msgid "Pan View"
msgstr "Di chuyển khung nhìn"
@@ -12929,28 +12932,33 @@ msgstr "Di chuyển khung nhìn"
msgid "Rotate View"
msgstr "Xoay khung nhìn"
# AI Translated
msgid "Middle mouse button"
msgstr "Nút chuột giữa"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Left mouse"
msgstr ""
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
# AI Translated
msgid "Zoom View"
msgstr "Thu phóng khung nhìn"
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "Tự động định hướng đối tượng đã chọn hoặc tất cả đối tượng. Nếu có đối tượng đã chọn, nó chỉ định hướng những đối tượng đã chọn. Nếu không, nó sẽ định hướng tất cả đối tượng trong dự án hiện tại."
msgid "Switch to the next main tab"
msgstr ""
msgid "Auto orients all objects on the active plate."
msgstr "Tự động định hướng tất cả đối tượng trên bản đang hoạt động."
msgid "Collapse/Expand the sidebar"
msgstr "Thu gọn/Mở rộng thanh bên"
msgid "Any arrow"
msgstr "Phím mũi tên bất kỳ"
msgid "Movement in camera space"
msgstr "Di chuyển trong không gian camera"
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "Chọn một phần"
@@ -12961,128 +12969,30 @@ msgstr "Chọn nhiều đối tượng"
msgid "Select objects by rectangle"
msgstr "Chọn đối tượng bằng hình chữ nhật"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Mũi tên lên"
msgid "Move selection 10mm in positive Y direction"
msgstr "Di chuyển lựa chọn 10 mm theo hướng Y dương"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Mũi tên xuống"
msgid "Move selection 10mm in negative Y direction"
msgstr "Di chuyển lựa chọn 10 mm theo hướng Y âm"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Mũi tên trái"
msgid "Move selection 10mm in negative X direction"
msgstr "Di chuyển lựa chọn 10 mm theo hướng X âm"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Mũi tên phải"
msgid "Move selection 10mm in positive X direction"
msgstr "Di chuyển lựa chọn 10 mm theo hướng X dương"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "bàn phím 1-9: đặt filament cho đối tượng/phần"
msgid "Movement step set to 1mm"
msgstr "Bước di chuyển được đặt thành 1 mm"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "bàn phím 1-9: đặt filament cho đối tượng/phần"
msgid "Movement in camera space"
msgstr "Di chuyển trong không gian camera"
msgid "Camera view - Default"
msgstr "Chế độ xem camera - Mặc định"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "Chế độ xem camera - Trên"
msgid "Camera view - Bottom"
msgstr "Chế độ xem camera - Dưới"
msgid "Camera view - Front"
msgstr "Chế độ xem camera - Trước"
msgid "Camera view - Behind"
msgstr "Chế độ xem camera - Sau"
msgid "Camera Angle - Left side"
msgstr "Góc camera - Bên trái"
msgid "Camera Angle - Right side"
msgstr "Góc camera - Bên phải"
msgid "Select all objects"
msgstr "Chọn tất cả đối tượng"
msgid "Gizmo move"
msgstr "Gizmo di chuyển"
msgid "Gizmo rotate"
msgstr "Gizmo xoay"
msgid "Gizmo scale"
msgstr "Gizmo tỷ lệ"
msgid "Gizmo place face on bed"
msgstr "Gizmo đặt mặt lên bàn"
msgid "Gizmo cut"
msgstr "Gizmo cắt"
msgid "Right mouse"
msgstr ""
# AI Translated
msgid "Gizmo mesh boolean"
msgstr "Gizmo boolean lưới"
msgid "Zoom View"
msgstr "Thu phóng khung nhìn"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM tô fuzzy skin"
msgid "Painting"
msgstr ""
msgid "Gizmo SLA support points"
msgstr "Gizmo điểm support SLA"
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo FDM tô seam"
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo văn bản emboss/khắc"
msgid "Gizmo measure"
msgstr "Gizmo đo"
msgid "Gizmo assemble"
msgstr "Gizmo lắp ráp"
msgid "Gizmo brim ears"
msgstr "Gizmo tai viền"
msgid "Zoom in"
msgstr "Phóng to"
msgid "Zoom out"
msgstr "Thu nhỏ"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "Bật/tắt khả năng in cho vật thể/phần"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "Chuyển đổi giữa Chuẩn bị/Xem trước"
msgid "Plater"
msgstr "Bàn in"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "Di chuyển: nhấn để bám theo 1mm"
@@ -13093,15 +13003,19 @@ msgstr "Tô support/màu: điều chỉnh bán kính bút"
msgid "Support/Color Painting: adjust section position"
msgstr "Tô support/màu: điều chỉnh vị trí phần"
# AI Translated
msgid "Gizmo"
msgstr "Gizmo"
msgid "Objects list"
msgstr "Danh sách đối tượng"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "Đặt số extruder cho đối tượng và phần"
msgid "Delete objects, parts, modifiers"
msgstr "Xóa đối tượng, phần, modifier"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Space"
msgid "Select the object/part and press space to change the name"
msgstr "Chọn đối tượng/phần và nhấn phím cách để thay đổi tên"
@@ -13112,45 +13026,48 @@ msgstr "Nhấp chuột"
msgid "Select the object/part and mouse click to change the name"
msgstr "Chọn đối tượng/phần và nhấp chuột để thay đổi tên"
msgid "Objects List"
msgstr "Danh sách đối tượng"
msgid "Vertical slider - Move active thumb Up"
msgstr "Thanh trượt dọc - Di chuyển nút hoạt động lên"
msgid "Vertical slider - Move active thumb Down"
msgstr "Thanh trượt dọc - Di chuyển nút hoạt động xuống"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Thanh trượt ngang - Di chuyển nút hoạt động sang trái"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Thanh trượt ngang - Di chuyển nút hoạt động sang phải"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Bật/Tắt chế độ một lớp của thanh trượt dọc"
msgid "On/Off G-code window"
msgstr "Bật/Tắt cửa sổ G-code"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "Di chuyển thanh trượt nhanh hơn 5 lần"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "Thanh trượt ngang - Di chuyển đến vị trí bắt đầu"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "Thanh trượt ngang - Di chuyển đến vị trí cuối cùng"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "Ghi chú phát hành"
@@ -18243,9 +18160,8 @@ msgstr "Bước làm nóng trước"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "Chèn nhiều lệnh làm nóng trước (ví dụ M104.1). Chỉ hữu ích cho Prusa XL. Đối với các máy in khác, vui lòng đặt nó thành 1."
# AI Translated
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-code được ghi ở ngay đầu file xuất, trước mọi nội dung khác. Hữu ích để thêm siêu dữ liệu mà firmware máy in đọc từ những dòng đầu tiên của file (ví dụ thời gian in ước tính, lượng filament sử dụng). Hỗ trợ các trình giữ chỗ như {print_time_sec} và {used_filament_length}."
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "G-code bắt đầu"
@@ -19832,14 +19748,37 @@ msgstr "Filament đã dùng"
msgid "Total length of filament used in the print."
msgstr "Tổng độ dài filament dùng trong bản in."
# AI Translated
msgid "Print time (seconds)"
msgstr "Thời gian in (giây)"
msgid "Print time (total seconds)"
msgstr ""
# AI Translated
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "Tổng thời gian in ước tính tính bằng giây. Được thay bằng giá trị thực tế trong quá trình hậu xử lý."
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
# AI Translated
msgid "Filament length (meters)"
msgstr "Độ dài filament (mét)"
@@ -21758,6 +21697,9 @@ msgstr "Không phát hiện phiên hợp lệ. Tiếp tục đăng nhập vào 3
msgid "Success!"
msgstr "Thành công!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "Bạn có chắc chắn đăng xuất không?"
@@ -22871,14 +22813,6 @@ msgstr "Bambu Network Plug-in là bắt buộc cho các tính năng cloud, phát
msgid "Error: %s"
msgstr "Lỗi: %s"
# AI Translated
msgid "Show details"
msgstr "Hiện chi tiết"
# AI Translated
msgid "Hide details"
msgstr "Ẩn chi tiết"
# AI Translated
msgid "Version to install:"
msgstr "Phiên bản sẽ cài đặt:"
@@ -25562,6 +25496,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -25574,6 +25514,218 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Mũi tên trái"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Mũi tên phải"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Mũi tên lên"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Mũi tên xuống"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Nhập dữ liệu hình học từ file STL/STEP/3MF/OBJ/AMF"
msgid "Select all objects"
msgstr "Chọn tất cả đối tượng"
msgid "Paste from clipboard"
msgstr "Dán từ clipboard"
# AI Translated
msgid "Toggle printable for object/part"
msgstr "Bật/tắt khả năng in cho vật thể/phần"
msgid "Move selection 10mm in negative X direction"
msgstr "Di chuyển lựa chọn 10 mm theo hướng X âm"
msgid "Move selection 10mm in positive X direction"
msgstr "Di chuyển lựa chọn 10 mm theo hướng X dương"
msgid "Move selection 10mm in positive Y direction"
msgstr "Di chuyển lựa chọn 10 mm theo hướng Y dương"
msgid "Move selection 10mm in negative Y direction"
msgstr "Di chuyển lựa chọn 10 mm theo hướng Y âm"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "Gizmo di chuyển"
msgid "Gizmo rotate"
msgstr "Gizmo xoay"
msgid "Gizmo scale"
msgstr "Gizmo tỷ lệ"
msgid "Gizmo place face on bed"
msgstr "Gizmo đặt mặt lên bàn"
msgid "Gizmo cut"
msgstr "Gizmo cắt"
# AI Translated
msgid "Gizmo mesh boolean"
msgstr "Gizmo boolean lưới"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "Gizmo FDM tô seam"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM tô fuzzy skin"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "Gizmo văn bản emboss/khắc"
msgid "Gizmo measure"
msgstr "Gizmo đo"
msgid "Gizmo assemble"
msgstr "Gizmo lắp ráp"
msgid "Gizmo brim ears"
msgstr "Gizmo tai viền"
msgid "Vertical slider - Move active thumb Up"
msgstr "Thanh trượt dọc - Di chuyển nút hoạt động lên"
msgid "Vertical slider - Move active thumb Down"
msgstr "Thanh trượt dọc - Di chuyển nút hoạt động xuống"
msgid "Horizontal slider - Move active thumb Left"
msgstr "Thanh trượt ngang - Di chuyển nút hoạt động sang trái"
msgid "Horizontal slider - Move active thumb Right"
msgstr "Thanh trượt ngang - Di chuyển nút hoạt động sang phải"
msgid "Horizontal slider - Move to start position"
msgstr "Thanh trượt ngang - Di chuyển đến vị trí bắt đầu"
msgid "Horizontal slider - Move to last position"
msgstr "Thanh trượt ngang - Di chuyển đến vị trí cuối cùng"
msgid "Camera view - Default"
msgstr "Chế độ xem camera - Mặc định"
msgid "Camera view - Top"
msgstr "Chế độ xem camera - Trên"
msgid "Camera view - Bottom"
msgstr "Chế độ xem camera - Dưới"
msgid "Camera view - Front"
msgstr "Chế độ xem camera - Trước"
msgid "Camera view - Behind"
msgstr "Chế độ xem camera - Sau"
msgid "Camera Angle - Left side"
msgstr "Góc camera - Bên trái"
msgid "Camera Angle - Right side"
msgstr "Góc camera - Bên phải"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "Phóng to"
msgid "Zoom out"
msgstr "Thu nhỏ"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "Hiển thị/Ẩn hộp thoại cài đặt thiết bị 3Dconnexion"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "Bật/Tắt cửa sổ G-code"
msgid "On/Off one layer mode of the vertical slider"
msgstr "Bật/Tắt chế độ một lớp của thanh trượt dọc"
msgid "Switch between Prepare/Preview"
msgstr "Chuyển đổi giữa Chuẩn bị/Xem trước"
msgid "Collapse/Expand the sidebar"
msgstr "Thu gọn/Mở rộng thanh bên"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "Hiển thị danh sách phím tắt"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -25875,6 +26027,68 @@ 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?"
# AI Translated
#~ msgid "Tab"
#~ msgstr "Tab"
# AI Translated
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "Hiển thị FPS hiện tại của khung nhìn ở góc trên bên phải."
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "Wiki về Xuất bản 3MF"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "Hướng dẫn video về Xuất bản 3MF"
#~ msgid "Toolbar"
#~ msgstr "Thanh công cụ"
#~ msgid "Switch table page"
#~ msgstr "Chuyển trang bảng"
#~ msgid "Global shortcuts"
#~ msgstr "Phím tắt toàn cục"
# AI Translated
#~ msgid "Middle mouse button"
#~ msgstr "Nút chuột giữa"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "Tự động định hướng đối tượng đã chọn hoặc tất cả đối tượng. Nếu có đối tượng đã chọn, nó chỉ định hướng những đối tượng đã chọn. Nếu không, nó sẽ định hướng tất cả đối tượng trong dự án hiện tại."
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "Tự động định hướng tất cả đối tượng trên bản đang hoạt động."
#~ msgid "Any arrow"
#~ msgstr "Phím mũi tên bất kỳ"
#~ msgid "Gizmo SLA support points"
#~ msgstr "Gizmo điểm support SLA"
#~ msgid "Plater"
#~ msgstr "Bàn in"
# AI Translated
#~ msgid "Gizmo"
#~ msgstr "Gizmo"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "Xóa đối tượng, phần, modifier"
#~ msgid "Objects List"
#~ msgstr "Danh sách đối tượng"
# AI Translated
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-code được ghi ở ngay đầu file xuất, trước mọi nội dung khác. Hữu ích để thêm siêu dữ liệu mà firmware máy in đọc từ những dòng đầu tiên của file (ví dụ thời gian in ước tính, lượng filament sử dụng). Hỗ trợ các trình giữ chỗ như {print_time_sec} và {used_filament_length}."
# AI Translated
#~ msgid "Print time (seconds)"
#~ msgstr "Thời gian in (giây)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "Mở vòng quay thao tác nhanh"
+453 -239
View File
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Slic3rPE\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: 2026-06-11 12:37-0300\n"
"Last-Translator: Handle <mail@bysb.net>\n"
"Language-Team: \n"
@@ -5757,12 +5757,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "右"
msgid "Add"
msgstr "添加"
msgid "Add plate"
msgstr "添加新盘"
msgid "Split to objects"
msgstr "拆分为对象"
msgid "Add"
msgstr "添加"
msgid "Auto orient all/selected objects"
msgstr "自动定位所有/选定的对象"
@@ -5775,9 +5778,6 @@ msgstr "全局整理"
msgid "Arrange objects on selected plates"
msgstr "单盘整理"
msgid "Split to objects"
msgstr "拆分为对象"
msgid "Assembly View"
msgstr "装配体视图"
@@ -5833,6 +5833,9 @@ msgstr "轮廓线"
msgid "Wireframe"
msgstr "线框"
msgid "X-Ray"
msgstr ""
msgid "Realistic View"
msgstr "写实渲染"
@@ -6372,9 +6375,6 @@ msgstr "在3D场景中显示选中对象的轮廓"
msgid "Preferences"
msgstr "偏好设置"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6383,6 +6383,9 @@ msgstr "编辑"
msgid "View"
msgstr "视图"
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr "预设包"
@@ -8147,9 +8150,6 @@ msgstr "展开侧边栏"
msgid "Collapse sidebar"
msgstr "折叠边栏"
msgid "Tab"
msgstr "标签"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "加载文件:%s"
@@ -9160,10 +9160,10 @@ msgstr "多设备管理"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "启用此选项后,您可以同时向多个设备发送任务并管理多个设备。"
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9295,6 +9295,15 @@ msgstr "鼠标右键拖动"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "设置拖动鼠标右键时应执行的操作。"
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "清除我的选择..."
@@ -9405,11 +9414,39 @@ msgstr ""
"限制视口帧率以降低 GPU 负载和功耗。\n"
"设置为 0 表示不限制帧率。"
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Show FPS overlay"
msgstr "显示 FPS 叠加层"
msgid "Displays current viewport FPS in the top-right corner."
msgstr "在右上角显示当前视口的 FPS。"
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -9869,13 +9906,8 @@ msgstr "发布 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "选择要在 3MF 文件中发布的设置"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "发布 3MF Wiki"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "发布 3MF 视频指南"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10077,6 +10109,13 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "显示详情"
# AI Translated
msgid "Hide details"
msgstr "隐藏详情"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -11876,70 +11915,39 @@ msgstr "参数配置包在之前的配置向导中发生了变更"
msgid "Configuration package changed"
msgstr "参数配置包发生变更"
msgid "Toolbar"
msgstr "工具栏"
msgid "Objects list"
msgstr "对象列表"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "从STL/STEP/3MF/OBJ/AMF文件中导入几何数据"
msgid "Paste from clipboard"
msgstr "从剪切板粘贴"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "显示/隐藏 3Dconnexion设备的设置对话框"
msgid "Switch table page"
msgstr "切换标签页"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Space"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "显示键盘快捷键列表"
msgid "Global shortcuts"
msgstr "全局快捷键"
msgid "Pan View"
msgstr "移动视角"
msgid "Rotate View"
msgstr "旋转视角"
msgid "Middle mouse button"
msgstr "鼠标中键"
msgid "Zoom View"
msgstr "缩放视角"
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
"自动调整选定零件/所有零件的方向,\n"
"有选定零件时调整选定零件的朝向,\n"
"没有选择零件时调整当项目所有零件的朝向"
msgid "Auto orients all objects on the active plate."
msgstr "自动调整活动盘上的所有物体的方向。"
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr "收起/展开 侧边栏"
msgid "Left mouse"
msgstr ""
msgid "Any arrow"
msgstr "任意箭头"
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Movement in camera space"
msgstr "沿相机视角移动对象"
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch to the next main tab"
msgstr ""
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "选择单个零件"
@@ -11950,130 +11958,29 @@ msgstr "选择多个对象"
msgid "Select objects by rectangle"
msgstr "框选多个零件"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "↑"
# AI Translated
msgid "Move selection 10mm in positive Y direction"
msgstr "将所选项沿 Y 轴正方向移动 10mm"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "↓"
# AI Translated
msgid "Move selection 10mm in negative Y direction"
msgstr "将所选项沿 Y 轴负方向移动 10mm"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "←"
# AI Translated
msgid "Move selection 10mm in negative X direction"
msgstr "将所选项沿 X 轴负方向移动 10mm"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "→"
# AI Translated
msgid "Move selection 10mm in positive X direction"
msgstr "将所选项沿 X 轴正方向移动 10mm"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "按键1-9:设置对象/零件的耗材丝"
msgid "Movement step set to 1mm"
msgstr "沿X、Y轴以1mm为步进移动对象"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "按键1-9:设置对象/零件的耗材丝"
msgid "Movement in camera space"
msgstr "沿相机视角移动对象"
msgid "Camera view - Default"
msgstr "摄像机视角 - 默认"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "摄像机视角 - 顶部"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "摄像机视角 - 底部"
msgid "Zoom View"
msgstr "缩放视角"
msgid "Camera view - Front"
msgstr "摄像机视角 - 正面"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "摄像机视角 - 后面"
msgid "Camera Angle - Left side"
msgstr "摄像机视角 - 左面"
msgid "Camera Angle - Right side"
msgstr "摄像机视角 - 右面"
msgid "Select all objects"
msgstr "选择所有对象"
msgid "Gizmo move"
msgstr "线框移动"
msgid "Gizmo rotate"
msgstr "旋转物件"
msgid "Gizmo scale"
msgstr "线框缩放"
msgid "Gizmo place face on bed"
msgstr "选择底面"
msgid "Gizmo cut"
msgstr "剪切物件"
msgid "Gizmo mesh boolean"
msgstr "线框网格布尔操作"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM手绘绒毛表面"
msgid "Gizmo SLA support points"
msgstr "SLA支撑点"
msgid "Gizmo FDM paint-on seam"
msgstr "FDM涂装接缝"
msgid "Gizmo text emboss/engrave"
msgstr "线框文本浮雕/雕刻"
msgid "Gizmo measure"
msgstr "线框测量"
msgid "Gizmo assemble"
msgstr "线框组合"
msgid "Gizmo brim ears"
msgstr "线框耳状帽檐"
msgid "Zoom in"
msgstr "放大"
msgid "Zoom out"
msgstr "缩小"
msgid "Toggle printable for object/part"
msgstr "切换对象/零件的可打印状态"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "准备/预览之间的切换"
msgid "Plater"
msgstr "准备"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "移动:以1mm为步进移动"
@@ -12084,14 +11991,19 @@ msgstr "支撑/颜色绘制:调节画笔半径"
msgid "Support/Color Painting: adjust section position"
msgstr "支撑/色彩绘制:调节剖面位置"
msgid "Gizmo"
msgstr "小工具"
msgid "Objects list"
msgstr "对象列表"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "设置对象、零件使用的挤出机编号"
msgid "Delete objects, parts, modifiers"
msgstr "删除对象、零件、修改器"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Space"
msgid "Select the object/part and press space to change the name"
msgstr "选中对象、零件,按空格可修改名称"
@@ -12102,45 +12014,48 @@ msgstr "鼠标点击"
msgid "Select the object/part and mouse click to change the name"
msgstr "选中对象、零件,双击零件名可修改名称"
msgid "Objects List"
msgstr "对象列表"
msgid "Vertical slider - Move active thumb Up"
msgstr "垂直滑动条 - 向上移动一层"
msgid "Vertical slider - Move active thumb Down"
msgstr "垂直滑动条 - 向下移动一层"
msgid "Horizontal slider - Move active thumb Left"
msgstr "水平滑动条 - 向左移动一步"
msgid "Horizontal slider - Move active thumb Right"
msgstr "水平滑动条 - 向右移动一步"
msgid "On/Off one layer mode of the vertical slider"
msgstr "开启/关闭垂直滑动条的单层模式"
msgid "On/Off G-code window"
msgstr "开启/关闭G-code窗口"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "5倍速移动滑动条"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "水平滑块 - 移动到起始位置"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "水平滑块 - 移动到末尾位置"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "更新说明"
@@ -16971,8 +16886,8 @@ msgstr "预热步骤"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "插入多个预热命令(例如 M104.1)。仅适用于 Prusa XL。对于其他打印机,请将其设置为 1。"
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-code 写在输出文件的最顶部,位于任何其他内容之前。对于添加打印机固件从文件第一行读取的元数据(例如估计打印时间、耗材使用情况)很有用。支持 {print_time_sec} 和 {used_filament_length} 等占位符。"
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "起始G-code"
@@ -18504,12 +18419,36 @@ msgstr "已用耗材"
msgid "Total length of filament used in the print."
msgstr "打印中使用的耗材的总长度。"
msgid "Print time (seconds)"
msgstr "打印耗时(秒)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "预计总打印耗时(以秒为单位)。在后处理时将替换为实际值。"
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "耗材长度(米)"
@@ -20342,6 +20281,9 @@ msgstr "未检测到有效会话。是否继续登录 3DPrinterOS"
msgid "Success!"
msgstr "成功!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "您确定要登出吗?"
@@ -21339,13 +21281,6 @@ msgstr "Bambu 网络插件用于云功能、打印机发现和远程打印。"
msgid "Error: %s"
msgstr "错误:%s"
msgid "Show details"
msgstr "显示详情"
# AI Translated
msgid "Hide details"
msgstr "隐藏详情"
msgid "Version to install:"
msgstr "将安装的版本:"
@@ -23976,6 +23911,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -23988,6 +23929,220 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "←"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "→"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "↑"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "↓"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "从STL/STEP/3MF/OBJ/AMF文件中导入几何数据"
msgid "Select all objects"
msgstr "选择所有对象"
msgid "Paste from clipboard"
msgstr "从剪切板粘贴"
msgid "Toggle printable for object/part"
msgstr "切换对象/零件的可打印状态"
# AI Translated
msgid "Move selection 10mm in negative X direction"
msgstr "将所选项沿 X 轴负方向移动 10mm"
# AI Translated
msgid "Move selection 10mm in positive X direction"
msgstr "将所选项沿 X 轴正方向移动 10mm"
# AI Translated
msgid "Move selection 10mm in positive Y direction"
msgstr "将所选项沿 Y 轴正方向移动 10mm"
# AI Translated
msgid "Move selection 10mm in negative Y direction"
msgstr "将所选项沿 Y 轴负方向移动 10mm"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "线框移动"
msgid "Gizmo rotate"
msgstr "旋转物件"
msgid "Gizmo scale"
msgstr "线框缩放"
msgid "Gizmo place face on bed"
msgstr "选择底面"
msgid "Gizmo cut"
msgstr "剪切物件"
msgid "Gizmo mesh boolean"
msgstr "线框网格布尔操作"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "FDM涂装接缝"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM手绘绒毛表面"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "线框文本浮雕/雕刻"
msgid "Gizmo measure"
msgstr "线框测量"
msgid "Gizmo assemble"
msgstr "线框组合"
msgid "Gizmo brim ears"
msgstr "线框耳状帽檐"
msgid "Vertical slider - Move active thumb Up"
msgstr "垂直滑动条 - 向上移动一层"
msgid "Vertical slider - Move active thumb Down"
msgstr "垂直滑动条 - 向下移动一层"
msgid "Horizontal slider - Move active thumb Left"
msgstr "水平滑动条 - 向左移动一步"
msgid "Horizontal slider - Move active thumb Right"
msgstr "水平滑动条 - 向右移动一步"
msgid "Horizontal slider - Move to start position"
msgstr "水平滑块 - 移动到起始位置"
msgid "Horizontal slider - Move to last position"
msgstr "水平滑块 - 移动到末尾位置"
msgid "Camera view - Default"
msgstr "摄像机视角 - 默认"
msgid "Camera view - Top"
msgstr "摄像机视角 - 顶部"
msgid "Camera view - Bottom"
msgstr "摄像机视角 - 底部"
msgid "Camera view - Front"
msgstr "摄像机视角 - 正面"
msgid "Camera view - Behind"
msgstr "摄像机视角 - 后面"
msgid "Camera Angle - Left side"
msgstr "摄像机视角 - 左面"
msgid "Camera Angle - Right side"
msgstr "摄像机视角 - 右面"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "放大"
msgid "Zoom out"
msgstr "缩小"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "显示/隐藏 3Dconnexion设备的设置对话框"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "开启/关闭G-code窗口"
msgid "On/Off one layer mode of the vertical slider"
msgstr "开启/关闭垂直滑动条的单层模式"
msgid "Switch between Prepare/Preview"
msgstr "准备/预览之间的切换"
msgid "Collapse/Expand the sidebar"
msgstr "收起/展开 侧边栏"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "显示键盘快捷键列表"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -24288,6 +24443,65 @@ msgstr ""
"避免翘曲\n"
"您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。"
#~ msgid "Tab"
#~ msgstr "标签"
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "在右上角显示当前视口的 FPS。"
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "发布 3MF Wiki"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "发布 3MF 视频指南"
#~ msgid "Toolbar"
#~ msgstr "工具栏"
#~ msgid "Switch table page"
#~ msgstr "切换标签页"
#~ msgid "Global shortcuts"
#~ msgstr "全局快捷键"
#~ msgid "Middle mouse button"
#~ msgstr "鼠标中键"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr ""
#~ "自动调整选定零件/所有零件的方向,\n"
#~ "有选定零件时调整选定零件的朝向,\n"
#~ "没有选择零件时调整当项目所有零件的朝向"
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "自动调整活动盘上的所有物体的方向。"
#~ msgid "Any arrow"
#~ msgstr "任意箭头"
#~ msgid "Gizmo SLA support points"
#~ msgstr "SLA支撑点"
#~ msgid "Plater"
#~ msgstr "准备"
#~ msgid "Gizmo"
#~ msgstr "小工具"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "删除对象、零件、修改器"
#~ msgid "Objects List"
#~ msgstr "对象列表"
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-code 写在输出文件的最顶部,位于任何其他内容之前。对于添加打印机固件从文件第一行读取的元数据(例如估计打印时间、耗材使用情况)很有用。支持 {print_time_sec} 和 {used_filament_length} 等占位符。"
#~ msgid "Print time (seconds)"
#~ msgstr "打印耗时(秒)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "打开快捷操作盘"
+449 -235
View File
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-09-18 15:50+0800\n"
"POT-Creation-Date: 2026-09-22 17:02+0800\n"
"PO-Revision-Date: 2025-11-28 13:48-0600\n"
"Last-Translator: tntchn <15895303+tntchn@users.noreply.github.com>\n"
"Language-Team: \n"
@@ -5886,12 +5886,15 @@ msgctxt "Camera View"
msgid "Right"
msgstr "右"
msgid "Add"
msgstr "新增"
msgid "Add plate"
msgstr "新增列印板"
msgid "Split to objects"
msgstr "拆分為物件"
msgid "Add"
msgstr "新增"
msgid "Auto orient all/selected objects"
msgstr "自動旋轉所有/選取物件的方向"
@@ -5904,9 +5907,6 @@ msgstr "全域整理"
msgid "Arrange objects on selected plates"
msgstr "在選定的列印板上排列物件"
msgid "Split to objects"
msgstr "拆分為物件"
msgid "Assembly View"
msgstr "組裝視角"
@@ -5962,6 +5962,9 @@ msgstr "輪廓線"
msgid "Wireframe"
msgstr "線框"
msgid "X-Ray"
msgstr ""
msgid "Realistic View"
msgstr "擬真檢視"
@@ -6502,9 +6505,6 @@ msgstr "在 3D 場景中顯示選定物件的輪廓"
msgid "Preferences"
msgstr "偏好設定"
msgid "Open speed dial..."
msgstr ""
# AI Translated
msgctxt "Menu"
msgid "Edit"
@@ -6513,6 +6513,9 @@ msgstr "編輯"
msgid "View"
msgstr "視角"
msgid "Open Speed Dial"
msgstr ""
msgid "Preset Bundle"
msgstr "設定檔組"
@@ -8310,9 +8313,6 @@ msgstr "展開側邊欄"
msgid "Collapse sidebar"
msgstr "折疊側邊欄"
msgid "Tab"
msgstr "分頁"
#, c-format, boost-format
msgid "Loading file: %s"
msgstr "載入檔案:%s"
@@ -9333,10 +9333,10 @@ msgstr "多臺裝置管理"
msgid "With this option enabled, you can send a task to multiple devices at the same time and manage multiple devices."
msgstr "啟用時可以同時傳送到並管理多個機臺。"
msgid "Open the Speed Dial with the Space key"
msgid "Open the Speed Dial from the keyboard"
msgstr ""
msgid "When enabled, pressing Space (with no other key held) opens the Speed Dial action search from any page."
msgid "When enabled, the Speed Dial keyboard shortcut (Space by default) opens the action search from any page."
msgstr ""
msgid "Recent actions"
@@ -9468,6 +9468,15 @@ msgstr "滑鼠右鍵拖曳"
msgid "Set the action that dragging the right mouse button should perform."
msgstr "設定拖曳滑鼠右鍵時應執行的動作。"
msgid "Keyboard"
msgstr ""
msgid "Keyboard shortcuts"
msgstr ""
msgid "Choose the key for each action."
msgstr ""
msgid "Clear my choice on..."
msgstr "清除我的選擇於..."
@@ -9578,11 +9587,39 @@ msgstr ""
"限制視埠影格率以降低 GPU 負載與耗電量。\n"
"設為 0 表示不限制影格率。"
msgid "Reuse the 3D scene while idle"
msgstr ""
msgid ""
"Skips redrawing the 3D scene when only the mouse cursor moves over the viewport,\n"
"and reuses the previous frame's scene instead. Reduces GPU load.\n"
"Disable it if the viewport shows stale or missing contents.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Skip unchanged frames"
msgstr ""
msgid ""
"Skips drawing a frame altogether when it would be identical to the one already on screen.\n"
"Only applies to frames that reuse the 3D scene, so it needs Reuse the 3D scene while idle.\n"
"Disable it if a hover highlight, tooltip or animation stops updating.\n"
"\n"
"Takes effect immediately."
msgstr ""
msgid "Show FPS overlay"
msgstr "顯示 FPS 疊加層"
msgid "Displays current viewport FPS in the top-right corner."
msgstr "在右上角顯示目前視埠的 FPS。"
msgid "Displays rendering counts in the top-right corner of the viewport."
msgstr ""
msgid "FPS: frames presented to the screen per second."
msgstr ""
msgid "3D: frames per second that redrew the 3D scene."
msgstr ""
# AI Translated
msgid "G-code Preview"
@@ -10042,13 +10079,8 @@ msgstr "發布 3MF..."
msgid "Select which settings to be published in the 3MF file"
msgstr "選擇要在 3MF 檔案中發布的設定"
# AI Translated
msgid "Publish 3MF Wiki"
msgstr "發布 3MF Wiki"
# AI Translated
msgid "Publish 3MF Video Guide"
msgstr "發布 3MF 影片指南"
msgid "Video Guide"
msgstr ""
# AI Translated
msgid "Mixed filament - published as a whole when \"Enable\" above is selected"
@@ -10250,6 +10282,13 @@ msgstr ""
msgid "No wiki page for this action"
msgstr ""
msgid "Show details"
msgstr "顯示詳細資訊"
# AI Translated
msgid "Hide details"
msgstr "隱藏詳細資料"
#, c-format, boost-format
msgid "\"%s\" is a Developer setting. Enable Developer mode to edit it?"
msgstr ""
@@ -12084,67 +12123,39 @@ msgstr "設定檔在之前的設定引導過程中已改變"
msgid "Configuration package changed"
msgstr "設定檔已改變"
msgid "Toolbar"
msgstr "工具欄"
msgid "Objects list"
msgstr "物件清單"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "從 STL/STEP/3MF/OBJ/AMF 檔案中匯入幾何模型"
msgid "Paste from clipboard"
msgstr "從剪貼簿貼上"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "顯示/隱藏 3Dconnexion 裝置的設定對話框"
msgid "Switch table page"
msgstr "切換表單頁面"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Space"
msgid "Open speed dial"
msgstr ""
msgid "Run a Speed Dial favourite (while the Speed Dial is open)"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "顯示鍵盤快速鍵清單"
msgid "Global shortcuts"
msgstr "全域快速鍵"
msgid "Pan View"
msgstr "移動視角"
msgid "Rotate View"
msgstr "旋轉視角"
msgid "Middle mouse button"
msgstr "滑鼠中鍵"
#, c-format, boost-format
msgid "Use %s or %s, or a key that does not type a character."
msgstr ""
msgid "Zoom View"
msgstr "縮放視角"
msgctxt "Keyboard Shortcut"
msgid "Key"
msgstr ""
msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
msgstr "自動旋轉選取的物件或所有物件的方向。當有物件被選取時,僅自動旋轉選取的物件。無選取的物件時,會自動旋轉專案中的所有物件。"
msgid "Left mouse"
msgstr ""
msgid "Auto orients all objects on the active plate."
msgstr "自動旋轉目前板上所有物件的方向"
msgid "Available anywhere in the window, even while typing in a text field."
msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr "摺疊/展開 側邊欄"
msgid "Run a speed dial favorite while the dial is open"
msgstr ""
msgid "Any arrow"
msgstr "任意方向鍵"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Movement in camera space"
msgstr "沿相機視角移動物件"
msgid "Switch to the next main tab"
msgstr ""
msgid "Available while the 3D view on the Prepare tab has focus."
msgstr ""
msgid "Select a part"
msgstr "選擇單一零件"
@@ -12155,130 +12166,29 @@ msgstr "選擇多個物件"
msgid "Select objects by rectangle"
msgstr "框選多個零件"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Arrow Up"
# AI Translated
msgid "Move selection 10mm in positive Y direction"
msgstr "將選取物件沿 Y 軸正方向移動 10mm"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Arrow Down"
# AI Translated
msgid "Move selection 10mm in negative Y direction"
msgstr "將選取物件沿 Y 軸負方向移動 10mm"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Arrow Left"
# AI Translated
msgid "Move selection 10mm in negative X direction"
msgstr "將選取物件沿 X 軸負方向移動 10mm"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Arrow Right"
# AI Translated
msgid "Move selection 10mm in positive X direction"
msgstr "將選取物件沿 X 軸正方向移動 10mm"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "按鍵 1~9:設定物件/零件的線材"
msgid "Movement step set to 1mm"
msgstr "沿 X、Y 軸以 1mm 為單位步進移動"
msgid "Keyboard 1-9: set filament for object/part"
msgstr "按鍵 1~9:設定物件/零件的線材"
msgid "Movement in camera space"
msgstr "沿相機視角移動物件"
msgid "Camera view - Default"
msgstr "攝影機視角 - 預設"
msgid "Middle mouse"
msgstr ""
msgid "Camera view - Top"
msgstr "攝影機視角 - 頂部"
msgid "Right mouse"
msgstr ""
msgid "Camera view - Bottom"
msgstr "攝影機視角 - 底部"
msgid "Zoom View"
msgstr "縮放視角"
msgid "Camera view - Front"
msgstr "攝影機視角 - 前面"
msgid "Painting"
msgstr ""
msgid "Camera view - Behind"
msgstr "攝影機視角 - 後面"
msgid "Camera Angle - Left side"
msgstr "攝影機視角 - 左面"
msgid "Camera Angle - Right side"
msgstr "攝影機視角 - 右面"
msgid "Select all objects"
msgstr "選擇所有物件"
msgid "Gizmo move"
msgstr "線框移動"
msgid "Gizmo rotate"
msgstr "旋轉物件"
msgid "Gizmo scale"
msgstr "線框縮放"
msgid "Gizmo place face on bed"
msgstr "選擇底面"
msgid "Gizmo cut"
msgstr "切割物件"
msgid "Gizmo mesh boolean"
msgstr "線框網格布林運算"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM 塗刷絨毛表面效果"
msgid "Gizmo SLA support points"
msgstr "SLA 支撐點"
msgid "Gizmo FDM paint-on seam"
msgstr "FDM 塗裝接縫"
msgid "Gizmo text emboss/engrave"
msgstr "浮雕/雕刻文字工具"
msgid "Gizmo measure"
msgstr "測量"
msgid "Gizmo assemble"
msgstr "組裝"
msgid "Gizmo brim ears"
msgstr "擴邊耳工具"
msgid "Zoom in"
msgstr "放大"
msgid "Zoom out"
msgstr "縮小"
msgid "Toggle printable for object/part"
msgstr "切換物件/零件的可列印屬性"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Tab"
msgstr "Tab"
msgid "Switch between Prepare/Preview"
msgstr "在準備/預覽模式之中切換"
msgid "Plater"
msgstr "準備"
msgid "Available while a painting gizmo is open: supports, seam, fuzzy skin or color painting."
msgstr ""
msgid "Move: press to snap by 1mm"
msgstr "移動:以 1mm 為單位步進移動"
@@ -12289,14 +12199,19 @@ msgstr "支撐/顏色繪製:調整筆刷半徑"
msgid "Support/Color Painting: adjust section position"
msgstr "支撐/色彩繪製:調整剖面位置"
msgid "Gizmo"
msgstr "浮雕"
msgid "Objects list"
msgstr "物件清單"
msgid "Available while the object list has focus."
msgstr ""
msgid "Set extruder number for the objects and parts"
msgstr "設定物件、零件使用的擠出機編號"
msgid "Delete objects, parts, modifiers"
msgstr "刪除物件、零件、修改器"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Space"
msgstr "Space"
msgid "Select the object/part and press space to change the name"
msgstr "選取物件、零件,按空格可修改名稱"
@@ -12307,45 +12222,48 @@ msgstr "滑鼠點選"
msgid "Select the object/part and mouse click to change the name"
msgstr "選取物件或零件,雙擊可修改名稱"
msgid "Objects List"
msgstr "物件清單"
msgid "Vertical slider - Move active thumb Up"
msgstr "垂直滑動條 - 向上移動一層"
msgid "Vertical slider - Move active thumb Down"
msgstr "垂直滑動條 - 向下移動一層"
msgid "Horizontal slider - Move active thumb Left"
msgstr "水平滑動條 - 向左移動一步"
msgid "Horizontal slider - Move active thumb Right"
msgstr "水平滑動條 - 向右移動一步"
msgid "On/Off one layer mode of the vertical slider"
msgstr "開啟/關閉垂直滑動條的單層模式"
msgid "On/Off G-code window"
msgstr "開啟/關閉 G-code 視窗"
msgid "Available while the 3D view on the Preview tab has focus."
msgstr ""
msgid "Move slider 5x faster"
msgstr "5 倍速移動滑動條"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
msgid "Scroll slider 5x faster"
msgstr ""
msgid "Horizontal slider - Move to start position"
msgstr "水平滑動條 - 移動到起始位置"
msgid "Not customizable"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
#, c-format, boost-format
msgid "%s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Horizontal slider - Move to last position"
msgstr "水平滑動條 - 移動到最後位置"
#, c-format, boost-format
msgid "The default %s is assigned to %s. Reassign it to %s?"
msgstr ""
msgid "Global shortcuts also apply while typing."
msgstr ""
msgid "A key that types a character cannot be a global shortcut."
msgstr ""
msgid "Esc cancels, Enter confirms."
msgstr ""
#, c-format, boost-format
msgid ""
"Press the new shortcut for\n"
"\"%s\""
msgstr ""
#, c-format, boost-format
msgid "Already used as a step of %s."
msgstr ""
#, c-format, boost-format
msgid "Already assigned to %s. Press OK to reassign it."
msgstr ""
msgid "Release Note"
msgstr "更新說明"
@@ -17167,8 +17085,8 @@ msgstr "預熱階段"
msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
msgstr "插入多條預熱指令(例如:M104.1)。此功能僅適用於 Prusa XL。其他列印裝置請將其設為 1。"
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
msgstr "G-code 寫在輸出檔案的最頂部,位於任何其他內容之前。對於新增列印裝置韌體從檔案第一行讀取的中繼資料(例如估計列印時間、線材使用情況)很有用。支援 {print_time_sec} 和 {used_filament_length} 等預留位置。"
msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_total_sec}, {print_time_day}, {print_time_hour}, {print_time_minute}, {print_time_sec} and {used_filament_length}."
msgstr ""
msgid "Start G-code"
msgstr "起始 G-code"
@@ -18691,12 +18609,36 @@ msgstr "使用的線材"
msgid "Total length of filament used in the print."
msgstr "列印所使用的線材總長度"
msgid "Print time (seconds)"
msgstr "列印時間(秒)"
msgid "Print time (total seconds)"
msgstr ""
msgid "Total estimated print time in seconds. Replaced with actual value during post-processing."
msgstr "預估列印總時間(秒)。後處理時將以實際值取代"
msgid "Print time (days component)"
msgstr ""
msgid "Estimated print time day component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (hours component)"
msgstr ""
msgid "Estimated print time hour component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (minutes component)"
msgstr ""
msgid "Estimated print time minute component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Print time (seconds component)"
msgstr ""
msgid "Estimated print time second component (normal mode). Replaced with actual value during post-processing."
msgstr ""
msgid "Filament length (meters)"
msgstr "線材長度(公尺)"
@@ -20532,6 +20474,9 @@ msgstr "未偵測到有效的工作階段。要繼續登入 3DPrinterOS 嗎?"
msgid "Success!"
msgstr "成功!"
msgid "Generate API Key"
msgstr ""
msgid "Are you sure to log out?"
msgstr "確認要登出嗎?"
@@ -21531,13 +21476,6 @@ msgstr "Bambu 網路外掛程式用於雲端功能、印表機探索和遠端列
msgid "Error: %s"
msgstr "錯誤:%s"
msgid "Show details"
msgstr "顯示詳細資訊"
# AI Translated
msgid "Hide details"
msgstr "隱藏詳細資料"
msgid "Version to install:"
msgstr "將安裝的版本:"
@@ -24168,6 +24106,12 @@ msgstr ""
msgid "No binding for that field"
msgstr ""
msgid "Enter a number"
msgstr ""
msgid "Not a number"
msgstr ""
msgid "Primitive"
msgstr ""
@@ -24180,6 +24124,220 @@ msgstr ""
msgid "Clear All"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "Ins"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Home"
msgstr "Home"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "End"
msgstr "End"
msgctxt "Keyboard Shortcut"
msgid "PgUp"
msgstr ""
msgctxt "Keyboard Shortcut"
msgid "PgDn"
msgstr ""
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Left"
msgstr "Arrow Left"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Right"
msgstr "Arrow Right"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Up"
msgstr "Arrow Up"
# AI Translated
msgctxt "Keyboard Shortcut"
msgid "Arrow Down"
msgstr "Arrow Down"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "從 STL/STEP/3MF/OBJ/AMF 檔案中匯入幾何模型"
msgid "Select all objects"
msgstr "選擇所有物件"
msgid "Paste from clipboard"
msgstr "從剪貼簿貼上"
msgid "Toggle printable for object/part"
msgstr "切換物件/零件的可列印屬性"
# AI Translated
msgid "Move selection 10mm in negative X direction"
msgstr "將選取物件沿 X 軸負方向移動 10mm"
# AI Translated
msgid "Move selection 10mm in positive X direction"
msgstr "將選取物件沿 X 軸正方向移動 10mm"
# AI Translated
msgid "Move selection 10mm in positive Y direction"
msgstr "將選取物件沿 Y 軸正方向移動 10mm"
# AI Translated
msgid "Move selection 10mm in negative Y direction"
msgstr "將選取物件沿 Y 軸負方向移動 10mm"
msgid "Rotate selection 45 degrees counterclockwise"
msgstr ""
msgid "Rotate selection 45 degrees clockwise"
msgstr ""
msgid "Gizmo move"
msgstr "線框移動"
msgid "Gizmo rotate"
msgstr "旋轉物件"
msgid "Gizmo scale"
msgstr "線框縮放"
msgid "Gizmo place face on bed"
msgstr "選擇底面"
msgid "Gizmo cut"
msgstr "切割物件"
msgid "Gizmo mesh boolean"
msgstr "線框網格布林運算"
msgid "Gizmo FDM paint-on supports"
msgstr ""
msgid "Gizmo FDM paint-on seam"
msgstr "FDM 塗裝接縫"
msgid "Gizmo FDM paint-on fuzzy skin"
msgstr "Gizmo FDM 塗刷絨毛表面效果"
msgid "Gizmo multi-material painting"
msgstr ""
msgid "Gizmo text emboss/engrave"
msgstr "浮雕/雕刻文字工具"
msgid "Gizmo measure"
msgstr "測量"
msgid "Gizmo assemble"
msgstr "組裝"
msgid "Gizmo brim ears"
msgstr "擴邊耳工具"
msgid "Vertical slider - Move active thumb Up"
msgstr "垂直滑動條 - 向上移動一層"
msgid "Vertical slider - Move active thumb Down"
msgstr "垂直滑動條 - 向下移動一層"
msgid "Horizontal slider - Move active thumb Left"
msgstr "水平滑動條 - 向左移動一步"
msgid "Horizontal slider - Move active thumb Right"
msgstr "水平滑動條 - 向右移動一步"
msgid "Horizontal slider - Move to start position"
msgstr "水平滑動條 - 移動到起始位置"
msgid "Horizontal slider - Move to last position"
msgstr "水平滑動條 - 移動到最後位置"
msgid "Camera view - Default"
msgstr "攝影機視角 - 預設"
msgid "Camera view - Top"
msgstr "攝影機視角 - 頂部"
msgid "Camera view - Bottom"
msgstr "攝影機視角 - 底部"
msgid "Camera view - Front"
msgstr "攝影機視角 - 前面"
msgid "Camera view - Behind"
msgstr "攝影機視角 - 後面"
msgid "Camera Angle - Left side"
msgstr "攝影機視角 - 左面"
msgid "Camera Angle - Right side"
msgstr "攝影機視角 - 右面"
msgid "Camera view - Current plate"
msgstr ""
msgid "Zoom in"
msgstr "放大"
msgid "Zoom out"
msgstr "縮小"
msgid "Show/Hide 3Dconnexion devices settings dialog"
msgstr "顯示/隱藏 3Dconnexion 裝置的設定對話框"
msgid "Show/Hide wireframe"
msgstr ""
msgid "On/Off G-code window"
msgstr "開啟/關閉 G-code 視窗"
msgid "On/Off one layer mode of the vertical slider"
msgstr "開啟/關閉垂直滑動條的單層模式"
msgid "Switch between Prepare/Preview"
msgstr "在準備/預覽模式之中切換"
msgid "Collapse/Expand the sidebar"
msgstr "摺疊/展開 側邊欄"
msgid "Open the speed dial"
msgstr ""
msgid "Reload the device page"
msgstr ""
msgid "Show keyboard shortcuts list"
msgstr "顯示鍵盤快速鍵清單"
msgid "Slicing and printing"
msgstr ""
msgid "Editing"
msgstr ""
msgid "Placement"
msgstr ""
msgid "Gizmos"
msgstr ""
msgid "Sliders"
msgstr ""
msgid "Painting tools"
msgstr ""
msgid "Application"
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -24501,6 +24659,62 @@ msgstr ""
"避免翹曲\n"
"您知道嗎?當列印容易翹曲的材料(如 ABS)時,適當提高熱床溫度可以降低翹曲的機率。"
#~ msgid "Tab"
#~ msgstr "分頁"
#~ msgid "Displays current viewport FPS in the top-right corner."
#~ msgstr "在右上角顯示目前視埠的 FPS。"
# AI Translated
#~ msgid "Publish 3MF Wiki"
#~ msgstr "發布 3MF Wiki"
# AI Translated
#~ msgid "Publish 3MF Video Guide"
#~ msgstr "發布 3MF 影片指南"
#~ msgid "Toolbar"
#~ msgstr "工具欄"
#~ msgid "Switch table page"
#~ msgstr "切換表單頁面"
#~ msgid "Global shortcuts"
#~ msgstr "全域快速鍵"
#~ msgid "Middle mouse button"
#~ msgstr "滑鼠中鍵"
#~ msgid "Auto orients selected objects or all objects. If there are selected objects, it just orients the selected ones. Otherwise, it will orient all objects in the current project."
#~ msgstr "自動旋轉選取的物件或所有物件的方向。當有物件被選取時,僅自動旋轉選取的物件。無選取的物件時,會自動旋轉專案中的所有物件。"
#~ msgid "Auto orients all objects on the active plate."
#~ msgstr "自動旋轉目前板上所有物件的方向"
#~ msgid "Any arrow"
#~ msgstr "任意方向鍵"
#~ msgid "Gizmo SLA support points"
#~ msgstr "SLA 支撐點"
#~ msgid "Plater"
#~ msgstr "準備"
#~ msgid "Gizmo"
#~ msgstr "浮雕"
#~ msgid "Delete objects, parts, modifiers"
#~ msgstr "刪除物件、零件、修改器"
#~ msgid "Objects List"
#~ msgstr "物件清單"
#~ msgid "G-code written at the very top of the output file, before any other content. Useful for adding metadata that printer firmware reads from the first lines of the file (e.g. estimated print time, filament usage). Supports placeholders like {print_time_sec} and {used_filament_length}."
#~ msgstr "G-code 寫在輸出檔案的最頂部,位於任何其他內容之前。對於新增列印裝置韌體從檔案第一行讀取的中繼資料(例如估計列印時間、線材使用情況)很有用。支援 {print_time_sec} 和 {used_filament_length} 等預留位置。"
#~ msgid "Print time (seconds)"
#~ msgstr "列印時間(秒)"
# AI Translated
#~ msgid "Open actions speed dial"
#~ msgstr "開啟操作快捷選單"
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "Creality",
"version": "02.03.02.82",
"version": "02.03.02.84",
"force_update": "0",
"description": "Creality configurations",
"machine_model_list": [
@@ -55,7 +55,7 @@
"0"
],
"filament_max_volumetric_speed": [
"12"
"8"
],
"filament_retract_before_wipe": [
"100"
@@ -43,19 +43,19 @@
"1.75"
],
"filament_flow_ratio": [
"0.98"
"0.95"
],
"filament_is_support": [
"0"
],
"filament_max_volumetric_speed": [
"16"
"14"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_retract_before_wipe": [
"nil"
"100%"
],
"filament_retract_restart_extra": [
"nil"
@@ -67,7 +67,7 @@
"nil"
],
"filament_retraction_minimum_travel": [
"nil"
"2"
],
"filament_retraction_speed": [
"nil"
@@ -106,7 +106,10 @@
"0"
],
"slow_down_layer_time": [
"8"
"14"
],
"slow_down_min_speed": [
"20"
],
"temperature_vitrification": [
"110"
@@ -118,7 +121,7 @@
"55"
],
"filament_start_gcode": [
"; Filament gcode\n"
";filament start gcode\n"
],
"filament_end_gcode": [
"; filament end gcode \n"
@@ -153,7 +156,7 @@
"filament_unloading_speed_start": "100",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[0.2,210],[0.6,220]]",
"pressure_advance": "0.12",
"pressure_advance": "0.032",
"support_material_interface_fan_speed": "-1",
"compatible_printers": [
"Creality SPARKX i7 0.2 nozzle",
@@ -54,7 +54,7 @@
"machine_min_travel_rate": "0,0",
"machine_pause_gcode": "PAUSE",
"machine_platform_motion_enable": "0",
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 X20 Y-1 F30000\nG1 Z0.3 F1200\nG1 X100 E10 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X120 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X125 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X1 Z-0.300\nG1 X4\nG92 E0\nG1 Z1 F1200",
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 X20 Y-1 F30000\nG1 Z0.3 F1200\nG1 X100 E10 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X120 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X125 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X1 Z-0.300\nG1 X4\nG92 E0\nG1 Z1 F1200",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"nozzle_hrc": "0",
@@ -123,7 +123,7 @@
"default_filament_profile": [
"Generic PLA HF @Creality"
],
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
@@ -123,7 +123,7 @@
"default_filament_profile": [
"Generic PLA HF @Creality"
],
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
@@ -123,7 +123,7 @@
"default_filament_profile": [
"Generic PLA HF @Creality"
],
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
@@ -124,7 +124,7 @@
"default_filament_profile": [
"Generic PLA HF @Creality"
],
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
@@ -124,7 +124,7 @@
"default_filament_profile": [
"Generic PLA HF @Creality"
],
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
@@ -124,7 +124,7 @@
"default_filament_profile": [
"Generic PLA HF @Creality"
],
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
@@ -56,7 +56,7 @@
"machine_pause_gcode": "PAUSE",
"machine_platform_motion_enable": "1",
"machine_ptc_exist": "1",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"nozzle_hrc": "0",
@@ -123,7 +123,7 @@
"default_filament_profile": [
"Generic PLA @Creality K1-all"
],
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails_format": "PNG",
@@ -57,7 +57,7 @@
"machine_min_travel_rate": "0,0",
"machine_pause_gcode": "PAUSE",
"machine_platform_motion_enable": "1",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"nozzle_hrc": "0",
@@ -57,7 +57,7 @@
"machine_min_travel_rate": "0,0",
"machine_pause_gcode": "PAUSE",
"machine_platform_motion_enable": "1",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"nozzle_hrc": "0",
@@ -55,7 +55,7 @@
"machine_min_travel_rate": "0,0",
"machine_pause_gcode": "PAUSE",
"machine_platform_motion_enable": "1",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"nozzle_hrc": "0",
@@ -124,7 +124,7 @@
"default_filament_profile": [
"Generic PLA @Creality K1-all"
],
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
@@ -124,7 +124,7 @@
"default_filament_profile": [
"Generic PLA @Creality K1-all"
],
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
@@ -124,7 +124,7 @@
"default_filament_profile": [
"Generic PLA @Creality K1-all"
],
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
@@ -56,7 +56,7 @@
"machine_pause_gcode": "PAUSE",
"machine_platform_motion_enable": "1",
"machine_ptc_exist": "1",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"nozzle_hrc": "0",
@@ -57,7 +57,7 @@
"machine_pause_gcode": "PAUSE",
"machine_platform_motion_enable": "1",
"machine_ptc_exist": "1",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM109 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"nozzle_hrc": "0",
@@ -59,7 +59,7 @@
"machine_pause_gcode": "PAUSE",
"machine_platform_motion_enable": "0",
"machine_ptc_exist": "0",
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM104 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM109 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
"machine_tool_change_time": "0",
"machine_unload_filament_time": "30",
"manual_filament_change": "0",
@@ -59,7 +59,7 @@
"machine_pause_gcode": "PAUSE",
"machine_platform_motion_enable": "0",
"machine_ptc_exist": "0",
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM104 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM109 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
"machine_tool_change_time": "0",
"machine_unload_filament_time": "30",
"manual_filament_change": "0",
@@ -59,7 +59,7 @@
"machine_pause_gcode": "PAUSE",
"machine_platform_motion_enable": "0",
"machine_ptc_exist": "0",
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM104 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM109 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
"machine_tool_change_time": "0",
"machine_unload_filament_time": "30",
"manual_filament_change": "0",
@@ -59,7 +59,7 @@
"machine_pause_gcode": "PAUSE",
"machine_platform_motion_enable": "0",
"machine_ptc_exist": "0",
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM104 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM109 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
"machine_tool_change_time": "0",
"machine_unload_filament_time": "30",
"manual_filament_change": "0",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "Cubicon",
"version": "02.04.00.05",
"version": "02.04.00.06",
"force_update": "0",
"description": "Cubicon configurations",
"machine_model_list": [
@@ -15,7 +15,7 @@
"115"
],
"hot_plate_temp_initial_layer": [
"115"
"120"
],
"close_fan_the_first_x_layers": [
"3"
@@ -24,13 +24,13 @@
"30"
],
"filament_density": [
"1.24"
"1.04"
],
"filament_flow_ratio": [
"0.99"
],
"filament_max_volumetric_speed": [
"23"
"14"
],
"nozzle_temperature_initial_layer": [
"240"
@@ -39,19 +39,19 @@
"80"
],
"fan_min_speed": [
"70"
"15"
],
"slow_down_min_speed": [
"30"
"20"
],
"slow_down_layer_time": [
"3"
"10"
],
"nozzle_temperature": [
"245"
],
"temperature_vitrification": [
"78"
"105"
],
"nozzle_temperature_range_low": [
"220"
@@ -61,5 +61,14 @@
],
"additional_cooling_fan_speed": [
"0"
],
"activate_air_filtration": [
"1"
],
"during_print_exhaust_fan_speed": [
"0"
],
"complete_print_exhaust_fan_speed": [
"255"
]
}
@@ -12,10 +12,10 @@
"Cubicon"
],
"hot_plate_temp": [
"100"
"105"
],
"hot_plate_temp_initial_layer": [
"100"
"115"
],
"close_fan_the_first_x_layers": [
"3"
@@ -24,13 +24,13 @@
"30"
],
"filament_density": [
"1.24"
"1.04"
],
"filament_flow_ratio": [
"0.99"
"1.04"
],
"filament_max_volumetric_speed": [
"23"
"8"
],
"nozzle_temperature_initial_layer": [
"225"
@@ -39,19 +39,19 @@
"80"
],
"fan_min_speed": [
"70"
"15"
],
"slow_down_min_speed": [
"30"
"20"
],
"slow_down_layer_time": [
"3"
"10"
],
"nozzle_temperature": [
"230"
],
"temperature_vitrification": [
"78"
"105"
],
"nozzle_temperature_range_low": [
"220"
@@ -61,5 +61,32 @@
],
"additional_cooling_fan_speed": [
"0"
],
"enable_pressure_advance": [
"1"
],
"pressure_advance": [
"0.04"
],
"filament_retraction_length": [
"1.2"
],
"filament_z_hop": [
"0"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"25"
],
"filament_wipe": [
"1"
],
"filament_wipe_distance": [
"2"
],
"filament_retract_before_wipe": [
"70%"
]
}
@@ -15,7 +15,7 @@
"115"
],
"hot_plate_temp_initial_layer": [
"115"
"120"
],
"close_fan_the_first_x_layers": [
"3"
@@ -24,13 +24,13 @@
"30"
],
"filament_density": [
"1.24"
"1.04"
],
"filament_flow_ratio": [
"0.99"
],
"filament_max_volumetric_speed": [
"23"
"14"
],
"nozzle_temperature_initial_layer": [
"240"
@@ -39,19 +39,19 @@
"80"
],
"fan_min_speed": [
"70"
"15"
],
"slow_down_min_speed": [
"30"
"20"
],
"slow_down_layer_time": [
"3"
"10"
],
"nozzle_temperature": [
"240"
],
"temperature_vitrification": [
"85"
"105"
],
"nozzle_temperature_range_low": [
"220"
@@ -10,5 +10,77 @@
],
"filament_vendor": [
"Cubicon"
],
"fan_max_speed": [
"25"
],
"fan_min_speed": [
"0"
],
"enable_pressure_advance": [
"1"
],
"pressure_advance": [
"0.01"
],
"close_fan_the_first_x_layers": [
"5"
],
"overhang_fan_threshold": [
"50%"
],
"overhang_fan_speed": [
"25"
],
"slow_down_layer_time": [
"8"
],
"filament_max_volumetric_speed": [
"4"
],
"filament_flow_ratio": [
"0.94"
],
"nozzle_temperature_initial_layer": [
"245"
],
"nozzle_temperature": [
"250"
],
"nozzle_temperature_range_low": [
"240"
],
"nozzle_temperature_range_high": [
"280"
],
"filament_retraction_length": [
"0.8"
],
"filament_z_hop": [
"0"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"25"
],
"filament_wipe": [
"1"
],
"filament_wipe_distance": [
"2"
],
"filament_retract_before_wipe": [
"70%"
],
"activate_air_filtration": [
"1"
],
"during_print_exhaust_fan_speed": [
"0"
],
"complete_print_exhaust_fan_speed": [
"255"
]
}
@@ -15,7 +15,7 @@
"80"
],
"hot_plate_temp_initial_layer": [
"80"
"85"
],
"close_fan_the_first_x_layers": [
"3"
@@ -54,12 +54,45 @@
"70"
],
"nozzle_temperature_range_low": [
"230"
"220"
],
"nozzle_temperature_range_high": [
"250"
],
"additional_cooling_fan_speed": [
"0"
],
"enable_pressure_advance": [
"1"
],
"pressure_advance": [
"0.08"
],
"filament_retraction_length": [
"2.0"
],
"filament_z_hop": [
"0"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"25"
],
"filament_wipe": [
"1"
],
"filament_wipe_distance": [
"2"
],
"filament_retract_before_wipe": [
"70%"
],
"activate_air_filtration": [
"1"
],
"complete_print_exhaust_fan_speed": [
"255"
]
}
@@ -53,5 +53,38 @@
],
"additional_cooling_fan_speed": [
"80"
],
"close_fan_the_first_x_layers": [
"1"
],
"filament_retraction_length": [
"2.0"
],
"filament_z_hop": [
"0"
],
"filament_retraction_speed": [
"40"
],
"filament_deretraction_speed": [
"25"
],
"filament_wipe": [
"1"
],
"filament_wipe_distance": [
"2"
],
"filament_retract_before_wipe": [
"70%"
],
"activate_air_filtration": [
"1"
],
"during_print_exhaust_fan_speed": [
"255"
],
"complete_print_exhaust_fan_speed": [
"255"
]
}
@@ -18,5 +18,14 @@
],
"nozzle_temperature_range_high": [
"220"
],
"filament_max_volumetric_speed": [
"8"
],
"enable_pressure_advance": [
"1"
],
"pressure_advance": [
"0.025"
]
}
@@ -73,12 +73,12 @@
"20000"
],
"machine_max_acceleration_z": [
"250",
"500"
"50",
"100"
],
"machine_max_speed_z": [
"25",
"12"
"5",
"10"
],
"machine_max_acceleration_retracting": [
"5000",
@@ -5,7 +5,8 @@
"instantiation": "false",
"compatible_printers": [
"Cubicon xCeler-I 0.4 nozzle",
"Cubicon xCeler-Plus 0.4 nozzle"
"Cubicon xCeler-Plus 0.4 nozzle",
"Cubicon xCeler-Mini 0.4 nozzle"
],
"print_settings_id": "cubicon common @base",
"accel_to_decel_enable": "1",
@@ -14,26 +15,24 @@
"bridge_flow": "0.9",
"internal_bridge_flow": "0.9",
"brim_type": "no_brim",
"detect_overhang_wall": "1",
"detect_overhang_wall": "0",
"resolution": "0.012",
"elefant_foot_compensation": "0.15",
"percise_outer_wall": "1",
"percise_z_height": "0.2",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_prime_tower": "0",
"enable_support": "0",
"exclude_object": "0",
"filename_format": "{input_filename_base}_{layer_height}mm_{filament_type[initial_tool]}_{printer_model}_{print_time}.gcode",
"gap_infill_speed": "250",
"infill_combination": "1",
"infill_combination": "0",
"infill_direction": "45",
"infill_wall_overlap": "15",
"infill_anchor": "400%",
"infill_anchor_max": "20",
"initial_layer_line_width": "0.5",
"initial_layer_print_height": "0.25",
"initial_layer_speed": "60",
"initial_layer_infill_speed": "60",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "50",
"initial_layer_infill_speed": "100",
"initial_layer_travel_speed": "500",
"slow_down_layers": "1",
"only_one_wall_top": "1",
@@ -47,9 +46,9 @@
"outer_wall_speed": "200",
"print_sequence": "by layer",
"raft_layers": "0",
"reduce_crossing_wall": "0",
"reduce_crossing_wall": "1",
"reduce_infill_retraction": "1",
"seam_position": "back",
"seam_position": "aligned",
"seam_gap": "10%",
"enable_arc_fitting": "0",
"staggered_inner_seams": "1",
@@ -57,7 +56,7 @@
"skirt_distance": "2.5",
"skirt_height": "1",
"skirt_speed": "50",
"skirt_start_angle": "-45",
"skirt_start_angle": "-135",
"sparse_infill_density": "15",
"sparse_infill_speed": "270",
"sparse_infill_pattern": "grid",
@@ -84,7 +83,7 @@
"support_threshold_angle": "15",
"wall_loops": "2",
"thick_bridges": "0",
"extra_perimeters_on_overhangs": "1",
"extra_perimeters_on_overhangs": "0",
"top_shell_layers": "5",
"top_shell_thickness": "1",
"slow_down_curled_perimeters": "0",
@@ -93,18 +92,18 @@
"travel_jerk": "12",
"infill_jerk": "12",
"initial_layer_jerk": "9",
"inner_wall_jerk": "7",
"outer_wall_jerk": "7",
"default_acceleration": "13000",
"travel_acceleration": "13000",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"initial_layer_acceleration": "1000",
"inner_wall_jerk": "3.5",
"outer_wall_jerk": "3",
"default_acceleration": "10000",
"travel_acceleration": "10000",
"outer_wall_acceleration": "2000",
"inner_wall_acceleration": "6000",
"initial_layer_acceleration": "500",
"top_surface_acceleration": "2000",
"raft_first_layer_density": "90",
"raft_first_layer_expansion": "2",
"precise_outer_wall": "1",
"precise_z_height": "0",
"precise_z_height": "1",
"slowdown_for_curled_perimeters": "0",
"bridge_speed": "50",
"internal_bridge_speed": "150%",
@@ -112,5 +111,7 @@
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
"independent_support_layer_height": "1"
"independent_support_layer_height": "1",
"solid_infill_direction": "90",
"max_travel_detour_distance": "80%"
}
@@ -62,7 +62,7 @@
"top_surface_line_width": "0.4",
"top_surface_speed": "30",
"travel_speed": "400",
"enable_prime_tower": "1",
"enable_prime_tower": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0"
@@ -42,7 +42,7 @@
"enable_arc_fitting": "1",
"enable_extra_bridge_layer": "disabled",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_prime_tower": "0",
"enable_support": "0",
"enforce_support_layers": "0",
"ensure_vertical_shell_thickness": "ensure_all",
+53 -1
View File
@@ -1,6 +1,6 @@
{
"name": "Eryone",
"version": "02.04.00.05",
"version": "02.04.00.06",
"force_update": "0",
"description": "Eryone configurations",
"machine_model_list": [
@@ -432,10 +432,18 @@
"name": "Eryone ABS",
"sub_path": "filament/Eryone ABS.json"
},
{
"name": "Eryone ABS+-HS @Thinker X400 0.4 nozzle",
"sub_path": "filament/Eryone ABS+-HS @Thinker X400 0.4 nozzle.json"
},
{
"name": "Eryone ABS-CF",
"sub_path": "filament/Eryone ABS-CF.json"
},
{
"name": "Eryone ABS-GF @Thinker X400 0.4 nozzle",
"sub_path": "filament/Eryone ABS-GF @Thinker X400 0.4 nozzle.json"
},
{
"name": "Eryone ASA",
"sub_path": "filament/Eryone ASA.json"
@@ -444,6 +452,10 @@
"name": "Eryone ASA-CF",
"sub_path": "filament/Eryone ASA-CF.json"
},
{
"name": "Eryone ASA-HS @Thinker X400 0.4 nozzle",
"sub_path": "filament/Eryone ASA-HS @Thinker X400 0.4 nozzle.json"
},
{
"name": "Eryone PA",
"sub_path": "filament/Eryone PA.json"
@@ -460,18 +472,50 @@
"name": "Eryone PETG",
"sub_path": "filament/Eryone PETG.json"
},
{
"name": "Eryone PETG HS @Thinker X400 0.4 nozzle",
"sub_path": "filament/Eryone PETG HS @Thinker X400 0.4 nozzle.json"
},
{
"name": "Eryone PETG-CF",
"sub_path": "filament/Eryone PETG-CF.json"
},
{
"name": "Eryone PETG-GF @Thinker X400 0.4 nozzle",
"sub_path": "filament/Eryone PETG-GF @Thinker X400 0.4 nozzle.json"
},
{
"name": "Eryone PETG-Lite @Thinker X400 0.4 nozzle",
"sub_path": "filament/Eryone PETG-Lite @Thinker X400 0.4 nozzle.json"
},
{
"name": "Eryone PETG-Matte @Thinker X400 0.4 nozzle",
"sub_path": "filament/Eryone PETG-Matte @Thinker X400 0.4 nozzle.json"
},
{
"name": "Eryone PETG-Translucent @Thinker X400 0.4 nozzle",
"sub_path": "filament/Eryone PETG-Translucent @Thinker X400 0.4 nozzle.json"
},
{
"name": "Eryone PLA",
"sub_path": "filament/Eryone PLA.json"
},
{
"name": "Eryone PLA+HS @Thinker X400 0.4 nozzle",
"sub_path": "filament/Eryone PLA+HS @Thinker X400 0.4 nozzle.json"
},
{
"name": "Eryone PLA-CF",
"sub_path": "filament/Eryone PLA-CF.json"
},
{
"name": "Eryone PLA-Matte @Thinker X400 0.4 nozzle",
"sub_path": "filament/Eryone PLA-Matte @Thinker X400 0.4 nozzle.json"
},
{
"name": "Eryone PLA-Matte HS @Thinker X400 0.4 nozzle",
"sub_path": "filament/Eryone PLA-Matte HS @Thinker X400 0.4 nozzle.json"
},
{
"name": "Eryone PP",
"sub_path": "filament/Eryone PP.json"
@@ -488,6 +532,14 @@
"name": "Eryone TPU",
"sub_path": "filament/Eryone TPU.json"
},
{
"name": "Eryone petg-Galaxy @Thinker X400 0.4 nozzle",
"sub_path": "filament/Eryone petg-Galaxy @Thinker X400 0.4 nozzle.json"
},
{
"name": "Eryone pla-Ultra Silk @Thinker X400 0.4 nozzle",
"sub_path": "filament/Eryone pla-Ultra Silk @Thinker X400 0.4 nozzle.json"
},
{
"name": "fdm_filament_pla",
"sub_path": "filament/fdm_filament_pla.json"
@@ -0,0 +1,54 @@
{
"type": "filament",
"name": "Eryone ABS+-HS @Thinker X400 0.4 nozzle",
"inherits": "Eryone Standard PLA",
"from": "system",
"setting_id": "aUH1I90BFXa0C84r",
"filament_id": "OFRgjTRp",
"instantiation": "true",
"compatible_printers": [
"Thinker X400 0.4 nozzle"
],
"filament_settings_id": [
"Eryone ABS+-HS @Thinker X400 0.4 nozzle"
],
"fan_max_speed": [
"20"
],
"fan_min_speed": [
"0"
],
"filament_end_gcode": [
"; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0"
],
"filament_flow_ratio": [
"0.96"
],
"filament_max_volumetric_speed": [
"25"
],
"filament_start_gcode": [
"; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1"
],
"filament_type": [
"ABS"
],
"hot_plate_temp": [
"90"
],
"hot_plate_temp_initial_layer": [
"90"
],
"nozzle_temperature": [
"255"
],
"nozzle_temperature_initial_layer": [
"255"
],
"slow_down_layer_time": [
"4"
],
"slow_down_min_speed": [
"15"
]
}
@@ -0,0 +1,54 @@
{
"type": "filament",
"name": "Eryone ABS-GF @Thinker X400 0.4 nozzle",
"inherits": "Eryone Standard PLA",
"from": "system",
"setting_id": "WnsZC7HYi5Z1MOcn",
"filament_id": "OFenMm2Y",
"instantiation": "true",
"compatible_printers": [
"Thinker X400 0.4 nozzle"
],
"filament_settings_id": [
"Eryone ABS-GF @Thinker X400 0.4 nozzle"
],
"fan_max_speed": [
"20"
],
"fan_min_speed": [
"0"
],
"filament_end_gcode": [
"; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0"
],
"filament_flow_ratio": [
"0.96"
],
"filament_max_volumetric_speed": [
"18"
],
"filament_start_gcode": [
"; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1"
],
"filament_type": [
"ABS"
],
"hot_plate_temp": [
"90"
],
"hot_plate_temp_initial_layer": [
"90"
],
"nozzle_temperature": [
"265"
],
"nozzle_temperature_initial_layer": [
"265"
],
"slow_down_layer_time": [
"4"
],
"slow_down_min_speed": [
"15"
]
}
@@ -0,0 +1,54 @@
{
"type": "filament",
"name": "Eryone ASA-HS @Thinker X400 0.4 nozzle",
"inherits": "Eryone Standard PLA",
"from": "system",
"setting_id": "xw8zqUsFb2WVaSo1",
"filament_id": "OFIzY5sP",
"instantiation": "true",
"compatible_printers": [
"Thinker X400 0.4 nozzle"
],
"filament_settings_id": [
"Eryone ASA-HS @Thinker X400 0.4 nozzle"
],
"fan_max_speed": [
"20"
],
"fan_min_speed": [
"0"
],
"filament_end_gcode": [
"; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0"
],
"filament_flow_ratio": [
"1"
],
"filament_max_volumetric_speed": [
"20"
],
"filament_start_gcode": [
"; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1"
],
"filament_type": [
"ASA"
],
"hot_plate_temp": [
"90"
],
"hot_plate_temp_initial_layer": [
"90"
],
"nozzle_temperature": [
"260"
],
"nozzle_temperature_initial_layer": [
"260"
],
"slow_down_layer_time": [
"4"
],
"slow_down_min_speed": [
"15"
]
}
@@ -0,0 +1,60 @@
{
"type": "filament",
"name": "Eryone PETG HS @Thinker X400 0.4 nozzle",
"inherits": "Eryone Standard PLA",
"from": "system",
"setting_id": "GtPiiNgHAnxrR9Tj",
"filament_id": "OFtqfvcE",
"instantiation": "true",
"compatible_printers": [
"Thinker X400 0.4 nozzle"
],
"filament_settings_id": [
"Eryone PETG HS @Thinker X400 0.4 nozzle"
],
"close_fan_the_first_x_layers": [
"3"
],
"fan_max_speed": [
"50"
],
"fan_min_speed": [
"30"
],
"filament_end_gcode": [
"; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0"
],
"filament_flow_ratio": [
"0.97"
],
"filament_max_volumetric_speed": [
"15"
],
"filament_start_gcode": [
"; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1"
],
"filament_type": [
"PETG"
],
"full_fan_speed_layer": [
"2"
],
"hot_plate_temp": [
"70"
],
"hot_plate_temp_initial_layer": [
"70"
],
"nozzle_temperature": [
"240"
],
"nozzle_temperature_initial_layer": [
"240"
],
"slow_down_layer_time": [
"4"
],
"slow_down_min_speed": [
"15"
]
}
@@ -40,7 +40,7 @@
"14"
],
"filament_settings_id": [
"Eryone PETG"
"Eryone PETG-CF"
],
"filament_type": [
"PETG-CF"
@@ -0,0 +1,60 @@
{
"type": "filament",
"name": "Eryone PETG-GF @Thinker X400 0.4 nozzle",
"inherits": "Eryone Standard PLA",
"from": "system",
"setting_id": "S1FBfw93PzYJMhCa",
"filament_id": "OFbzOkXX",
"instantiation": "true",
"compatible_printers": [
"Thinker X400 0.4 nozzle"
],
"filament_settings_id": [
"Eryone PETG-GF @Thinker X400 0.4 nozzle"
],
"close_fan_the_first_x_layers": [
"3"
],
"fan_max_speed": [
"50"
],
"fan_min_speed": [
"30"
],
"filament_end_gcode": [
"; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0"
],
"filament_flow_ratio": [
"0.96"
],
"filament_max_volumetric_speed": [
"13"
],
"filament_start_gcode": [
"; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1"
],
"filament_type": [
"PETG"
],
"full_fan_speed_layer": [
"2"
],
"hot_plate_temp": [
"70"
],
"hot_plate_temp_initial_layer": [
"70"
],
"nozzle_temperature": [
"250"
],
"nozzle_temperature_initial_layer": [
"250"
],
"slow_down_layer_time": [
"4"
],
"slow_down_min_speed": [
"15"
]
}
@@ -0,0 +1,60 @@
{
"type": "filament",
"name": "Eryone PETG-Lite @Thinker X400 0.4 nozzle",
"inherits": "Eryone Standard PLA",
"from": "system",
"setting_id": "CWHhUswq3j9XHAuC",
"filament_id": "OFyWb8AA",
"instantiation": "true",
"compatible_printers": [
"Thinker X400 0.4 nozzle"
],
"filament_settings_id": [
"Eryone PETG-Lite @Thinker X400 0.4 nozzle"
],
"close_fan_the_first_x_layers": [
"3"
],
"fan_max_speed": [
"50"
],
"fan_min_speed": [
"30"
],
"filament_end_gcode": [
"; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0"
],
"filament_flow_ratio": [
"0.9796"
],
"filament_max_volumetric_speed": [
"13"
],
"filament_start_gcode": [
"; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1"
],
"filament_type": [
"PETG"
],
"full_fan_speed_layer": [
"2"
],
"hot_plate_temp": [
"70"
],
"hot_plate_temp_initial_layer": [
"70"
],
"nozzle_temperature": [
"245"
],
"nozzle_temperature_initial_layer": [
"245"
],
"slow_down_layer_time": [
"4"
],
"slow_down_min_speed": [
"15"
]
}
@@ -0,0 +1,60 @@
{
"type": "filament",
"name": "Eryone PETG-Matte @Thinker X400 0.4 nozzle",
"inherits": "Eryone Standard PLA",
"from": "system",
"setting_id": "pzceBG5k2u3X9TLO",
"filament_id": "OFSvr7Aj",
"instantiation": "true",
"compatible_printers": [
"Thinker X400 0.4 nozzle"
],
"filament_settings_id": [
"Eryone PETG-Matte @Thinker X400 0.4 nozzle"
],
"close_fan_the_first_x_layers": [
"3"
],
"fan_max_speed": [
"50"
],
"fan_min_speed": [
"30"
],
"filament_end_gcode": [
"; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0"
],
"filament_flow_ratio": [
"1"
],
"filament_max_volumetric_speed": [
"22"
],
"filament_start_gcode": [
"; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1"
],
"filament_type": [
"PETG"
],
"full_fan_speed_layer": [
"2"
],
"hot_plate_temp": [
"80"
],
"hot_plate_temp_initial_layer": [
"80"
],
"nozzle_temperature": [
"250"
],
"nozzle_temperature_initial_layer": [
"250"
],
"slow_down_layer_time": [
"4"
],
"slow_down_min_speed": [
"15"
]
}
@@ -0,0 +1,60 @@
{
"type": "filament",
"name": "Eryone PETG-Translucent @Thinker X400 0.4 nozzle",
"inherits": "Eryone Standard PLA",
"from": "system",
"setting_id": "jN64L5SUnQB5dG1x",
"filament_id": "OFY2E8cd",
"instantiation": "true",
"compatible_printers": [
"Thinker X400 0.4 nozzle"
],
"filament_settings_id": [
"Eryone PETG-Translucent @Thinker X400 0.4 nozzle"
],
"close_fan_the_first_x_layers": [
"3"
],
"fan_max_speed": [
"50"
],
"fan_min_speed": [
"30"
],
"filament_end_gcode": [
"; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0"
],
"filament_flow_ratio": [
"0.99"
],
"filament_max_volumetric_speed": [
"24"
],
"filament_start_gcode": [
"; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1"
],
"filament_type": [
"PETG"
],
"full_fan_speed_layer": [
"2"
],
"hot_plate_temp": [
"70"
],
"hot_plate_temp_initial_layer": [
"70"
],
"nozzle_temperature": [
"215"
],
"nozzle_temperature_initial_layer": [
"215"
],
"slow_down_layer_time": [
"4"
],
"slow_down_min_speed": [
"15"
]
}
@@ -0,0 +1,48 @@
{
"type": "filament",
"name": "Eryone PLA+HS @Thinker X400 0.4 nozzle",
"inherits": "Eryone Standard PLA",
"from": "system",
"setting_id": "AfUEns6VhCXsj9Ft",
"filament_id": "OFeRoHy3",
"instantiation": "true",
"compatible_printers": [
"Thinker X400 0.4 nozzle"
],
"filament_settings_id": [
"Eryone PLA+HS @Thinker X400 0.4 nozzle"
],
"fan_min_speed": [
"80"
],
"filament_end_gcode": [
"; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0"
],
"filament_flow_ratio": [
"0.99"
],
"filament_max_volumetric_speed": [
"18"
],
"filament_start_gcode": [
"; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"nozzle_temperature": [
"210"
],
"nozzle_temperature_initial_layer": [
"210"
],
"slow_down_layer_time": [
"4"
],
"slow_down_min_speed": [
"15"
]
}
@@ -0,0 +1,48 @@
{
"type": "filament",
"name": "Eryone PLA-Matte @Thinker X400 0.4 nozzle",
"inherits": "Eryone Standard PLA",
"from": "system",
"setting_id": "Ho1nQYsweqTTte0g",
"filament_id": "OFFMWFWL",
"instantiation": "true",
"compatible_printers": [
"Thinker X400 0.4 nozzle"
],
"filament_settings_id": [
"Eryone PLA-Matte @Thinker X400 0.4 nozzle"
],
"fan_min_speed": [
"80"
],
"filament_end_gcode": [
"; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0"
],
"filament_flow_ratio": [
"0.99"
],
"filament_max_volumetric_speed": [
"21"
],
"filament_start_gcode": [
"; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"nozzle_temperature": [
"215"
],
"nozzle_temperature_initial_layer": [
"215"
],
"slow_down_layer_time": [
"4"
],
"slow_down_min_speed": [
"15"
]
}
@@ -0,0 +1,48 @@
{
"type": "filament",
"name": "Eryone PLA-Matte HS @Thinker X400 0.4 nozzle",
"inherits": "Eryone Standard PLA",
"from": "system",
"setting_id": "8W0yhuRu7OBJkSOS",
"filament_id": "OF9mNFSM",
"instantiation": "true",
"compatible_printers": [
"Thinker X400 0.4 nozzle"
],
"filament_settings_id": [
"Eryone PLA-Matte HS @Thinker X400 0.4 nozzle"
],
"fan_min_speed": [
"80"
],
"filament_end_gcode": [
"; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0"
],
"filament_flow_ratio": [
"1.1"
],
"filament_max_volumetric_speed": [
"28"
],
"filament_start_gcode": [
"; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"nozzle_temperature": [
"225"
],
"nozzle_temperature_initial_layer": [
"225"
],
"slow_down_layer_time": [
"4"
],
"slow_down_min_speed": [
"15"
]
}
@@ -0,0 +1,60 @@
{
"type": "filament",
"name": "Eryone petg-Galaxy @Thinker X400 0.4 nozzle",
"inherits": "Eryone Standard PLA",
"from": "system",
"setting_id": "R4BPYs8aAc9DFf0n",
"filament_id": "OFWDDu8u",
"instantiation": "true",
"compatible_printers": [
"Thinker X400 0.4 nozzle"
],
"filament_settings_id": [
"Eryone petg-Galaxy @Thinker X400 0.4 nozzle"
],
"close_fan_the_first_x_layers": [
"3"
],
"fan_max_speed": [
"50"
],
"fan_min_speed": [
"30"
],
"filament_end_gcode": [
"; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0"
],
"filament_flow_ratio": [
"0.96"
],
"filament_max_volumetric_speed": [
"21"
],
"filament_start_gcode": [
"; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1"
],
"filament_type": [
"PETG"
],
"full_fan_speed_layer": [
"2"
],
"hot_plate_temp": [
"70"
],
"hot_plate_temp_initial_layer": [
"70"
],
"nozzle_temperature": [
"245"
],
"nozzle_temperature_initial_layer": [
"245"
],
"slow_down_layer_time": [
"4"
],
"slow_down_min_speed": [
"15"
]
}
@@ -0,0 +1,48 @@
{
"type": "filament",
"name": "Eryone pla-Ultra Silk @Thinker X400 0.4 nozzle",
"inherits": "Eryone Standard PLA",
"from": "system",
"setting_id": "jCbto64oaAKrDaN0",
"filament_id": "OF99Cc22",
"instantiation": "true",
"compatible_printers": [
"Thinker X400 0.4 nozzle"
],
"filament_settings_id": [
"Eryone pla-Ultra Silk @Thinker X400 0.4 nozzle"
],
"fan_min_speed": [
"80"
],
"filament_end_gcode": [
"; filament end gcode \nSET_FAN_SPEED FAN=filter_fan SPEED=0"
],
"filament_flow_ratio": [
"0.97"
],
"filament_max_volumetric_speed": [
"15"
],
"filament_start_gcode": [
"; filament start gcode\nSET_FAN_SPEED FAN=filter_fan SPEED=1"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"nozzle_temperature": [
"230"
],
"nozzle_temperature_initial_layer": [
"230"
],
"slow_down_layer_time": [
"4"
],
"slow_down_min_speed": [
"15"
]
}
+249 -1
View File
@@ -1,7 +1,7 @@
{
"name": "Flashforge",
"url": "",
"version": "02.04.00.08",
"version": "02.04.00.09",
"force_update": "0",
"description": "Flashforge configurations",
"machine_model_list": [
@@ -25,6 +25,10 @@
"name": "Flashforge Adventurer 5M Pro",
"sub_path": "machine/Flashforge Adventurer 5M Pro.json"
},
{
"name": "Flashforge Adventurer A5",
"sub_path": "machine/Flashforge Adventurer A5.json"
},
{
"name": "Flashforge Artemis",
"sub_path": "machine/Flashforge Artemis.json"
@@ -199,6 +203,10 @@
"name": "0.20mm Standard @FF AD5X",
"sub_path": "process/0.20mm Standard @FF AD5X.json"
},
{
"name": "0.20mm Standard @FF Adventurer A5 0.4 nozzle",
"sub_path": "process/0.20mm Standard @FF Adventurer A5 0.4 nozzle.json"
},
{
"name": "0.20mm Standard @FF C5",
"sub_path": "process/0.20mm Standard @FF C5.json"
@@ -311,6 +319,10 @@
"name": "0.30mm Standard @FF AD5X 0.6 nozzle",
"sub_path": "process/0.30mm Standard @FF AD5X 0.6 nozzle.json"
},
{
"name": "0.30mm Standard @FF Adventurer A5 0.6 nozzle",
"sub_path": "process/0.30mm Standard @FF Adventurer A5 0.6 nozzle.json"
},
{
"name": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle",
"sub_path": "process/0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle.json"
@@ -443,6 +455,10 @@
"name": "0.14mm Standard @Flashforge AD5M 0.25 Nozzle",
"sub_path": "process/0.14mm Standard @Flashforge AD5M 0.25 Nozzle.json"
},
{
"name": "0.12mm Fine @FF Adventurer A5 0.4 nozzle",
"sub_path": "process/0.12mm Fine @FF Adventurer A5 0.4 nozzle.json"
},
{
"name": "0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
"sub_path": "process/0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json"
@@ -463,6 +479,10 @@
"name": "0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
"sub_path": "process/0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json"
},
{
"name": "0.12mm Standard @FF Adventurer A5 0.25 nozzle",
"sub_path": "process/0.12mm Standard @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "0.12mm Standard @FF G4 0.25 nozzle",
"sub_path": "process/0.12mm Standard @FF G4 0.25 nozzle.json"
@@ -483,6 +503,10 @@
"name": "0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle",
"sub_path": "process/0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json"
},
{
"name": "0.24mm Draft @FF Adventurer A5 0.4 nozzle",
"sub_path": "process/0.24mm Draft @FF Adventurer A5 0.4 nozzle.json"
},
{
"name": "0.24mm Fine @Flashforge AD5M 0.8 Nozzle",
"sub_path": "process/0.24mm Fine @Flashforge AD5M 0.8 Nozzle.json"
@@ -495,6 +519,10 @@
"name": "0.18mm Fine @FF AD5X 0.6 nozzle",
"sub_path": "process/0.18mm Fine @FF AD5X 0.6 nozzle.json"
},
{
"name": "0.18mm Fine @FF Adventurer A5 0.6 nozzle",
"sub_path": "process/0.18mm Fine @FF Adventurer A5 0.6 nozzle.json"
},
{
"name": "0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle",
"sub_path": "process/0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle.json"
@@ -503,6 +531,10 @@
"name": "0.40mm Standard @FF AD5X 0.8 nozzle",
"sub_path": "process/0.40mm Standard @FF AD5X 0.8 nozzle.json"
},
{
"name": "0.40mm Standard @FF Adventurer A5 0.8 nozzle",
"sub_path": "process/0.40mm Standard @FF Adventurer A5 0.8 nozzle.json"
},
{
"name": "0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle",
"sub_path": "process/0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle.json"
@@ -511,6 +543,10 @@
"name": "0.42mm Draft @FF AD5X 0.6 nozzle",
"sub_path": "process/0.42mm Draft @FF AD5X 0.6 nozzle.json"
},
{
"name": "0.42mm Draft @FF Adventurer A5 0.6 nozzle",
"sub_path": "process/0.42mm Draft @FF Adventurer A5 0.6 nozzle.json"
},
{
"name": "0.08mm Standard @FF C5 0.25 nozzle",
"sub_path": "process/0.08mm Standard @FF C5 0.25 nozzle.json"
@@ -527,13 +563,37 @@
"name": "0.14mm Standard @FF C5 0.25 nozzle",
"sub_path": "process/0.14mm Standard @FF C5 0.25 nozzle.json"
},
{
"name": "0.06mm Standard @FF Adventurer A5 0.25 nozzle",
"sub_path": "process/0.06mm Standard @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "0.08mm Standard @FF Adventurer A5 0.25 nozzle",
"sub_path": "process/0.08mm Standard @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "0.10mm Standard @FF Adventurer A5 0.25 nozzle",
"sub_path": "process/0.10mm Standard @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "0.14mm Standard @FF Adventurer A5 0.25 nozzle",
"sub_path": "process/0.14mm Standard @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "0.24mm Fine @FF AD5X 0.8 nozzle",
"sub_path": "process/0.24mm Fine @FF AD5X 0.8 nozzle.json"
},
{
"name": "0.24mm Fine @FF Adventurer A5 0.8 nozzle",
"sub_path": "process/0.24mm Fine @FF Adventurer A5 0.8 nozzle.json"
},
{
"name": "0.56mm Draft @FF AD5X 0.8 nozzle",
"sub_path": "process/0.56mm Draft @FF AD5X 0.8 nozzle.json"
},
{
"name": "0.56mm Draft @FF Adventurer A5 0.8 nozzle",
"sub_path": "process/0.56mm Draft @FF Adventurer A5 0.8 nozzle.json"
}
],
"filament_list": [
@@ -661,6 +721,10 @@
"name": "Flashforge ABS Basic @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge ABS Basic @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge ABS Basic @FF Adventurer A5",
"sub_path": "filament/Flashforge ABS Basic @FF Adventurer A5.json"
},
{
"name": "Flashforge ABS Basic @FF G4",
"sub_path": "filament/Flashforge ABS Basic @FF G4.json"
@@ -741,6 +805,10 @@
"name": "Flashforge ASA Basic",
"sub_path": "filament/Flashforge ASA Basic.json"
},
{
"name": "Flashforge ASA Basic @FF Adventurer A5",
"sub_path": "filament/Flashforge ASA Basic @FF Adventurer A5.json"
},
{
"name": "Generic ASA @FF AD5M 0.25 Nozzle",
"sub_path": "filament/Generic ASA @FF AD5M 0.25 Nozzle.json"
@@ -769,6 +837,10 @@
"name": "Flashforge HS PETG @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge HS PETG @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge HS PETG @FF Adventurer A5",
"sub_path": "filament/Flashforge HS PETG @FF Adventurer A5.json"
},
{
"name": "Flashforge HS PETG @FF G4",
"sub_path": "filament/Flashforge HS PETG @FF G4.json"
@@ -801,6 +873,10 @@
"name": "Flashforge PETG Pro @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge PETG Pro @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge PETG Pro @FF Adventurer A5",
"sub_path": "filament/Flashforge PETG Pro @FF Adventurer A5.json"
},
{
"name": "Flashforge PETG Pro @FF G4",
"sub_path": "filament/Flashforge PETG Pro @FF G4.json"
@@ -825,6 +901,10 @@
"name": "Flashforge PETG Transparent @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge PETG Transparent @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge PETG Transparent @FF Adventurer A5",
"sub_path": "filament/Flashforge PETG Transparent @FF Adventurer A5.json"
},
{
"name": "Flashforge PETG Transparent @FF G4",
"sub_path": "filament/Flashforge PETG Transparent @FF G4.json"
@@ -925,6 +1005,10 @@
"name": "Flashforge PETG-CF @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge PETG-CF @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge PETG-CF @FF Adventurer A5",
"sub_path": "filament/Flashforge PETG-CF @FF Adventurer A5.json"
},
{
"name": "Generic PETG-CF10 @Flashforge AD4",
"sub_path": "filament/Generic PETG-CF10 @Flashforge AD4.json"
@@ -1069,6 +1153,14 @@
"name": "Flashforge HS PLA @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge HS PLA @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge HS PLA @FF Adventurer A5",
"sub_path": "filament/Flashforge HS PLA @FF Adventurer A5.json"
},
{
"name": "Flashforge HS PLA+ @FF Adventurer A5",
"sub_path": "filament/Flashforge HS PLA+ @FF Adventurer A5.json"
},
{
"name": "Flashforge PLA @FF AD5M 0.25 Nozzle",
"sub_path": "filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json"
@@ -1089,6 +1181,10 @@
"name": "Flashforge PLA Basic @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge PLA Basic @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge PLA Basic @FF Adventurer A5",
"sub_path": "filament/Flashforge PLA Basic @FF Adventurer A5.json"
},
{
"name": "Flashforge PLA Color Change",
"sub_path": "filament/Flashforge PLA Color Change.json"
@@ -1105,6 +1201,10 @@
"name": "Flashforge PLA Color Change @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge PLA Color Change @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge PLA Color Change @FF Adventurer A5",
"sub_path": "filament/Flashforge PLA Color Change @FF Adventurer A5.json"
},
{
"name": "Flashforge PLA Galaxy",
"sub_path": "filament/Flashforge PLA Galaxy.json"
@@ -1121,6 +1221,14 @@
"name": "Flashforge PLA Galaxy @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge PLA Galaxy @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge PLA Galaxy @FF Adventurer A5",
"sub_path": "filament/Flashforge PLA Galaxy @FF Adventurer A5.json"
},
{
"name": "Flashforge PLA LITE @FF Adventurer A5",
"sub_path": "filament/Flashforge PLA LITE @FF Adventurer A5.json"
},
{
"name": "Flashforge PLA Luminous",
"sub_path": "filament/Flashforge PLA Luminous.json"
@@ -1137,6 +1245,10 @@
"name": "Flashforge PLA Luminous @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge PLA Luminous @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge PLA Luminous @FF Adventurer A5",
"sub_path": "filament/Flashforge PLA Luminous @FF Adventurer A5.json"
},
{
"name": "Flashforge PLA Matte",
"sub_path": "filament/Flashforge PLA Matte.json"
@@ -1153,6 +1265,10 @@
"name": "Flashforge PLA Matte @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge PLA Matte @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge PLA Matte @FF Adventurer A5",
"sub_path": "filament/Flashforge PLA Matte @FF Adventurer A5.json"
},
{
"name": "Flashforge PLA Metal",
"sub_path": "filament/Flashforge PLA Metal.json"
@@ -1169,6 +1285,10 @@
"name": "Flashforge PLA Metal @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge PLA Metal @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge PLA Metal @FF Adventurer A5",
"sub_path": "filament/Flashforge PLA Metal @FF Adventurer A5.json"
},
{
"name": "Flashforge PLA Pro",
"sub_path": "filament/Flashforge PLA Pro.json"
@@ -1185,6 +1305,10 @@
"name": "Flashforge PLA Pro @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge PLA Pro @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge PLA Pro @FF Adventurer A5",
"sub_path": "filament/Flashforge PLA Pro @FF Adventurer A5.json"
},
{
"name": "Flashforge PLA Sparkle",
"sub_path": "filament/Flashforge PLA Sparkle.json"
@@ -1201,6 +1325,14 @@
"name": "Flashforge PLA Sparkle @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge PLA Sparkle @FF Adventurer A5",
"sub_path": "filament/Flashforge PLA Sparkle @FF Adventurer A5.json"
},
{
"name": "Flashforge R PLA @FF Adventurer A5",
"sub_path": "filament/Flashforge R PLA @FF Adventurer A5.json"
},
{
"name": "Generic PLA @FF AD5M 0.25 Nozzle",
"sub_path": "filament/Generic PLA @FF AD5M 0.25 Nozzle.json"
@@ -1269,6 +1401,10 @@
"name": "Flashforge PLA-CF @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge PLA-CF @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge PLA-CF @FF Adventurer A5",
"sub_path": "filament/Flashforge PLA-CF @FF Adventurer A5.json"
},
{
"name": "Flashforge PPS @FF G4",
"sub_path": "filament/Flashforge PPS @FF G4.json"
@@ -1313,6 +1449,10 @@
"name": "Flashforge PLA Silk @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge PLA Silk @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge PLA Silk @FF Adventurer A5",
"sub_path": "filament/Flashforge PLA Silk @FF Adventurer A5.json"
},
{
"name": "Flashforge PLA-SILK @FF AD5M 0.25 Nozzle",
"sub_path": "filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json"
@@ -1413,6 +1553,10 @@
"name": "Flashforge TPU 95A @FF AD5X 0.8 nozzle",
"sub_path": "filament/Flashforge TPU 95A @FF AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge TPU 95A @FF Adventurer A5",
"sub_path": "filament/Flashforge TPU 95A @FF Adventurer A5.json"
},
{
"name": "Flashforge TPU 95A @FF G4",
"sub_path": "filament/Flashforge TPU 95A @FF G4.json"
@@ -1453,6 +1597,10 @@
"name": "Generic TPU @Flashforge AD4",
"sub_path": "filament/Generic TPU @Flashforge AD4.json"
},
{
"name": "Kexcelled TPU 64D @FF Adventurer A5",
"sub_path": "filament/Kexcelled TPU 64D @FF Adventurer A5.json"
},
{
"name": "Flashforge ABS Basic @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json"
@@ -1949,6 +2097,10 @@
"name": "Polymaker CoPA @FF G4P 0.8 HF nozzle",
"sub_path": "filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json"
},
{
"name": "Generic PETG @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Generic PETG @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge HS PETG @FF G4 0.6 HF nozzle",
"sub_path": "filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json"
@@ -2045,6 +2197,10 @@
"name": "Flashforge PETG-CF @FF G4P 0.6 nozzle",
"sub_path": "filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json"
},
{
"name": "Flashforge HS PLA @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge HS PLA @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge HS PLA @FF AD5X 0.25 nozzle",
"sub_path": "filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json"
@@ -2057,6 +2213,10 @@
"name": "Flashforge HS PLA @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge HS PLA+ @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge HS PLA+ @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Basic @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json"
@@ -2105,6 +2265,10 @@
"name": "Flashforge PLA Galaxy @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge PLA LITE @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge PLA LITE @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Luminous @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json"
@@ -2197,6 +2361,14 @@
"name": "Flashforge PLA Sparkle @FF G4P 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json"
},
{
"name": "Flashforge R PLA @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge R PLA @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Generic PLA @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Generic PLA @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge HS PLA @FF G4 0.6 HF nozzle",
"sub_path": "filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json"
@@ -2497,6 +2669,66 @@
"name": "Flashforge PLA Silk @FF AD5M 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json"
},
{
"name": "Flashforge ABS Basic @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge ABS Basic @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge ASA Basic @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge ASA Basic @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge HS PETG @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge HS PETG @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge PETG Basic @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge PETG Basic @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge PETG Pro @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge PETG Pro @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge PETG Transparent @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge PETG Transparent @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Basic @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Basic @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Color Change @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Color Change @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Galaxy @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Galaxy @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Luminous @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Luminous @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Matte @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Matte @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Metal @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Metal @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Pro @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Pro @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Sparkle @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Sparkle @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge PLA Silk @FF Adventurer A5 0.25 nozzle",
"sub_path": "filament/Flashforge PLA Silk @FF Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge ABS Basic @FF C5",
"sub_path": "filament/Flashforge ABS Basic @FF C5.json"
@@ -2907,6 +3139,10 @@
"name": "Flashforge AD5X 0.25 nozzle",
"sub_path": "machine/FlashForge AD5X 0.25 nozzle.json"
},
{
"name": "Flashforge Adventurer A5 0.25 nozzle",
"sub_path": "machine/Flashforge Adventurer A5 0.25 nozzle.json"
},
{
"name": "Flashforge Guider4 0.25 nozzle",
"sub_path": "machine/Flashforge Guider4 0.25 nozzle.json"
@@ -2919,6 +3155,10 @@
"name": "Flashforge AD5X 0.4 nozzle",
"sub_path": "machine/Flashforge AD5X 0.4 nozzle.json"
},
{
"name": "Flashforge Adventurer A5 0.4 nozzle",
"sub_path": "machine/Flashforge Adventurer A5 0.4 nozzle.json"
},
{
"name": "Flashforge Creator 5 0.25 nozzle",
"sub_path": "machine/Flashforge Creator 5 0.25 nozzle.json"
@@ -2963,10 +3203,18 @@
"name": "Flashforge AD5X 0.6 nozzle",
"sub_path": "machine/Flashforge AD5X 0.6 nozzle.json"
},
{
"name": "Flashforge Adventurer A5 0.6 nozzle",
"sub_path": "machine/Flashforge Adventurer A5 0.6 nozzle.json"
},
{
"name": "Flashforge AD5X 0.8 nozzle",
"sub_path": "machine/Flashforge AD5X 0.8 nozzle.json"
},
{
"name": "Flashforge Adventurer A5 0.8 nozzle",
"sub_path": "machine/Flashforge Adventurer A5 0.8 nozzle.json"
},
{
"name": "Flashforge Guider4 0.4 HF nozzle",
"sub_path": "machine/Flashforge Guider4 0.4 HF nozzle.json"
Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

@@ -0,0 +1,44 @@
{
"type": "filament",
"name": "Flashforge ABS Basic @FF Adventurer A5 0.25 nozzle",
"inherits": "Flashforge ABS Basic @FF AD5M 0.25 nozzle",
"from": "system",
"setting_id": "jRIJ0cO4GhaMg2By",
"instantiation": "true",
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"eng_plate_temp": [
"105"
],
"eng_plate_temp_initial_layer": [
"105"
],
"filament_settings_id": [
"Flashforge ABS Basic @FF Adventurer A5 0.25 nozzle"
],
"compatible_printers": [
"Flashforge Adventurer A5 0.25 nozzle"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"textured_cool_plate_temp": [
"0"
],
"textured_cool_plate_temp_initial_layer": [
"0"
],
"textured_plate_temp": [
"105"
],
"textured_plate_temp_initial_layer": [
"105"
]
}
@@ -0,0 +1,50 @@
{
"type": "filament",
"name": "Flashforge ABS Basic @FF Adventurer A5",
"inherits": "Generic ABS @Flashforge",
"from": "system",
"setting_id": "rDW4AwKc7SD7WIxN",
"filament_id": "OFibWuBd",
"filament_vendor": [
"Flashforge"
],
"instantiation": "true",
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"eng_plate_temp": [
"105"
],
"eng_plate_temp_initial_layer": [
"105"
],
"filament_settings_id": [
"Flashforge ABS Basic @FF Adventurer A5"
],
"compatible_printers": [
"Flashforge Adventurer A5 0.4 nozzle",
"Flashforge Adventurer A5 0.6 nozzle",
"Flashforge Adventurer A5 0.8 nozzle"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"textured_cool_plate_temp": [
"0"
],
"textured_cool_plate_temp_initial_layer": [
"0"
],
"textured_plate_temp": [
"105"
],
"textured_plate_temp_initial_layer": [
"105"
]
}
@@ -0,0 +1,44 @@
{
"type": "filament",
"name": "Flashforge ASA Basic @FF Adventurer A5 0.25 nozzle",
"inherits": "Flashforge ASA Basic @FF AD5M 0.25 nozzle",
"from": "system",
"setting_id": "OIUW8rw2VhNpeVpF",
"instantiation": "true",
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"eng_plate_temp": [
"105"
],
"eng_plate_temp_initial_layer": [
"105"
],
"filament_settings_id": [
"Flashforge ASA Basic @FF Adventurer A5 0.25 nozzle"
],
"compatible_printers": [
"Flashforge Adventurer A5 0.25 nozzle"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"textured_cool_plate_temp": [
"0"
],
"textured_cool_plate_temp_initial_layer": [
"0"
],
"textured_plate_temp": [
"105"
],
"textured_plate_temp_initial_layer": [
"105"
]
}
@@ -0,0 +1,50 @@
{
"type": "filament",
"name": "Flashforge ASA Basic @FF Adventurer A5",
"inherits": "Generic ASA @Flashforge",
"from": "system",
"setting_id": "FY9mcqOyuu1Gqq1m",
"filament_id": "OFFFg2Pf",
"filament_vendor": [
"Flashforge"
],
"instantiation": "true",
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"eng_plate_temp": [
"105"
],
"eng_plate_temp_initial_layer": [
"105"
],
"filament_settings_id": [
"Flashforge ASA Basic @FF Adventurer A5"
],
"compatible_printers": [
"Flashforge Adventurer A5 0.4 nozzle",
"Flashforge Adventurer A5 0.6 nozzle",
"Flashforge Adventurer A5 0.8 nozzle"
],
"supertack_plate_temp": [
"0"
],
"supertack_plate_temp_initial_layer": [
"0"
],
"textured_cool_plate_temp": [
"0"
],
"textured_cool_plate_temp_initial_layer": [
"0"
],
"textured_plate_temp": [
"105"
],
"textured_plate_temp_initial_layer": [
"105"
]
}
@@ -0,0 +1,44 @@
{
"type": "filament",
"name": "Flashforge HS PETG @FF Adventurer A5 0.25 nozzle",
"inherits": "Flashforge HS PETG @FF AD5M 0.25 nozzle",
"from": "system",
"setting_id": "UFal5gkMUJpoiOWP",
"instantiation": "true",
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"filament_settings_id": [
"Flashforge HS PETG @FF Adventurer A5 0.25 nozzle"
],
"compatible_printers": [
"Flashforge Adventurer A5 0.25 nozzle"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"textured_cool_plate_temp": [
"70"
],
"textured_cool_plate_temp_initial_layer": [
"70"
],
"textured_plate_temp": [
"70"
],
"textured_plate_temp_initial_layer": [
"70"
]
}
@@ -0,0 +1,59 @@
{
"type": "filament",
"name": "Flashforge HS PETG @FF Adventurer A5",
"inherits": "Generic PETG @Flashforge",
"from": "system",
"setting_id": "ZpNEEHTtvhMJS8Kv",
"filament_id": "OFDxxTpW",
"filament_vendor": [
"Flashforge"
],
"instantiation": "true",
"close_fan_the_first_x_layers": [
"2"
],
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"eng_plate_temp": [
"70"
],
"eng_plate_temp_initial_layer": [
"70"
],
"filament_flow_ratio": [
"0.98"
],
"filament_max_volumetric_speed": [
"21"
],
"filament_settings_id": [
"Flashforge HS PETG @FF Adventurer A5"
],
"compatible_printers": [
"Flashforge Adventurer A5 0.4 nozzle",
"Flashforge Adventurer A5 0.6 nozzle",
"Flashforge Adventurer A5 0.8 nozzle"
],
"supertack_plate_temp": [
"70"
],
"supertack_plate_temp_initial_layer": [
"70"
],
"textured_cool_plate_temp": [
"70"
],
"textured_cool_plate_temp_initial_layer": [
"70"
],
"textured_plate_temp": [
"70"
],
"textured_plate_temp_initial_layer": [
"70"
]
}
@@ -0,0 +1,26 @@
{
"type": "filament",
"name": "Flashforge HS PLA @FF Adventurer A5 0.25 nozzle",
"inherits": "Flashforge HS PLA @FF AD5M 0.25 nozzle",
"from": "system",
"setting_id": "Ewx6vNp0sDLDczPc",
"instantiation": "true",
"cool_plate_temp": [
"40"
],
"cool_plate_temp_initial_layer": [
"40"
],
"filament_settings_id": [
"Flashforge HS PLA @FF Adventurer A5 0.25 nozzle"
],
"compatible_printers": [
"Flashforge Adventurer A5 0.25 nozzle"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
]
}
@@ -0,0 +1,47 @@
{
"type": "filament",
"name": "Flashforge HS PLA @FF Adventurer A5",
"inherits": "Generic PLA @Flashforge",
"from": "system",
"setting_id": "2L7FS5JeAyPb3y0s",
"filament_id": "OFIK2H3G",
"filament_vendor": [
"Flashforge"
],
"instantiation": "true",
"cool_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer": [
"45"
],
"eng_plate_temp": [
"55"
],
"filament_max_volumetric_speed": [
"22"
],
"filament_settings_id": [
"Flashforge HS PLA @FF Adventurer A5"
],
"compatible_printers": [
"Flashforge Adventurer A5 0.4 nozzle",
"Flashforge Adventurer A5 0.6 nozzle",
"Flashforge Adventurer A5 0.8 nozzle"
],
"hot_plate_temp": [
"55"
],
"pressure_advance": [
"0.0325"
],
"textured_cool_plate_temp": [
"45"
],
"textured_cool_plate_temp_initial_layer": [
"45"
],
"textured_plate_temp": [
"55"
]
}

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