diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b5e0d1b9..9b75052f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,7 @@ All notable changes to Bambuddy will be documented in this file. - **Sort File Manager folder tree by recent activity (#1770, requested by @Kingbuzz0)** — Until now the folder tree was always sorted alphabetically by name, both backend (`order_by(LibraryFolder.name)`) and frontend. The reporter — a user with a lot of nested cad / slicer directories — wanted "find folders that just got a new 3MF" without scrolling the whole alphabet. **What changed.** The folder sidebar header gains a small dropdown (**By name** / **By recent activity**) plus an asc / desc arrow button, sitting alongside the existing Collapse + Wrap toggles. Choice persists per-browser via `localStorage` (`library-folder-sort-field`, `library-folder-sort-direction`) so the preference survives reloads. **Activity semantics.** `latest_activity_at` per folder = `MAX(folder.updated_at, MAX(immediate-child file.updated_at))`. The DB had the data — `LibraryFile.updated_at` is `onupdate=func.now()` and `LibraryFolder.updated_at` the same — but `LibraryFolder.updated_at` alone only bumps on rename / move, not on file-add inside the folder, which is exactly the wrong signal for "did I just drop a new model in here." The aggregate fixes that. Recursion across subfolders is intentionally **NOT** computed — a deeply nested new 3MF bubbles its immediate parent, not every ancestor up to the root. This keeps the route a single `GROUP BY` rather than a recursive CTE, matching the existing file_counts subquery shape sibling at `library.py:746`. A future Tier 3 follow-up could add the recursive-CTE variant if anyone reports deeply-nested updates not bubbling far enough. **Backend.** New `latest_activity_at: datetime | None` field on `FolderResponse` and `FolderTreeItem` schemas. The `/folders` tree route picks up a sibling `func.max(LibraryFile.updated_at)` group-by alongside the existing file-count subquery; resolves the field per row. The `/folders/by-project/{id}` and `/folders/by-archive/{id}` routes collapse their per-row file-count subquery to fetch `count + max` in one trip (one extra column, zero extra round-trips). All 5 single-folder constructors (POST `/folders`, GET `/folders/{id}`, PUT `/folders/{id}`, POST `/folders/external`, the create flows) populate the field with `max(folder.updated_at, latest_file)` or fall back to `folder.updated_at` when there are no files, so the API surface is consistent across every route that returns a folder. **External folders.** `LibraryFile` rows are created for scanned external files too (`library.py:526`), so the MAX aggregate works on them — but the timestamp reflects when Bambuddy last *scanned / re-indexed* the file, not the filesystem mtime. For a NAS that gets new files added outside Bambuddy, the activity-sort lags until the next scan. Documented in the file-manager wiki page rather than papered over with `os.stat()` on every list call, which would stall the route on slow mounts. **Frontend.** A new recursive `sortedFolders` `useMemo` applies the comparator uniformly to top-level + every nested `children` level so sort order is consistent at every depth. Comparator falls back to name when activity timestamps tie or are both null, so an empty folder never elbows a recently-used one to a random place — empties go to the end of the activity bucket regardless of direction. Both the desktop sidebar render and the mobile selector dropdown consume `sortedFolders` so the order is identical across breakpoints. The single-folder `findFolder()` traversal and `selectedFolder` memo still operate on the unsorted `folders` because they index by ID — sort-order-independent. **Recursion safety.** The sort creates fresh object refs at every level on every memo invocation; the `FolderTreeItem` keys stay ID-based (`${folder.id}-${collapseFoldersByDefault ? 'c' : 'e'}`) so React reconciliation by ID preserves folder expansion state across sort flips. **i18n.** 3 new keys in `fileManager.*` (`folderSort`, `folderSortByName`, `folderSortByActivity`) translated in all 11 locales (de / en / es / fr / it / ja / ko / pt-BR / tr / zh-CN / zh-TW), no English fallback. Parity 5238 leaves per locale. **Tests.** 2 new backend integration cases in `test_library_api.py` (file-in-folder bubbles `latest_activity_at` to the file's timestamp, empty folder falls back to `folder.updated_at`). All 152 library + folder + trash + slice integration tests still pass; 51/51 FileManagerPage frontend tests still pass; 26/26 QueuePage tests still pass; `npm run build` clean; `ruff` clean; i18n parity green. ### Fixed +- **Nozzle sizes other than 0.4mm now fully supported in AMS Slot config + pre-dispatch guard (#1899, reporter @TheUltimateC0der; also hit by @icaisolutionsb2b-hub on X2D)** — On an H2S (or any printer) with a 0.6mm nozzle installed, the **Configure AMS Slot** picker only ever offered 0.4mm filament presets, so trays couldn't be set to the profile that matched the slice, and dispatching the 0.6-sliced job made the printer bail out with the cryptic HMS `_8012` "Failed to get AMS mapping table". Two distinct gaps. **(1) The slot picker was hardwired to 0.4mm.** `ConfigureAmsSlotModal` takes a `nozzleDiameter` prop that defaults to `'0.4'` (`ConfigureAmsSlotModal.tsx:287`) and drives both the local-preset compatibility filter (it builds `"Bambu Lab H2S 0.4 nozzle"` and rejects imported 0.6 presets whose `compatible_printers` lists "…0.6 nozzle") and the K-profile query. Neither call site — `PrintersPage.tsx` nor the SpoolBuddy kiosk's `SpoolBuddyAmsPage.tsx` — ever passed the prop, so the modal assumed 0.4 regardless of the hardware. The real installed diameter was already in scope on the printer status (`status.nozzles[0].nozzle_diameter`, the same field that renders the "• 0.6mm" badge on the card). **Fix:** new `resolveSlotNozzleDiameter(status, amsId)` helper in `utils/amsHelpers.ts` reads the installed nozzle for a given AMS — on dual-nozzle printers (H2D) it resolves the specific nozzle feeding that AMS via `ams_extruder_map[amsId] → nozzles[idx]`, on single-nozzle printers it falls back to the primary nozzle, and it returns `undefined` when the printer hasn't reported nozzle hardware yet so the modal keeps its 0.4 default. Both call sites now pass `nozzleDiameter={resolveSlotNozzleDiameter(status, slot.amsId)}`, so the picker filters presets by the nozzle actually on the machine. **(2) No pre-dispatch validation of nozzle size.** Nothing in the dispatch path (`_compute_ams_mapping_for_printer` / `_match_filaments_to_slots`) ever compared the sliced nozzle diameter against the installed nozzle — the AMS mapping matches on `tray_info_idx` → colour → type with a hard filter only on extruder id, never diameter — so Bambuddy would ship a mapping the firmware then rejects with `_8012` (or `0500_4038`), leaving the user staring at a printer-side error with no explanation. **Fix:** a nozzle-mismatch guard in `_start_print` (backend), placed before preheat and upload so no time is wasted, compares `archive.nozzle_diameter` (parsed from the sliced 3MF's `slice_info`; `None` when the slice doesn't declare it) against the printer's reported nozzles via two pure helpers `_installed_nozzle_diameters()` and `_nozzle_mismatch_message()`. On a positive mismatch it fails the queue item with an actionable message — "File sliced for a 0.6mm nozzle, but the printer has 0.4mm installed. Re-slice for the installed nozzle, or install the matching nozzle before printing." — and fires the same failed-notification + WS event as other dispatch failures. **Fail-safe by construction:** it blocks ONLY on a positive mismatch — when the slice carries no nozzle diameter, or the printer hasn't reported its nozzles, the guard is a no-op and dispatch proceeds exactly as before; on dual-nozzle printers a match against EITHER installed nozzle passes (a 0.6 slice is fine if one of the two hotends is a 0.6). The 0.05mm tolerance absorbs float noise while staying well inside the 0.2mm gap between adjacent nozzle sizes. **Tests.** Frontend: 7 cases in `resolveSlotNozzleDiameter.test.ts` (null/empty status, single-nozzle, dual-nozzle per-AMS resolution, fallbacks). Backend: 15 cases in `test_scheduler_nozzle_mismatch.py` — 5 for `_installed_nozzle_diameters` (parse, empty-default stub, unparseable/zero, dual-nozzle), 8 for `_nozzle_mismatch_message` (block/pass, float tolerance, dual-nozzle either-match, both fail-safe None paths, adjacent-size discrimination), and 2 end-to-end `_start_print` cases proving a mismatch fails the item *before* upload/start_print and a match lets dispatch proceed. Existing scheduler suites (cleanup-library, ams-mapping, cancel-race, preheat — 118 tests) stay green, which also proves the guard is a transparent no-op on the existing archive-without-nozzle path. `npm run build`, ESLint, `ruff check backend/` all clean. **Scope.** No DB migration, no new permission, no new i18n key (the failure message rides the existing `error_message` surface already rendered on failed queue items). Frontend picker change + backend guard only. - **"Remember Me" appeared broken — an authenticated visit to `/login` rendered the login form instead of redirecting (#1889, reporter @superdong69)** — Users with a perfectly valid, persisted session reported that Bambuddy "never stays logged in": they log in with Remember Me, come back later, and are met with the login form again. The reporter did the legwork and traced it to routing, not session persistence: `frontend/src/pages/LoginPage.tsx` destructured only `const { login, loginWithToken } = useAuth()` and never looked at the authenticated state, so the `/login` route (rendered unwrapped in `App.tsx` — `ProtectedRoute` only guards the *other* direction, unauthenticated → `/login`) showed the credentials step even when the token was live. On that same page load the app's own bootstrap sends `GET /api/v1/auth/me` with the Bearer token and gets a 200 with the full user object — the session is fully alive; only the view is wrong. **Why it's easy to hit and self-reinforcing.** After a few visits the browser address bar autocompletes the origin to its most-visited path, which becomes `/login`, so every subsequent visit lands on the form and the illusion of "logged out" compounds. Navigating to `/` instead lands on the dashboard, logged in, no credentials asked — which is also why it can't be reproduced by testing `/` directly. **Fix.** `LoginPage` now also reads `user` and `loading` from the auth context and, in a `useEffect`, redirects an already-authenticated visitor with `navigate('/', { replace: true })` once the auth check has settled. The effect is gated on `step === 'credentials'` so it never interrupts the 2FA step or the OIDC-callback branch, both of which perform their own `navigate()` after `loginWithToken`. It redirects to `/` rather than `resolvePostLoginRedirect()` so it can't consume the OIDC redirect stash — an already-authenticated direct visit has no pending redirect to honour. **Tests.** 2 new cases in `LoginPage.test.tsx` (`authenticated redirect (#1889)`): a live session (token set + `/auth/me` → 200) redirects to `/` with `replace: true`; an unauthenticated visit renders the Sign in form and does not redirect. Existing 29 LoginPage cases stay green; `npm run build` and ESLint clean. **Scope.** Frontend-only, routing layer. No backend change, no DB migration, no new permission, no new i18n key. Note this is the routing facet of #1889; the separate token-discard-on-transient-failure hardening in `AuthContext` (don't drop a valid persisted token on a non-401 blip) is already in the tree. - **Multi-nozzle prints no longer collapse all filaments onto one nozzle (#1825, reporter @needo37)** — The single-active-extruder shortcut added in #851 (for #827) at `threemf_tools.py:354` runs `before` the per-filament `group_id` mapping, and fires whenever `extruder_nozzle_stats` reports exactly one extruder as having a nozzle installed. On the H2D / H2D Pro / X2D (2-nozzle) and H2C (3+-nozzle tool-changer), this field is data-driven from the slicer profile's enumerated nozzle volume types — when an HT-AMS or High-Flow nozzle's type isn't enumerated in the slice's profile (common with asymmetric extruder setups, e.g. HT-AMS feeding the right nozzle on an H2D), the slicer emits e.g. `['Standard#1', 'Standard#0']` even though the print genuinely uses both extruders. `sum(active_extruders) == 1` triggered → every filament was force-assigned to `physical_extruder_map[active_idx]`, the authoritative per-filament `group_id` was discarded, and the Filament Mapping panel showed both filaments badged **L** with the auto-match hard filter (`print_scheduler.py` `_compute_ams_mapping_for_printer` ~line 1239) blocking the wrong-nozzle tray as "Type not found". Bug is **parser-side and model-agnostic** — triggers purely on 3MF data shape, not on the attached AMS hardware: regular dual-AMS H2D installs typically slice to `['Standard#1', 'Standard#1']` (sum==2) and never enter the buggy branch, which is why this bug was invisible on the most common dual-AMS setup. Physical nozzle routing was **not** affected — the actual extrude path comes from the sliced gcode + the verbatim `nozzle_mapping` from the project_file (#1780), not from this parse — so the bug surfaced as auto-match failure + wrong L/R badge, not wrong-nozzle extrusion. **Fix.** Gate the single-active shortcut on `len(distinct_group_ids) <= 1` from `slice_info.config`. The slice_info parse is hoisted above the shortcut check (and reused by Priority 1) so the gate adds zero extra I/O. When the slice contains ≥2 distinct group_ids, the shortcut skips and the existing `group_id`-based Priority 1 mapping runs. The gate only **narrows** the shortcut path — it can't widen the buggy collapse onto any previously-working slice. The same condition generalizes to H2C and any future N-nozzle printer for free (no nozzle-count branching). **Tests.** Two new cases in `TestExtractNozzleMappingFrom3MF`: `test_single_active_under_report_with_multi_group_falls_through` pins the #1825 regression (`['Standard#1','Standard#0']` + group_ids `{0,1}` → `{1:1, 2:0}` not `{1:1, 2:1}`); `test_single_active_with_single_group_still_uses_shortcut` preserves the #851 behaviour (same stats + only `group_id=0` → shortcut still fires → `{1:1, 2:1}`). Existing `test_single_active_extruder_maps_all_slots` and `test_two_active_extruders_falls_through` stay green. **Suites.** `pytest -n 30 backend/tests/unit/test_scheduler_ams_mapping.py backend/tests/unit/test_scheduler_filament_deficit.py backend/tests/unit/test_scheduler_filament_override.py backend/tests/unit/test_fallback_archive_mqtt_filament.py backend/tests/integration/test_archives_api.py backend/tests/integration/test_library_api.py` 272/272 green. `ruff check backend/` clean. **Scope.** Backend-only, parse layer. No DB migration. No new permission. No frontend change. The L/R-only badge limitation on 3+-nozzle printers (H2C tool-changer) called out in the report is a separate cosmetic follow-up and not part of this fix. - **HMS Action buttons now reach the printer (#1830, H2D/H2C wrong-plate verification)** — The HMS Actions feature shipped in #1743 looked correct at the publish layer but the firmware silently dropped the commands at the printer, so clicking "Stop printing", "Problem solved and resume", or "Ignore and resume" did nothing visible on the live H2D — the modal kept reappearing, the print stayed paused, and the route still returned `200 OK`. Three independent bugs combined into one user-facing failure. **(1) Wrong command shape for resume / stop.** `hms_resume()` and `hms_stop()` sent the documented-but-not-actually-used `{"err": , "param": "reserve", "job_id": , ...}` shape that BambuStudio never produces. Bambu firmware rejects this silently — verified by injecting candidate shapes on `device//request` against a live H2D paused on a wrong-plate HMS: the `err`-bearing shape held PAUSE → PAUSE for the full window, the plain `{"print":{"command":"stop","param":"","sequence_id":"0"}}` transitioned PAUSE → FAILED in 1.7s, the same plain `resume` transitioned PAUSE → RUNNING in <2s. Fix: both helpers send the plain shape now, no `err`, no `job_id`, no `param:"reserve"`. **(2) `IGNORE_RESUME` mapped to the wrong command for paused prints.** The original mapping dispatched `idle_ignore` for both `IGNORE_RESUME` and `NO_REMINDER_NEXT_TIME`. `idle_ignore` is BambuStudio's "dismiss this warning" command and only works for non-pause warnings — verified against the H2D, idle_ignore on a paused print is silently rejected regardless of `err`. `hms_ignore()` now branches on `self.state.gcode_state == "PAUSE"`: paused → dispatch plain `resume` (which is what the button actually means on a paused print), running/idle → keep `idle_ignore` with the `type=0/1` persistence flag. `DONT_REMIND_NEXT_TIME` on PAUSE degrades to resume too — the "don't remind" flag can't ride along on a resume but the user's clicked-action intent (continue printing) is honoured. **(3) 64-bit `hms[]`-array faults truncated to a non-matching `err` (#1830 §(1)).** The hms[] parser at line 2740 built the short code as `f"{(attr >> 16) & 0xFFFF:04X}_{code & 0xFFFF:04X}"`, discarding 32 of the 64 bits of the fault identifier. For codes whose full form is e.g. `0C00_0300_0002_000C`, the truncated `0C00000C` doesn't match what the firmware compares against in `idle_ignore`. New `HMSError.full_code` field carries the canonical hex identifier — 16 chars `f"{attr:08X}{code:08X}"` for hms[]-sourced faults, 8 chars `f"{print_error:08X}"` for print_error-sourced faults (which are already 32-bit). Catalog lookup tries the 16-char form first and falls back to the 8-char short code so existing entries keep matching. Frontend echoes `error.full_code` back as `HmsActionBody.print_error` instead of recomputing the short code; the schema's pattern relaxes to `^[0-9A-Fa-f]{8}([0-9A-Fa-f]{8})?$` to accept both lengths. **(4) Masking failure — publish-success returned as printer-ack (#1830 §(3)).** `execute_hms_action` returned True the moment the publish succeeded, so any of the three bugs above produced `200 OK` while the printer ignored the command and the modal kept popping. The `/hms/execute-action` route now snapshots `(gcode_state, print_error, hms_errors count)` before dispatch, awaits `HMS_ACTION_ACK_WAIT_SECONDS` (default 2.5s, module-level so tests override), and returns `502 "Printer did not acknowledge HMS action within 2.5s"` if none of those moved. Every accepted HMS action mutates at least one of the three, so this is a clean signal. **Empirical verification.** A test harness on `device/0948BB540200427/request` confirmed each shape against the live H2D: a print sent with deliberately-wrong build plate raises `print_error=0x05008051` ("Detected build plate is not the same as the Gcode file"), the printer enters `gcode_state=PAUSE`, and the new command shapes transition out correctly. The current Bambuddy code (before this fix) failed to act on every button. **Tests.** `test_hms_actions.py` shape assertions rewritten — `test_resume_is_plain_no_err_no_job_id`, `test_stop_is_plain_no_err_no_job_id`, `test_ignore_resume_dispatches_resume_when_print_paused`, `test_ignore_resume_uses_idle_ignore_when_not_paused`, `test_dont_remind_dispatches_resume_when_paused`, `test_dont_remind_uses_idle_ignore_type_one_when_not_paused`, `test_idle_ignore_accepts_16_char_full_code`. New `TestHMSFullCode` class in `test_bambu_mqtt.py` pins the parser contract — `test_hms_array_path_populates_16_char_full_code`, `test_print_error_path_populates_8_char_full_code`, `test_hms_array_catalog_lookup_tries_16_char_first`, `test_hms_array_catalog_falls_back_to_8_char`. New integration cases in `test_printers_api.py` — `test_execute_hms_action_no_printer_ack_returns_502`, `test_execute_hms_action_accepts_16_char_full_code`. The malformed-input test now covers 9- and 15-char rejections (the relaxed pattern accepts 8 OR 16, nothing in between). `pytest -n 30 backend/tests/unit/services/test_hms_actions.py backend/tests/unit/services/test_bambu_mqtt.py backend/tests/unit/services/test_printer_manager.py backend/tests/integration/test_printers_api.py` green (509 + 181). `ruff check` clean. Frontend `npm run build` clean. **Scope.** No DB migration. No new permission. No new i18n key — the frontend toast on action failure already uses the existing `hmsErrors.actionFailed` string, which now gets the more accurate "Printer did not acknowledge" message instead of "Failed to send action". The `HMSError.full_code` field defaults to `""` so old in-memory state surviving a backend upgrade (without an MQTT reconnect) degrades to the existing 8-char short code via the frontend's `||` fallback. diff --git a/backend/app/services/print_scheduler.py b/backend/app/services/print_scheduler.py index 98fda4607..e7440ee97 100644 --- a/backend/app/services/print_scheduler.py +++ b/backend/app/services/print_scheduler.py @@ -144,6 +144,50 @@ def _canonical_filament_type(ftype: str) -> str: return _FILAMENT_EQUIV_MAP.get(upper, upper) +def _installed_nozzle_diameters(status) -> list[float]: + """Parse the installed nozzle diameters from a PrinterState (#1899). + + Returns the diameters the printer actually reports (e.g. [0.4] single-nozzle, + [0.4, 0.6] dual-nozzle), skipping the empty-string defaults that populate a + NozzleInfo before MQTT fills it in. An empty list means "the printer hasn't + told us its nozzle hardware" — callers must treat that as unknown, not as a + mismatch, so we never block a print on missing data. + """ + diameters: list[float] = [] + for nozzle in getattr(status, "nozzles", None) or []: + raw = getattr(nozzle, "nozzle_diameter", "") or "" + try: + value = float(raw) + except (TypeError, ValueError): + continue + if value > 0: + diameters.append(value) + return diameters + + +def _nozzle_mismatch_message(sliced_nozzle: float | None, installed: list[float]) -> str | None: + """Return an actionable error message when the sliced nozzle can't be + printed on any installed nozzle, else None (#1899). + + Fail-safe: returns None whenever we lack the data to judge — no sliced + diameter, or the printer reported no nozzles — so a print is only ever + blocked on a POSITIVE mismatch. On dual-nozzle printers a match against + EITHER installed nozzle passes (a 0.6 slice is fine if one hotend is 0.6). + The 0.05 tolerance absorbs float noise while staying well inside the 0.2 + gap between adjacent nozzle sizes (0.2/0.4/0.6/0.8). + """ + if not sliced_nozzle or not installed: + return None + if any(abs(d - sliced_nozzle) < 0.05 for d in installed): + return None + installed_str = " / ".join(f"{d:g}mm" for d in installed) + return ( + f"File sliced for a {sliced_nozzle:g}mm nozzle, but the printer has " + f"{installed_str} installed. Re-slice for the installed nozzle, or " + f"install the matching nozzle before printing." + ) + + class PrintScheduler: """Background scheduler that processes the print queue.""" @@ -2629,6 +2673,47 @@ class PrintScheduler: await self._power_off_if_needed(db, item) return + # Nozzle-diameter mismatch guard (#1899). A file sliced for one nozzle + # size dispatched to a printer with a different nozzle installed is + # rejected by the firmware with a cryptic HMS ("Failed to get AMS mapping + # table" 0700_8012, or "nozzle diameter … not consistent" 0500_4038) that + # gives the user no idea what went wrong. Catch it here, before we spend + # time preheating and uploading, and fail with an actionable message. + # Fail-safe by construction: only a POSITIVE mismatch blocks — when the + # slice carries no nozzle diameter (archive.nozzle_diameter is None) or + # the printer hasn't reported its nozzles yet, we fall through and let the + # print proceed exactly as before. On dual-nozzle printers (H2D) a match + # against EITHER installed nozzle passes, so a 0.6 slice is fine as long + # as one of the two hotends is a 0.6. + sliced_nozzle = archive.nozzle_diameter if archive else None + if sliced_nozzle: + installed = _installed_nozzle_diameters(printer_manager.get_status(item.printer_id)) + mismatch_msg = _nozzle_mismatch_message(sliced_nozzle, installed) + if mismatch_msg: + item.status = "failed" + item.error_message = mismatch_msg + item.completed_at = datetime.now(timezone.utc) + await db.commit() + logger.warning("Queue item %s: nozzle mismatch — %s", item.id, mismatch_msg) + await notification_service.on_queue_job_failed( + job_name=filename.replace(".gcode.3mf", "").replace(".3mf", ""), + printer_id=printer.id, + printer_name=printer.name, + reason=mismatch_msg, + db=db, + ) + try: + await ws_manager.send_queue_item_failed( + user_id=item.created_by_id, + queue_item_id=item.id, + printer_id=item.printer_id, + reason="nozzle_mismatch", + ) + except Exception: + pass + await self._power_off_if_needed(db, item) + return + # Preheat / heat-soak (#1468) — fires before upload so the printer's # bed (and chamber, if applicable) is at temperature when the firmware # starts the actual print routine. Best-effort: any failure logs and diff --git a/backend/tests/unit/test_scheduler_nozzle_mismatch.py b/backend/tests/unit/test_scheduler_nozzle_mismatch.py new file mode 100644 index 000000000..271f3fb1a --- /dev/null +++ b/backend/tests/unit/test_scheduler_nozzle_mismatch.py @@ -0,0 +1,248 @@ +"""Tests for the nozzle-diameter mismatch guard (#1899). + +A file sliced for one nozzle size dispatched to a printer with a different +nozzle installed is rejected by the firmware with a cryptic HMS ("Failed to get +AMS mapping table" 0700_8012). The scheduler catches this before upload and +fails the queue item with an actionable message instead. + +These cover the two pure helpers that make the decision. The guard is fail-safe +by construction: it only blocks on a POSITIVE mismatch, never on missing data. +""" + +from contextlib import ExitStack +from pathlib import Path +from types import SimpleNamespace +from unittest.mock import AsyncMock, MagicMock, patch + +import pytest +from sqlalchemy.ext.asyncio import async_sessionmaker, create_async_engine + +import backend.app.models # noqa: F401 - populate Base.metadata +import backend.app.services.print_scheduler as scheduler_module +from backend.app.core.database import Base +from backend.app.models.archive import PrintArchive +from backend.app.models.print_queue import PrintQueueItem +from backend.app.models.printer import Printer +from backend.app.services.print_scheduler import ( + PrintScheduler, + _installed_nozzle_diameters, + _nozzle_mismatch_message, +) + + +def _state(*diameters: str): + """PrinterState-shaped namespace with the given nozzle diameter strings.""" + return SimpleNamespace(nozzles=[SimpleNamespace(nozzle_diameter=d) for d in diameters]) + + +# --------------------------------------------------------------------------- +# _installed_nozzle_diameters +# --------------------------------------------------------------------------- + + +def test_installed_parses_single_nozzle(): + assert _installed_nozzle_diameters(_state("0.6")) == [0.6] + + +def test_installed_parses_dual_nozzle(): + assert _installed_nozzle_diameters(_state("0.4", "0.6")) == [0.4, 0.6] + + +def test_installed_skips_empty_default_stub(): + # Single-nozzle printers still emit a 2-entry array; the second is an + # empty-string default until MQTT fills it in. + assert _installed_nozzle_diameters(_state("0.4", "")) == [0.4] + + +def test_installed_skips_unparseable_and_zero(): + assert _installed_nozzle_diameters(_state("", "abc", "0", "0.4")) == [0.4] + + +def test_installed_handles_no_status_or_no_nozzles(): + assert _installed_nozzle_diameters(None) == [] + assert _installed_nozzle_diameters(SimpleNamespace()) == [] + assert _installed_nozzle_diameters(SimpleNamespace(nozzles=[])) == [] + + +# --------------------------------------------------------------------------- +# _nozzle_mismatch_message +# --------------------------------------------------------------------------- + + +def test_mismatch_blocks_single_nozzle(): + msg = _nozzle_mismatch_message(0.6, [0.4]) + assert msg is not None + assert "0.6mm" in msg + assert "0.4mm" in msg + + +def test_match_single_nozzle_passes(): + assert _nozzle_mismatch_message(0.4, [0.4]) is None + + +def test_match_within_float_tolerance_passes(): + # 0.4 slice vs a 0.40000001 reported diameter must not trip. + assert _nozzle_mismatch_message(0.4, [0.40000001]) is None + + +def test_dual_nozzle_match_on_either_passes(): + # 0.6 slice on a printer with a 0.4 and a 0.6 hotend is fine. + assert _nozzle_mismatch_message(0.6, [0.4, 0.6]) is None + + +def test_dual_nozzle_mismatch_on_both_blocks(): + msg = _nozzle_mismatch_message(0.8, [0.4, 0.6]) + assert msg is not None + assert "0.4mm / 0.6mm" in msg + + +def test_no_sliced_diameter_is_failsafe_none(): + # Slice didn't declare a nozzle diameter → never block. + assert _nozzle_mismatch_message(None, [0.4]) is None + assert _nozzle_mismatch_message(0.0, [0.4]) is None + + +def test_no_installed_nozzles_is_failsafe_none(): + # Printer hasn't reported nozzles → unknown, never block. + assert _nozzle_mismatch_message(0.6, []) is None + + +def test_adjacent_sizes_are_distinguished(): + # 0.2 gap between adjacent sizes stays well outside the 0.05 tolerance. + assert _nozzle_mismatch_message(0.4, [0.6]) is not None + assert _nozzle_mismatch_message(0.6, [0.8]) is not None + + +# --------------------------------------------------------------------------- +# End-to-end: the guard fires inside _start_print BEFORE upload +# --------------------------------------------------------------------------- + + +@pytest.fixture +async def archive_case(tmp_path): + """Build an archive-based queue item on a real in-memory DB + on-disk 3MF.""" + engine = create_async_engine("sqlite+aiosqlite:///:memory:", echo=False) + async with engine.begin() as conn: + await conn.run_sync(Base.metadata.create_all) + session_maker = async_sessionmaker(engine, expire_on_commit=False) + + async def make_case(*, sliced_nozzle: float | None): + base_dir = tmp_path / "case" + base_dir.mkdir(exist_ok=True) + archive_rel = Path("archives") / "job.3mf" + archive_abs = base_dir / archive_rel + archive_abs.parent.mkdir(parents=True, exist_ok=True) + archive_abs.write_bytes(b"sliced 3mf") + + async with session_maker() as db: + printer = Printer( + name="H2S", + serial_number="SN-H2S", + ip_address="127.0.0.1", + access_code="ac", + model="H2S", + ) + db.add(printer) + await db.flush() + archive = PrintArchive( + printer_id=printer.id, + filename="job.3mf", + file_path=str(archive_rel), + file_size=archive_abs.stat().st_size, + nozzle_diameter=sliced_nozzle, + status="completed", + ) + db.add(archive) + await db.flush() + item = PrintQueueItem( + printer_id=printer.id, + archive_id=archive.id, + status="pending", + bed_levelling=True, + flow_cali=False, + vibration_cali=True, + layer_inspect=False, + timelapse=False, + use_ams=True, + nozzle_offset_cali=True, + ) + db.add(item) + await db.commit() + return SimpleNamespace( + session_maker=session_maker, + base_dir=base_dir, + archive_abs=archive_abs, + printer_id=printer.id, + queue_item_id=item.id, + start_print=MagicMock(return_value=True), + upload=AsyncMock(return_value=True), + ) + + try: + yield make_case + finally: + await engine.dispose() + + +async def _run_start_print(ctx, *, installed_nozzles): + scheduler = PrintScheduler() + status = SimpleNamespace(nozzles=[SimpleNamespace(nozzle_diameter=d) for d in installed_nozzles]) + # The mismatch case returns before the upload path; the match case drives it + # to start_print, so mirror the post-guard dependency patches the + # cleanup-library harness uses (get_ftp_retry_settings et al. open their own + # DB session, not our in-memory one, so they must be stubbed). + patches = [ + patch.object(scheduler_module.settings, "base_dir", ctx.base_dir), + patch("backend.app.services.print_scheduler.printer_manager.is_connected", MagicMock(return_value=True)), + patch("backend.app.services.print_scheduler.printer_manager.get_status", MagicMock(return_value=status)), + patch("backend.app.services.print_scheduler.printer_manager.start_print", ctx.start_print), + patch("backend.app.services.print_scheduler.printer_manager.set_awaiting_plate_clear", MagicMock()), + patch("backend.app.services.print_scheduler.upload_file_async", ctx.upload), + patch("backend.app.services.print_scheduler.delete_file_async", AsyncMock(return_value=True)), + patch("backend.app.services.print_scheduler.cache_3mf_download", MagicMock()), + patch("backend.app.services.print_scheduler.spawn_background_task", MagicMock()), + patch( + "backend.app.services.print_scheduler.get_ftp_retry_settings", AsyncMock(return_value=(False, 0, 0, 1.0)) + ), + patch("backend.app.services.notification_service.notification_service.on_queue_job_started", AsyncMock()), + patch("backend.app.services.notification_service.notification_service.on_queue_job_failed", AsyncMock()), + patch("backend.app.services.mqtt_relay.mqtt_relay.on_queue_job_started", AsyncMock()), + patch("backend.app.services.print_scheduler.ws_manager.send_queue_item_failed", AsyncMock()), + patch.object(scheduler, "_preheat_and_soak", AsyncMock()), + patch.object(scheduler, "_propagate_owner_to_printer_manager", AsyncMock()), + patch.object(scheduler, "_power_off_if_needed", AsyncMock()), + ] + with ExitStack() as stack: + for p in patches: + stack.enter_context(p) + async with ctx.session_maker() as db: + item = await db.get(PrintQueueItem, ctx.queue_item_id) + await scheduler._start_print(db, item) + + +@pytest.mark.asyncio +async def test_start_print_blocks_on_nozzle_mismatch_before_upload(archive_case): + """0.6 slice on a 0.4-only printer: item fails with an actionable message, + and neither upload nor start_print is reached.""" + ctx = await archive_case(sliced_nozzle=0.6) + await _run_start_print(ctx, installed_nozzles=["0.4"]) + + async with ctx.session_maker() as db: + item = await db.get(PrintQueueItem, ctx.queue_item_id) + assert item.status == "failed" + assert "0.6mm" in item.error_message and "0.4mm" in item.error_message + ctx.upload.assert_not_called() + ctx.start_print.assert_not_called() + + +@pytest.mark.asyncio +async def test_start_print_proceeds_when_nozzle_matches(archive_case): + """0.6 slice on a 0.6 printer: the guard is a no-op and dispatch proceeds + (item leaves 'pending', start_print is reached).""" + ctx = await archive_case(sliced_nozzle=0.6) + await _run_start_print(ctx, installed_nozzles=["0.6"]) + + async with ctx.session_maker() as db: + item = await db.get(PrintQueueItem, ctx.queue_item_id) + assert item.status != "failed" + ctx.start_print.assert_called_once() diff --git a/frontend/src/__tests__/utils/resolveSlotNozzleDiameter.test.ts b/frontend/src/__tests__/utils/resolveSlotNozzleDiameter.test.ts new file mode 100644 index 000000000..bcabb3205 --- /dev/null +++ b/frontend/src/__tests__/utils/resolveSlotNozzleDiameter.test.ts @@ -0,0 +1,63 @@ +/** + * Tests for resolveSlotNozzleDiameter helper (#1899). + * + * The AMS Slot config picker must filter filament presets by the nozzle that + * actually feeds a given AMS, not the hardcoded 0.4mm default. This resolver + * reads the installed nozzle diameter from the printer status, honouring the + * per-AMS extruder binding on dual-nozzle printers. It returns undefined when + * the hardware hasn't been reported, so the caller keeps its own default. + */ + +import { describe, it, expect } from 'vitest'; + +import { resolveSlotNozzleDiameter } from '../../utils/amsHelpers'; + +describe('resolveSlotNozzleDiameter', () => { + it('returns undefined when status is null or undefined', () => { + expect(resolveSlotNozzleDiameter(null, 0)).toBeUndefined(); + expect(resolveSlotNozzleDiameter(undefined, 0)).toBeUndefined(); + }); + + it('returns undefined when no nozzles are reported', () => { + expect(resolveSlotNozzleDiameter({ nozzles: [] }, 0)).toBeUndefined(); + expect(resolveSlotNozzleDiameter({}, 0)).toBeUndefined(); + }); + + it('returns undefined when the reported nozzle diameter is an empty default', () => { + expect(resolveSlotNozzleDiameter({ nozzles: [{ nozzle_diameter: '' }] }, 0)).toBeUndefined(); + }); + + it('returns the single-nozzle diameter regardless of amsId (no extruder map)', () => { + const status = { nozzles: [{ nozzle_diameter: '0.6' }] }; + expect(resolveSlotNozzleDiameter(status, 0)).toBe('0.6'); + expect(resolveSlotNozzleDiameter(status, 3)).toBe('0.6'); + }); + + it('resolves the per-AMS nozzle on a dual-nozzle printer via ams_extruder_map', () => { + // AMS 0 → left nozzle (0.4), AMS 1 → right nozzle (0.6) + const status = { + nozzles: [{ nozzle_diameter: '0.4' }, { nozzle_diameter: '0.6' }], + ams_extruder_map: { '0': 0, '1': 1 }, + }; + expect(resolveSlotNozzleDiameter(status, 0)).toBe('0.4'); + expect(resolveSlotNozzleDiameter(status, 1)).toBe('0.6'); + }); + + it('falls back to the primary nozzle when the AMS is not in the extruder map', () => { + const status = { + nozzles: [{ nozzle_diameter: '0.4' }, { nozzle_diameter: '0.6' }], + ams_extruder_map: { '0': 0 }, + }; + // AMS 5 has no mapping → index 0 (primary) + expect(resolveSlotNozzleDiameter(status, 5)).toBe('0.4'); + }); + + it('falls back to the primary nozzle when the mapped nozzle has no diameter', () => { + // Dual-nozzle stub where the second entry is still an empty default. + const status = { + nozzles: [{ nozzle_diameter: '0.4' }, { nozzle_diameter: '' }], + ams_extruder_map: { '1': 1 }, + }; + expect(resolveSlotNozzleDiameter(status, 1)).toBe('0.4'); + }); +}); diff --git a/frontend/src/pages/PrintersPage.tsx b/frontend/src/pages/PrintersPage.tsx index acec83aad..8f3cdd166 100644 --- a/frontend/src/pages/PrintersPage.tsx +++ b/frontend/src/pages/PrintersPage.tsx @@ -115,7 +115,7 @@ import { SkipObjectsModal, SkipObjectsIcon } from '../components/SkipObjectsModa import { FileUploadModal } from '../components/FileUploadModal'; import { PrintModal } from '../components/PrintModal'; import { PrinterInfoModal } from '../components/PrinterInfoModal'; -import { getAmsLabel, getGlobalTrayId, getFillBarColor, getSpoolmanFillLevel, getFallbackSpoolTag, isBambuLabSpool } from '../utils/amsHelpers'; +import { getAmsLabel, getGlobalTrayId, getFillBarColor, getSpoolmanFillLevel, getFallbackSpoolTag, isBambuLabSpool, resolveSlotNozzleDiameter } from '../utils/amsHelpers'; import { getPrinterImage, getWifiStrength, filterCompatibleQueueItems } from '../utils/printer'; import { FilamentSlotCircle } from '../components/FilamentSlotCircle'; import { Collapsible } from '../components/Collapsible'; @@ -6255,6 +6255,7 @@ function PrinterCard({ printerId={printer.id} slotInfo={configureSlotModal} printerModel={mapModelCode(printer.model) || undefined} + nozzleDiameter={resolveSlotNozzleDiameter(status, configureSlotModal.amsId)} onSuccess={() => { // Refresh slot presets to show updated profile name queryClient.invalidateQueries({ queryKey: ['slotPresets', printer.id] }); diff --git a/frontend/src/pages/spoolbuddy/SpoolBuddyAmsPage.tsx b/frontend/src/pages/spoolbuddy/SpoolBuddyAmsPage.tsx index b0fb34d18..37be6c565 100644 --- a/frontend/src/pages/spoolbuddy/SpoolBuddyAmsPage.tsx +++ b/frontend/src/pages/spoolbuddy/SpoolBuddyAmsPage.tsx @@ -6,7 +6,7 @@ import { Layers, Settings2, Package, Unlink, Link2, X } from 'lucide-react'; import type { SpoolBuddyOutletContext } from '../../components/spoolbuddy/SpoolBuddyLayout'; import { api } from '../../api/client'; import type { PrinterStatus, AMSTray, SpoolAssignment } from '../../api/client'; -import { getGlobalTrayId, getFillBarColor, getSpoolmanFillLevel, getFallbackSpoolTag, formatSlotLabel, isBambuLabSpool } from '../../utils/amsHelpers'; +import { getGlobalTrayId, getFillBarColor, getSpoolmanFillLevel, getFallbackSpoolTag, formatSlotLabel, isBambuLabSpool, resolveSlotNozzleDiameter } from '../../utils/amsHelpers'; import { getSwatchStyle } from '../../utils/colors'; import { AmsUnitCard, HumidityIndicator, TemperatureIndicator, NozzleBadge } from '../../components/spoolbuddy/AmsUnitCard'; import type { AmsThresholds } from '../../components/spoolbuddy/AmsUnitCard'; @@ -687,6 +687,7 @@ export function SpoolBuddyAmsPage() { printerId={selectedPrinterId} slotInfo={configureSlotModal} printerModel={mapModelCode(printer?.model ?? null) || undefined} + nozzleDiameter={resolveSlotNozzleDiameter(status, configureSlotModal.amsId)} fullScreen onSuccess={() => { queryClient.invalidateQueries({ queryKey: ['slotPresets', selectedPrinterId] }); diff --git a/frontend/src/utils/amsHelpers.ts b/frontend/src/utils/amsHelpers.ts index 378073f59..7ce5d8fcc 100644 --- a/frontend/src/utils/amsHelpers.ts +++ b/frontend/src/utils/amsHelpers.ts @@ -343,6 +343,32 @@ export function filterFilamentsByNozzle( ); } +/** + * Resolve the installed nozzle diameter feeding a given AMS unit, so the + * Configure-AMS-Slot picker filters filament presets by the nozzle actually on + * the machine instead of assuming 0.4mm (#1899). + * + * On dual-nozzle printers (H2D) each AMS is bound to one extruder via + * `ams_extruder_map` (amsId → extruder index, 0=left/primary, 1=right), so we + * read that nozzle's diameter. Single-nozzle printers have no map entry and + * fall back to the primary nozzle (index 0). Returns undefined when the printer + * hasn't reported nozzle hardware yet, letting the caller keep its own default. + * Diameter is the bare decimal string the status carries, e.g. "0.4" / "0.6". + */ +export function resolveSlotNozzleDiameter( + status: { + nozzles?: { nozzle_diameter?: string }[]; + ams_extruder_map?: Record; + } | null | undefined, + amsId: number, +): string | undefined { + const nozzles = status?.nozzles; + if (!nozzles || nozzles.length === 0) return undefined; + const extruderIdx = status?.ams_extruder_map?.[String(amsId)] ?? 0; + const diameter = nozzles[extruderIdx]?.nozzle_diameter || nozzles[0]?.nozzle_diameter; + return diameter || undefined; +} + /** * Detect Bambu Lab RFID-tagged spool by tray_uuid (32 hex) or tag_uid (16 hex). * diff --git a/static/assets/index-nQKiiuS3.js b/static/assets/index-CvBwRD12.js similarity index 83% rename from static/assets/index-nQKiiuS3.js rename to static/assets/index-CvBwRD12.js index aa4dc113f..5cd63880e 100644 --- a/static/assets/index-nQKiiuS3.js +++ b/static/assets/index-CvBwRD12.js @@ -5,8 +5,8 @@ var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r= `);for(i=r=0;ri||c[r]!==l[i]){var u=` `+c[r].replace(` at new `,` at `);return e.displayName&&u.includes(``)&&(u=u.replace(``,e.displayName)),u}while(1<=r&&0<=i);break}}}finally{de=!1,Error.prepareStackTrace=n}return(n=e?e.displayName||e.name:``)?ue(n):``}function pe(e,t){switch(e.tag){case 26:case 27:case 5:return ue(e.type);case 16:return ue(`Lazy`);case 13:return e.child!==t&&t!==null?ue(`Suspense Fallback`):ue(`Suspense`);case 19:return ue(`SuspenseList`);case 0:case 15:return fe(e.type,!1);case 11:return fe(e.type.render,!1);case 1:return fe(e.type,!0);case 31:return ue(`Activity`);default:return``}}function me(e){try{var t=``,n=null;do t+=pe(e,n),n=e,e=e.return;while(e);return t}catch(e){return` Error generating stack: `+e.message+` -`+e.stack}}var he=Object.prototype.hasOwnProperty,ge=t.unstable_scheduleCallback,_e=t.unstable_cancelCallback,ve=t.unstable_shouldYield,ye=t.unstable_requestPaint,be=t.unstable_now,xe=t.unstable_getCurrentPriorityLevel,Se=t.unstable_ImmediatePriority,Ce=t.unstable_UserBlockingPriority,we=t.unstable_NormalPriority,Te=t.unstable_LowPriority,Ee=t.unstable_IdlePriority,De=t.log,Oe=t.unstable_setDisableYieldValue,ke=null,Ae=null;function je(e){if(typeof De==`function`&&Oe(e),Ae&&typeof Ae.setStrictMode==`function`)try{Ae.setStrictMode(ke,e)}catch{}}var Me=Math.clz32?Math.clz32:Fe,Ne=Math.log,Pe=Math.LN2;function Fe(e){return e>>>=0,e===0?32:31-(Ne(e)/Pe|0)|0}var Ie=256,Le=262144,Re=4194304;function ze(e){var t=e&42;if(t!==0)return t;switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return e&261888;case 262144:case 524288:case 1048576:case 2097152:return e&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return e&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return e}}function Be(e,t,n){var r=e.pendingLanes;if(r===0)return 0;var i=0,a=e.suspendedLanes,o=e.pingedLanes;e=e.warmLanes;var s=r&134217727;return s===0?(s=r&~a,s===0?o===0?n||(n=r&~e,n!==0&&(i=ze(n))):i=ze(o):i=ze(s)):(r=s&~a,r===0?(o&=s,o===0?n||(n=s&~e,n!==0&&(i=ze(n))):i=ze(o)):i=ze(r)),i===0?0:t!==0&&t!==i&&(t&a)===0&&(a=i&-i,n=t&-t,a>=n||a===32&&n&4194048)?t:i}function Ve(e,t){return(e.pendingLanes&~(e.suspendedLanes&~e.pingedLanes)&t)===0}function He(e,t){switch(e){case 1:case 2:case 4:case 8:case 64:return t+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function Ue(){var e=Re;return Re<<=1,!(Re&62914560)&&(Re=4194304),e}function We(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Ge(e,t){e.pendingLanes|=t,t!==268435456&&(e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0)}function Ke(e,t,n,r,i,a){var o=e.pendingLanes;e.pendingLanes=n,e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0,e.expiredLanes&=n,e.entangledLanes&=n,e.errorRecoveryDisabledLanes&=n,e.shellSuspendCounter=0;var s=e.entanglements,c=e.expirationTimes,l=e.hiddenUpdates;for(n=o&~n;0`u`||window.document===void 0||window.document.createElement===void 0),nn=!1;if(tn)try{var rn={};Object.defineProperty(rn,"passive",{get:function(){nn=!0}}),window.addEventListener(`test`,rn,rn),window.removeEventListener(`test`,rn,rn)}catch{nn=!1}var an=null,on=null,sn=null;function cn(){if(sn)return sn;var e,t=on,n=t.length,r,i=`value`in an?an.value:an.textContent,a=i.length;for(e=0;e=Bn),Un=` `,Wn=!1;function Gn(e,t){switch(e){case`keyup`:return Rn.indexOf(t.keyCode)!==-1;case`keydown`:return t.keyCode!==229;case`keypress`:case`mousedown`:case`focusout`:return!0;default:return!1}}function Kn(e){return e=e.detail,typeof e==`object`&&`data`in e?e.data:null}var qn=!1;function Jn(e,t){switch(e){case`compositionend`:return Kn(t);case`keypress`:return t.which===32?(Wn=!0,Un):null;case`textInput`:return e=t.data,e===Un&&Wn?null:e;default:return null}}function Yn(e,t){if(qn)return e===`compositionend`||!zn&&Gn(e,t)?(e=cn(),sn=on=an=null,qn=!1,e):null;switch(e){case`paste`:return null;case`keypress`:if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=r}a:{for(;n;){if(n.nextSibling){n=n.nextSibling;break a}n=n.parentNode}n=void 0}n=_r(n)}}function yr(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?yr(e,t.parentNode):`contains`in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function br(e){e=e!=null&&e.ownerDocument!=null&&e.ownerDocument.defaultView!=null?e.ownerDocument.defaultView:window;for(var t=At(e.document);t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href==`string`}catch{n=!1}if(n)e=t.contentWindow;else break;t=At(e.document)}return t}function xr(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t===`input`&&(e.type===`text`||e.type===`search`||e.type===`tel`||e.type===`url`||e.type===`password`)||t===`textarea`||e.contentEditable===`true`)}var Sr=tn&&`documentMode`in document&&11>=document.documentMode,Cr=null,wr=null,Tr=null,Er=!1;function Dr(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;Er||Cr==null||Cr!==At(r)||(r=Cr,`selectionStart`in r&&xr(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Tr&&gr(Tr,r)||(Tr=r,r=Ed(wr,`onSelect`),0>=o,i-=o,yi=1<<32-Me(t)+i|n<h?(g=d,d=null):g=d.sibling;var _=p(i,d,s[h],c);if(_===null){d===null&&(d=g);break}e&&d&&_.alternate===null&&t(i,d),a=o(_,a,h),u===null?l=_:u.sibling=_,u=_,d=g}if(h===s.length)return n(i,d),Oi&&xi(i,h),l;if(d===null){for(;hg?(_=h,h=null):_=h.sibling;var y=p(a,h,v.value,l);if(y===null){h===null&&(h=_);break}e&&h&&y.alternate===null&&t(a,h),s=o(y,s,g),d===null?u=y:d.sibling=y,d=y,h=_}if(v.done)return n(a,h),Oi&&xi(a,g),u;if(h===null){for(;!v.done;g++,v=c.next())v=f(a,v.value,l),v!==null&&(s=o(v,s,g),d===null?u=v:d.sibling=v,d=v);return Oi&&xi(a,g),u}for(h=r(h);!v.done;g++,v=c.next())v=m(h,a,g,v.value,l),v!==null&&(e&&v.alternate!==null&&h.delete(v.key===null?g:v.key),s=o(v,s,g),d===null?u=v:d.sibling=v,d=v);return e&&h.forEach(function(e){return t(a,e)}),Oi&&xi(a,g),u}function b(e,r,o,c){if(typeof o==`object`&&o&&o.type===y&&o.key===null&&(o=o.props.children),typeof o==`object`&&o){switch(o.$$typeof){case _:a:{for(var l=o.key;r!==null;){if(r.key===l){if(l=o.type,l===y){if(r.tag===7){n(e,r.sibling),c=a(r,o.props.children),c.return=e,e=c;break a}}else if(r.elementType===l||typeof l==`object`&&l&&l.$$typeof===O&&Sa(l)===r.type){n(e,r.sibling),c=a(r,o.props),ka(c,o),c.return=e,e=c;break a}n(e,r);break}else t(e,r);r=r.sibling}o.type===y?(c=oi(o.props.children,e.mode,c,o.key),c.return=e,e=c):(c=ai(o.type,o.key,o.props,null,e.mode,c),ka(c,o),c.return=e,e=c)}return s(e);case v:a:{for(l=o.key;r!==null;){if(r.key===l)if(r.tag===4&&r.stateNode.containerInfo===o.containerInfo&&r.stateNode.implementation===o.implementation){n(e,r.sibling),c=a(r,o.children||[]),c.return=e,e=c;break a}else{n(e,r);break}else t(e,r);r=r.sibling}c=li(o,e.mode,c),c.return=e,e=c}return s(e);case O:return o=Sa(o),b(e,r,o,c)}if(F(o))return h(e,r,o,c);if(M(o)){if(l=M(o),typeof l!=`function`)throw Error(i(150));return o=l.call(o),g(e,r,o,c)}if(typeof o.then==`function`)return b(e,r,Oa(o),c);if(o.$$typeof===C)return b(e,r,Xi(e,o),c);Aa(e,o)}return typeof o==`string`&&o!==``||typeof o==`number`||typeof o==`bigint`?(o=``+o,r!==null&&r.tag===6?(n(e,r.sibling),c=a(r,o),c.return=e,e=c):(n(e,r),c=si(o,e.mode,c),c.return=e,e=c),s(e)):n(e,r)}return function(e,t,n,r){try{Da=0;var i=b(e,t,n,r);return Ea=null,i}catch(t){if(t===ga||t===va)throw t;var a=ti(29,t,null,e.mode);return a.lanes=r,a.return=e,a}}}var Ma=ja(!0),Na=ja(!1),Pa=!1;function Fa(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function Ia(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,callbacks:null})}function La(e){return{lane:e,tag:0,payload:null,callback:null,next:null}}function Ra(e,t,n){var r=e.updateQueue;if(r===null)return null;if(r=r.shared,Pl&2){var i=r.pending;return i===null?t.next=t:(t.next=i.next,i.next=t),r.pending=t,t=Qr(e),Zr(e,null,n),t}return Jr(e,r,t,n),Qr(e)}function za(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,n&4194048)){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,Je(e,n)}}function Ba(e,t){var n=e.updateQueue,r=e.alternate;if(r!==null&&(r=r.updateQueue,n===r)){var i=null,a=null;if(n=n.firstBaseUpdate,n!==null){do{var o={lane:n.lane,tag:n.tag,payload:n.payload,callback:null,next:null};a===null?i=a=o:a=a.next=o,n=n.next}while(n!==null);a===null?i=a=t:a=a.next=t}else i=a=t;n={baseState:r.baseState,firstBaseUpdate:i,lastBaseUpdate:a,shared:r.shared,callbacks:r.callbacks},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}var Va=!1;function Ha(){if(Va){var e=sa;if(e!==null)throw e}}function Ua(e,t,n,r){Va=!1;var i=e.updateQueue;Pa=!1;var a=i.firstBaseUpdate,o=i.lastBaseUpdate,s=i.shared.pending;if(s!==null){i.shared.pending=null;var c=s,l=c.next;c.next=null,o===null?a=l:o.next=l,o=c;var u=e.alternate;u!==null&&(u=u.updateQueue,s=u.lastBaseUpdate,s!==o&&(s===null?u.firstBaseUpdate=l:s.next=l,u.lastBaseUpdate=c))}if(a!==null){var d=i.baseState;o=0,u=l=c=null,s=a;do{var f=s.lane&-536870913,m=f!==s.lane;if(m?(Ll&f)===f:(r&f)===f){f!==0&&f===oa&&(Va=!0),u!==null&&(u=u.next={lane:0,tag:s.tag,payload:s.payload,callback:null,next:null});a:{var h=e,g=s;f=t;var _=n;switch(g.tag){case 1:if(h=g.payload,typeof h==`function`){d=h.call(_,d,f);break a}d=h;break a;case 3:h.flags=h.flags&-65537|128;case 0:if(h=g.payload,f=typeof h==`function`?h.call(_,d,f):h,f==null)break a;d=p({},d,f);break a;case 2:Pa=!0}}f=s.callback,f!==null&&(e.flags|=64,m&&(e.flags|=8192),m=i.callbacks,m===null?i.callbacks=[f]:m.push(f))}else m={lane:f,tag:s.tag,payload:s.payload,callback:s.callback,next:null},u===null?(l=u=m,c=d):u=u.next=m,o|=f;if(s=s.next,s===null){if(s=i.shared.pending,s===null)break;m=s,s=m.next,m.next=null,i.lastBaseUpdate=m,i.shared.pending=null}}while(1);u===null&&(c=d),i.baseState=c,i.firstBaseUpdate=l,i.lastBaseUpdate=u,a===null&&(i.shared.lanes=0),Gl|=o,e.lanes=o,e.memoizedState=d}}function Wa(e,t){if(typeof e!=`function`)throw Error(i(191,e));e.call(t)}function Ga(e,t){var n=e.callbacks;if(n!==null)for(e.callbacks=null,e=0;ea?a:8;var o=I.T,s={};I.T=s,ks(e,!1,t,n);try{var c=i(),l=I.S;l!==null&&l(s,c),typeof c==`object`&&c&&typeof c.then==`function`?Os(e,t,ua(c,r),pu(e)):Os(e,t,r,pu(e))}catch(n){Os(e,t,{then:function(){},status:`rejected`,reason:n},pu())}finally{L.p=a,o!==null&&s.types!==null&&(o.types=s.types),I.T=o}}function vs(){}function ys(e,t,n,r){if(e.tag!==5)throw Error(i(476));var a=bs(e).queue;_s(e,a,t,R,n===null?vs:function(){return xs(e),n(r)})}function bs(e){var t=e.memoizedState;if(t!==null)return t;t={memoizedState:R,baseState:R,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:ko,lastRenderedState:R},next:null};var n={};return t.next={memoizedState:n,baseState:n,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:ko,lastRenderedState:n},next:null},e.memoizedState=t,e=e.alternate,e!==null&&(e.memoizedState=t),t}function xs(e){var t=bs(e);t.next===null&&(t=e.alternate.memoizedState),Os(e,t.next.queue,{},pu())}function Ss(){return Yi(Qf)}function Cs(){return To().memoizedState}function ws(){return To().memoizedState}function Ts(e){for(var t=e.return;t!==null;){switch(t.tag){case 24:case 3:var n=pu();e=La(n);var r=Ra(t,e,n);r!==null&&(hu(r,t,n),za(r,t,n)),t={cache:na()},e.payload=t;return}t=t.return}}function Es(e,t,n){var r=pu();n={lane:r,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null},As(e)?js(t,n):(n=Yr(e,t,n,r),n!==null&&(hu(n,e,r),Ms(n,t,r)))}function Ds(e,t,n){Os(e,t,n,pu())}function Os(e,t,n,r){var i={lane:r,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null};if(As(e))js(t,i);else{var a=e.alternate;if(e.lanes===0&&(a===null||a.lanes===0)&&(a=t.lastRenderedReducer,a!==null))try{var o=t.lastRenderedState,s=a(o,n);if(i.hasEagerState=!0,i.eagerState=s,hr(s,o))return Jr(e,t,i,0),Fl===null&&qr(),!1}catch{}if(n=Yr(e,t,i,r),n!==null)return hu(n,e,r),Ms(n,t,r),!0}return!1}function ks(e,t,n,r){if(r={lane:2,revertLane:ud(),gesture:null,action:r,hasEagerState:!1,eagerState:null,next:null},As(e)){if(t)throw Error(i(479))}else t=Yr(e,n,r,2),t!==null&&hu(t,e,2)}function As(e){var t=e.alternate;return e===oo||t!==null&&t===oo}function js(e,t){uo=lo=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function Ms(e,t,n){if(n&4194048){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,Je(e,n)}}var Ns={readContext:Yi,use:Do,useCallback:_o,useContext:_o,useEffect:_o,useImperativeHandle:_o,useLayoutEffect:_o,useInsertionEffect:_o,useMemo:_o,useReducer:_o,useRef:_o,useState:_o,useDebugValue:_o,useDeferredValue:_o,useTransition:_o,useSyncExternalStore:_o,useId:_o,useHostTransitionStatus:_o,useFormState:_o,useActionState:_o,useOptimistic:_o,useMemoCache:_o,useCacheRefresh:_o};Ns.useEffectEvent=_o;var Ps={readContext:Yi,use:Do,useCallback:function(e,t){return wo().memoizedState=[e,t===void 0?null:t],e},useContext:Yi,useEffect:rs,useImperativeHandle:function(e,t,n){n=n==null?null:n.concat([e]),ts(4194308,4,us.bind(null,t,e),n)},useLayoutEffect:function(e,t){return ts(4194308,4,e,t)},useInsertionEffect:function(e,t){ts(4,2,e,t)},useMemo:function(e,t){var n=wo();t=t===void 0?null:t;var r=e();if(fo){je(!0);try{e()}finally{je(!1)}}return n.memoizedState=[r,t],r},useReducer:function(e,t,n){var r=wo();if(n!==void 0){var i=n(t);if(fo){je(!0);try{n(t)}finally{je(!1)}}}else i=t;return r.memoizedState=r.baseState=i,e={pending:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:i},r.queue=e,e=e.dispatch=Es.bind(null,oo,e),[r.memoizedState,e]},useRef:function(e){var t=wo();return e={current:e},t.memoizedState=e},useState:function(e){e=zo(e);var t=e.queue,n=Ds.bind(null,oo,t);return t.dispatch=n,[e.memoizedState,n]},useDebugValue:fs,useDeferredValue:function(e,t){return hs(wo(),e,t)},useTransition:function(){var e=zo(!1);return e=_s.bind(null,oo,e.queue,!0,!1),wo().memoizedState=e,[!1,e]},useSyncExternalStore:function(e,t,n){var r=oo,a=wo();if(Oi){if(n===void 0)throw Error(i(407));n=n()}else{if(n=t(),Fl===null)throw Error(i(349));Ll&127||Po(r,t,n)}a.memoizedState=n;var o={value:n,getSnapshot:t};return a.queue=o,rs(Io.bind(null,r,o,e),[e]),r.flags|=2048,$o(9,{destroy:void 0},Fo.bind(null,r,o,n,t),null),n},useId:function(){var e=wo(),t=Fl.identifierPrefix;if(Oi){var n=bi,r=yi;n=(r&~(1<<32-Me(r)-1)).toString(32)+n,t=`_`+t+`R_`+n,n=po++,0<\/script>`,o=o.removeChild(o.firstChild);break;case`select`:o=typeof r.is==`string`?s.createElement(`select`,{is:r.is}):s.createElement(`select`),r.multiple?o.multiple=!0:r.size&&(o.size=r.size);break;default:o=typeof r.is==`string`?s.createElement(a,{is:r.is}):s.createElement(a)}}o[et]=t,o[tt]=r;a:for(s=t.child;s!==null;){if(s.tag===5||s.tag===6)o.appendChild(s.stateNode);else if(s.tag!==4&&s.tag!==27&&s.child!==null){s.child.return=s,s=s.child;continue}if(s===t)break a;for(;s.sibling===null;){if(s.return===null||s.return===t)break a;s=s.return}s.sibling.return=s.return,s=s.sibling}t.stateNode=o;a:switch(Fd(o,a,r),a){case`button`:case`input`:case`select`:case`textarea`:r=!!r.autoFocus;break a;case`img`:r=!0;break a;default:r=!1}r&&Oc(t)}}return Nc(t),kc(t,t.type,e===null?null:e.memoizedProps,t.pendingProps,n),null;case 6:if(e&&t.stateNode!=null)e.memoizedProps!==r&&Oc(t);else{if(typeof r!=`string`&&t.stateNode===null)throw Error(i(166));if(e=ie.current,Fi(t)){if(e=t.stateNode,n=t.memoizedProps,r=null,a=Ei,a!==null)switch(a.tag){case 27:case 5:r=a.memoizedProps}e[et]=t,e=!!(e.nodeValue===n||r!==null&&!0===r.suppressHydrationWarning||Md(e.nodeValue,n)),e||Mi(t,!0)}else e=Bd(e).createTextNode(r),e[et]=t,t.stateNode=e}return Nc(t),null;case 31:if(n=t.memoizedState,e===null||e.memoizedState!==null){if(r=Fi(t),n!==null){if(e===null){if(!r)throw Error(i(318));if(e=t.memoizedState,e=e===null?null:e.dehydrated,!e)throw Error(i(557));e[et]=t}else Ii(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;Nc(t),e=!1}else n=Li(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=n),e=!0;if(!e)return t.flags&256?(no(t),t):(no(t),null);if(t.flags&128)throw Error(i(558))}return Nc(t),null;case 13:if(r=t.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(a=Fi(t),r!==null&&r.dehydrated!==null){if(e===null){if(!a)throw Error(i(318));if(a=t.memoizedState,a=a===null?null:a.dehydrated,!a)throw Error(i(317));a[et]=t}else Ii(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;Nc(t),a=!1}else a=Li(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=a),a=!0;if(!a)return t.flags&256?(no(t),t):(no(t),null)}return no(t),t.flags&128?(t.lanes=n,t):(n=r!==null,e=e!==null&&e.memoizedState!==null,n&&(r=t.child,a=null,r.alternate!==null&&r.alternate.memoizedState!==null&&r.alternate.memoizedState.cachePool!==null&&(a=r.alternate.memoizedState.cachePool.pool),o=null,r.memoizedState!==null&&r.memoizedState.cachePool!==null&&(o=r.memoizedState.cachePool.pool),o!==a&&(r.flags|=2048)),n!==e&&n&&(t.child.flags|=8192),jc(t,t.updateQueue),Nc(t),null);case 4:return oe(),e===null&&Sd(t.stateNode.containerInfo),Nc(t),null;case 10:return Ui(t.type),Nc(t),null;case 19:if(ee(ro),r=t.memoizedState,r===null)return Nc(t),null;if(a=(t.flags&128)!=0,o=r.rendering,o===null)if(a)Mc(r,!1);else{if(Wl!==0||e!==null&&e.flags&128)for(e=t.child;e!==null;){if(o=io(e),o!==null){for(t.flags|=128,Mc(r,!1),e=o.updateQueue,t.updateQueue=e,jc(t,e),t.subtreeFlags=0,e=n,n=t.child;n!==null;)ii(n,e),n=n.sibling;return te(ro,ro.current&1|2),Oi&&xi(t,r.treeForkCount),t.child}e=e.sibling}r.tail!==null&&be()>tu&&(t.flags|=128,a=!0,Mc(r,!1),t.lanes=4194304)}else{if(!a)if(e=io(o),e!==null){if(t.flags|=128,a=!0,e=e.updateQueue,t.updateQueue=e,jc(t,e),Mc(r,!0),r.tail===null&&r.tailMode===`hidden`&&!o.alternate&&!Oi)return Nc(t),null}else 2*be()-r.renderingStartTime>tu&&n!==536870912&&(t.flags|=128,a=!0,Mc(r,!1),t.lanes=4194304);r.isBackwards?(o.sibling=t.child,t.child=o):(e=r.last,e===null?t.child=o:e.sibling=o,r.last=o)}return r.tail===null?(Nc(t),null):(e=r.tail,r.rendering=e,r.tail=e.sibling,r.renderingStartTime=be(),e.sibling=null,n=ro.current,te(ro,a?n&1|2:n&1),Oi&&xi(t,r.treeForkCount),e);case 22:case 23:return no(t),Xa(),r=t.memoizedState!==null,e===null?r&&(t.flags|=8192):e.memoizedState!==null!==r&&(t.flags|=8192),r?n&536870912&&!(t.flags&128)&&(Nc(t),t.subtreeFlags&6&&(t.flags|=8192)):Nc(t),n=t.updateQueue,n!==null&&jc(t,n.retryQueue),n=null,e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(n=e.memoizedState.cachePool.pool),r=null,t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(r=t.memoizedState.cachePool.pool),r!==n&&(t.flags|=2048),e!==null&&ee(fa),null;case 24:return n=null,e!==null&&(n=e.memoizedState.cache),t.memoizedState.cache!==n&&(t.flags|=2048),Ui(ta),Nc(t),null;case 25:return null;case 30:return null}throw Error(i(156,t.tag))}function Fc(e,t){switch(wi(t),t.tag){case 1:return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return Ui(ta),oe(),e=t.flags,e&65536&&!(e&128)?(t.flags=e&-65537|128,t):null;case 26:case 27:case 5:return se(t),null;case 31:if(t.memoizedState!==null){if(no(t),t.alternate===null)throw Error(i(340));Ii()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 13:if(no(t),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(i(340));Ii()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return ee(ro),null;case 4:return oe(),null;case 10:return Ui(t.type),null;case 22:case 23:return no(t),Xa(),e!==null&&ee(fa),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 24:return Ui(ta),null;case 25:return null;default:return null}}function Ic(e,t){switch(wi(t),t.tag){case 3:Ui(ta),oe();break;case 26:case 27:case 5:se(t);break;case 4:oe();break;case 31:t.memoizedState!==null&&no(t);break;case 13:no(t);break;case 19:ee(ro);break;case 10:Ui(t.type);break;case 22:case 23:no(t),Xa(),e!==null&&ee(fa);break;case 24:Ui(ta)}}function Lc(e,t){try{var n=t.updateQueue,r=n===null?null:n.lastEffect;if(r!==null){var i=r.next;n=i;do{if((n.tag&e)===e){r=void 0;var a=n.create,o=n.inst;r=a(),o.destroy=r}n=n.next}while(n!==i)}}catch(e){Gu(t,t.return,e)}}function Rc(e,t,n){try{var r=t.updateQueue,i=r===null?null:r.lastEffect;if(i!==null){var a=i.next;r=a;do{if((r.tag&e)===e){var o=r.inst,s=o.destroy;if(s!==void 0){o.destroy=void 0,i=t;var c=n,l=s;try{l()}catch(e){Gu(i,c,e)}}}r=r.next}while(r!==a)}}catch(e){Gu(t,t.return,e)}}function zc(e){var t=e.updateQueue;if(t!==null){var n=e.stateNode;try{Ga(t,n)}catch(t){Gu(e,e.return,t)}}}function Bc(e,t,n){n.props=Vs(e.type,e.memoizedProps),n.state=e.memoizedState;try{n.componentWillUnmount()}catch(n){Gu(e,t,n)}}function Vc(e,t){try{var n=e.ref;if(n!==null){switch(e.tag){case 26:case 27:case 5:var r=e.stateNode;break;case 30:r=e.stateNode;break;default:r=e.stateNode}typeof n==`function`?e.refCleanup=n(r):n.current=r}}catch(n){Gu(e,t,n)}}function Hc(e,t){var n=e.ref,r=e.refCleanup;if(n!==null)if(typeof r==`function`)try{r()}catch(n){Gu(e,t,n)}finally{e.refCleanup=null,e=e.alternate,e!=null&&(e.refCleanup=null)}else if(typeof n==`function`)try{n(null)}catch(n){Gu(e,t,n)}else n.current=null}function Uc(e){var t=e.type,n=e.memoizedProps,r=e.stateNode;try{a:switch(t){case`button`:case`input`:case`select`:case`textarea`:n.autoFocus&&r.focus();break a;case`img`:n.src?r.src=n.src:n.srcSet&&(r.srcset=n.srcSet)}}catch(t){Gu(e,e.return,t)}}function Wc(e,t,n){try{var r=e.stateNode;$(r,e.type,n,t),r[tt]=t}catch(t){Gu(e,e.return,t)}}function X(e){return e.tag===5||e.tag===3||e.tag===26||e.tag===27&&Zd(e.type)||e.tag===4}function Gc(e){a:for(;;){for(;e.sibling===null;){if(e.return===null||X(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.tag===27&&Zd(e.type)||e.flags&2||e.child===null||e.tag===4)continue a;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Kc(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?(n.nodeType===9?n.body:n.nodeName===`HTML`?n.ownerDocument.body:n).insertBefore(e,t):(t=n.nodeType===9?n.body:n.nodeName===`HTML`?n.ownerDocument.body:n,t.appendChild(e),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=Kt));else if(r!==4&&(r===27&&Zd(e.type)&&(n=e.stateNode,t=null),e=e.child,e!==null))for(Kc(e,t,n),e=e.sibling;e!==null;)Kc(e,t,n),e=e.sibling}function qc(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(r===27&&Zd(e.type)&&(n=e.stateNode),e=e.child,e!==null))for(qc(e,t,n),e=e.sibling;e!==null;)qc(e,t,n),e=e.sibling}function Jc(e){var t=e.stateNode,n=e.memoizedProps;try{for(var r=e.type,i=t.attributes;i.length;)t.removeAttributeNode(i[0]);Fd(t,r,n),t[et]=e,t[tt]=n}catch(t){Gu(e,e.return,t)}}var Yc=!1,Xc=!1,Zc=!1,Qc=typeof WeakSet==`function`?WeakSet:Set,$c=null;function eee(e,t){if(e=e.containerInfo,Rd=sp,e=br(e),xr(e)){if(`selectionStart`in e)var n={start:e.selectionStart,end:e.selectionEnd};else a:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var a=r.anchorOffset,o=r.focusNode;r=r.focusOffset;try{n.nodeType,o.nodeType}catch{n=null;break a}var s=0,c=-1,l=-1,u=0,d=0,f=e,p=null;b:for(;;){for(var m;f!==n||a!==0&&f.nodeType!==3||(c=s+a),f!==o||r!==0&&f.nodeType!==3||(l=s+r),f.nodeType===3&&(s+=f.nodeValue.length),(m=f.firstChild)!==null;)p=f,f=m;for(;;){if(f===e)break b;if(p===n&&++u===a&&(c=s),p===o&&++d===r&&(l=s),(m=f.nextSibling)!==null)break;f=p,p=f.parentNode}f=m}n=c===-1||l===-1?null:{start:c,end:l}}else n=null}n||={start:0,end:0}}else n=null;for(zd={focusedElem:e,selectionRange:n},sp=!1,$c=t;$c!==null;)if(t=$c,e=t.child,t.subtreeFlags&1028&&e!==null)e.return=t,$c=e;else for(;$c!==null;){switch(t=$c,o=t.alternate,e=t.flags,t.tag){case 0:if(e&4&&(e=t.updateQueue,e=e===null?null:e.events,e!==null))for(n=0;n title`))),Fd(o,r,n),o[et]=e,pt(o),r=o;break a;case`link`:var s=Vf(`link`,`href`,a).get(r+(n.href||``));if(s){for(var c=0;cg&&(o=g,g=h,h=o);var _=vr(s,h),v=vr(s,g);if(_&&v&&(p.rangeCount!==1||p.anchorNode!==_.node||p.anchorOffset!==_.offset||p.focusNode!==v.node||p.focusOffset!==v.offset)){var y=d.createRange();y.setStart(_.node,_.offset),p.removeAllRanges(),h>g?(p.addRange(y),p.extend(v.node,v.offset)):(y.setEnd(v.node,v.offset),p.addRange(y))}}}}for(d=[],p=s;p=p.parentNode;)p.nodeType===1&&d.push({element:p,left:p.scrollLeft,top:p.scrollTop});for(typeof s.focus==`function`&&s.focus(),s=0;sn?32:n,I.T=null,n=lu,lu=null;var o=au,s=su;if(iu=0,ou=au=null,su=0,Pl&6)throw Error(i(331));var c=Pl;if(Pl|=4,kl(o.current),xl(o,o.current,s,n),Pl=c,rd(0,!1),Ae&&typeof Ae.onPostCommitFiberRoot==`function`)try{Ae.onPostCommitFiberRoot(ke,o)}catch{}return!0}finally{L.p=a,I.T=r,Vu(e,t)}}function Wu(e,t,n){t=di(n,t),t=qs(e.stateNode,t,2),e=Ra(e,t,2),e!==null&&(Ge(e,2),nd(e))}function Gu(e,t,n){if(e.tag===3)Wu(e,e,n);else for(;t!==null;){if(t.tag===3){Wu(t,e,n);break}else if(t.tag===1){var r=t.stateNode;if(typeof t.type.getDerivedStateFromError==`function`||typeof r.componentDidCatch==`function`&&(ru===null||!ru.has(r))){e=di(n,e),n=Js(2),r=Ra(t,n,2),r!==null&&(Ys(n,r,t,e),Ge(r,2),nd(r));break}}t=t.return}}function Ku(e,t,n){var r=e.pingCache;if(r===null){r=e.pingCache=new Nl;var i=new Set;r.set(t,i)}else i=r.get(t),i===void 0&&(i=new Set,r.set(t,i));i.has(n)||(Hl=!0,i.add(n),e=qu.bind(null,e,t,n),t.then(e,e))}function qu(e,t,n){var r=e.pingCache;r!==null&&r.delete(t),e.pingedLanes|=e.suspendedLanes&n,e.warmLanes&=~n,Fl===e&&(Ll&n)===n&&(Wl===4||Wl===3&&(Ll&62914560)===Ll&&300>be()-$l?!(Pl&2)&&Su(e,0):ql|=n,Yl===Ll&&(Yl=0)),nd(e)}function Ju(e,t){t===0&&(t=Ue()),e=Xr(e,t),e!==null&&(Ge(e,t),nd(e))}function Yu(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),Ju(e,n)}function Xu(e,t){var n=0;switch(e.tag){case 31:case 13:var r=e.stateNode,a=e.memoizedState;a!==null&&(n=a.retryLane);break;case 19:r=e.stateNode;break;case 22:r=e.stateNode._retryCache;break;default:throw Error(i(314))}r!==null&&r.delete(t),Ju(e,n)}function Zu(e,t){return ge(e,t)}var Qu=null,$u=null,ed=!1,Z=!1,td=!1,Q=0;function nd(e){e!==$u&&e.next===null&&($u===null?Qu=$u=e:$u=$u.next=e),Z=!0,ed||(ed=!0,ld())}function rd(e,t){if(!td&&Z){td=!0;do for(var n=!1,r=Qu;r!==null;){if(!t)if(e!==0){var i=r.pendingLanes;if(i===0)var a=0;else{var o=r.suspendedLanes,s=r.pingedLanes;a=(1<<31-Me(42|e)+1)-1,a&=i&~(o&~s),a=a&201326741?a&201326741|1:a?a|2:0}a!==0&&(n=!0,cd(r,a))}else a=Ll,a=Be(r,r===Fl?a:0,r.cancelPendingCommit!==null||r.timeoutHandle!==-1),!(a&3)||Ve(r,a)||(n=!0,cd(r,a));r=r.next}while(n);td=!1}}function id(){ad()}function ad(){Z=ed=!1;var e=0;Q!==0&&Gd()&&(e=Q);for(var t=be(),n=null,r=Qu;r!==null;){var i=r.next,a=od(r,t);a===0?(r.next=null,n===null?Qu=i:n.next=i,i===null&&($u=n)):(n=r,(e!==0||a&3)&&(Z=!0)),r=i}iu!==0&&iu!==5||rd(e,!1),Q!==0&&(Q=0)}function od(e,t){for(var n=e.suspendedLanes,r=e.pingedLanes,i=e.expirationTimes,a=e.pendingLanes&-62914561;0s)break;var u=c.transferSize,d=c.initiatorType;u&&Id(d)&&(c=c.responseEnd,o+=u*(c`u`?null:document;function xf(e,t,n){var r=bf;if(r&&typeof t==`string`&&t){var i=Mt(t);i=`link[rel="`+e+`"][href="`+i+`"]`,typeof n==`string`&&(i+=`[crossorigin="`+n+`"]`),hf.has(i)||(hf.add(i),e={rel:e,crossOrigin:n,href:t},r.querySelector(i)===null&&(t=r.createElement(`link`),Fd(t,`link`,e),pt(t),r.head.appendChild(t)))}}function Sf(e){_f.D(e),xf(`dns-prefetch`,e,null)}function Cf(e,t){_f.C(e,t),xf(`preconnect`,e,t)}function wf(e,t,n){_f.L(e,t,n);var r=bf;if(r&&e&&t){var i=`link[rel="preload"][as="`+Mt(t)+`"]`;t===`image`&&n&&n.imageSrcSet?(i+=`[imagesrcset="`+Mt(n.imageSrcSet)+`"]`,typeof n.imageSizes==`string`&&(i+=`[imagesizes="`+Mt(n.imageSizes)+`"]`)):i+=`[href="`+Mt(e)+`"]`;var a=i;switch(t){case`style`:a=Af(e);break;case`script`:a=Pf(e)}mf.has(a)||(e=p({rel:`preload`,href:t===`image`&&n&&n.imageSrcSet?void 0:e,as:t},n),mf.set(a,e),r.querySelector(i)!==null||t===`style`&&r.querySelector(jf(a))||t===`script`&&r.querySelector(Ff(a))||(t=r.createElement(`link`),Fd(t,`link`,e),pt(t),r.head.appendChild(t)))}}function Tf(e,t){_f.m(e,t);var n=bf;if(n&&e){var r=t&&typeof t.as==`string`?t.as:`script`,i=`link[rel="modulepreload"][as="`+Mt(r)+`"][href="`+Mt(e)+`"]`,a=i;switch(r){case`audioworklet`:case`paintworklet`:case`serviceworker`:case`sharedworker`:case`worker`:case`script`:a=Pf(e)}if(!mf.has(a)&&(e=p({rel:`modulepreload`,href:e},t),mf.set(a,e),n.querySelector(i)===null)){switch(r){case`audioworklet`:case`paintworklet`:case`serviceworker`:case`sharedworker`:case`worker`:case`script`:if(n.querySelector(Ff(a)))return}r=n.createElement(`link`),Fd(r,`link`,e),pt(r),n.head.appendChild(r)}}}function Ef(e,t,n){_f.S(e,t,n);var r=bf;if(r&&e){var i=ft(r).hoistableStyles,a=Af(e);t||=`default`;var o=i.get(a);if(!o){var s={loading:0,preload:null};if(o=r.querySelector(jf(a)))s.loading=5;else{e=p({rel:`stylesheet`,href:e,"data-precedence":t},n),(n=mf.get(a))&&Rf(e,n);var c=o=r.createElement(`link`);pt(c),Fd(c,`link`,e),c._p=new Promise(function(e,t){c.onload=e,c.onerror=t}),c.addEventListener(`load`,function(){s.loading|=1}),c.addEventListener(`error`,function(){s.loading|=2}),s.loading|=4,Lf(o,t,r)}o={type:`stylesheet`,instance:o,count:1,state:s},i.set(a,o)}}}function Df(e,t){_f.X(e,t);var n=bf;if(n&&e){var r=ft(n).hoistableScripts,i=Pf(e),a=r.get(i);a||(a=n.querySelector(Ff(i)),a||(e=p({src:e,async:!0},t),(t=mf.get(i))&&zf(e,t),a=n.createElement(`script`),pt(a),Fd(a,`link`,e),n.head.appendChild(a)),a={type:`script`,instance:a,count:1,state:null},r.set(i,a))}}function Of(e,t){_f.M(e,t);var n=bf;if(n&&e){var r=ft(n).hoistableScripts,i=Pf(e),a=r.get(i);a||(a=n.querySelector(Ff(i)),a||(e=p({src:e,async:!0,type:`module`},t),(t=mf.get(i))&&zf(e,t),a=n.createElement(`script`),pt(a),Fd(a,`link`,e),n.head.appendChild(a)),a={type:`script`,instance:a,count:1,state:null},r.set(i,a))}}function kf(e,t,n,r){var a=(a=ie.current)?gf(a):null;if(!a)throw Error(i(446));switch(e){case`meta`:case`title`:return null;case`style`:return typeof n.precedence==`string`&&typeof n.href==`string`?(t=Af(n.href),n=ft(a).hoistableStyles,r=n.get(t),r||(r={type:`style`,instance:null,count:0,state:null},n.set(t,r)),r):{type:`void`,instance:null,count:0,state:null};case`link`:if(n.rel===`stylesheet`&&typeof n.href==`string`&&typeof n.precedence==`string`){e=Af(n.href);var o=ft(a).hoistableStyles,s=o.get(e);if(s||(a=a.ownerDocument||a,s={type:`stylesheet`,instance:null,count:0,state:{loading:0,preload:null}},o.set(e,s),(o=a.querySelector(jf(e)))&&!o._p&&(s.instance=o,s.state.loading=5),mf.has(e)||(n={rel:`preload`,as:`style`,href:n.href,crossOrigin:n.crossOrigin,integrity:n.integrity,media:n.media,hrefLang:n.hrefLang,referrerPolicy:n.referrerPolicy},mf.set(e,n),o||Nf(a,e,n,s.state))),t&&r===null)throw Error(i(528,``));return s}if(t&&r!==null)throw Error(i(529,``));return null;case`script`:return t=n.async,n=n.src,typeof n==`string`&&t&&typeof t!=`function`&&typeof t!=`symbol`?(t=Pf(n),n=ft(a).hoistableScripts,r=n.get(t),r||(r={type:`script`,instance:null,count:0,state:null},n.set(t,r)),r):{type:`void`,instance:null,count:0,state:null};default:throw Error(i(444,e))}}function Af(e){return`href="`+Mt(e)+`"`}function jf(e){return`link[rel="stylesheet"][`+e+`]`}function Mf(e){return p({},e,{"data-precedence":e.precedence,precedence:null})}function Nf(e,t,n,r){e.querySelector(`link[rel="preload"][as="style"][`+t+`]`)?r.loading=1:(t=e.createElement(`link`),r.preload=t,t.addEventListener(`load`,function(){return r.loading|=1}),t.addEventListener(`error`,function(){return r.loading|=2}),Fd(t,`link`,n),pt(t),e.head.appendChild(t))}function Pf(e){return`[src="`+Mt(e)+`"]`}function Ff(e){return`script[async]`+e}function If(e,t,n){if(t.count++,t.instance===null)switch(t.type){case`style`:var r=e.querySelector(`style[data-href~="`+Mt(n.href)+`"]`);if(r)return t.instance=r,pt(r),r;var a=p({},n,{"data-href":n.href,"data-precedence":n.precedence,href:null,precedence:null});return r=(e.ownerDocument||e).createElement(`style`),pt(r),Fd(r,`style`,a),Lf(r,n.precedence,e),t.instance=r;case`stylesheet`:a=Af(n.href);var o=e.querySelector(jf(a));if(o)return t.state.loading|=4,t.instance=o,pt(o),o;r=Mf(n),(a=mf.get(a))&&Rf(r,a),o=(e.ownerDocument||e).createElement(`link`),pt(o);var s=o;return s._p=new Promise(function(e,t){s.onload=e,s.onerror=t}),Fd(o,`link`,r),t.state.loading|=4,Lf(o,n.precedence,e),t.instance=o;case`script`:return o=Pf(n.src),(a=e.querySelector(Ff(o)))?(t.instance=a,pt(a),a):(r=n,(a=mf.get(o))&&(r=p({},n),zf(r,a)),e=e.ownerDocument||e,a=e.createElement(`script`),pt(a),Fd(a,`link`,r),e.head.appendChild(a),t.instance=a);case`void`:return null;default:throw Error(i(443,t.type))}else t.type===`stylesheet`&&!(t.state.loading&4)&&(r=t.instance,t.state.loading|=4,Lf(r,n.precedence,e));return t.instance}function Lf(e,t,n){for(var r=n.querySelectorAll(`link[rel="stylesheet"][data-precedence],style[data-precedence]`),i=r.length?r[r.length-1]:null,a=i,o=0;o title`):null)}function Uf(e,t,n){if(n===1||t.itemProp!=null)return!1;switch(e){case`meta`:case`title`:return!0;case`style`:if(typeof t.precedence!=`string`||typeof t.href!=`string`||t.href===``)break;return!0;case`link`:if(typeof t.rel!=`string`||typeof t.href!=`string`||t.href===``||t.onLoad||t.onError)break;switch(t.rel){case`stylesheet`:return e=t.disabled,typeof t.precedence==`string`&&e==null;default:return!0}case`script`:if(t.async&&typeof t.async!=`function`&&typeof t.async!=`symbol`&&!t.onLoad&&!t.onError&&t.src&&typeof t.src==`string`)return!0}return!1}function Wf(e){return!(e.type===`stylesheet`&&!(e.state.loading&3))}function Gf(e,t,n,r){if(n.type===`stylesheet`&&(typeof r.media!=`string`||!1!==matchMedia(r.media).matches)&&!(n.state.loading&4)){if(n.instance===null){var i=Af(r.href),a=t.querySelector(jf(i));if(a){t=a._p,typeof t==`object`&&t&&typeof t.then==`function`&&(e.count++,e=Jf.bind(e),t.then(e,e)),n.state.loading|=4,n.instance=a,pt(a);return}a=t.ownerDocument||t,r=Mf(r),(i=mf.get(i))&&Rf(r,i),a=a.createElement(`link`),pt(a);var o=a;o._p=new Promise(function(e,t){o.onload=e,o.onerror=t}),Fd(a,`link`,r),n.instance=a}e.stylesheets===null&&(e.stylesheets=new Map),e.stylesheets.set(n,t),(t=n.state.preload)&&!(n.state.loading&3)&&(e.count++,n=Jf.bind(e),t.addEventListener(`load`,n),t.addEventListener(`error`,n))}}var Kf=0;function qf(e,t){return e.stylesheets&&e.count===0&&Xf(e,e.stylesheets),0Kf?50:800)+t);return e.unsuspend=n,function(){e.unsuspend=null,clearTimeout(r),clearTimeout(i)}}:null}function Jf(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)Xf(this,this.stylesheets);else if(this.unsuspend){var e=this.unsuspend;this.unsuspend=null,e()}}}var Yf=null;function Xf(e,t){e.stylesheets=null,e.unsuspend!==null&&(e.count++,Yf=new Map,t.forEach(Zf,e),Yf=null,Jf.call(e))}function Zf(e,t){if(!(t.state.loading&4)){var n=Yf.get(e);if(n)var r=n.get(null);else{n=new Map,Yf.set(e,n);for(var i=e.querySelectorAll(`link[data-precedence],style[data-precedence]`),a=0;a{function n(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>`u`||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!=`function`))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(n)}catch(e){console.error(e)}}n(),t.exports=_()})),y=l(f()),b=v(),x=e=>typeof e==`string`,S=()=>{let e,t,n=new Promise((n,r)=>{e=n,t=r});return n.resolve=e,n.reject=t,n},C=e=>e==null?``:``+e,w=(e,t,n)=>{e.forEach(e=>{t[e]&&(n[e]=t[e])})},T=/###/g,E=e=>e&&e.indexOf(`###`)>-1?e.replace(T,`.`):e,D=e=>!e||x(e),O=(e,t,n)=>{let r=x(t)?t.split(`.`):t,i=0;for(;i{let{obj:r,k:i}=O(e,t,Object);if(r!==void 0||t.length===1){r[i]=n;return}let a=t[t.length-1],o=t.slice(0,t.length-1),s=O(e,o,Object);for(;s.obj===void 0&&o.length;)a=`${o[o.length-1]}.${a}`,o=o.slice(0,o.length-1),s=O(e,o,Object),s?.obj&&s.obj[`${s.k}.${a}`]!==void 0&&(s.obj=void 0);s.obj[`${s.k}.${a}`]=n},A=(e,t,n,r)=>{let{obj:i,k:a}=O(e,t,Object);i[a]=i[a]||[],i[a].push(n)},j=(e,t)=>{let{obj:n,k:r}=O(e,t);if(n&&Object.prototype.hasOwnProperty.call(n,r))return n[r]},M=(e,t,n)=>{let r=j(e,n);return r===void 0?j(t,n):r},N=(e,t,n)=>{for(let r in t)r!==`__proto__`&&r!==`constructor`&&(r in e?x(e[r])||e[r]instanceof String||x(t[r])||t[r]instanceof String?n&&(e[r]=t[r]):N(e[r],t[r],n):e[r]=t[r]);return e},P=e=>e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,`\\$&`),F={"&":`&`,"<":`<`,">":`>`,'"':`"`,"'":`'`,"/":`/`},I=e=>x(e)?e.replace(/[&<>"'\/]/g,e=>F[e]):e,L=class{constructor(e){this.capacity=e,this.regExpMap=new Map,this.regExpQueue=[]}getRegExp(e){let t=this.regExpMap.get(e);if(t!==void 0)return t;let n=new RegExp(e);return this.regExpQueue.length===this.capacity&&this.regExpMap.delete(this.regExpQueue.shift()),this.regExpMap.set(e,n),this.regExpQueue.push(e),n}},R=[` `,`,`,`?`,`!`,`;`],z=new L(20),B=(e,t,n)=>{t||=``,n||=``;let r=R.filter(e=>t.indexOf(e)<0&&n.indexOf(e)<0);if(r.length===0)return!0;let i=z.getRegExp(`(${r.map(e=>e===`?`?`\\?`:e).join(`|`)})`),a=!i.test(e);if(!a){let t=e.indexOf(n);t>0&&!i.test(e.substring(0,t))&&(a=!0)}return a},V=(e,t,n=`.`)=>{if(!e)return;if(e[t])return Object.prototype.hasOwnProperty.call(e,t)?e[t]:void 0;let r=t.split(n),i=e;for(let e=0;e-1&&oe?.replace(`_`,`-`),te={type:`logger`,log(e){this.output(`log`,e)},warn(e){this.output(`warn`,e)},error(e){this.output(`error`,e)},output(e,t){console?.[e]?.apply?.(console,t)}},ne=new class e{constructor(e,t={}){this.init(e,t)}init(e,t={}){this.prefix=t.prefix||`i18next:`,this.logger=e||te,this.options=t,this.debug=t.debug}log(...e){return this.forward(e,`log`,``,!0)}warn(...e){return this.forward(e,`warn`,``,!0)}error(...e){return this.forward(e,`error`,``)}deprecate(...e){return this.forward(e,`warn`,`WARNING DEPRECATED: `,!0)}forward(e,t,n,r){return r&&!this.debug?null:(x(e[0])&&(e[0]=`${n}${this.prefix} ${e[0]}`),this.logger[t](e))}create(t){return new e(this.logger,{prefix:`${this.prefix}:${t}:`,...this.options})}clone(t){return t||=this.options,t.prefix=t.prefix||this.prefix,new e(this.logger,t)}},re=class{constructor(){this.observers={}}on(e,t){return e.split(` `).forEach(e=>{this.observers[e]||(this.observers[e]=new Map);let n=this.observers[e].get(t)||0;this.observers[e].set(t,n+1)}),this}off(e,t){if(this.observers[e]){if(!t){delete this.observers[e];return}this.observers[e].delete(t)}}emit(e,...t){this.observers[e]&&Array.from(this.observers[e].entries()).forEach(([e,n])=>{for(let r=0;r{for(let i=0;i-1&&this.options.ns.splice(t,1)}getResource(e,t,n,r={}){let i=r.keySeparator===void 0?this.options.keySeparator:r.keySeparator,a=r.ignoreJSONStructure===void 0?this.options.ignoreJSONStructure:r.ignoreJSONStructure,o;e.indexOf(`.`)>-1?o=e.split(`.`):(o=[e,t],n&&(Array.isArray(n)?o.push(...n):x(n)&&i?o.push(...n.split(i)):o.push(n)));let s=j(this.data,o);return!s&&!t&&!n&&e.indexOf(`.`)>-1&&(e=o[0],t=o[1],n=o.slice(2).join(`.`)),s||!a||!x(n)?s:V(this.data?.[e]?.[t],n,i)}addResource(e,t,n,r,i={silent:!1}){let a=i.keySeparator===void 0?this.options.keySeparator:i.keySeparator,o=[e,t];n&&(o=o.concat(a?n.split(a):n)),e.indexOf(`.`)>-1&&(o=e.split(`.`),r=t,t=o[1]),this.addNamespaces(t),k(this.data,o,r),i.silent||this.emit(`added`,e,t,n,r)}addResources(e,t,n,r={silent:!1}){for(let r in n)(x(n[r])||Array.isArray(n[r]))&&this.addResource(e,t,r,n[r],{silent:!0});r.silent||this.emit(`added`,e,t,n)}addResourceBundle(e,t,n,r,i,a={silent:!1,skipCopy:!1}){let o=[e,t];e.indexOf(`.`)>-1&&(o=e.split(`.`),r=n,n=t,t=o[1]),this.addNamespaces(t);let s=j(this.data,o)||{};a.skipCopy||(n=JSON.parse(JSON.stringify(n))),r?N(s,n,i):s={...s,...n},k(this.data,o,s),a.silent||this.emit(`added`,e,t,n)}removeResourceBundle(e,t){this.hasResourceBundle(e,t)&&delete this.data[e][t],this.removeNamespaces(t),this.emit(`removed`,e,t)}hasResourceBundle(e,t){return this.getResource(e,t)!==void 0}getResourceBundle(e,t){return t||=this.options.defaultNS,this.getResource(e,t)}getDataByLanguage(e){return this.data[e]}hasLanguageSomeTranslations(e){let t=this.getDataByLanguage(e);return!!(t&&Object.keys(t)||[]).find(e=>t[e]&&Object.keys(t[e]).length>0)}toJSON(){return this.data}},H={processors:{},addPostProcessor(e){this.processors[e.name]=e},handle(e,t,n,r,i){return e.forEach(e=>{t=this.processors[e]?.process(t,n,r,i)??t}),t}},ae=Symbol(`i18next/PATH_KEY`);function oe(){let e=[],t=Object.create(null),n;return t.get=(r,i)=>(n?.revoke?.(),i===ae?e:(e.push(i),n=Proxy.revocable(r,t),n.proxy)),Proxy.revocable(Object.create(null),t).proxy}function U(e,t){let{[ae]:n}=e(oe());return n.join(t?.keySeparator??`.`)}var se={},ce=e=>!x(e)&&typeof e!=`boolean`&&typeof e!=`number`,le=class e extends re{constructor(e,t={}){super(),w([`resourceStore`,`languageUtils`,`pluralResolver`,`interpolator`,`backendConnector`,`i18nFormat`,`utils`],e,this),this.options=t,this.options.keySeparator===void 0&&(this.options.keySeparator=`.`),this.logger=ne.create(`translator`)}changeLanguage(e){e&&(this.language=e)}exists(e,t={interpolation:{}}){let n={...t};if(e==null)return!1;let r=this.resolve(e,n);if(r?.res===void 0)return!1;let i=ce(r.res);return!(n.returnObjects===!1&&i)}extractFromKey(e,t){let n=t.nsSeparator===void 0?this.options.nsSeparator:t.nsSeparator;n===void 0&&(n=`:`);let r=t.keySeparator===void 0?this.options.keySeparator:t.keySeparator,i=t.ns||this.options.defaultNS||[],a=n&&e.indexOf(n)>-1,o=!this.options.userDefinedKeySeparator&&!t.keySeparator&&!this.options.userDefinedNsSeparator&&!t.nsSeparator&&!B(e,n,r);if(a&&!o){let t=e.match(this.interpolator.nestingRegexp);if(t&&t.length>0)return{key:e,namespaces:x(i)?[i]:i};let a=e.split(n);(n!==r||n===r&&this.options.ns.indexOf(a[0])>-1)&&(i=a.shift()),e=a.join(r)}return{key:e,namespaces:x(i)?[i]:i}}translate(t,n,r){let i=typeof n==`object`?{...n}:n;if(typeof i!=`object`&&this.options.overloadTranslationOptionHandler&&(i=this.options.overloadTranslationOptionHandler(arguments)),typeof i==`object`&&(i={...i}),i||={},t==null)return``;typeof t==`function`&&(t=U(t,{...this.options,...i})),Array.isArray(t)||(t=[String(t)]);let a=i.returnDetails===void 0?this.options.returnDetails:i.returnDetails,o=i.keySeparator===void 0?this.options.keySeparator:i.keySeparator,{key:s,namespaces:c}=this.extractFromKey(t[t.length-1],i),l=c[c.length-1],u=i.nsSeparator===void 0?this.options.nsSeparator:i.nsSeparator;u===void 0&&(u=`:`);let d=i.lng||this.language,f=i.appendNamespaceToCIMode||this.options.appendNamespaceToCIMode;if(d?.toLowerCase()===`cimode`)return f?a?{res:`${l}${u}${s}`,usedKey:s,exactUsedKey:s,usedLng:d,usedNS:l,usedParams:this.getUsedParamsDetails(i)}:`${l}${u}${s}`:a?{res:s,usedKey:s,exactUsedKey:s,usedLng:d,usedNS:l,usedParams:this.getUsedParamsDetails(i)}:s;let p=this.resolve(t,i),m=p?.res,h=p?.usedKey||s,g=p?.exactUsedKey||s,_=[`[object Number]`,`[object Function]`,`[object RegExp]`],v=i.joinArrays===void 0?this.options.joinArrays:i.joinArrays,y=!this.i18nFormat||this.i18nFormat.handleAsObject,b=i.count!==void 0&&!x(i.count),S=e.hasDefaultValue(i),C=b?this.pluralResolver.getSuffix(d,i.count,i):``,w=i.ordinal&&b?this.pluralResolver.getSuffix(d,i.count,{ordinal:!1}):``,T=b&&!i.ordinal&&i.count===0,E=T&&i[`defaultValue${this.options.pluralSeparator}zero`]||i[`defaultValue${C}`]||i[`defaultValue${w}`]||i.defaultValue,D=m;y&&!m&&S&&(D=E);let O=ce(D),k=Object.prototype.toString.apply(D);if(y&&D&&O&&_.indexOf(k)<0&&!(x(v)&&Array.isArray(D))){if(!i.returnObjects&&!this.options.returnObjects){this.options.returnedObjectHandler||this.logger.warn(`accessing an object - but returnObjects options is not enabled!`);let e=this.options.returnedObjectHandler?this.options.returnedObjectHandler(h,D,{...i,ns:c}):`key '${s} (${this.language})' returned an object instead of string.`;return a?(p.res=e,p.usedParams=this.getUsedParamsDetails(i),p):e}if(o){let e=Array.isArray(D),t=e?[]:{},n=e?g:h;for(let e in D)if(Object.prototype.hasOwnProperty.call(D,e)){let r=`${n}${o}${e}`;S&&!m?t[e]=this.translate(r,{...i,defaultValue:ce(E)?E[e]:void 0,joinArrays:!1,ns:c}):t[e]=this.translate(r,{...i,joinArrays:!1,ns:c}),t[e]===r&&(t[e]=D[e])}m=t}}else if(y&&x(v)&&Array.isArray(m))m=m.join(v),m&&=this.extendTranslation(m,t,i,r);else{let e=!1,n=!1;!this.isValidLookup(m)&&S&&(e=!0,m=E),this.isValidLookup(m)||(n=!0,m=s);let a=(i.missingKeyNoValueFallbackToKey||this.options.missingKeyNoValueFallbackToKey)&&n?void 0:m,c=S&&E!==m&&this.options.updateMissing;if(n||e||c){if(this.logger.log(c?`updateKey`:`missingKey`,d,l,s,c?E:m),o){let e=this.resolve(s,{...i,keySeparator:!1});e&&e.res&&this.logger.warn(`Seems the loaded translations were in flat JSON format instead of nested. Either set keySeparator: false on init or make sure your translations are published in nested format.`)}let e=[],t=this.languageUtils.getFallbackCodes(this.options.fallbackLng,i.lng||this.language);if(this.options.saveMissingTo===`fallback`&&t&&t[0])for(let n=0;n{let r=S&&n!==m?n:a;this.options.missingKeyHandler?this.options.missingKeyHandler(e,l,t,r,c,i):this.backendConnector?.saveMissing&&this.backendConnector.saveMissing(e,l,t,r,c,i),this.emit(`missingKey`,e,l,t,m)};this.options.saveMissing&&(this.options.saveMissingPlurals&&b?e.forEach(e=>{let t=this.pluralResolver.getSuffixes(e,i);T&&i[`defaultValue${this.options.pluralSeparator}zero`]&&t.indexOf(`${this.options.pluralSeparator}zero`)<0&&t.push(`${this.options.pluralSeparator}zero`),t.forEach(t=>{n([e],s+t,i[`defaultValue${t}`]||E)})}):n(e,s,E))}m=this.extendTranslation(m,t,i,p,r),n&&m===s&&this.options.appendNamespaceToMissingKey&&(m=`${l}${u}${s}`),(n||e)&&this.options.parseMissingKeyHandler&&(m=this.options.parseMissingKeyHandler(this.options.appendNamespaceToMissingKey?`${l}${u}${s}`:s,e?m:void 0,i))}return a?(p.res=m,p.usedParams=this.getUsedParamsDetails(i),p):m}extendTranslation(e,t,n,r,i){if(this.i18nFormat?.parse)e=this.i18nFormat.parse(e,{...this.options.interpolation.defaultVariables,...n},n.lng||this.language||r.usedLng,r.usedNS,r.usedKey,{resolved:r});else if(!n.skipInterpolation){n.interpolation&&this.interpolator.init({...n,interpolation:{...this.options.interpolation,...n.interpolation}});let a=x(e)&&(n?.interpolation?.skipOnVariables===void 0?this.options.interpolation.skipOnVariables:n.interpolation.skipOnVariables),o;if(a){let t=e.match(this.interpolator.nestingRegexp);o=t&&t.length}let s=n.replace&&!x(n.replace)?n.replace:n;if(this.options.interpolation.defaultVariables&&(s={...this.options.interpolation.defaultVariables,...s}),e=this.interpolator.interpolate(e,s,n.lng||this.language||r.usedLng,n),a){let t=e.match(this.interpolator.nestingRegexp),r=t&&t.length;oi?.[0]===e[0]&&!n.context?(this.logger.warn(`It seems you are nesting recursively key: ${e[0]} in key: ${t[0]}`),null):this.translate(...e,t),n)),n.interpolation&&this.interpolator.reset()}let a=n.postProcess||this.options.postProcess,o=x(a)?[a]:a;return e!=null&&o?.length&&n.applyPostProcessor!==!1&&(e=H.handle(o,e,t,this.options&&this.options.postProcessPassResolved?{i18nResolved:{...r,usedParams:this.getUsedParamsDetails(n)},...n}:n,this)),e}resolve(e,t={}){let n,r,i,a,o;return x(e)&&(e=[e]),e.forEach(e=>{if(this.isValidLookup(n))return;let s=this.extractFromKey(e,t),c=s.key;r=c;let l=s.namespaces;this.options.fallbackNS&&(l=l.concat(this.options.fallbackNS));let u=t.count!==void 0&&!x(t.count),d=u&&!t.ordinal&&t.count===0,f=t.context!==void 0&&(x(t.context)||typeof t.context==`number`)&&t.context!==``,p=t.lngs?t.lngs:this.languageUtils.toResolveHierarchy(t.lng||this.language,t.fallbackLng);l.forEach(e=>{this.isValidLookup(n)||(o=e,!se[`${p[0]}-${e}`]&&this.utils?.hasLoadedNamespace&&!this.utils?.hasLoadedNamespace(o)&&(se[`${p[0]}-${e}`]=!0,this.logger.warn(`key "${r}" for languages "${p.join(`, `)}" won't get resolved as namespace "${o}" was not yet loaded`,`This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!`)),p.forEach(r=>{if(this.isValidLookup(n))return;a=r;let o=[c];if(this.i18nFormat?.addLookupKeys)this.i18nFormat.addLookupKeys(o,c,r,e,t);else{let e;u&&(e=this.pluralResolver.getSuffix(r,t.count,t));let n=`${this.options.pluralSeparator}zero`,i=`${this.options.pluralSeparator}ordinal${this.options.pluralSeparator}`;if(u&&(t.ordinal&&e.indexOf(i)===0&&o.push(c+e.replace(i,this.options.pluralSeparator)),o.push(c+e),d&&o.push(c+n)),f){let r=`${c}${this.options.contextSeparator||`_`}${t.context}`;o.push(r),u&&(t.ordinal&&e.indexOf(i)===0&&o.push(r+e.replace(i,this.options.pluralSeparator)),o.push(r+e),d&&o.push(r+n))}}let s;for(;s=o.pop();)this.isValidLookup(n)||(i=s,n=this.getResource(r,e,s,t))}))})}),{res:n,usedKey:r,exactUsedKey:i,usedLng:a,usedNS:o}}isValidLookup(e){return e!==void 0&&!(!this.options.returnNull&&e===null)&&!(!this.options.returnEmptyString&&e===``)}getResource(e,t,n,r={}){return this.i18nFormat?.getResource?this.i18nFormat.getResource(e,t,n,r):this.resourceStore.getResource(e,t,n,r)}getUsedParamsDetails(e={}){let t=[`defaultValue`,`ordinal`,`context`,`replace`,`lng`,`lngs`,`fallbackLng`,`ns`,`keySeparator`,`nsSeparator`,`returnObjects`,`returnDetails`,`joinArrays`,`postProcess`,`interpolation`],n=e.replace&&!x(e.replace),r=n?e.replace:e;if(n&&e.count!==void 0&&(r.count=e.count),this.options.interpolation.defaultVariables&&(r={...this.options.interpolation.defaultVariables,...r}),!n){r={...r};for(let e of t)delete r[e]}return r}static hasDefaultValue(e){for(let t in e)if(Object.prototype.hasOwnProperty.call(e,t)&&t.substring(0,12)===`defaultValue`&&e[t]!==void 0)return!0;return!1}},ue=class{constructor(e){this.options=e,this.supportedLngs=this.options.supportedLngs||!1,this.logger=ne.create(`languageUtils`)}getScriptPartFromCode(e){if(e=ee(e),!e||e.indexOf(`-`)<0)return null;let t=e.split(`-`);return t.length===2||(t.pop(),t[t.length-1].toLowerCase()===`x`)?null:this.formatLanguageCode(t.join(`-`))}getLanguagePartFromCode(e){if(e=ee(e),!e||e.indexOf(`-`)<0)return e;let t=e.split(`-`);return this.formatLanguageCode(t[0])}formatLanguageCode(e){if(x(e)&&e.indexOf(`-`)>-1){let t;try{t=Intl.getCanonicalLocales(e)[0]}catch{}return t&&this.options.lowerCaseLng&&(t=t.toLowerCase()),t||(this.options.lowerCaseLng?e.toLowerCase():e)}return this.options.cleanCode||this.options.lowerCaseLng?e.toLowerCase():e}isSupportedCode(e){return(this.options.load===`languageOnly`||this.options.nonExplicitSupportedLngs)&&(e=this.getLanguagePartFromCode(e)),!this.supportedLngs||!this.supportedLngs.length||this.supportedLngs.indexOf(e)>-1}getBestMatchFromCodes(e){if(!e)return null;let t;return e.forEach(e=>{if(t)return;let n=this.formatLanguageCode(e);(!this.options.supportedLngs||this.isSupportedCode(n))&&(t=n)}),!t&&this.options.supportedLngs&&e.forEach(e=>{if(t)return;let n=this.getScriptPartFromCode(e);if(this.isSupportedCode(n))return t=n;let r=this.getLanguagePartFromCode(e);if(this.isSupportedCode(r))return t=r;t=this.options.supportedLngs.find(e=>{if(e===r||!(e.indexOf(`-`)<0&&r.indexOf(`-`)<0)&&(e.indexOf(`-`)>0&&r.indexOf(`-`)<0&&e.substring(0,e.indexOf(`-`))===r||e.indexOf(r)===0&&r.length>1))return e})}),t||=this.getFallbackCodes(this.options.fallbackLng)[0],t}getFallbackCodes(e,t){if(!e)return[];if(typeof e==`function`&&(e=e(t)),x(e)&&(e=[e]),Array.isArray(e))return e;if(!t)return e.default||[];let n=e[t];return n||=e[this.getScriptPartFromCode(t)],n||=e[this.formatLanguageCode(t)],n||=e[this.getLanguagePartFromCode(t)],n||=e.default,n||[]}toResolveHierarchy(e,t){let n=this.getFallbackCodes((t===!1?[]:t)||this.options.fallbackLng||[],e),r=[],i=e=>{e&&(this.isSupportedCode(e)?r.push(e):this.logger.warn(`rejecting language code not found in supportedLngs: ${e}`))};return x(e)&&(e.indexOf(`-`)>-1||e.indexOf(`_`)>-1)?(this.options.load!==`languageOnly`&&i(this.formatLanguageCode(e)),this.options.load!==`languageOnly`&&this.options.load!==`currentOnly`&&i(this.getScriptPartFromCode(e)),this.options.load!==`currentOnly`&&i(this.getLanguagePartFromCode(e))):x(e)&&i(this.formatLanguageCode(e)),n.forEach(e=>{r.indexOf(e)<0&&i(this.formatLanguageCode(e))}),r}},de={zero:0,one:1,two:2,few:3,many:4,other:5},fe={select:e=>e===1?`one`:`other`,resolvedOptions:()=>({pluralCategories:[`one`,`other`]})},pe=class{constructor(e,t={}){this.languageUtils=e,this.options=t,this.logger=ne.create(`pluralResolver`),this.pluralRulesCache={}}addRule(e,t){this.rules[e]=t}clearCache(){this.pluralRulesCache={}}getRule(e,t={}){let n=ee(e===`dev`?`en`:e),r=t.ordinal?`ordinal`:`cardinal`,i=JSON.stringify({cleanedCode:n,type:r});if(i in this.pluralRulesCache)return this.pluralRulesCache[i];let a;try{a=new Intl.PluralRules(n,{type:r})}catch{if(!Intl)return this.logger.error(`No Intl support, please use an Intl polyfill!`),fe;if(!e.match(/-|_/))return fe;let n=this.languageUtils.getLanguagePartFromCode(e);a=this.getRule(n,t)}return this.pluralRulesCache[i]=a,a}needsPlural(e,t={}){let n=this.getRule(e,t);return n||=this.getRule(`dev`,t),n?.resolvedOptions().pluralCategories.length>1}getPluralFormsOfKey(e,t,n={}){return this.getSuffixes(e,n).map(e=>`${t}${e}`)}getSuffixes(e,t={}){let n=this.getRule(e,t);return n||=this.getRule(`dev`,t),n?n.resolvedOptions().pluralCategories.sort((e,t)=>de[e]-de[t]).map(e=>`${this.options.prepend}${t.ordinal?`ordinal${this.options.prepend}`:``}${e}`):[]}getSuffix(e,t,n={}){let r=this.getRule(e,n);return r?`${this.options.prepend}${n.ordinal?`ordinal${this.options.prepend}`:``}${r.select(t)}`:(this.logger.warn(`no plural rule found for: ${e}`),this.getSuffix(`dev`,t,n))}},me=(e,t,n,r=`.`,i=!0)=>{let a=M(e,t,n);return!a&&i&&x(n)&&(a=V(e,n,r),a===void 0&&(a=V(t,n,r))),a},he=e=>e.replace(/\$/g,`$$$$`),ge=class{constructor(e={}){this.logger=ne.create(`interpolator`),this.options=e,this.format=e?.interpolation?.format||(e=>e),this.init(e)}init(e={}){e.interpolation||={escapeValue:!0};let{escape:t,escapeValue:n,useRawValueToEscape:r,prefix:i,prefixEscaped:a,suffix:o,suffixEscaped:s,formatSeparator:c,unescapeSuffix:l,unescapePrefix:u,nestingPrefix:d,nestingPrefixEscaped:f,nestingSuffix:p,nestingSuffixEscaped:m,nestingOptionsSeparator:h,maxReplaces:g,alwaysFormat:_}=e.interpolation;this.escape=t===void 0?I:t,this.escapeValue=n===void 0?!0:n,this.useRawValueToEscape=r===void 0?!1:r,this.prefix=i?P(i):a||`{{`,this.suffix=o?P(o):s||`}}`,this.formatSeparator=c||`,`,this.unescapePrefix=l?``:u||`-`,this.unescapeSuffix=this.unescapePrefix?``:l||``,this.nestingPrefix=d?P(d):f||P(`$t(`),this.nestingSuffix=p?P(p):m||P(`)`),this.nestingOptionsSeparator=h||`,`,this.maxReplaces=g||1e3,this.alwaysFormat=_===void 0?!1:_,this.resetRegExp()}reset(){this.options&&this.init(this.options)}resetRegExp(){let e=(e,t)=>e?.source===t?(e.lastIndex=0,e):new RegExp(t,`g`);this.regexp=e(this.regexp,`${this.prefix}(.+?)${this.suffix}`),this.regexpUnescape=e(this.regexpUnescape,`${this.prefix}${this.unescapePrefix}(.+?)${this.unescapeSuffix}${this.suffix}`),this.nestingRegexp=e(this.nestingRegexp,`${this.nestingPrefix}((?:[^()"']+|"[^"]*"|'[^']*'|\\((?:[^()]|"[^"]*"|'[^']*')*\\))*?)${this.nestingSuffix}`)}interpolate(e,t,n,r){let i,a,o,s=this.options&&this.options.interpolation&&this.options.interpolation.defaultVariables||{},c=e=>{if(e.indexOf(this.formatSeparator)<0){let i=me(t,s,e,this.options.keySeparator,this.options.ignoreJSONStructure);return this.alwaysFormat?this.format(i,void 0,n,{...r,...t,interpolationkey:e}):i}let i=e.split(this.formatSeparator),a=i.shift().trim(),o=i.join(this.formatSeparator).trim();return this.format(me(t,s,a,this.options.keySeparator,this.options.ignoreJSONStructure),o,n,{...r,...t,interpolationkey:a})};this.resetRegExp();let l=r?.missingInterpolationHandler||this.options.missingInterpolationHandler,u=r?.interpolation?.skipOnVariables===void 0?this.options.interpolation.skipOnVariables:r.interpolation.skipOnVariables;return[{regex:this.regexpUnescape,safeValue:e=>he(e)},{regex:this.regexp,safeValue:e=>this.escapeValue?he(this.escape(e)):he(e)}].forEach(t=>{for(o=0;i=t.regex.exec(e);){let n=i[1].trim();if(a=c(n),a===void 0)if(typeof l==`function`){let t=l(e,i,r);a=x(t)?t:``}else if(r&&Object.prototype.hasOwnProperty.call(r,n))a=``;else if(u){a=i[0];continue}else this.logger.warn(`missed to pass in variable ${n} for interpolating ${e}`),a=``;else !x(a)&&!this.useRawValueToEscape&&(a=C(a));let s=t.safeValue(a);if(e=e.replace(i[0],s),u?(t.regex.lastIndex+=a.length,t.regex.lastIndex-=i[0].length):t.regex.lastIndex=0,o++,o>=this.maxReplaces)break}}),e}nest(e,t,n={}){let r,i,a,o=(e,t)=>{let n=this.nestingOptionsSeparator;if(e.indexOf(n)<0)return e;let r=e.split(RegExp(`${n}[ ]*{`)),i=`{${r[1]}`;e=r[0],i=this.interpolate(i,a);let o=i.match(/'/g),s=i.match(/"/g);((o?.length??0)%2==0&&!s||s.length%2!=0)&&(i=i.replace(/'/g,`"`));try{a=JSON.parse(i),t&&(a={...t,...a})}catch(t){return this.logger.warn(`failed parsing options string in nesting for key ${e}`,t),`${e}${n}${i}`}return a.defaultValue&&a.defaultValue.indexOf(this.prefix)>-1&&delete a.defaultValue,e};for(;r=this.nestingRegexp.exec(e);){let s=[];a={...n},a=a.replace&&!x(a.replace)?a.replace:a,a.applyPostProcessor=!1,delete a.defaultValue;let c=/{.*}/.test(r[1])?r[1].lastIndexOf(`}`)+1:r[1].indexOf(this.formatSeparator);if(c!==-1&&(s=r[1].slice(c).split(this.formatSeparator).map(e=>e.trim()).filter(Boolean),r[1]=r[1].slice(0,c)),i=t(o.call(this,r[1].trim(),a),a),i&&r[0]===e&&!x(i))return i;x(i)||(i=C(i)),i||=(this.logger.warn(`missed to resolve ${r[1]} for nesting ${e}`),``),s.length&&(i=s.reduce((e,t)=>this.format(e,t,n.lng,{...n,interpolationkey:r[1].trim()}),i.trim())),e=e.replace(r[0],i),this.regexp.lastIndex=0}return e}},_e=e=>{let t=e.toLowerCase().trim(),n={};if(e.indexOf(`(`)>-1){let r=e.split(`(`);t=r[0].toLowerCase().trim();let i=r[1].substring(0,r[1].length-1);t===`currency`&&i.indexOf(`:`)<0?n.currency||=i.trim():t===`relativetime`&&i.indexOf(`:`)<0?n.range||=i.trim():i.split(`;`).forEach(e=>{if(e){let[t,...r]=e.split(`:`),i=r.join(`:`).trim().replace(/^'+|'+$/g,``),a=t.trim();n[a]||(n[a]=i),i===`false`&&(n[a]=!1),i===`true`&&(n[a]=!0),isNaN(i)||(n[a]=parseInt(i,10))}})}return{formatName:t,formatOptions:n}},ve=e=>{let t={};return(n,r,i)=>{let a=i;i&&i.interpolationkey&&i.formatParams&&i.formatParams[i.interpolationkey]&&i[i.interpolationkey]&&(a={...a,[i.interpolationkey]:void 0});let o=r+JSON.stringify(a),s=t[o];return s||(s=e(ee(r),i),t[o]=s),s(n)}},ye=e=>(t,n,r)=>e(ee(n),r)(t),be=class{constructor(e={}){this.logger=ne.create(`formatter`),this.options=e,this.init(e)}init(e,t={interpolation:{}}){this.formatSeparator=t.interpolation.formatSeparator||`,`;let n=t.cacheInBuiltFormats?ve:ye;this.formats={number:n((e,t)=>{let n=new Intl.NumberFormat(e,{...t});return e=>n.format(e)}),currency:n((e,t)=>{let n=new Intl.NumberFormat(e,{...t,style:`currency`});return e=>n.format(e)}),datetime:n((e,t)=>{let n=new Intl.DateTimeFormat(e,{...t});return e=>n.format(e)}),relativetime:n((e,t)=>{let n=new Intl.RelativeTimeFormat(e,{...t});return e=>n.format(e,t.range||`day`)}),list:n((e,t)=>{let n=new Intl.ListFormat(e,{...t});return e=>n.format(e)})}}add(e,t){this.formats[e.toLowerCase().trim()]=t}addCached(e,t){this.formats[e.toLowerCase().trim()]=ve(t)}format(e,t,n,r={}){let i=t.split(this.formatSeparator);if(i.length>1&&i[0].indexOf(`(`)>1&&i[0].indexOf(`)`)<0&&i.find(e=>e.indexOf(`)`)>-1)){let e=i.findIndex(e=>e.indexOf(`)`)>-1);i[0]=[i[0],...i.splice(1,e)].join(this.formatSeparator)}return i.reduce((e,t)=>{let{formatName:i,formatOptions:a}=_e(t);if(this.formats[i]){let t=e;try{let o=r?.formatParams?.[r.interpolationkey]||{},s=o.locale||o.lng||r.locale||r.lng||n;t=this.formats[i](e,s,{...a,...r,...o})}catch(e){this.logger.warn(e)}return t}else this.logger.warn(`there was no format function for ${i}`);return e},e)}},xe=(e,t)=>{e.pending[t]!==void 0&&(delete e.pending[t],e.pendingCount--)},Se=class extends re{constructor(e,t,n,r={}){super(),this.backend=e,this.store=t,this.services=n,this.languageUtils=n.languageUtils,this.options=r,this.logger=ne.create(`backendConnector`),this.waitingReads=[],this.maxParallelReads=r.maxParallelReads||10,this.readingCalls=0,this.maxRetries=r.maxRetries>=0?r.maxRetries:5,this.retryTimeout=r.retryTimeout>=1?r.retryTimeout:350,this.state={},this.queue=[],this.backend?.init?.(n,r.backend,r)}queueLoad(e,t,n,r){let i={},a={},o={},s={};return e.forEach(e=>{let r=!0;t.forEach(t=>{let o=`${e}|${t}`;!n.reload&&this.store.hasResourceBundle(e,t)?this.state[o]=2:this.state[o]<0||(this.state[o]===1?a[o]===void 0&&(a[o]=!0):(this.state[o]=1,r=!1,a[o]===void 0&&(a[o]=!0),i[o]===void 0&&(i[o]=!0),s[t]===void 0&&(s[t]=!0)))}),r||(o[e]=!0)}),(Object.keys(i).length||Object.keys(a).length)&&this.queue.push({pending:a,pendingCount:Object.keys(a).length,loaded:{},errors:[],callback:r}),{toLoad:Object.keys(i),pending:Object.keys(a),toLoadLanguages:Object.keys(o),toLoadNamespaces:Object.keys(s)}}loaded(e,t,n){let r=e.split(`|`),i=r[0],a=r[1];t&&this.emit(`failedLoading`,i,a,t),!t&&n&&this.store.addResourceBundle(i,a,n,void 0,void 0,{skipCopy:!0}),this.state[e]=t?-1:2,t&&n&&(this.state[e]=0);let o={};this.queue.forEach(n=>{A(n.loaded,[i],a),xe(n,e),t&&n.errors.push(t),n.pendingCount===0&&!n.done&&(Object.keys(n.loaded).forEach(e=>{o[e]||(o[e]={});let t=n.loaded[e];t.length&&t.forEach(t=>{o[e][t]===void 0&&(o[e][t]=!0)})}),n.done=!0,n.errors.length?n.callback(n.errors):n.callback())}),this.emit(`loaded`,o),this.queue=this.queue.filter(e=>!e.done)}read(e,t,n,r=0,i=this.retryTimeout,a){if(!e.length)return a(null,{});if(this.readingCalls>=this.maxParallelReads){this.waitingReads.push({lng:e,ns:t,fcName:n,tried:r,wait:i,callback:a});return}this.readingCalls++;let o=(o,s)=>{if(this.readingCalls--,this.waitingReads.length>0){let e=this.waitingReads.shift();this.read(e.lng,e.ns,e.fcName,e.tried,e.wait,e.callback)}if(o&&s&&r{this.read.call(this,e,t,n,r+1,i*2,a)},i);return}a(o,s)},s=this.backend[n].bind(this.backend);if(s.length===2){try{let n=s(e,t);n&&typeof n.then==`function`?n.then(e=>o(null,e)).catch(o):o(null,n)}catch(e){o(e)}return}return s(e,t,o)}prepareLoading(e,t,n={},r){if(!this.backend)return this.logger.warn(`No backend was added via i18next.use. Will not load resources.`),r&&r();x(e)&&(e=this.languageUtils.toResolveHierarchy(e)),x(t)&&(t=[t]);let i=this.queueLoad(e,t,n,r);if(!i.toLoad.length)return i.pending.length||r(),null;i.toLoad.forEach(e=>{this.loadOne(e)})}load(e,t,n){this.prepareLoading(e,t,{},n)}reload(e,t,n){this.prepareLoading(e,t,{reload:!0},n)}loadOne(e,t=``){let n=e.split(`|`),r=n[0],i=n[1];this.read(r,i,`read`,void 0,void 0,(n,a)=>{n&&this.logger.warn(`${t}loading namespace ${i} for language ${r} failed`,n),!n&&a&&this.logger.log(`${t}loaded namespace ${i} for language ${r}`,a),this.loaded(e,n,a)})}saveMissing(e,t,n,r,i,a={},o=()=>{}){if(this.services?.utils?.hasLoadedNamespace&&!this.services?.utils?.hasLoadedNamespace(t)){this.logger.warn(`did not save key "${n}" as the namespace "${t}" was not yet loaded`,`This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!`);return}if(!(n==null||n===``)){if(this.backend?.create){let s={...a,isUpdate:i},c=this.backend.create.bind(this.backend);if(c.length<6)try{let i;i=c.length===5?c(e,t,n,r,s):c(e,t,n,r),i&&typeof i.then==`function`?i.then(e=>o(null,e)).catch(o):o(null,i)}catch(e){o(e)}else c(e,t,n,r,o,s)}!e||!e[0]||this.store.addResource(e[0],t,n,r)}}},Ce=()=>({debug:!1,initAsync:!0,ns:[`translation`],defaultNS:[`translation`],fallbackLng:[`dev`],fallbackNS:!1,supportedLngs:!1,nonExplicitSupportedLngs:!1,load:`all`,preload:!1,simplifyPluralSuffix:!0,keySeparator:`.`,nsSeparator:`:`,pluralSeparator:`_`,contextSeparator:`_`,partialBundledLanguages:!1,saveMissing:!1,updateMissing:!1,saveMissingTo:`fallback`,saveMissingPlurals:!0,missingKeyHandler:!1,missingInterpolationHandler:!1,postProcess:!1,postProcessPassResolved:!1,returnNull:!1,returnEmptyString:!0,returnObjects:!1,joinArrays:!1,returnedObjectHandler:!1,parseMissingKeyHandler:!1,appendNamespaceToMissingKey:!1,appendNamespaceToCIMode:!1,overloadTranslationOptionHandler:e=>{let t={};if(typeof e[1]==`object`&&(t=e[1]),x(e[1])&&(t.defaultValue=e[1]),x(e[2])&&(t.tDescription=e[2]),typeof e[2]==`object`||typeof e[3]==`object`){let n=e[3]||e[2];Object.keys(n).forEach(e=>{t[e]=n[e]})}return t},interpolation:{escapeValue:!0,format:e=>e,prefix:`{{`,suffix:`}}`,formatSeparator:`,`,unescapePrefix:`-`,nestingPrefix:`$t(`,nestingSuffix:`)`,nestingOptionsSeparator:`,`,maxReplaces:1e3,skipOnVariables:!0},cacheInBuiltFormats:!0}),we=e=>(x(e.ns)&&(e.ns=[e.ns]),x(e.fallbackLng)&&(e.fallbackLng=[e.fallbackLng]),x(e.fallbackNS)&&(e.fallbackNS=[e.fallbackNS]),e.supportedLngs?.indexOf?.(`cimode`)<0&&(e.supportedLngs=e.supportedLngs.concat([`cimode`])),typeof e.initImmediate==`boolean`&&(e.initAsync=e.initImmediate),e),Te=()=>{},Ee=e=>{Object.getOwnPropertyNames(Object.getPrototypeOf(e)).forEach(t=>{typeof e[t]==`function`&&(e[t]=e[t].bind(e))})},De=class e extends re{constructor(e={},t){if(super(),this.options=we(e),this.services={},this.logger=ne,this.modules={external:[]},Ee(this),t&&!this.isInitialized&&!e.isClone){if(!this.options.initAsync)return this.init(e,t),this;setTimeout(()=>{this.init(e,t)},0)}}init(e={},t){this.isInitializing=!0,typeof e==`function`&&(t=e,e={}),e.defaultNS==null&&e.ns&&(x(e.ns)?e.defaultNS=e.ns:e.ns.indexOf(`translation`)<0&&(e.defaultNS=e.ns[0]));let n=Ce();this.options={...n,...this.options,...we(e)},this.options.interpolation={...n.interpolation,...this.options.interpolation},e.keySeparator!==void 0&&(this.options.userDefinedKeySeparator=e.keySeparator),e.nsSeparator!==void 0&&(this.options.userDefinedNsSeparator=e.nsSeparator);let r=e=>e?typeof e==`function`?new e:e:null;if(!this.options.isClone){this.modules.logger?ne.init(r(this.modules.logger),this.options):ne.init(null,this.options);let e;e=this.modules.formatter?this.modules.formatter:be;let t=new ue(this.options);this.store=new ie(this.options.resources,this.options);let i=this.services;i.logger=ne,i.resourceStore=this.store,i.languageUtils=t,i.pluralResolver=new pe(t,{prepend:this.options.pluralSeparator,simplifyPluralSuffix:this.options.simplifyPluralSuffix}),this.options.interpolation.format&&this.options.interpolation.format!==n.interpolation.format&&this.logger.deprecate(`init: you are still using the legacy format function, please use the new approach: https://www.i18next.com/translation-function/formatting`),e&&(!this.options.interpolation.format||this.options.interpolation.format===n.interpolation.format)&&(i.formatter=r(e),i.formatter.init&&i.formatter.init(i,this.options),this.options.interpolation.format=i.formatter.format.bind(i.formatter)),i.interpolator=new ge(this.options),i.utils={hasLoadedNamespace:this.hasLoadedNamespace.bind(this)},i.backendConnector=new Se(r(this.modules.backend),i.resourceStore,i,this.options),i.backendConnector.on(`*`,(e,...t)=>{this.emit(e,...t)}),this.modules.languageDetector&&(i.languageDetector=r(this.modules.languageDetector),i.languageDetector.init&&i.languageDetector.init(i,this.options.detection,this.options)),this.modules.i18nFormat&&(i.i18nFormat=r(this.modules.i18nFormat),i.i18nFormat.init&&i.i18nFormat.init(this)),this.translator=new le(this.services,this.options),this.translator.on(`*`,(e,...t)=>{this.emit(e,...t)}),this.modules.external.forEach(e=>{e.init&&e.init(this)})}if(this.format=this.options.interpolation.format,t||=Te,this.options.fallbackLng&&!this.services.languageDetector&&!this.options.lng){let e=this.services.languageUtils.getFallbackCodes(this.options.fallbackLng);e.length>0&&e[0]!==`dev`&&(this.options.lng=e[0])}!this.services.languageDetector&&!this.options.lng&&this.logger.warn(`init: no languageDetector is used and no lng is defined`),[`getResource`,`hasResourceBundle`,`getResourceBundle`,`getDataByLanguage`].forEach(e=>{this[e]=(...t)=>this.store[e](...t)}),[`addResource`,`addResources`,`addResourceBundle`,`removeResourceBundle`].forEach(e=>{this[e]=(...t)=>(this.store[e](...t),this)});let i=S(),a=()=>{let e=(e,n)=>{this.isInitializing=!1,this.isInitialized&&!this.initializedStoreOnce&&this.logger.warn(`init: i18next is already initialized. You should call init just once!`),this.isInitialized=!0,this.options.isClone||this.logger.log(`initialized`,this.options),this.emit(`initialized`,this.options),i.resolve(n),t(e,n)};if(this.languages&&!this.isInitialized)return e(null,this.t.bind(this));this.changeLanguage(this.options.lng,e)};return this.options.resources||!this.options.initAsync?a():setTimeout(a,0),i}loadResources(e,t=Te){let n=t,r=x(e)?e:this.language;if(typeof e==`function`&&(n=e),!this.options.resources||this.options.partialBundledLanguages){if(r?.toLowerCase()===`cimode`&&(!this.options.preload||this.options.preload.length===0))return n();let e=[],t=t=>{t&&t!==`cimode`&&this.services.languageUtils.toResolveHierarchy(t).forEach(t=>{t!==`cimode`&&e.indexOf(t)<0&&e.push(t)})};r?t(r):this.services.languageUtils.getFallbackCodes(this.options.fallbackLng).forEach(e=>t(e)),this.options.preload?.forEach?.(e=>t(e)),this.services.backendConnector.load(e,this.options.ns,e=>{!e&&!this.resolvedLanguage&&this.language&&this.setResolvedLanguage(this.language),n(e)})}else n(null)}reloadResources(e,t,n){let r=S();return typeof e==`function`&&(n=e,e=void 0),typeof t==`function`&&(n=t,t=void 0),e||=this.languages,t||=this.options.ns,n||=Te,this.services.backendConnector.reload(e,t,e=>{r.resolve(),n(e)}),r}use(e){if(!e)throw Error(`You are passing an undefined module! Please check the object you are passing to i18next.use()`);if(!e.type)throw Error(`You are passing a wrong module! Please check the object you are passing to i18next.use()`);return e.type===`backend`&&(this.modules.backend=e),(e.type===`logger`||e.log&&e.warn&&e.error)&&(this.modules.logger=e),e.type===`languageDetector`&&(this.modules.languageDetector=e),e.type===`i18nFormat`&&(this.modules.i18nFormat=e),e.type===`postProcessor`&&H.addPostProcessor(e),e.type===`formatter`&&(this.modules.formatter=e),e.type===`3rdParty`&&this.modules.external.push(e),this}setResolvedLanguage(e){if(!(!e||!this.languages)&&!([`cimode`,`dev`].indexOf(e)>-1)){for(let e=0;e-1)&&this.store.hasLanguageSomeTranslations(t)){this.resolvedLanguage=t;break}}!this.resolvedLanguage&&this.languages.indexOf(e)<0&&this.store.hasLanguageSomeTranslations(e)&&(this.resolvedLanguage=e,this.languages.unshift(e))}}changeLanguage(e,t){this.isLanguageChangingTo=e;let n=S();this.emit(`languageChanging`,e);let r=e=>{this.language=e,this.languages=this.services.languageUtils.toResolveHierarchy(e),this.resolvedLanguage=void 0,this.setResolvedLanguage(e)},i=(i,a)=>{a?this.isLanguageChangingTo===e&&(r(a),this.translator.changeLanguage(a),this.isLanguageChangingTo=void 0,this.emit(`languageChanged`,a),this.logger.log(`languageChanged`,a)):this.isLanguageChangingTo=void 0,n.resolve((...e)=>this.t(...e)),t&&t(i,(...e)=>this.t(...e))},a=t=>{!e&&!t&&this.services.languageDetector&&(t=[]);let n=x(t)?t:t&&t[0],a=this.store.hasLanguageSomeTranslations(n)?n:this.services.languageUtils.getBestMatchFromCodes(x(t)?[t]:t);a&&(this.language||r(a),this.translator.language||this.translator.changeLanguage(a),this.services.languageDetector?.cacheUserLanguage?.(a)),this.loadResources(a,e=>{i(e,a)})};return!e&&this.services.languageDetector&&!this.services.languageDetector.async?a(this.services.languageDetector.detect()):!e&&this.services.languageDetector&&this.services.languageDetector.async?this.services.languageDetector.detect.length===0?this.services.languageDetector.detect().then(a):this.services.languageDetector.detect(a):a(e),n}getFixedT(e,t,n){let r=(e,t,...i)=>{let a;a=typeof t==`object`?{...t}:this.options.overloadTranslationOptionHandler([e,t].concat(i)),a.lng=a.lng||r.lng,a.lngs=a.lngs||r.lngs,a.ns=a.ns||r.ns,a.keyPrefix!==``&&(a.keyPrefix=a.keyPrefix||n||r.keyPrefix);let o=this.options.keySeparator||`.`,s;return a.keyPrefix&&Array.isArray(e)?s=e.map(e=>(typeof e==`function`&&(e=U(e,{...this.options,...t})),`${a.keyPrefix}${o}${e}`)):(typeof e==`function`&&(e=U(e,{...this.options,...t})),s=a.keyPrefix?`${a.keyPrefix}${o}${e}`:e),this.t(s,a)};return x(e)?r.lng=e:r.lngs=e,r.ns=t,r.keyPrefix=n,r}t(...e){return this.translator?.translate(...e)}exists(...e){return this.translator?.exists(...e)}setDefaultNamespace(e){this.options.defaultNS=e}hasLoadedNamespace(e,t={}){if(!this.isInitialized)return this.logger.warn(`hasLoadedNamespace: i18next was not initialized`,this.languages),!1;if(!this.languages||!this.languages.length)return this.logger.warn(`hasLoadedNamespace: i18n.languages were undefined or empty`,this.languages),!1;let n=t.lng||this.resolvedLanguage||this.languages[0],r=this.options?this.options.fallbackLng:!1,i=this.languages[this.languages.length-1];if(n.toLowerCase()===`cimode`)return!0;let a=(e,t)=>{let n=this.services.backendConnector.state[`${e}|${t}`];return n===-1||n===0||n===2};if(t.precheck){let e=t.precheck(this,a);if(e!==void 0)return e}return!!(this.hasResourceBundle(n,e)||!this.services.backendConnector.backend||this.options.resources&&!this.options.partialBundledLanguages||a(n,e)&&(!r||a(i,e)))}loadNamespaces(e,t){let n=S();return this.options.ns?(x(e)&&(e=[e]),e.forEach(e=>{this.options.ns.indexOf(e)<0&&this.options.ns.push(e)}),this.loadResources(e=>{n.resolve(),t&&t(e)}),n):(t&&t(),Promise.resolve())}loadLanguages(e,t){let n=S();x(e)&&(e=[e]);let r=this.options.preload||[],i=e.filter(e=>r.indexOf(e)<0&&this.services.languageUtils.isSupportedCode(e));return i.length?(this.options.preload=r.concat(i),this.loadResources(e=>{n.resolve(),t&&t(e)}),n):(t&&t(),Promise.resolve())}dir(e){if(e||=this.resolvedLanguage||(this.languages?.length>0?this.languages[0]:this.language),!e)return`rtl`;try{let t=new Intl.Locale(e);if(t&&t.getTextInfo){let e=t.getTextInfo();if(e&&e.direction)return e.direction}}catch{}let t=`ar.shu.sqr.ssh.xaa.yhd.yud.aao.abh.abv.acm.acq.acw.acx.acy.adf.ads.aeb.aec.afb.ajp.apc.apd.arb.arq.ars.ary.arz.auz.avl.ayh.ayl.ayn.ayp.bbz.pga.he.iw.ps.pbt.pbu.pst.prp.prd.ug.ur.ydd.yds.yih.ji.yi.hbo.men.xmn.fa.jpr.peo.pes.prs.dv.sam.ckb`.split(`.`),n=this.services?.languageUtils||new ue(Ce());return e.toLowerCase().indexOf(`-latn`)>1?`ltr`:t.indexOf(n.getLanguagePartFromCode(e))>-1||e.toLowerCase().indexOf(`-arab`)>1?`rtl`:`ltr`}static createInstance(t={},n){let r=new e(t,n);return r.createInstance=e.createInstance,r}cloneInstance(t={},n=Te){let r=t.forkResourceStore;r&&delete t.forkResourceStore;let i={...this.options,...t,isClone:!0},a=new e(i);return(t.debug!==void 0||t.prefix!==void 0)&&(a.logger=a.logger.clone(t)),[`store`,`services`,`language`].forEach(e=>{a[e]=this[e]}),a.services={...this.services},a.services.utils={hasLoadedNamespace:a.hasLoadedNamespace.bind(a)},r&&(a.store=new ie(Object.keys(this.store.data).reduce((e,t)=>(e[t]={...this.store.data[t]},e[t]=Object.keys(e[t]).reduce((n,r)=>(n[r]={...e[t][r]},n),e[t]),e),{}),i),a.services.resourceStore=a.store),a.translator=new le(a.services,i),a.translator.on(`*`,(e,...t)=>{a.emit(e,...t)}),a.init(i,n),a.translator.options=i,a.translator.backendConnector.services.utils={hasLoadedNamespace:a.hasLoadedNamespace.bind(a)},a}toJSON(){return{options:this.options,store:this.store,language:this.language,languages:this.languages,resolvedLanguage:this.resolvedLanguage}}}.createInstance();De.createInstance,De.dir,De.init,De.loadResources,De.reloadResources,De.use,De.changeLanguage,De.getFixedT,De.t,De.exists,De.setDefaultNamespace,De.hasLoadedNamespace,De.loadNamespaces,De.loadLanguages;var Oe=(e,t,n,r)=>{let i=[n,{code:t,...r||{}}];if(e?.services?.logger?.forward)return e.services.logger.forward(i,`warn`,`react-i18next::`,!0);Fe(i[0])&&(i[0]=`react-i18next:: ${i[0]}`),e?.services?.logger?.warn?e.services.logger.warn(...i):console?.warn&&console.warn(...i)},ke={},Ae=(e,t,n,r)=>{Fe(n)&&ke[n]||(Fe(n)&&(ke[n]=new Date),Oe(e,t,n,r))},je=(e,t)=>()=>{if(e.isInitialized)t();else{let n=()=>{setTimeout(()=>{e.off(`initialized`,n)},0),t()};e.on(`initialized`,n)}},Me=(e,t,n)=>{e.loadNamespaces(t,je(e,n))},Ne=(e,t,n,r)=>{if(Fe(n)&&(n=[n]),e.options.preload&&e.options.preload.indexOf(t)>-1)return Me(e,n,r);n.forEach(t=>{e.options.ns.indexOf(t)<0&&e.options.ns.push(t)}),e.loadLanguages(t,je(e,r))},Pe=(e,t,n={})=>!t.languages||!t.languages.length?(Ae(t,`NO_LANGUAGES`,`i18n.languages were undefined or empty`,{languages:t.languages}),!0):t.hasLoadedNamespace(e,{lng:n.lng,precheck:(t,r)=>{if(n.bindI18n&&n.bindI18n.indexOf(`languageChanging`)>-1&&t.services.backendConnector.backend&&t.isLanguageChangingTo&&!r(t.isLanguageChangingTo,e))return!1}}),Fe=e=>typeof e==`string`,Ie=e=>typeof e==`object`&&!!e,Le=/&(?:amp|#38|lt|#60|gt|#62|apos|#39|quot|#34|nbsp|#160|copy|#169|reg|#174|hellip|#8230|#x2F|#47);/g,Re={"&":`&`,"&":`&`,"<":`<`,"<":`<`,">":`>`,">":`>`,"'":`'`,"'":`'`,""":`"`,""":`"`," ":` `," ":` `,"©":`©`,"©":`©`,"®":`®`,"®":`®`,"…":`…`,"…":`…`,"/":`/`,"/":`/`},ze=e=>Re[e],Be={bindI18n:`languageChanged`,bindI18nStore:``,transEmptyNodeValue:``,transSupportBasicHtmlNodes:!0,transWrapTextNodes:``,transKeepBasicHtmlNodesFor:[`br`,`strong`,`i`,`p`],useSuspense:!0,unescape:e=>e.replace(Le,ze),transDefaultProps:void 0},Ve=(e={})=>{Be={...Be,...e}},He=()=>Be,Ue,We=e=>{Ue=e},Ge=()=>Ue,Ke={type:`3rdParty`,init(e){Ve(e.options.react),We(e)}},qe=(0,y.createContext)(),Je=class{constructor(){this.usedNamespaces={}}addUsedNamespaces(e){e.forEach(e=>{this.usedNamespaces[e]||(this.usedNamespaces[e]=!0)})}getUsedNamespaces(){return Object.keys(this.usedNamespaces)}},Ye=o((e=>{var t=f();function n(e,t){return e===t&&(e!==0||1/e==1/t)||e!==e&&t!==t}var r=typeof Object.is==`function`?Object.is:n,i=t.useState,a=t.useEffect,o=t.useLayoutEffect,s=t.useDebugValue;function c(e,t){var n=t(),r=i({inst:{value:n,getSnapshot:t}}),c=r[0].inst,u=r[1];return o(function(){c.value=n,c.getSnapshot=t,l(c)&&u({inst:c})},[e,n,t]),a(function(){return l(c)&&u({inst:c}),e(function(){l(c)&&u({inst:c})})},[e]),s(n),n}function l(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!r(e,n)}catch{return!0}}function u(e,t){return t()}var d=typeof window>`u`||window.document===void 0||window.document.createElement===void 0?u:c;e.useSyncExternalStore=t.useSyncExternalStore===void 0?d:t.useSyncExternalStore})),Xe=o(((e,t)=>{t.exports=Ye()})),Ze=Xe(),Qe={t:(e,t)=>Fe(t)?t:Ie(t)&&Fe(t.defaultValue)?t.defaultValue:Array.isArray(e)?e[e.length-1]:e,ready:!1},$e=()=>()=>{},W=(e,t={})=>{let{i18n:n}=t,{i18n:r,defaultNS:i}=(0,y.useContext)(qe)||{},a=n||r||Ge();a&&!a.reportNamespaces&&(a.reportNamespaces=new Je),a||Ae(a,`NO_I18NEXT_INSTANCE`,`useTranslation: You will need to pass in an i18next instance by using initReactI18next`);let o=(0,y.useMemo)(()=>({...He(),...a?.options?.react,...t}),[a,t]),{useSuspense:s,keyPrefix:c}=o,l=e||i||a?.options?.defaultNS,u=Fe(l)?[l]:l||[`translation`],d=(0,y.useMemo)(()=>u,u);a?.reportNamespaces?.addUsedNamespaces?.(d);let f=(0,y.useRef)(0),p=(0,y.useCallback)(e=>{if(!a)return $e;let{bindI18n:t,bindI18nStore:n}=o,r=()=>{f.current+=1,e()};return t&&a.on(t,r),n&&a.store.on(n,r),()=>{t&&t.split(` `).forEach(e=>a.off(e,r)),n&&n.split(` `).forEach(e=>a.store.off(e,r))}},[a,o]),m=(0,y.useRef)(),h=(0,y.useCallback)(()=>{if(!a)return Qe;let e=!!(a.isInitialized||a.initializedStoreOnce)&&d.every(e=>Pe(e,a,o)),n=t.lng||a.language,r=f.current,i=m.current;if(i&&i.ready===e&&i.lng===n&&i.keyPrefix===c&&i.revision===r)return i;let s={t:a.getFixedT(n,o.nsMode===`fallback`?d:d[0],c),ready:e,lng:n,keyPrefix:c,revision:r};return m.current=s,s},[a,d,c,o,t.lng]),[g,_]=(0,y.useState)(0),{t:v,ready:b}=(0,Ze.useSyncExternalStore)(p,h,h);(0,y.useEffect)(()=>{if(a&&!b&&!s){let e=()=>_(e=>e+1);t.lng?Ne(a,t.lng,d,e):Me(a,d,e)}},[a,t.lng,d,b,s,g]);let x=a||{},S=(0,y.useRef)(null),C=(0,y.useRef)(),w=e=>{let t=Object.getOwnPropertyDescriptors(e);t.__original&&delete t.__original;let n=Object.create(Object.getPrototypeOf(e),t);if(!Object.prototype.hasOwnProperty.call(n,`__original`))try{Object.defineProperty(n,"__original",{value:e,writable:!1,enumerable:!1,configurable:!1})}catch{}return n},T=(0,y.useMemo)(()=>{let e=x,t=e?.language,n=e;e&&(S.current&&S.current.__original===e&&C.current===t?n=S.current:(n=w(e),S.current=n,C.current=t));let r=[v,n,b];return r.t=v,r.i18n=n,r.ready=b,r},[v,x,b,x.resolvedLanguage,x.language,x.languages]);if(a&&s&&!b)throw new Promise(e=>{let n=()=>e();t.lng?Ne(a,t.lng,d,n):Me(a,d,n)});return T},{slice:et,forEach:tt}=[];function nt(e){return tt.call(et.call(arguments,1),t=>{if(t)for(let n in t)e[n]===void 0&&(e[n]=t[n])}),e}function rt(e){return typeof e==`string`?[/<\s*script.*?>/i,/<\s*\/\s*script\s*>/i,/<\s*img.*?on\w+\s*=/i,/<\s*\w+\s*on\w+\s*=.*?>/i,/javascript\s*:/i,/vbscript\s*:/i,/expression\s*\(/i,/eval\s*\(/i,/alert\s*\(/i,/document\.cookie/i,/document\.write\s*\(/i,/window\.location/i,/innerHTML/i].some(t=>t.test(e)):!1}var it=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/,at=function(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{path:`/`},r=`${e}=${encodeURIComponent(t)}`;if(n.maxAge>0){let e=n.maxAge-0;if(Number.isNaN(e))throw Error(`maxAge should be a Number`);r+=`; Max-Age=${Math.floor(e)}`}if(n.domain){if(!it.test(n.domain))throw TypeError(`option domain is invalid`);r+=`; Domain=${n.domain}`}if(n.path){if(!it.test(n.path))throw TypeError(`option path is invalid`);r+=`; Path=${n.path}`}if(n.expires){if(typeof n.expires.toUTCString!=`function`)throw TypeError(`option expires is invalid`);r+=`; Expires=${n.expires.toUTCString()}`}if(n.httpOnly&&(r+=`; HttpOnly`),n.secure&&(r+=`; Secure`),n.sameSite)switch(typeof n.sameSite==`string`?n.sameSite.toLowerCase():n.sameSite){case!0:r+=`; SameSite=Strict`;break;case`lax`:r+=`; SameSite=Lax`;break;case`strict`:r+=`; SameSite=Strict`;break;case`none`:r+=`; SameSite=None`;break;default:throw TypeError(`option sameSite is invalid`)}return n.partitioned&&(r+=`; Partitioned`),r},ot={create(e,t,n,r){let i=arguments.length>4&&arguments[4]!==void 0?arguments[4]:{path:`/`,sameSite:`strict`};n&&(i.expires=new Date,i.expires.setTime(i.expires.getTime()+n*60*1e3)),r&&(i.domain=r),document.cookie=at(e,t,i)},read(e){let t=`${e}=`,n=document.cookie.split(`;`);for(let e=0;e-1&&(e=window.location.hash.substring(window.location.hash.indexOf(`?`)));let r=e.substring(1).split(`&`);for(let e=0;e0&&r[e].substring(0,i)===t&&(n=r[e].substring(i+1))}}return n}},lt={name:`hash`,lookup(e){let{lookupHash:t,lookupFromHashIndex:n}=e,r;if(typeof window<`u`){let{hash:e}=window.location;if(e&&e.length>2){let i=e.substring(1);if(t){let e=i.split(`&`);for(let n=0;n0&&e[n].substring(0,i)===t&&(r=e[n].substring(i+1))}}if(r)return r;if(!r&&n>-1){let t=e.match(/\/([a-zA-Z-]*)/g);return Array.isArray(t)?t[typeof n==`number`?n:0]?.replace(`/`,``):void 0}}}return r}},ut=null,dt=()=>{if(ut!==null)return ut;try{if(ut=typeof window<`u`&&window.localStorage!==null,!ut)return!1;let e=`i18next.translate.boo`;window.localStorage.setItem(e,`foo`),window.localStorage.removeItem(e)}catch{ut=!1}return ut},ft={name:`localStorage`,lookup(e){let{lookupLocalStorage:t}=e;if(t&&dt())return window.localStorage.getItem(t)||void 0},cacheUserLanguage(e,t){let{lookupLocalStorage:n}=t;n&&dt()&&window.localStorage.setItem(n,e)}},pt=null,mt=()=>{if(pt!==null)return pt;try{if(pt=typeof window<`u`&&window.sessionStorage!==null,!pt)return!1;let e=`i18next.translate.boo`;window.sessionStorage.setItem(e,`foo`),window.sessionStorage.removeItem(e)}catch{pt=!1}return pt},ht={name:`sessionStorage`,lookup(e){let{lookupSessionStorage:t}=e;if(t&&mt())return window.sessionStorage.getItem(t)||void 0},cacheUserLanguage(e,t){let{lookupSessionStorage:n}=t;n&&mt()&&window.sessionStorage.setItem(n,e)}},gt={name:`navigator`,lookup(e){let t=[];if(typeof navigator<`u`){let{languages:e,userLanguage:n,language:r}=navigator;if(e)for(let n=0;n0?t:void 0}},_t={name:`htmlTag`,lookup(e){let{htmlTag:t}=e,n,r=t||(typeof document<`u`?document.documentElement:null);return r&&typeof r.getAttribute==`function`&&(n=r.getAttribute(`lang`)),n}},vt={name:`path`,lookup(e){let{lookupFromPathIndex:t}=e;if(typeof window>`u`)return;let n=window.location.pathname.match(/\/([a-zA-Z-]*)/g);if(Array.isArray(n))return n[typeof t==`number`?t:0]?.replace(`/`,``)}},yt={name:`subdomain`,lookup(e){let{lookupFromSubdomainIndex:t}=e,n=typeof t==`number`?t+1:1,r=typeof window<`u`&&window.location?.hostname?.match(/^(\w{2,5})\.(([a-z0-9-]{1,63}\.[a-z]{2,6})|localhost)/i);if(r)return r[n]}},bt=!1;try{document.cookie,bt=!0}catch{}var xt=[`querystring`,`cookie`,`localStorage`,`sessionStorage`,`navigator`,`htmlTag`];bt||xt.splice(1,1);var St=()=>({order:xt,lookupQuerystring:`lng`,lookupCookie:`i18next`,lookupLocalStorage:`i18nextLng`,lookupSessionStorage:`i18nextLng`,caches:[`localStorage`],excludeCacheFor:[`cimode`],convertDetectedLanguage:e=>e}),Ct=class{constructor(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};this.type=`languageDetector`,this.detectors={},this.init(e,t)}init(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{languageUtils:{}},t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};this.services=e,this.options=nt(t,this.options||{},St()),typeof this.options.convertDetectedLanguage==`string`&&this.options.convertDetectedLanguage.indexOf(`15897`)>-1&&(this.options.convertDetectedLanguage=e=>e.replace(`-`,`_`)),this.options.lookupFromUrlIndex&&(this.options.lookupFromPathIndex=this.options.lookupFromUrlIndex),this.i18nOptions=n,this.addDetector(st),this.addDetector(ct),this.addDetector(ft),this.addDetector(ht),this.addDetector(gt),this.addDetector(_t),this.addDetector(vt),this.addDetector(yt),this.addDetector(lt)}addDetector(e){return this.detectors[e.name]=e,this}detect(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:this.options.order,t=[];return e.forEach(e=>{if(this.detectors[e]){let n=this.detectors[e].lookup(this.options);n&&typeof n==`string`&&(n=[n]),n&&(t=t.concat(n))}}),t=t.filter(e=>e!=null&&!rt(e)).map(e=>this.options.convertDetectedLanguage(e)),this.services&&this.services.languageUtils&&this.services.languageUtils.getBestMatchFromCodes?t:t.length>0?t[0]:null}cacheUserLanguage(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:this.options.caches;t&&(this.options.excludeCacheFor&&this.options.excludeCacheFor.indexOf(e)>-1||t.forEach(t=>{this.detectors[t]&&this.detectors[t].cacheUserLanguage(e,this.options)}))}};Ct.type=`languageDetector`;var wt={en:{translation:{nav:{printers:`Printers`,archives:`Archives`,queue:`Print Queue`,stats:`Statistics`,profiles:`Profiles`,maintenance:`Maintenance`,projects:`Projects`,inventory:`Filament`,files:`File Manager`,makerworld:`MakerWorld`,notifications:`Notifications`,settings:`Settings`,system:`System`,collapseSidebar:`Collapse sidebar`,expandSidebar:`Expand sidebar`,update:`Update`,updateAvailable:`Update available: v{{version}}`,updateAvailableBanner:`Version {{version}} is available!`,viewUpdate:`View update`,viewOnGithub:`View on GitHub`,keyboardShortcuts:`Keyboard shortcuts (?)`,switchToLight:`Switch to light mode`,switchToDark:`Switch to dark mode`,switchToSystem:`Switch to system mode`,smartSwitches:`Smart Switches`,logout:`Logout`,installApp:`Install app`,installAppSuccess:`Bambuddy was installed`},common:{save:`Save`,saving:`Saving...`,cancel:`Cancel`,delete:`Delete`,edit:`Edit`,add:`Add`,close:`Close`,confirm:`Confirm`,loading:`Loading...`,error:`Error`,errorLoading:`Error loading data`,retry:`Retry`,success:`Success`,warning:`Warning`,enabled:`Enabled`,disabled:`Disabled`,yes:`Yes`,no:`No`,on:`On`,off:`Off`,all:`All`,none:`None`,search:`Search`,filter:`Filter`,sort:`Sort`,refresh:`Refresh`,download:`Download`,upload:`Upload`,uploading:`Uploading...`,uploadFailed:`Upload failed`,actions:`Actions`,status:`Status`,name:`Name`,description:`Description`,date:`Date`,time:`Time`,hours:`hours`,minutes:`minutes`,seconds:`seconds`,days:`days`,enable:`Enable`,disable:`Disable`,permissions:`Permissions`,noPrinters:`No printers configured`,noData:`No data available`,linkNotFound:`Link not found`,required:`Required`,optional:`Optional`,dismiss:`Dismiss`,apply:`Apply`,reset:`Reset`,export:`Export`,import:`Import`,clear:`Clear`,selectAll:`Select All`,deselectAll:`Deselect All`,noChange:`— No change —`,unchanged:`Unchanged`,unassigned:`Unassigned`,unknown:`Unknown`,unknownError:`Unknown error`,today:`Today`,tomorrow:`Tomorrow`,asap:`ASAP`,overdue:`Overdue`,now:`Now`,collapse:`Collapse`,expand:`Expand`,previous:`Previous`,next:`Next`,viewArchive:`View archive`,viewInFileManager:`View in File Manager`,addedBy:`Added by {{username}}`,prints:`prints`,more:`+{{count}} more`,ascending:`Ascending`,descending:`Descending`,back:`Back`,copy:`Copy`,copied:`Copied!`,printer:`Printer`,remove:`Remove`,type:`Type`,print:`Print`,rename:`Rename`,move:`Move`,create:`Create`,duplicate:`Duplicate`,left:`Left`,right:`Right`},printers:{title:`Printers`,addPrinter:`Add Printer`,addPreflight:{checking:`Checking connection...`,warning:`Some connection checks failed. This printer may show as offline. Review the checks below, fix what you can, or save anyway.`,back:`Back`,saveAnyway:`Save anyway`},editPrinter:`Edit Printer`,deletePrinter:`Delete Printer`,printerName:`Printer Name`,serialNumber:`Serial Number`,ipAddress:`IP Address / Hostname`,accessCode:`Access Code`,model:`Model`,nozzleCount:`Nozzle Count`,autoArchive:`Auto Archive`,status:{available:`Available`,idle:`Idle`,printing:`Printing`,paused:`Paused`,offline:`Offline`,problem:`Problem`,error:`Error`,finished:`Finished`,unknown:`Unknown`},temperatures:{nozzle:`Nozzle`,bed:`Bed`,chamber:`Chamber`},heaterHistory:{title:`Heater History`,openLabel:`View heater history`,nozzle:`Nozzle`,nozzle2:`Nozzle 2`,bed:`Bed`,chamber:`Chamber`,error:`Failed to load history`,empty:`No data recorded yet`},progress:`{{percent}}% complete`,timeRemaining:`{{time}} remaining`,deleteConfirm:`Are you sure you want to delete "{{name}}"?`,maintenanceOk:`Maintenance OK`,maintenanceWarning:`{{count}} warning`,maintenanceWarning_plural:`{{count}} warnings`,maintenanceDue:`{{count}} due`,maintenanceDue_plural:`{{count}} due`,sort:{name:`Name`,status:`Status`,model:`Model`,location:`Location`,eta:`ETA`,ascending:`Sort ascending`,descending:`Sort descending`},cardSize:{small:`Small cards`,medium:`Medium cards`,large:`Large cards`,extraLarge:`Extra large cards`},pageView:{cards:`Cards`,camWall:`Cam wall`},camWall:{noPrinters:`No printers to show`,noSignal:`No signal`,live:`Live`,snap:`Snap`,off:`Off`,summary:`{{live}} live, {{snap}} snapshots, {{total}} total`,layer:`Layer {{cur}}/{{total}}`,timeLeft:`{{time}} left`,statusMode:{off:`Off`,compact:`Compact`,full:`Full`},settings:{title:`Cam wall settings`,maxLive:`Max live streams`,maxLiveHint:`How many tiles stream live at once. Others refresh as snapshots.`,snapshotInterval:`Snapshot interval (seconds)`,snapshotIntervalHint:`How often non-live tiles fetch a fresh snapshot.`,statusOverlay:`Status overlay`,statusOverlayHint:`Compact: state badge only. Full: + progress, layer, time left.`}},hideOffline:`Hide offline`,nextAvailable:`Next available`,powerOn:`Power On`,offlinePrintersWithPlugs:`Offline printers with smart plugs`,noPrintersConfigured:`No printers configured yet`,search:`Search printers...`,noSearchResults:`No printers match your search or filters`,filter:{allStatuses:`All statuses`,allLocations:`All locations`},toolbar:{filters:`Filters`,view:`View`,actions:`Actions`},readyToPrint:`Ready to print`,external:`External`,extL:`Ext-L`,extR:`Ext-R`,deleteArchives:`Delete print archives`,noLabel:`No label`,printPreview:`Print preview`,width:`Width`,height:`Height`,noObjectsFound:`No objects found`,objectsLoadedOnPrintStart:`Objects are loaded when a print starts`,willBeSkipped:`Will be skipped`,name:`Name`,serialCannotBeChanged:`Serial number cannot be changed`,locationHelp:`Used to group printers and filter queue jobs`,wifiSignal:{veryWeak:`Very weak`,weak:`Weak`,fair:`Fair`,good:`Good`,excellent:`Excellent`},maintenanceUpToDate:`All maintenance up to date - Click to view`,maintenance:{title:`In Maintenance`,subtitle:`This printer is paused — not connected, not eligible for the queue, not sending notifications.`,pillLabel:`Maintenance`,exitButton:`Exit maintenance`,menuEnter:`Enter maintenance mode`,menuExit:`Exit maintenance mode`,toastEntered:`{{name}} is now in maintenance mode`,toastExited:`{{name}} is back online`,confirmMidPrintTitle:`Enter maintenance mode mid-print?`,confirmMidPrintMessage:`{{name}} is currently printing. Entering maintenance mode will disconnect MQTT and stop progress tracking and completion notifications for this job. Continue?`,editFieldLabel:`Maintenance mode`,editFieldHelp:`When on, this printer is paused from MQTT, queue dispatch and notifications — useful for repair, parallel Bambuddy installs, or temporary suspension.`},chamberLightOn:`Turn on chamber light`,chamberLightOff:`Turn off chamber light`,files:`Files`,browseFiles:`Browse printer files`,autoOffAfterPrint:`Auto power-off after print`,autoOffExecuted:`Auto-off was executed - turn printer on to reset`,hmsErrors:`HMS Errors`,viewHmsErrors:`View {{count}} HMS error(s)`,resume:`Resume`,pause:`Pause`,stop:`Stop`,camera:`Camera`,skipObject:`Skip Object`,reconnect:`Reconnect`,forceRefresh:`Force Refresh`,forceRefreshSuccess:`Refresh requested`,mqttDebug:`MQTT Debug`,printerInformation:`Printer Information`,copyToClipboard:`Copy`,copied:`Copied!`,state:`State`,wifiSignalLabel:`WiFi Signal`,developerMode:`Developer Mode`,enabled:`Enabled`,disabled:`Disabled`,addedOn:`Added`,sdCard:`SD Card`,inserted:`Inserted`,notInserted:`Not inserted`,totalPrintHours:`Print Hours`,activeNozzle:`Active: {{nozzle}} nozzle`,nozzleRack:`Nozzle Rack`,nozzleDocked:`Docked`,nozzleMounted:`Mounted`,nozzleActive:`Active`,nozzleIdle:`Idle`,nozzleDiameter:`Diameter`,nozzleType:`Type`,nozzleStatus:`Status`,nozzleFilament:`Filament`,nozzleWear:`Wear`,nozzleMaxTemp:`Max Temp`,nozzleSerial:`Serial`,nozzleHardenedSteel:`Hardened Steel`,nozzleStainlessSteel:`Stainless Steel`,nozzleTungstenCarbide:`Tungsten Carbide`,nozzleFlow:`Flow`,nozzleHighFlow:`High Flow`,nozzleStandardFlow:`Standard`,firmwareUpdate:`Firmware Update`,firmwareInstructions:`On the printer's touchscreen, go to`,firmwareNav:`Navigate to`,settings:`Settings`,firmware:`Firmware`,discoverPrinters:`Discover Printers`,searching:`Searching...`,manualEntry:`Manual Entry`,addFromCloud:`Add from Cloud`,toast:{printerDeleted:`Printer deleted`,missingSpoolAssignment:`Print started on {{printer}}. Missing spool assignment for: {{slots}}`,printerAdded:`Printer added`,printerUpdated:`Printer updated`,failedToDelete:`Failed to delete printer`,failedToAdd:`Failed to add printer`,connectionFailedNotAdded:`Could not connect to the printer. Verify the IP, serial number, and access code, and confirm LAN-only mode is on. The printer was not added.`,failedToUpdate:`Failed to update printer`,commandSent:`Command sent`,failedToSendCommand:`Failed to send command`,turnedOn:`{{name}} turned on`,failedToPowerOn:`Failed to power on {{name}}`,scriptTriggered:`Script triggered`,printStopped:`Print stopped`,printPaused:`Print paused`,printResumed:`Print resumed`,referenceDeleted:`Reference deleted`,detectionAreaSaved:`Detection area saved`,failedToRunScript:`Failed to run script`,failedToStopPrint:`Failed to stop print`,failedToPausePrint:`Failed to pause print`,failedToResumePrint:`Failed to resume print`,failedToControlChamberLight:`Failed to control chamber light`,failedToSetSpeed:`Failed to set print speed`,failedToUpdateSetting:`Failed to update setting`,failedToSkipObjects:`Failed to skip objects`,failedToRereadRfid:`Failed to re-read RFID`,failedToCheckPlate:`Failed to check plate`,failedToUpdateLabel:`Failed to update label`,failedToDeleteReference:`Failed to delete reference`,failedToSaveDetectionArea:`Failed to save detection area`,plateCheckEnabled:`Plate check enabled`,plateCheckDisabled:`Plate check disabled`,calibrationSaved:`Calibration saved!`,calibrationFailed:`Calibration failed`,rfidRereadInitiated:`RFID re-read initiated`,loadInitiated:`Loading filament…`,unloadInitiated:`Unloading filament…`,failedToLoad:`Failed to load filament`,failedToUnload:`Failed to unload filament`},connection:{connected:`Connected`,offline:`Offline`},plateStatus:{markCleared:`Mark plate as cleared`,cleared:`Plate Clear`,notCleared:`Plate not Clear`,inUse:`Plate in Use`},queue:{inQueue:`{{count}} print in queue`,inQueue_plural:`{{count}} prints in queue`},controls:`Controls`,rfid:{reread:`Re-read RFID`},ams:{load:`Load`,unload:`Unload`},bedJog:{title:`Jog Controls`,bed:`Bed`,step:`Step (mm)`,up:`Move plate up`,down:`Move plate down`,disabledWhilePrinting:`Disabled while printing`,notHomedTitle:`Printer is not homed`,notHomedMessage:`The printer has not been homed since the last print. Run auto-home first for safe positioning (parks the toolhead, then homes X, Y, and Z), or move anyway — soft endstops will be bypassed.`,homeZ:`Auto Home`,moveAnyway:`Move anyway`,homingStarted:`Auto-homing printer…`},permission:{noAdd:`You do not have permission to add printers`,noEdit:`You do not have permission to edit printers`,noDelete:`You do not have permission to delete printers`,noControl:`You do not have permission to control printers`,noFiles:`You do not have permission to access printer files`,noAmsRfid:`You do not have permission to re-read AMS RFID`,noSmartPlugControl:`You do not have permission to control smart plugs`,noCamera:`You do not have permission to view cameras`},modal:{addTitle:`Add Printer`,editTitle:`Edit Printer`,myPrinter:`My Printer`,selectModel:`Select model...`,locationGroup:`Location / Group (optional)`,locationPlaceholder:`e.g., Workshop, Office, Basement`,autoArchiveLabel:`Auto-archive completed prints`,fromPrinterSettings:`From printer settings`,modelOptional:`Model (optional)`,saveChanges:`Save Changes`},skipObjects:{tooltip:`Skip objects`,onlyWhilePrinting:`Skip objects (only while printing)`,requiresMultiple:`Skip objects (requires 2+ objects)`,title:`Skip Objects`,matchIdsInfo:`Match IDs with your printer display`,printerShowsIds:`The printer screen shows object IDs on the build plate`,skipSelected:`Skip Selected`,skipping:`Skipping...`,noObjectsSelected:`No objects selected`,selectObjectsToSkip:`Select objects you want to skip from the current print`,skipped:`skipped`,objectsSkipped:`Objects skipped`,activeCount:`{{count}} active`,waitForLayer:`Wait for layer 2+ to skip objects (currently layer {{layer}})`,skip:`Skip`,confirmTitle:`Skip Object?`,confirmMessage:`Are you sure you want to skip "{{name}}"? This cannot be undone.`},confirm:{deleteTitle:`Delete Printer`,deleteMessage:`Are you sure you want to delete "{{name}}"? This will remove all connection settings.`,deleteArchivesNote:`All print history for this printer will be permanently deleted.`,keepArchivesNote:`Print history will be kept but no longer associated with this printer.`,stopTitle:`Stop Print`,stopMessage:`Are you sure you want to stop the current print on "{{name}}"? This will cancel the print job.`,stopButton:`Stop Print`,pauseTitle:`Pause Print`,pauseMessage:`Are you sure you want to pause the current print on "{{name}}"?`,pauseButton:`Pause Print`,resumeTitle:`Resume Print`,resumeMessage:`Are you sure you want to resume the print on "{{name}}"?`,resumeButton:`Resume Print`,powerOnTitle:`Power On Printer`,powerOnMessage:`Are you sure you want to turn ON the power for "{{name}}"?`,powerOnButton:`Power On`,powerOffTitle:`Power Off Printer`,powerOffMessage:`Are you sure you want to turn OFF the power for "{{name}}"?`,powerOffWarning:`WARNING: "{{name}}" is currently printing! Are you sure you want to turn OFF the power? This will interrupt the print and may damage the printer.`,powerOffButton:`Power Off`,haToggleTitle:`Toggle "{{name}}"`,haToggleMessage:`Toggle the Home Assistant entity {{entity}}? This may turn power off if it is currently on.`,haToggleWarning:`WARNING: "{{name}}" is currently printing! Toggling {{entity}} may cut power and interrupt the print. Continue?`,haToggleButton:`Toggle`},bulk:{select:`Select`,selectAll:`Select All`,selectByLocation:`Select by Location`,selected:`{{count}} selected`,actions:{stop:`Stop`,pause:`Pause`,resume:`Resume`,clearPlate:`Clear Bed`,clearHMS:`Clear Notifications`},confirm:{stopTitle:`Stop {{count}} Prints`,stopMessage:`This will cancel active prints on {{count}} printer(s). This action cannot be undone.`,stopButton:`Stop All`,pauseTitle:`Pause {{count}} Prints`,pauseMessage:`This will pause active prints on {{count}} printer(s).`,pauseButton:`Pause All`,clearPlateTitle:`Clear {{count}} Print Beds`,clearPlateMessage:`This will clear the print bed on {{count}} printer(s) and may trigger queued jobs.`,clearPlateButton:`Clear All`},success:`{{action}} completed on {{count}} printer(s)`,partial:`{{succeeded}} succeeded, {{failed}} failed`,noneApplicable:`No selected printers are in the right state for this action`,selectByState:`Select by State`},discovery:{title:`Discover Printers`,searching:`Searching...`,scanning:`Scanning...`,scanProgress:`Scanning... {{scanned}}/{{total}}`,foundPrinters:`Found {{count}} printer(s)`,noPrintersFound:`No printers found`,noPrintersFoundSubnet:`No printers found in the specified subnet.`,noPrintersFoundNetwork:`No printers found on the network.`,allConfigured:`All discovered printers are already configured.`,alreadyAdded:`Already added`,select:`Select`,manualEntry:`Manual Entry`,addFromCloud:`Add from Cloud`,subnetToScan:`Subnet to scan`,dockerNote:`Docker detected. Enter your printer's subnet in CIDR notation. Requires network_mode: host in docker-compose.yml.`,scanSubnet:`Scan Subnet for Printers`,discoverNetwork:`Discover Printers on Network`,scanningSubnet:`Scanning subnet for Bambu printers...`,scanningNetwork:`Scanning network...`,serialRequired:`Serial required`,unknown:`Unknown`,failedToStart:`Failed to start discovery`,customSubnetOption:`Custom subnet...`,customSubnetLabel:`Custom subnet (CIDR)`,customSubnetNote:`Use a custom subnet if your printer is on a different network than this server. The FTP (990) and MQTT (8883) ports must be reachable across the routing boundary.`},drying:{start:`Start Drying`,stop:`Stop Drying`,temperature:`Temperature`,duration:`Duration`,hours:`hours`,timeRemaining:`{{time}} left`,active:`Drying`,targetSummary:`{{filament}} @ {{temp}}°C`,notSupported:`Drying not supported`,powerRequired:`Connect AMS power adapter to enable drying`,startingDrying:`Starting drying...`,stoppingDrying:`Stopping drying...`,rotateTray:`Rotate spool during drying`,rotateUnavailableReason:`Unavailable — a slot in this AMS is loaded to the toolhead. The spool is locked by the feed tube and cannot rotate. Retract the filament first.`},amsBackup:{titleOn:`AMS Filament Backup is ON. Click to disable.`,titleOff:`AMS Filament Backup is OFF. Click to enable.`,titleUnknown:`AMS Filament Backup status unavailable on this printer.`,toastEnabled:`AMS Filament Backup enabled`,toastDisabled:`AMS Filament Backup disabled`,modalTitle:`AMS Filament Backup`,modalHelp:`When the active slot runs out, the printer cycles through any matching same-preset, same-colour slots in this order.`,modalNoSlots:`No filament loaded.`,modalNoPairs:`No backup pairs — no two slots share the same filament profile and colour.`,extruderRightShort:`R`,extruderLeftShort:`L`,stateOn:`Enabled`,stateOff:`Disabled`,stateUnknown:`Unsupported on this printer`},activeJobSlot:{title:`This slot is filament {{n}} in the active print`,ariaLabel:`Active print slot {{n}}`},filaments:`Filaments`,openCameraOverlay:`Open camera overlay`,openCameraWindow:`Open camera in new window`,firmwareUpdateAvailable:`Firmware update available: {{current}} → {{latest}}`,firmwareUpToDate:`Firmware {{version}} — Up to date`,firmwareUpdateButton:`Update`,plateDetection:{noPermission:`You do not have permission to update printers`,enabledClick:`Plate check enabled - Click to disable`,disabledClick:`Plate check disabled - Click to enable`,manageCalibration:`Manage plate detection calibration`,calibrationRequired:`Calibration Required`,calibrationInstructions:`Please ensure the build plate is completely empty, then click Calibrate.`,calibrationDescription:`Calibration captures a reference image of the empty plate. Future checks will compare against this reference to detect objects.`,calibrationTip:`Tip: You can store up to 5 calibrations for different plates. The system automatically uses the best match when checking.`,plateEmpty:`Plate appears empty`,objectsDetected:`Objects detected on plate`,confidence:`Confidence`,difference:`Difference`,analysisPreview:`Analysis preview:`,analysisLegend:`Green box = detection area, Red overlay = differences from calibration`,savedReferences:`Saved References ({{count}}/{{max}})`,deleteReference:`Delete reference`,labelPlaceholder:`Label...`,clickToEdit:`{{label}} - Click to edit`,clickToAddLabel:`Click to add label`},speed:{title:`Print Speed`,silent:`Silent (50%)`,standard:`Standard (100%)`,sport:`Sport (124%)`,ludicrous:`Ludicrous (166%)`},airduct:{title:`Airduct Mode`,cooling:`Cooling`,heating:`Heating`},noSdCard:`No SD`,door:{open:`Open`,closed:`Closed`},fans:{partCooling:`Part Cooling Fan`,auxiliary:`Auxiliary Fan`,chamber:`Chamber Fan`},clickToViewHmsErrors:`Click to view HMS errors`,estimatedCompletion:`Estimated completion time`,plateNumber:`Plate {{number}}`,slotOptions:`Slot options`,amsPopup:{friendlyName:`AMS Name`,friendlyNamePlaceholder:`e.g. AMS Friendly Name`,serialNumber:`Serial Number`,firmwareVersion:`Firmware`,save:`Save`,clear:`Clear`,noEditPermission:`You do not have permission to rename AMS units`},firmwareModal:{title:`Firmware Update`,titleUpToDate:`Firmware Info`,currentVersion:`Current:`,latestVersion:`Latest:`,releaseNotes:`Release Notes`,checkingPrereqs:`Checking prerequisites...`,sdCardReady:`SD card ready. Click below to upload firmware.`,uploadedSuccess:`Firmware uploaded to SD card!`,applyInstructions:`To apply the update on your printer:`,step1:`On the printer's touchscreen, go to Settings`,step2:`Navigate to Firmware`,step3:`Select Update from SD card`,step4:`The update will take 10-20 minutes`,done:`Done`,starting:`Starting...`,uploadFirmware:`Upload Firmware`,uploadFailed:`Failed to start upload: {{error}}`,uploadedToast:`Firmware uploaded! Trigger update from printer screen.`,availableVersions:`Available versions`,usable:`Usable`,unavailable:`Unavailable`,installed:`Installed`,newerBadge:`newer`,olderBadge:`older`,currentBadge:`current`},accessCodePlaceholder:`Leave empty to keep current`,roi:{title:`Detection Area (ROI)`,xStart:`X Start`,yStart:`Y Start`,width:`Width`,height:`Height`,instruction:`Adjust the detection area to focus on the build plate. The green box in the preview shows the current area.`},developerModeWarning:`Developer LAN mode is not enabled on: {{names}}. Some features may not work.`,howToEnable:`How to enable`,incompatibleFile:`This file was sliced for {{slicedFor}}, but this printer is a {{printerModel}}`,dropNotPrintable:`Only .gcode and .gcode.3mf files can be printed`,dropToPrint:`Drop to print`,cannotPrint:`Printer busy`},archives:{title:`Print Archives`,no3mfBanner:{title:`Some recent prints couldn't be archived with thumbnails`,body:`The slicer didn't leave the .gcode.3mf on the printer's SD card, so Bambuddy couldn't pull the thumbnail or slicer metadata. This is usually because "Store sent files on external storage" is off in the slicer (Bambu Studio / OrcaSlicer Device tab).`,docsLink:`See install step 4`,dismissLabel:`Dismiss this notice`},searchPlaceholder:`Search archives...`,filterByPrinter:`Filter by printer`,filterByStatus:`Filter by status`,sortBy:`Sort by`,sortNewest:`Newest first`,sortOldest:`Oldest first`,sortName:`Name`,sortDuration:`Duration`,sortLargest:`Largest first`,sortSmallest:`Smallest first`,sortSize:`Size`,noArchives:`No archives found`,noArchivesSearch:`No archives match your search`,originalPrintNotVisible:`Original print not visible - try clearing filters`,noArchivesYet:`No archives yet`,prints:`prints`,pagination:{showing:`Showing`,to:`to`,of:`of`,show:`Show`,page:`Page`,all:`All`},loadingArchives:`Loading archives...`,releaseToUpload:`Release to upload`,showAll:`Show all`,showFavoritesOnly:`Show favorites only`,gridView:`Grid view`,listView:`List view`,calendarView:`Calendar view`,logView:`Print Log`,manageTags:`Manage Tags`,showFailedPrints:`Show failed prints`,hideFailedPrints:`Hide failed prints`,hideDuplicates:`Hide Duplicates`,viewOriginalPrint:`Click to view original print (#{{id}})`,printTime:`Print Time`,filamentUsed:`Filament Used`,cost:`Cost`,preview:`Preview`,deleteArchive:`Delete Archive`,deleteConfirm:`Are you sure you want to delete this archive?`,favorite:`Favorite`,unfavorite:`Remove from favorites`,viewDetails:`View Details`,status:{completed:`Completed`,failed:`Failed`,stopped:`Stopped`},toast:{source3mfAttached:`Source 3MF attached: {{filename}}`,failedUploadSource3mf:`Failed to upload source 3MF`,source3mfRemoved:`Source 3MF removed`,failedRemoveSource3mf:`Failed to remove source 3MF`,f3dAttached:`F3D attached: {{filename}}`,failedUploadF3d:`Failed to upload F3D`,f3dRemoved:`F3D removed`,failedRemoveF3d:`Failed to remove F3D`,timelapseAttached:`Timelapse attached: {{filename}}`,timelapseAlreadyAttached:`Timelapse already attached`,noMatchingTimelapse:`No matching timelapse found`,failedScanTimelapse:`Failed to scan for timelapse`,failedAttachTimelapse:`Failed to attach timelapse`,timelapseRemoved:`Timelapse removed`,failedRemoveTimelapse:`Failed to remove timelapse`,timelapseUploaded:`Timelapse uploaded: {{filename}}`,failedUploadTimelapse:`Failed to upload timelapse`,archiveDeleted:`Archive deleted`,failedDeleteArchive:`Failed to delete archive`,addedToFavorites:`Added to favorites`,removedFromFavorites:`Removed from favorites`,projectUpdated:`Project updated`,failedUpdateProject:`Failed to update project`,linkCopied:`Link copied to clipboard`,failedCopyLink:`Failed to copy link`,photoDeleted:`Photo deleted`,failedDeletePhoto:`Failed to delete photo`,failedDeleteArchives:`Failed to delete archives`,failedUpdateFavorites:`Failed to update favorites`,exportDownloaded:`Export downloaded`,exportFailed:`Export failed`},menu:{print:`Print`,openInBambuStudio:`Open in Slicer`,slice:`Slice`,externalLink:`External Link`,viewOnMakerWorld:`View on MakerWorld`,preview3d:`3D Preview`,viewTimelapse:`View Timelapse`,scanForTimelapse:`Scan for Timelapse`,uploadTimelapse:`Upload Timelapse`,removeTimelapse:`Remove Timelapse`,downloadSource3mf:`Download Source 3MF`,uploadSource3mf:`Upload Source 3MF`,replaceSource3mf:`Replace Source 3MF`,removeSource3mf:`Remove Source 3MF`,uploadF3d:`Upload F3D`,replaceF3d:`Replace F3D`,downloadF3d:`Download F3D`,removeF3d:`Remove F3D`,download:`Download`,copyDownloadLink:`Copy Download Link`,qrCode:`QR Code`,viewPhotos:`View Photos`,viewPhotosCount:`View Photos ({{count}})`,projectPage:`Project Page`,addToFavorites:`Add to Favorites`,removeFromFavorites:`Remove from Favorites`,edit:`Edit`,printLog:`Print Log`,goToProject:`Go to Project: {{name}}`,addToProject:`Add to Project`,removeFromProject:`Remove from Project`,loading:`Loading...`,noProjectsAvailable:`No projects available`,searchProjects:`Search projects…`,select:`Select`,deselect:`Deselect`,delete:`Delete`},permission:{noReprint:`You do not have permission to reprint this archive`,noAddToQueue:`You do not have permission to add to queue`,noUpdateArchives:`You do not have permission to update archives`,noUploadFiles:`You do not have permission to upload files`,noDownload:`You do not have permission to download archives`,noCopyLink:`You do not have permission to copy download links`,noDelete:`You do not have permission to delete this archive`,noEdit:`You do not have permission to edit this entry`,noCreate:`You do not have permission to create archives`},platePicker:{title:`Select plate to preview`,hint:`This archive has multiple plates. Pick one to open in the GCode viewer.`,plateLabel:`Plate {{index}}`,objectCount:`{{count}} object`,objectCount_plural:`{{count}} objects`,noGcode:`This archive has no sliced G-code to preview. Open it in Bambu Studio to slice first.`},card:{previousPlate:`Previous plate`,nextPlate:`Next plate`,plateNumber:`Plate {{index}}`,moreOptions:`Right-click for more options`,addToFavorites:`Add to favorites`,removeFromFavorites:`Remove from favorites`,cancelled:`cancelled`,failed:`failed`,duplicate:`duplicate`,duplicateTitle:`This model has been printed before`,openSource3mf:`Open source 3MF in Bambu Studio (right-click for more options)`,downloadF3d:`Download Fusion 360 design file`,viewTimelapse:`View timelapse`,viewPhoto:`View 1 photo`,viewPhotos:`View {{count}} photos`,openFolder:`Open folder: {{name}}`,slicedFile:`Sliced file - ready to print`,sourceFile:`Source file only - no AMS mapping available`,gcode:`GCODE`,source:`SOURCE`,project:`Project: {{name}}`,runsBadge:`{{count}} prints`,runsBadgeTitle:`{{count}} prints total — {{successful}} successful, {{failed}} failed. Click to see the full print log.`,estimated:`Estimated: {{time}}`,actual:`Actual: {{time}}`,accuracy:`Accuracy: {{percent}}%`,filament:`{{weight}}g`,layer:`{{count}} layer`,layers:`{{count}} layers`,object:`{{count}} object`,objects:`{{count}} objects`,slicedFor:`Sliced for {{model}}`,uploadedBy:`Uploaded By`,noPermissionReprint:`You do not have permission to reprint`,noFileForReprint:`No 3MF file available — the file could not be downloaded from the printer when the print was recorded`,noPermissionEdit:`You do not have permission to edit archives`,noPermissionDelete:`You do not have permission to delete archives`,openInBambuStudio:`Open in Slicer`,openInBambuStudioToSlice:`Open in Slicer to slice`,slice:`Slice`,externalLink:`External Link`,makerWorld:`MakerWorld: {{designer}}`,viewProject:`View project`,noExternalLink:`No external link`,preview3d:`3D Preview`,download:`Download`,edit:`Edit`,delete:`Delete`},runLog:{title:`Print Log`,modalTitle:`Print Log — {{name}}`,modalTitleFallback:`this archive`,empty:`No print events recorded for this archive yet.`,col:{date:`Date`,status:`Status`,duration:`Duration`,filament:`Filament`,cost:`Cost`},status:{completed:`Completed`,failed:`Failed`,cancelled:`Cancelled`,stopped:`Stopped`,skipped:`Skipped`,printing:`Printing`}},modal:{deleteArchive:`Delete Archive`,deleteConfirm:`Are you sure you want to delete "{{name}}"? This action cannot be undone.`,deleteButton:`Delete`,deletePurgeStats:`Also remove this print from Quick Stats (filament, time, cost, energy)`,deleteQueueItemsWarning:`{{count}} queue item(s) linked to this archive will also be removed.`,deleteBlockedByPrinting:`Cannot delete — {{count}} queue item(s) are currently printing. Stop the print first, then retry.`,removeSource3mf:`Remove Source 3MF`,removeSource3mfConfirm:`Are you sure you want to remove the source 3MF file from "{{name}}"? This will delete the original slicer project file.`,removeButton:`Remove`,removeF3d:`Remove F3D`,removeF3dConfirm:`Are you sure you want to remove the Fusion 360 design file from "{{name}}"?`,removeTimelapse:`Remove Timelapse`,removeTimelapseConfirm:`Are you sure you want to remove the timelapse video from "{{name}}"?`,timelapse:`{{name}} - Timelapse`,selectTimelapse:`Select Timelapse`,selectTimelapseDesc:`No auto-match found. Select the timelapse for this print:`,deleteArchives:`Delete Archives`,deleteArchivesConfirm:`Are you sure you want to delete {{count}} archive(s)? This action cannot be undone.`,deleteCount:`Delete {{count}}`},page:{title:`Archives`,printsCount:`{{filtered}} of {{total}} prints`,dropFilesHere:`Drop .3mf files here`,releaseToUpload:`Release to upload`,only3mfSupported:`Only .3mf files are supported`,close:`Close`,selected:`{{count}} selected`,selectAll:`Select All`,tags:`Tags`,project:`Project`,favorite:`Favorite`,delete:`Delete`,toggledFavorites:`Toggled favorites for {{count}} archive(s)`,failedUpdateFavorites:`Failed to update favorites`,archivesDeleted:`{{count}} archive(s) deleted`,failedDeleteArchives:`Failed to delete archives`,photoDeleted:`Photo deleted`,failedDeletePhoto:`Failed to delete photo`},list:{name:`Name`,printer:`Printer`,date:`Date`,size:`Size`,actions:`Actions`,hasTimelapse:`Has timelapse`},log:{date:`Date`,printName:`Print Name`,printer:`Printer`,user:`User`,status:`Status`,duration:`Duration`,filament:`Filament`,allPrinters:`All Printers`,allUsers:`All Users`,allStatuses:`All Statuses`,cancelled:`Cancelled`,skipped:`Skipped`,dateFrom:`From`,dateTo:`To`,noEntries:`No print log entries found`,showing:`Showing {{count}} of {{total}} entries`,rowsPerPage:`Rows`,page:`Page`,prev:`Prev`,next:`Next`,clearLog:`Clear Log`,clearLogTitle:`Clear Print Log`,clearLogConfirm:`All print log entries will be permanently deleted. Archives and queue items are not affected. This action cannot be undone. Are you sure?`,clearLogButton:`Clear All`,cleared:`{{count}} log entries cleared`,clearFailed:`Failed to clear print log`,deleteEntryTitle:`Delete print log entry`,deleteEntryConfirm:`This entry will be removed from the log and its filament, time, and cost contributions will drop out of Quick Stats. The matching archive (if any) is not affected. This action cannot be undone.`,entryDeleted:`Print log entry deleted`,entryDeleteFailed:`Failed to delete print log entry`,editEntryTitle:`Edit print log entry`,editEntryDescription:`Classify this print run. The Failure Analysis widget groups by these values, so updates flow through to stats immediately.`,entryUpdated:`Print log entry updated`,entryUpdateFailed:`Failed to update print log entry`,statuses:{completed:`Completed`,failed:`Failed`,stopped:`Stopped`,cancelled:`Cancelled`,skipped:`Skipped`}}},dispatchToast:{untitled:`Print job`,startingPrints:`Starting prints`,progressSummary:`{{complete}}/{{total}} complete • Processing: {{processing}}`,expandDetails:`Expand dispatch details`,collapseDetails:`Collapse dispatch details`,awaitingPrinter:`Awaiting printer…`,status:{processing:`Processing`,completed:`Completed`,failed:`Failed`},failed:{generic:`Dispatch failed`,upload_failed:`Upload to printer failed`,start_command_failed:`Printer rejected start command`},dismiss:`Dismiss`},pipelineRuns:{title:`Pipeline Runs`,loading:`Loading…`,empty:`No pipeline runs yet.`,filter:{pipeline:`Pipeline`,status:`Status`,target:`Target`,all:`All`,allPipelines:`All pipelines`,allStatus:`All statuses`,allTargets:`All targets`,clear:`Clear filters`,noMatches:`No runs match the current filters.`},totalCount_one:`{{n}} run`,totalCount_other:`{{n}} runs`,copies:`{{n}} copies`,failedCount:`{{n}} failed`,copyN:`Copy {{n}}`,retryFailed:`Retry failed`,retryOf:`retry of #{{n}}`,pagination:`{{start}}–{{end}} of {{total}}`,cancelledByUser:`Cancelled by user`,toast:{cancelled:`Run cancelled`,cancelFailed:`Cancel failed`,retryStarted:`Retry started`,retryFailed:`Retry failed`,cleared:`{{n}} runs cleared`,clearFailed:`Clear failed`},clearLog:`Clear log`,clearConfirmTitle:`Clear log?`,clearConfirmBody:`Delete every completed, failed, cancelled, and partial-failure pipeline run? In-flight runs are kept. This cannot be undone.`,clearConfirmAction:`Clear`,jobStatus:{pending:`pending`,awaiting_printer:`awaiting printer`,queued:`queued`,printing:`printing`,completed:`completed`,failed:`failed`,cancelled:`cancelled`}},queue:{title:`Print Queue`,subtitle:`Schedule and manage your print jobs`,filamentShort:{rowBadge:`Insufficient filament for the assigned spool`,rowTooltip:`The dispatch scheduler flagged this item. Click Play to see the per-slot deficit and decide whether to print anyway.`,confirmTitle:`Insufficient filament`,confirmIntro:`The assigned spool cannot satisfy at least one slot. Print anyway?`,lineItem:`Slot {{slot}}: needs {{required}} g, {{remaining}} g remaining`,unknown:`unknown`,printAnyway:`Print Anyway`},editQueueItem:`Edit Queue Item`,selectAllPlates:`Select All {{count}} Plates`,deselectAll:`Deselect All`,printQueued:`Print queued`,printQueuedWillStartWhenIdle:`Will start when printer is idle`,itemsQueued:`{{count}} items queued`,sending:`Sending...`,sendingProgress:`Sending {{current}}/{{total}}...`,adding:`Adding...`,addingProgress:`Adding {{current}}/{{total}}...`,savingProgress:`Saving {{current}}/{{total}}...`,clearQueue:`Clear Queue`,clearHistory:`Clear History`,emptyQueue:`Queue is empty`,position:`Position`,scheduledTime:`Scheduled Time`,moveUp:`Move Up`,moveDown:`Move Down`,startNow:`Start Now`,printingInProgress:`Printing in progress...`,viewArchive:`View archive`,viewInFileManager:`View in File Manager`,itemCount:`{{count}} item`,itemCount_plural:`{{count}} items`,dragToReorder:`Drag to reorder (ASAP only)`,reorderHint:`Position only affects ASAP items. Scheduled items run at their set time.`,sjf:{label:`SJF`,tooltip:`Shortest Job First — scheduler prioritizes shorter prints`},addedBy:`Added by {{name}}`,nextInQueue:`Next in queue`,clearPlateSuccess:`Plate cleared — ready for next print`,plateNumber:`Plate {{index}}`,quantity:`Quantity`,quantityHint:`Creates {{count}} queue items`,activeBatches:`Active Batches`,batchProgress:`{{completed}} of {{total}} completed`,cancelBatch:`Cancel Remaining`,batchCancelled:`Remaining batch items cancelled`,cancelBatchConfirmTitle:`Cancel Batch`,cancelBatchConfirmMessage:`Cancel all remaining pending items in this batch?`,batch:{defaultName:`Batch`,label:`{{count}} item`,label_plural:`{{count}} items`,pendingCount:`{{count}} pending`,pendingCount_plural:`{{count}} pending`,expand:`Expand batch`,collapse:`Collapse batch`,groupAsBatch:`Group as batch…`,groupAsBatchDescription:`Combine the {{count}} selected items into a single collapsible batch.`,nameLabel:`Batch name`,namePlaceholder:`e.g. Friday gifts`,create:`Create batch`,ungroup:`Ungroup`,ungroupConfirmTitle:`Ungroup batch?`,ungroupConfirmMessage:`The items will stay in the queue but no longer be grouped together.`,dragGroup:`Drag group`},tabs:{queue:`Queue`,history:`History`,timeline:`Timeline`,pipelines:`Pipelines`},layout:{flatList:`List`,byPrinter:`By Printer`,groupByPrinter:`Group by Printer`},history:{emptyTitle:`No history yet`,emptyDescription:`Completed, cancelled, and failed prints will appear here.`},dragGhost:{multiCount:`{{count}} items`,batch:`{{name}} ({{count}} copy)`,batch_plural:`{{name}} ({{count}} copies)`},sections:{currentlyPrinting:`Currently Printing`,queued:`Queued`,history:`History`},status:{pending:`Pending`,waiting:`Waiting`,printing:`Printing`,paused:`Paused`,completed:`Completed`,failed:`Failed`,skipped:`Skipped`,cancelled:`Cancelled`},summary:{printing:`Printing`,queued:`Queued`,totalTime:`Total Queue Time`,totalWeight:`Total Queue Weight`,history:`History`},filter:{allPrinters:`All Printers`,unassigned:`Unassigned`,allStatus:`All Status`,allLocations:`All Locations`,any:`Any`},sort:{byPosition:`Sort by Position`,byName:`Sort by Name`,byPrinter:`Sort by Printer`,bySchedule:`Sort by Schedule`,byDate:`Sort by Date`,ascendingOldest:`Ascending (oldest first)`,descendingNewest:`Descending (newest first)`},badges:{staged:`Staged`,requiresPrevious:`Requires previous success`,autoPowerOff:`Auto power off`,gcodeInjection:`G-code`},empty:{title:`No prints scheduled`,description:`Schedule a print from the Archives page using the "Schedule" option in the context menu, or drag and drop files to get started.`},time:{asap:`ASAP`,overdue:`Overdue`,now:`Now`,lessThanMinute:`In less than a minute`,inMinutes:`In {{count}} min`,inHours:`In {{count}} hours`},actions:{startPrint:`Start Print`,stopPrint:`Stop Print`,requeue:`Re-queue`},bulkEdit:{title:`Edit {{count}} Item`,title_plural:`Edit {{count}} Items`,description:`Only changed settings will be applied to selected items.`,printer:`Printer`,noChange:`— No change —`,queueOptions:`Queue Options`,staged:`Staged (manual start)`,autoPowerOff:`Auto power off after print`,requirePrevious:`Require previous success`,printOptions:`Print Options`,bedLevelling:`Bed levelling`,flowCalibration:`Flow calibration`,vibrationCalibration:`Vibration calibration`,layerInspection:`First layer inspection`,timelapse:`Timelapse`,useAms:`Use AMS`,nozzleOffsetCali:`Nozzle offset calibration`,applyChanges:`Apply Changes`,selectAll:`Select All`,deselectAll:`Deselect All`,selected:`{{count}} selected`,editSelected:`Edit Selected`,cancelSelected:`Cancel Selected`},confirm:{cancelTitle:`Cancel Scheduled Print`,cancelMessage:`Are you sure you want to cancel "{{name}}"?`,stopTitle:`Stop Print`,stopMessage:`Are you sure you want to stop the current print "{{name}}"? This will cancel the print job on the printer.`,removeTitle:`Remove from History`,removeMessage:`Are you sure you want to remove "{{name}}" from the queue history?`,clearHistoryTitle:`Clear History`,clearHistoryMessage:`Are you sure you want to remove all {{count}} item(s) from the history?`,cancelButton:`Cancel Print`,stopButton:`Stop Print`,thisPrint:`this print`,thisItem:`this item`},toast:{cancelled:`Queue item cancelled`,cancelFailed:`Failed to cancel item`,removed:`Queue item removed`,removeFailed:`Failed to remove item`,stopped:`Print stopped`,stopFailed:`Failed to stop print`,released:`Print released to queue`,startFailed:`Failed to start print`,reorderFailed:`Failed to reorder queue`,historyCleared:`Cleared {{count}} history item(s)`,clearHistoryFailed:`Failed to clear history`,updateFailed:`Failed to update items`,bulkCancelled:`Cancelled {{count}} item(s)`,bulkCancelFailed:`Failed to cancel items`,batchCreated:`Batch "{{name}}" created`,batchCreateFailed:`Failed to create batch`,batchUngrouped:`Ungrouped {{count}} item(s)`,batchUngroupFailed:`Failed to ungroup batch`,resumedAfterFailure:`Resumed queue — {{restored}} job(s) restored to pending`,resumeAfterFailureFailed:`Failed to resume queue`},resumeAfterFailure:{banner:`{{printer}} is blocked by a previous-print failure — {{count}} job(s) skipped`,bannerHint:`Fix the printer issue, then resume to restore the skipped jobs and clear the gate.`,button:`Resume after failure`,confirmTitle:`Resume queue after failure?`,confirmMessage:`Restore {{count}} skipped job(s) on {{printer}} to pending and clear the previous-print gate. Make sure the printer is ready before continuing.`},timeline:{listView:`List`,timelineView:`Timeline`,unassigned:`Unassigned`,noData:`No scheduled prints for this day`,nothingCommitted:`No committed schedules in this window. Staged items, waiting items, and ASAP jobs on idle printers are not shown — set a scheduled time or release a staged item to see it here.`,allDoneBy:`All prints estimated done by {{time}}`,staged:`Staged`,filterAll:`Show All`,filterPrinting:`Printing`,filterQueued:`Queued`,time:{anyMoment:`any moment`,minutesLeft:`{{minutes}}m left`,hoursLeft:`{{hours}}h left`,hoursMinutesLeft:`{{hours}}h {{minutes}}m left`},day:{previous:`Previous day`,next:`Next day`,today:`Today`},window:{back12h:`Back 12 hours`,forward12h:`Forward 12 hours`,now:`Now`},printerColumnHeader:`Printer`},permissions:{noStopPrint:`You do not have permission to stop prints`,noStartPrint:`You do not have permission to start prints`,noEdit:`You do not have permission to edit this queue item`,noCancel:`You do not have permission to cancel this queue item`,noRequeue:`You do not have permission to re-queue items`,noRemove:`You do not have permission to remove this queue item`,noClearHistory:`You do not have permission to clear all history`,noEditItems:`You do not have permission to edit queue items`,noCancelItems:`You do not have permission to cancel queue items`}},stats:{title:`Statistics`,subtitle:`Drag widgets to rearrange. Click the eye icon to hide.`,overview:`Overview`,totalPrints:`Total Prints`,successRate:`Success Rate`,totalPrintTime:`Total Print Time`,printTime:`Print Time`,totalFilament:`Total Filament Used`,filamentUsed:`Filament Used`,filamentCost:`Filament Cost`,totalCost:`Total Cost`,energyUsed:`Energy Used`,energyCost:`Energy Cost`,energyWarmingUpTooltip:`Energy tracking is still collecting hourly snapshots. Date-range totals will become accurate once at least one snapshot exists before the selected range. Early values may undercount.`,averagePrintTime:`Average Print Time`,printsPerDay:`Prints per Day`,byPrinter:`By Printer`,printsByPrinter:`Prints by Printer`,byMaterial:`By Material`,byMonth:`By Month`,last7Days:`Last 7 Days`,last30Days:`Last 30 Days`,last90Days:`Last 90 Days`,allTime:`All Time`,quickStats:`Quick Stats`,printActivity:`Print Activity`,filamentTypes:`Filament Types`,filamentTrends:`Filament Trends`,failureAnalysis:`Failure Analysis`,timeAccuracy:`Time Accuracy`,successful:`Successful:`,failed:`Failed:`,cancelled:`Cancelled:`,perfectEstimate:`100% = perfect estimate`,noTimeAccuracyData:`No time accuracy data yet`,noFilamentData:`No filament data available`,noPrinterData:`No printer data available`,noPrintData:`No print data available`,noPrintDataLast30Days:`No print data in the last 30 days`,failureReasons:`Failure Reasons`,topFailureReasons:`Top Failure Reasons`,failedPrintsCount:`{{failed}} / {{total}} prints failed`,lastWeekRate:`Last week: {{rate}}%`,resetLayout:`Reset Layout`,recalculateCosts:`Recalculate Costs`,recalculateCostsHint:`Recalculate all archive costs using current filament prices`,exportStats:`Export Stats`,exportAsCsv:`Export as CSV`,exportAsExcel:`Export as Excel`,hiddenCount:`{{count}} Hidden`,exportDownloaded:`Export downloaded`,exportFailed:`Export failed`,layoutReset:`Layout reset`,recalculatedCosts:`Recalculated costs for {{count}} archives`,recalculateFailed:`Failed to recalculate costs`,loadingStats:`Loading statistics...`,noPermissionResetLayout:`You do not have permission to reset layout`,noPermissionRecalculate:`You do not have permission to recalculate costs`,noPrintDataInRange:`No print data in selected range`,periodFilament:`Period Filament`,periodCost:`Period Cost`,avgPerPrint:`Avg per Print`,usageOverTime:`Usage Over Time`,filamentByWeight:`Weight`,printDuration:`Print Duration`,printerUtilization:`Printer Utilization`,filamentSuccess:`Success by Material`,printHabits:`Print Habits`,printTimeOfDay:`Print Time of Day`,colorDistribution:`Color Distribution`,noColorData:`No color data available`,records:`Records`,longestPrint:`Longest Print`,heaviestPrint:`Heaviest Print`,mostExpensivePrint:`Most Expensive`,busiestDay:`Busiest Day`,successStreak:`Success Streak`,streakPrint:`consecutive print`,streakPrints:`{{count}} consecutive prints`,printerStats:`Printer Stats`,hours:`hours`,avgPrints:`Avg. prints`,noArchiveData:`No print data available`,filamentByTime:`Time`,avgWeight:`Avg. weight`,avgTime:`Avg. time`,filamentByPrints:`Prints`,timeframe:{today:`Today`,"this-week":`This Week`,"this-month":`This Month`,"last-7":`Last 7 Days`,"last-30":`Last 30 Days`,"last-90":`Last 90 Days`,"this-year":`This Year`,"all-time":`All Time`,custom:`Custom Range`,from:`From`,to:`To`},allUsers:`All Users`,noUser:`No User (System)`,filterByUser:`Filter by User`},maintenance:{title:`Maintenance`,overview:`Overview`,allOk:`All maintenance up to date`,dueCount:`{{count}} item due`,dueCount_plural:`{{count}} items due`,warningCount:`{{count}} warning`,warningCount_plural:`{{count}} warnings`,totalPrintTime:`Total Print Time`,nextMaintenance:`Next Maintenance`,nothingDue:`Nothing due`,tasks:`Tasks`,lastPerformed:`Last performed`,interval:`Interval`,hoursRemaining:`{{hours}}h remaining`,hoursOverdue:`{{hours}}h overdue`,markDone:`Mark as Done`,performMaintenance:`Perform Maintenance`,history:`History`,noHistory:`No maintenance history`,editPrintHours:`Edit Print Hours`,currentHours:`Current Hours`,statusTab:`Status`,settingsTab:`Settings`,overdueCount:`{{count}} overdue`,dueSoonCount:`{{count}} due soon`,dueSoon:`Due soon`,allGood:`All good`,overdueBy:`Overdue by {{duration}}`,dueIn:`Due in {{duration}}`,timeLeft:`{{duration}} left`,day:`1 day`,days:`{{count}} days`,week:`1 week`,weeks:`{{count}} weeks`,month:`1 month`,months:`{{count}} months`,year:`1 year`,maintenanceTypes:`Maintenance Types`,maintenanceTypesDescription:`System types and your custom maintenance tasks`,addCustomType:`Add Custom Type`,restoreDefaults:`Restore Default Tasks`,intervalType:`Interval Type`,intervalValue:`Interval ({{type}})`,icon:`Icon`,documentationLink:`Documentation Link (optional)`,assignToPrinters:`Assign to Printers`,selectAtLeastOnePrinter:`Select at least one printer`,addType:`Add Type`,custom:`Custom`,printHours:`Print Hours`,calendarDays:`Calendar Days`,exampleName:`e.g., Replace HEPA Filter`,viewDocumentation:`View documentation`,timeBasedInterval:`Time-based interval`,intervalOverrides:`Interval Overrides`,intervalOverridesDescription:`Customize intervals for specific printers`,assignedToPrinters:`Assigned to printers:`,noPrintersAssigned:`No printers assigned`,addPrinterShort:`Add:`,printersAssignedClick:`{{count}} printer(s) assigned - click to manage`,removeFromPrinter:`Remove from this printer`,types:{lubricateCarbonRods:`Lubricate Carbon Rods`,lubricateRails:`Lubricate Linear Rails`,cleanNozzle:`Clean Nozzle/Hotend`,checkBelts:`Check Belt Tension`,cleanBuildPlate:`Clean Build Plate`,checkExtruder:`Check Extruder Gears`,checkCooling:`Check Cooling Fans`,generalInspection:`General Inspection`,cleanCarbonRods:`Clean Carbon Rods`,lubricateSteelRods:`Lubricate Steel Rods`,cleanSteelRods:`Clean Steel Rods`,cleanLinearRails:`Clean Linear Rails`,checkPtfeTube:`Check PTFE Tube`,replaceHepaFilter:`Replace HEPA Filter`,replaceCarbonFilter:`Replace Carbon Filter`,lubricateLeftNozzleRail:`Lubricate Left Nozzle Rail`},maintenanceComplete:`Maintenance marked as complete`,typeUpdated:`Maintenance type updated`,typeDeleted:`Maintenance type deleted`,defaultsRestored:`Restored {{count}} default task(s)`,printHoursUpdated:`Print hours updated`,printerAssigned:`Printer assigned`,printerRemoved:`Printer removed`,deleteTypeConfirm:`Delete "{{name}}"?`,deleteSystemTypeTitle:`Delete default maintenance task?`,deleteSystemTypeMessage:`Are you sure you want to delete the default maintenance task "{{name}}"?`,noPermissionUpdate:`You do not have permission to update maintenance items`,noPermissionPerform:`You do not have permission to perform maintenance`,noPermissionEditTypes:`You do not have permission to edit maintenance types`,noPermissionDeleteTypes:`You do not have permission to delete maintenance types`,noPermissionEditHours:`You do not have permission to edit print hours`,noPermissionRemovePrinter:`You do not have permission to remove printer assignments`,noPermissionAssignPrinter:`You do not have permission to assign printers`,noPermissionEditIntervals:`You do not have permission to edit intervals`,configureSettings:`Configure maintenance types and intervals`},settings:{title:`Settings`,general:`General`,tabs:{general:`General`,smartPlugs:`Smart Plugs`,notifications:`Notifications`,queue:`Workflow`,queueDispatch:`Queue & Dispatch`,queuePipelines:`Pipelines`,filament:`Filament`,network:`Network`,apiKeys:`API Keys`,virtualPrinter:`Virtual Printer`,spoolbuddy:`SpoolBuddy`,failureDetection:`Failure Detection`,users:`Authentication`,backup:`Backup`,emailAuth:`Email Authentication`,ldap:`LDAP`,twoFa:`Two-Factor Auth`,oidc:`SSO / OIDC`,security:`Security`},spoolbuddy:{infoTitle:`SpoolBuddy devices`,infoBody:`SpoolBuddy kiosks register themselves automatically via heartbeat. Unregister a device here if it is no longer in use or if a stale duplicate was left behind by a daemon crash.`,duplicatesTitle:`{{count}} devices registered`,duplicatesBody:`Only the first registered device is used by the kiosk UI. If one of these is a stale duplicate from a crash, unregister it — an online device will re-register itself on its next heartbeat.`,empty:`No SpoolBuddy devices registered yet.`,online:`Online`,offline:`Offline`,unregister:`Unregister`,unregisterSuccess:`Device unregistered`,unregisterError:`Failed to unregister device`,confirmTitle:`Unregister SpoolBuddy device?`,confirmBody:`This will remove "{{hostname}}" ({{deviceId}}) from the database. If the device is online, it will re-register itself on its next heartbeat.`,ipAddress:`IP address`,firmware:`Firmware`,lastSeen:`Last seen`,daemonUptime:`Daemon uptime`,systemUptime:`System uptime`,never:`never`,nfc:`NFC`,scale:`Scale`,cpuTemp:`CPU temp`,cpuLoad:`CPU load`,memory:`Memory`,disk:`Disk`,update:`Update`,updateConfirmTitle:`Update Spoolbuddy daemon?`,updateConfirmBody:`Trigger a software update on "{{hostname}}"? The daemon will restart once the update is applied.`,restartBrowser:`Restart Browser`,restartBrowserConfirmTitle:`Restart kiosk browser?`,restartBrowserConfirmBody:`Restart the kiosk browser on "{{hostname}}"? The display will blank briefly.`,restartDaemon:`Restart Daemon`,restartDaemonConfirmTitle:`Restart Spoolbuddy daemon?`,restartDaemonConfirmBody:`Restart the Spoolbuddy daemon on "{{hostname}}"? The device will go offline for a few seconds.`,reboot:`Reboot`,rebootConfirmTitle:`Reboot device?`,rebootConfirmBody:`Reboot "{{hostname}}"? The device will be offline for around a minute.`,shutdown:`Shutdown`,shutdownConfirmTitle:`Shutdown device?`,shutdownConfirmBody:`Shutdown "{{hostname}}"? You will need physical access to power it back on.`,commandConfirm:`Confirm`,commandQueued:`Command queued`,commandError:`Failed to send command`},ldap:{title:`LDAP Authentication`,enabledDesc:`LDAP authentication is enabled`,disabledDesc:`LDAP authentication is disabled`,disabledHint:`Configure and save LDAP settings below, then enable.`,enabled:`LDAP authentication enabled`,disabled:`LDAP authentication disabled`,feature1:`Users can login with LDAP credentials`,feature2:`Local admin account remains as fallback`,feature3:`LDAP groups are mapped to BamBuddy groups on login`,serverConfig:`LDAP Server Configuration`,serverUrl:`Server URL`,serverUrlHint:`Use ldaps:// for SSL or ldap:// with StartTLS`,security:`Security`,securityHint:`StartTLS upgrades a plain connection to TLS. LDAPS uses TLS from the start.`,bindDn:`Bind DN (Service Account)`,bindPassword:`Bind Password`,searchBase:`Search Base DN`,userFilter:`User Search Filter`,userFilterHint:`{username} is replaced with the login username. Use (uid={username}) for OpenLDAP.`,advanced:`Advanced`,autoProvision:`Auto-provision users`,autoProvisionHint:`Automatically create a BamBuddy account on first LDAP login`,defaultGroup:`Default group`,defaultGroupNone:`— None (no fallback) —`,defaultGroupHint:`Fallback group assigned when an LDAP user authenticates but is not listed in any mapped LDAP group. Leave empty to leave unmapped users without permissions.`,groupMapping:`Group Mapping (JSON)`,groupMappingHint:`Map LDAP group DNs to BamBuddy groups. Available groups: `,testConnection:`Test Connection`,settingsSaved:`LDAP settings saved`,errors:{serverRequired:`LDAP server URL is required`,searchBaseRequired:`Search base DN is required`,enableAuthFirst:`Enable authentication first`,configureLdapFirst:`Save LDAP settings first`}},email:{smtpSettings:`SMTP Configuration`,smtpHost:`SMTP Server`,smtpPort:`SMTP Port`,security:`Security`,authentication:`Authentication`,username:`Username`,password:`Password`,fromEmail:`From Email`,fromName:`From Name`,testConnection:`Test SMTP Connection`,testRecipient:`Test Recipient Email`,sendTest:`Send Test Email`,sending:`Sending...`,save:`Save Settings`,saving:`Saving...`,advancedAuth:`Advanced Authentication`,advancedAuthEnabled:`Advanced Authentication is enabled`,advancedAuthEnabledDesc:`Email-based user management features are active. New users will receive auto-generated passwords via email, and users can reset their passwords through the forgot password feature.`,advancedAuthDisabled:`Advanced Authentication is disabled`,advancedAuthDisabledDesc:`Enable advanced authentication to activate email-based features for user management.`,enable:`Enable`,disable:`Disable`,feature1:`Passwords are auto-generated and emailed to new users`,feature2:`Users can login with username or email`,feature3:`Forgot password feature is available`,feature4:`Admins can reset user passwords via email`,errors:{requiredFields:`Please fill in all required fields`,usernameRequired:`Username is required when authentication is enabled`,enterTestEmail:`Please enter a test email address`,smtpServerAndEmail:`Please fill in SMTP Server and From Email before testing`,usernamePasswordRequired:`Username and Password are required when authentication is enabled`,configureSmtpFirst:`Please configure and test SMTP settings first`,enableAuthFirst:`Please enable authentication first to use email-based features.`},success:{settingsSaved:`SMTP settings saved successfully`},securityOptions:{starttls:`STARTTLS (Port 587)`,ssl:`SSL/TLS (Port 465)`,none:`None (Port 25)`},authOptions:{enabled:`Enabled`,disabled:`Disabled`}},appearance:`Appearance`,notifications:`Notifications`,smartPlugs:`Smart Plugs`,spoolman:`Spoolman`,updates:`Updates`,language:`Language`,languageDescription:`Select your preferred language`,theme:`Theme`,themeLight:`Light`,themeDark:`Dark`,themeSystem:`System`,defaultView:`Default View`,defaultViewDescription:`Page to show when opening the app`,checkForUpdates:`Check for Updates`,autoUpdate:`Auto Update`,currentVersion:`Current Version`,latestVersion:`Latest Version`,upToDate:`You are up to date`,updateAvailable:`Update available`,notificationLanguage:`Notification Language`,notificationLanguageDescription:`Language for push notifications`,bedCooledThreshold:`Bed Cooled Threshold`,bedCooledThresholdDescription:`Temperature below which the bed is considered cooled after a print`,userNotificationsEnabled:`User Notifications`,userNotificationsEnabledDescription:`Enable the user notifications menu and email notifications for print job events. Requires Advanced Authentication.`,userNotificationsDisabledHint:`Enable Advanced Authentication to use user notifications.`,notificationProviders:`Notification Providers`,addProvider:`Add Provider`,editProvider:`Edit Provider`,providerType:`Provider Type`,testNotification:`Test Notification`,testSuccess:`Test notification sent successfully`,testFailed:`Failed to send test notification`,quietHours:`Quiet Hours`,quietHoursDescription:`Do not disturb during these hours`,quietHoursStart:`Start`,quietHoursEnd:`End`,events:{title:`Notification Events`,printStart:`Print Started`,printComplete:`Print Completed`,printFailed:`Print Failed`,printStopped:`Print Stopped`,printProgress:`Progress Milestones`,printProgressDescription:`Notify at 25%, 50%, 75%`,printerOffline:`Printer Offline`,printerError:`Printer Error`,filamentLow:`Low Filament`,maintenanceDue:`Maintenance Due`,maintenanceDueDescription:`Notify when maintenance is needed`},smartPlug:{title:`Smart Plugs`,add:`Add Smart Plug`,edit:`Edit Smart Plug`,name:`Name`,ipAddress:`IP Address`,linkedPrinter:`Linked Printer`,autoOn:`Auto Power On`,autoOnDescription:`Turn on when print starts`,autoOff:`Auto Power Off`,autoOffDescription:`Turn off after print completes`,offDelay:`Off Delay`,offDelayMinutes:`Minutes after print`,offDelayTemp:`When nozzle below temperature`,currentState:`Current State`,turnOn:`Turn On`,turnOff:`Turn Off`},filamentTracking:`Filament Tracking`,filamentTrackingDesc:`Choose how to track your filament spools. You can use the built-in inventory or connect an external Spoolman server.`,autoAddUnknownRfid:`Auto-add unknown RFID spools`,autoAddUnknownRfidDesc:`Automatically create an inventory entry when a spool with an unknown RFID tag is detected. Turn off if you pre-register new spools manually to avoid duplicates.`,filamentChecks:`Filament checks`,disableFilamentWarnings:`Disable filament warnings`,disableFilamentWarningsDesc:`Don't show warnings about insufficient filament when printing or queueing`,preferLowestFilament:`Prefer lowest remaining filament`,preferLowestFilamentDesc:`When multiple spools match, use the one with the least filament remaining`,preferLowestFilamentBackupNote:`Only takes effect when AMS Filament Backup is enabled on the printer — otherwise the printer cannot switch to a second spool when the picked one runs out.`,trackingModeBuiltIn:`Built-in Inventory`,trackingModeBuiltInDesc:`RFID auto-matching and usage tracking included`,trackingModeSpoolmanDesc:`External filament management server`,builtInFeatureRfid:`Automatically detects Bambu Lab RFID spools in AMS`,builtInFeatureUsage:`Tracks filament consumption per print`,builtInFeatureCatalog:`Manage spools, colors, and K-factor profiles`,builtInFeatureThirdParty:`Third-party spools can be assigned to inventory spools`,amsSyncButton:`Sync Weights from AMS`,amsSyncTitle:`Sync Spool Weights from AMS`,amsSyncMessage:`This will overwrite all inventory spool weights with the current AMS remain% values from connected printers. Use this to recover from corrupted weight data. Printers must be online.`,amsSyncing:`Syncing...`,amsSyncSuccess:`{{synced}} spool(s) synced, {{skipped}} skipped`,amsSyncError:`Failed to sync weights from AMS`,spoolmanAmsSyncButton:`Sync Spoolman Weights from AMS`,spoolmanAmsSyncTitle:`Sync Spoolman Spool Weights from AMS`,spoolmanAmsSyncMessage:`This will update all Spoolman spool weights based on the current AMS remain% values from connected printers. Printers must be online.`,spoolmanAmsSyncing:`Syncing...`,spoolmanAmsSyncSuccess:`{{synced}} spool(s) synced, {{skipped}} skipped`,spoolmanAmsSyncError:`Failed to sync Spoolman weights from AMS`,spoolmanAmsSyncErrorUnreachable:`Failed to sync Spoolman weights (Spoolman unreachable)`,spoolmanAmsSyncErrorNotConfigured:`Failed to sync Spoolman weights (Spoolman not configured)`,spoolmanNotConfigured:`Spoolman not configured`,spoolmanFilamentCatalogTitle:`Spoolman Filament Catalog`,spoolmanFilamentCatalogDesc:`Filament names and tare weights from your Spoolman instance. Name and spool weight are editable here; all other properties are managed directly in Spoolman.`,spoolmanUrl:`Spoolman URL`,spoolmanUrlHint:`URL of your Spoolman server (e.g., http://localhost:7912)`,spoolmanConnected:`Connected`,spoolmanDisconnected:`Disconnected`,status:`Status`,connect:`Connect`,disconnect:`Disconnect`,howSyncWorks:`How Sync Works`,syncInfoRfidOnly:`Only official Bambu Lab spools with RFID are synced`,syncInfoAutoCreate:`New spools are auto-created in Spoolman on first sync`,syncInfoThirdPartySkipped:`Non-Bambu Lab spools (third-party, refilled) are skipped`,linkingExistingSpools:`Linking Existing Spools`,linkingExistingSpoolsDesc:`To link existing Spoolman spools to your AMS, hover over an AMS slot and click "Link to Spoolman".`,syncMode:`Sync Mode`,syncModeAuto:`Automatic`,syncModeManual:`Manual Only`,syncModeAutoDesc:`AMS data syncs automatically when changes are detected`,syncModeManualDesc:`Only sync when manually triggered`,syncAmsData:`Sync AMS Data`,syncAmsDataDesc:`Manually sync printer AMS data to Spoolman`,allPrinters:`All Printers`,noDefaultPrinter:`No default (ask each time)`,sidebarOrder:`Sidebar order`,saveThumbnails:`Save thumbnails`,captureFinishPhoto:`Capture finish photo`,noPrintersConfigured:`No printers configured`,archiveMode:{always:`Always create archive entry`,never:`Never create archive entry`,ask:`Ask each time`},checkForUpdatesLabel:`Check for updates`,checkPrinterFirmware:`Check printer firmware`,includeBetaUpdates:`Include beta versions`,includeBetaUpdatesDesc:`Notify about beta and prerelease versions when checking for updates`,localLogin:{disable:`Disable local username/password login`,disableHint:`When enabled, only SSO providers can sign in. LDAP is unaffected. Set BAMBUDDY_LOCAL_LOGIN=true on the server to keep a recovery path.`},enableRetry:`Enable retry`,homeAssistantDescription:`Control smart plugs via Home Assistant`,environmentManagedLabel:`(Environment Managed)`,autoEnabledViaEnv:`Automatically enabled via environment variables`,urlFromEnvReadOnly:`Value set by HA_URL environment variable (read-only)`,tokenFromEnvReadOnly:`Value set by HA_TOKEN environment variable (read-only)`,mqttConnectedTo:`Connected to`,prometheusDescription:`Expose printer data in Prometheus format`,noSmartPlugsTitle:`No smart plugs configured`,noSmartPlugsDescription:`Add a Tasmota-based smart plug to track energy usage and automate power control.`,noProvidersTitle:`No providers configured`,noProvidersDescription:`Add a provider to receive alerts.`,noTemplatesAvailable:`No templates available. Restart the backend to seed default templates.`,apiPermissionView:`View printer status and queue`,apiPermissionEdit:`Add and remove items from print queue`,apiKeysEmptyTitle:`No API keys`,apiKeysEmptyDescription:`Create an API key to integrate with external services.`,noUsersFound:`No users found`,noGroupsFound:`No groups found`,noGroupsAvailable:`No groups available`,passwordsDoNotMatch:`Passwords do not match`,systemGroupWarning:`System group names cannot be changed`,authDisabledTitle:`Authentication is Disabled`,authDisabledFeature1:`Require login to access the system`,authDisabledFeature2:`Create multiple users with group-based permissions`,authDisabledFeature3:`Control access with 50+ granular permissions`,userHasCreated:`This user has created:`,userItemsQuestion:`What would you like to do with these items?`,deleteUserConfirm:`Are you sure you want to delete this user?`,actionCannotBeUndone:`This action cannot be undone.`,addFirstSmartPlug:`Add Your First Smart Plug`,providers:`Providers`,log:`Log`,testAll:`Test All`,testResults:`Test Results`,testPassedCount:`{{count}} passed`,testFailedCount:`{{count}} failed`,messageTemplates:`Message Templates`,messageTemplatesDescription:`Customize notification messages for each event.`,apiKeys:`API Keys`,apiKeysDescription:`Create API keys for external integrations and webhooks.`,createKey:`Create Key`,apiKeyCreated:`API Key Created Successfully`,apiKeyCopyWarning:`Copy this key now - it won't be shown again!`,useInApiBrowser:`Use in API Browser`,apiKeyQrButton:`QR code`,apiKeyQrTitle:`Scan to configure`,apiKeyQrCaption:`Scan with your mobile app to add this server and API key.`,apiKeyQrWarning:`Contains your secret API key — don't share or screenshot it where others can see.`,createNewApiKey:`Create New API Key`,keyName:`Key Name`,keyNamePlaceholder:`e.g., Home Assistant, OctoPrint`,readStatus:`Read Status`,readStatusDescription:`View printer status and queue`,manageQueue:`Manage Queue`,manageQueueDescription:`Add and remove items from print queue`,controlPrinter:`Control Printer`,controlPrinterDescription:`Pause, resume, and stop prints`,manageLibrary:`Manage Library`,manageLibraryDescription:`Upload, rename, and delete library files; import models from MakerWorld`,manageInventory:`Manage Inventory`,manageInventoryDescription:`Create, update, and delete spools and inventory records. Required for SpoolBuddy kiosks (NFC scan, scale readings, kiosk system commands).`,manageMaintenance:`Manage Maintenance`,manageMaintenanceDescription:`Log completed maintenance, reset counters, edit intervals, and manage the maintenance-type catalog. Suited to Home Assistant automations that record "I cleaned the nozzle" without granting broader printer control.`,manageArchives:`Manage Archives`,manageArchivesDescription:`Edit and delete print archives, including removing old prints. Does not include purging their statistics contribution. Suited to automations that prune the print history.`,manageProjects:`Manage Projects`,manageProjectsDescription:`Create, update, and delete projects, and add archives to them. Suited to automations that organize prints into projects.`,libraryBadge:`Library`,inventoryBadge:`Inventory`,maintenanceBadge:`Maintenance`,archivesBadge:`Archives`,projectsBadge:`Projects`,cloudAccess:`Allow cloud access`,cloudAccessDescription:`Read Bambu Cloud presets and filaments on your behalf. Requires you to be signed into Bambu Cloud.`,cloudBadge:`Cloud`,updateEnergyCost:`Update electricity price`,updateEnergyCostDescription:`Allow this key to POST a new per-kWh electricity price to /settings/electricity-price. Useful for Home Assistant dynamic-tariff automations (Tibber, Octopus, etc.). This is the only settings field writable via API key.`,energyCostBadge:`Energy`,legacyKey:`Legacy`,legacyKeyTooltip:`Created before per-user ownership; recreate to use cloud access`,unnamedKey:`Unnamed Key`,lastUsed:`Last used`,read:`Read`,control:`Control`,createFirstKey:`Create Your First Key`,webhookEndpoints:`Webhook Endpoints`,webhookApiKeyHint:`Use your API key in the X-API-Key header.`,webhook:{getAllStatus:`Get all printer status`,getSpecificStatus:`Get specific printer status`,addToQueue:`Add to print queue`,pausePrint:`Pause print`,resumePrint:`Resume print`,stopPrint:`Stop print`},apiBrowser:`API Browser`,apiBrowserDescription:`Explore and test all available API endpoints.`,apiKeyForTesting:`API Key for Testing`,apiKeyPlaceholder:`Paste your API key here to test authenticated endpoints...`,apiKeyHint:`This key will be sent as X-API-Key header with requests.`,deleteApiKeyTitle:`Delete API Key`,deleteApiKeyMessage:`Are you sure you want to delete this API key? Any integrations using this key will stop working.`,deleteKey:`Delete Key`,amsDisplayThresholds:`AMS Display Thresholds`,amsThresholdsDescription:`Configure color thresholds for AMS humidity and temperature indicators.`,humidity:`Humidity`,goodGreen:`Good (green)`,fairOrange:`Fair (orange)`,aboveFairBad:`Above fair threshold shows as red (bad)`,fairAlsoDryingThreshold:`This threshold is also used to trigger auto-drying when enabled`,temperature:`Temperature`,goodBlue:`Good (blue)`,aboveFairHot:`Above fair threshold shows as red (hot)`,historyRetention:`History Retention`,keepSensorHistory:`Keep sensor history for`,historyRetentionDescription:`Older humidity and temperature data will be automatically deleted`,defaultPrintOptions:`Default Print Options`,defaultPrintOptionsDescription:`Set default values for print options when starting new prints. These can be overridden per print in the print dialog.`,defaultBedLevelling:`Bed Levelling`,defaultBedLevellingDesc:`Auto-level bed before print`,defaultFlowCali:`Flow Calibration`,defaultFlowCaliDesc:`Calibrate extrusion flow`,defaultVibrationCali:`Vibration Calibration`,defaultVibrationCaliDesc:`Reduce ringing artifacts`,defaultLayerInspect:`First Layer Inspection`,defaultLayerInspectDesc:`AI inspection of first layer`,defaultTimelapse:`Timelapse`,defaultTimelapseDesc:`Record timelapse video`,defaultNozzleOffsetCali:`Nozzle Offset Calibration`,defaultNozzleOffsetCaliDesc:`Calibrate nozzle offsets between extruders`,tempFanPresetsTitle:`Temperature & Fan Presets`,tempFanPresetsDescription:`Customize the quick-select values shown in printer-card temperature and fan-speed popovers. The Off button is always shown.`,tempFanPresetsNozzle:`Nozzle temperature`,tempFanPresetsBed:`Bed temperature`,tempFanPresetsChamber:`Chamber temperature`,tempFanPresetsFan:`Fan speed`,tempFanPresetsReset:`Reset to defaults`,staggeredStart:`Staggered Start`,staggeredStartDescription:`Default group size and interval when staggering multi-printer batch starts. Can be overridden per batch in the print modal.`,preheatTitle:`Preheat & Heat Soak`,preheatDescription:`Heat the bed (and chamber, if supported) and hold at temperature before each queued print starts. Helpful for engineering filaments (PA, ABS) on printers without an active chamber heater — the bed warms the chamber by radiation while the soak timer runs. The bed target is read from the print file; chamber behaviour depends on printer model.`,preheatEnabled:`Enable preheat & soak`,preheatEnabledDesc:`When off, queued prints dispatch immediately. Each queue item can override per print.`,preheatFilamentTargetsLabel:`Per-filament chamber target (°C)`,preheatFilamentTargetsHint:`Bambuddy picks the highest target across the loaded AMS slots; PLA-only prints derive 0 and skip the chamber phase automatically.`,preheatFilamentTargetsReset:`Reset to defaults`,preheatFilamentTargetsDefaultRow:`Other / unmapped`,preheatMaxWait:`Max wait (seconds)`,preheatMaxWaitHelp:`Cap on the chamber warm-up phase before falling through.`,preheatSoak:`Soak (seconds)`,preheatSoakHelp:`Hold time after target reached or max-wait elapsed.`,preheatHardwareTitle:`Per-printer behaviour:`,preheatHardwareDetail:`H2C/H2D/H2D Pro/H2S/X2D/X1E actively heat the chamber via M141. X1C/P2S read chamber temp but rely on bed-radiation heating. P1S/P1P/A1/A1 Mini have no chamber sensor — only the soak timer applies.`,preheatPerItemDesc:`Heat the bed and chamber before this print starts. Defaults to the global Settings → Workflow toggle.`,preheatOverride_inherit:`Inherit`,preheatOverride_on:`On`,preheatOverride_off:`Off`,preheatTargetOverride:`Chamber target override (°C, blank = filament default)`,plateClear:`Plate-Clear Confirmation`,requirePlateClear:`Require plate-clear confirmation`,requirePlateClearDescription:`When enabled, the scheduler waits for per-printer plate-clear confirmation before starting queued prints on printers with finished jobs. Disabling this also hides the plate status badge and the "Mark plate as cleared" button on printer cards.`,gcodeInjection:`G-code Injection`,gcodeInjectionDescription:`Configure custom G-code to inject at the start and/or end of prints for auto-print systems like Farmloop, SwapMod, AutoClear, and Printflow 3D. Snippets are configured per printer model and applied when "Inject G-code" is enabled on a queue item.`,gcodeInjectionNoPrinters:`No printers found. Add printers to configure G-code snippets.`,gcodeStartLabel:`Start G-code`,gcodeEndLabel:`End G-code`,gcodeStartPlaceholder:`G-code prepended before the print starts...`,gcodeEndPlaceholder:`G-code appended after the print ends...`,staggerGroupSize:`Group size`,staggerGroupSizeHelp:`Printers to start simultaneously per group`,staggerInterval:`Interval (minutes)`,staggerIntervalHelp:`Delay between each group starting`,queueDrying:`Queue Auto-Drying`,queueDryingDescription:`Automatically dry AMS filament when printer is idle between queued prints. Uses humidity threshold above to trigger drying.`,queueDryingEnabled:`Enable auto-drying`,queueDryingEnabledDescription:`Start AMS drying automatically when printer is idle and humidity is above threshold`,queueDryingBlock:`Wait for drying to complete`,queueDryingBlockDescription:`Block the print queue until drying finishes. When off, prints take priority over drying.`,ambientDryingEnabled:`Ambient drying`,ambientDryingEnabledDescription:`Automatically dry filament on idle printers when humidity exceeds threshold, even without queued prints.`,printDryingEnabled:`Continue drying while printing`,printDryingEnabledDescription:`Allow auto-drying to keep running during a print on supported hardware (H2D, H2C, H2S, P2S, H2D Pro, X2D, X1C, A2L on recent firmware). Drying temperature is automatically capped 5°C below the idle preset to protect spools.`,dryingPresets:`Drying Presets`,dryingPresetsDescription:`Temperature and duration per filament type. AMS 2 Pro uses lower temps, AMS-HT supports higher temps.`,dryingFilament:`Filament`,humidityThresholds:`Humidity Thresholds`,humidityThresholdsDescription:`Per-filament humidity trigger for auto-drying and alarms. Mixed loads in one AMS use the lowest threshold.`,humidityThresholdCol:`Threshold`,humidityThresholdDefault:`Default (unknown types)`,printModal:`Print Modal`,expandCustomMapping:`Expand custom mapping by default`,expandCustomMappingDescription:`When printing to multiple printers, show per-printer AMS mapping expanded`,authentication:`Authentication`,authEnabledDescription:`Your instance is secured with user authentication`,authDisabledDescription:`Enable to require login and manage user access`,authDisabledMessage:`Enable authentication to create user accounts, manage permissions, and secure your Bambuddy instance.`,enableAuthentication:`Enable Authentication`,currentUser:`Current User`,changePassword:`Change Password`,admin:`Admin`,users:`Users`,addUser:`Add User`,groups:`Groups`,addGroup:`Add Group`,system:`System`,noDescription:`No description`,userCount:`{{count}} users`,permissionCount:`{{count}} permissions`,createUser:`Create User`,username:`Username`,enterUsername:`Enter username`,password:`Password`,enterPassword:`Enter password`,passwordRequirements:`At least 8 characters, with one uppercase, one lowercase, one digit, and one special character.`,confirmPassword:`Confirm Password`,confirmPasswordPlaceholder:`Confirm password`,viewReleaseOnGitHub:`View release on GitHub`,turnAllPlugsOn:`Turn all plugs on`,turnAllPlugsOff:`Turn all plugs off`,clearNotificationLogs:`Clear Notification Logs`,clearLogsMessage:`This will permanently delete all notification logs older than 30 days. This action cannot be undone.`,clearLogs:`Clear Logs`,resetUiPreferences:`Reset UI Preferences`,resetUiPreferencesMessage:`This will reset all UI preferences to defaults: sidebar order, theme, dashboard layout, view modes, and sorting preferences. Your printers, archives, and server settings will NOT be affected. The page will reload after clearing.`,resetPreferences:`Reset Preferences`,deleteGroupTitle:`Delete Group`,deleteGroupMessage:`Are you sure you want to delete this group? Users in this group will lose these permissions.`,deleteGroup:`Delete Group`,disableAuthenticationTitle:`Disable Authentication`,disableAuthenticationMessage:`Are you sure you want to disable authentication? This will make your Bambuddy instance accessible without login. All users will remain in the database but authentication will be disabled.`,disableAuthentication:`Disable Authentication`,configureBambuddy:`Configure Bambuddy`,systemDefault:`System Default`,archiveSettings:`Archive Settings`,newWindow:`New Window`,embeddedOverlay:`Embedded Overlay`,preferredSlicer:`Preferred Slicer`,preferredSlicerDescription:`Slicer used for in-app slicing via the API sidecar`,openInSlicerLabel:`Open in Slicer`,openInSlicerInherit:`Same as API slicer`,openInSlicerDescription:`Desktop slicer used by the 'Open in Slicer' button. Leave on 'Same as API slicer' to inherit, or pick a different slicer to use locally.`,orcaslicerKnownIssuesWarning:`OrcaSlicer 2.3.2 / 2.4.0-dev have known CLI bugs that block slicing many Bambu-authored 3MFs — see upstream issues #12426 (segfault on painted multi-extruder files) and #13386 (parameter-range strict-validation reject). Bambu Studio is recommended until the upstream fixes land.`,useSlicerApi:`Use Slicer API`,useSlicerApiDescription:`When on, "Slice" actions open the in-app slicer modal and call the slicer-API sidecar. When off (default), they hand off to the desktop slicer via URI scheme.`,slicerCard:`Slicer`,orcaslicerApiUrl:`OrcaSlicer sidecar URL`,bambuStudioApiUrl:`Bambu Studio sidecar URL`,slicerApiUrlDescription:`URL of the slicer-API sidecar container. Leave blank to use the SLICER_API_URL / BAMBU_STUDIO_API_URL env var defaults.`,slicerBundlesRemoved:{title:`Slicer Bundles (removed)`,description:`Printer Preset Bundle (.bbscfg) import was removed. BambuStudio's bundle export only includes user-customised presets, so the import never delivered standard processes / filaments and slicing fell back to embedded settings.`,alternatives:`Use Single Preset Import for individual customs, or sync via Bambu Cloud / Orca Cloud. Stock presets come from the slicer sidecar automatically.`,lookupOrder:`Slice-time preset lookup order: 1) Imported (local), 2) Orca Cloud, 3) Bambu Cloud, 4) Standard (sidecar fallback).`},externalCameras:`External Cameras`,costTracking:`Cost Tracking`,printsOnly:`Prints Only`,totalConsumption:`Total Consumption`,dataManagement:`Data Management`,storageUsage:`Storage Usage`,storageUsageDescription:`Breakdown of data usage by category`,storageUsageTotal:`Total`,storageUsageErrors:`Errors`,storageUsageOtherBreakdown:`Other (includes static assets, scripts, and configuration files)`,storageUsageSystem:`System`,storageUsageData:`Data`,storageUsageUnavailable:`Storage usage information unavailable`,clearNotificationLogsDescription:`Delete notification logs older than 30 days`,resetUiPreferencesDescription:`Reset sidebar order, theme, view modes, and layout preferences. Printers, archives, and settings are not affected.`,enableHomeAssistant:`Enable Home Assistant`,enableMqtt:`Enable MQTT`,useTls:`Use TLS`,enableMetricsEndpoint:`Enable Metrics Endpoint`,availableMetrics:`Available Metrics`,editUser:`Edit User`,deleteUserTitle:`Delete User`,groupName:`Group Name`,leaveEmptyForAnonymous:`Leave empty for anonymous`,leaveEmptyForNoAuth:`Leave empty for no authentication`,enterNewPassword:`Enter new password`,confirmNewPassword:`Confirm new password`,enterGroupName:`Enter group name`,enterDescriptionOptional:`Enter description (optional)`,enterCurrentPassword:`Enter current password`,enterNewPasswordMin6:`Enter new password (min 6 characters)`,toast:{keyCopied:`Key copied to clipboard`,copyFailed:`Failed to copy key`,keyAddedToBrowser:`Key added to API Browser`,clearLogsFailed:`Failed to clear logs`,uiPreferencesReset:`UI preferences reset. Refreshing...`,authDisabled:`Authentication disabled successfully`,authDisableFailed:`Failed to disable authentication`,apiKeyCreated:`API key created`,apiKeyDeleted:`API key deleted`,userCreated:`User created successfully`,userUpdated:`User updated successfully`,userDeleted:`User deleted successfully`,groupCreated:`Group created successfully`,groupUpdated:`Group updated successfully`,groupDeleted:`Group deleted successfully`,fillRequiredFields:`Please fill in all required fields`,passwordsDoNotMatch:`Passwords do not match`,passwordTooShort:`Password must be at least 8 characters`,passwordNeedsUppercase:`Password must contain at least one uppercase letter`,passwordNeedsLowercase:`Password must contain at least one lowercase letter`,passwordNeedsDigit:`Password must contain at least one digit`,passwordNeedsSpecial:`Password must contain at least one special character`,enterGroupName:`Please enter a group name`,settingsSaved:`Settings saved`,noPermissionUpdate:`You do not have permission to change settings`,cameraSettingsSaved:`Camera settings saved`,enterCameraUrl:`Please enter a camera URL`,passwordChanged:`Password changed successfully`,connectionFailed:`Connection failed`,testFailed:`Test failed`,cameraConnected:`Camera connected{{resolution}}`},testConnection:`Test Connection`,catalog:{spoolCatalog:`Spool Catalog`,spoolCatalogDescription:`Empty spool weights by brand/type. Used for automatic weight lookup when adding spools.`,searchCatalog:`Search catalog...`,addNewEntry:`Add New Entry`,namePlaceholder:`Name (e.g., Bambu Lab - Plastic)`,weight:`Weight`,type:`Type`,default:`Default`,custom:`Custom`,noMatch:`No entries match your search`,empty:`No entries in catalog`,deleteEntry:`Delete Entry`,deleteConfirm:`Are you sure you want to delete "{{name}}"?`,resetCatalog:`Reset Catalog`,resetConfirm:`Reset catalog to defaults? This will remove all custom entries.`,loadFailed:`Failed to load spool catalog`,nameWeightRequired:`Name and weight are required`,entryAdded:`Entry added`,addFailed:`Failed to add entry`,entryUpdated:`Entry updated`,updateFailed:`Failed to update entry`,entryDeleted:`Entry deleted`,deleteFailed:`Failed to delete entry`,resetSuccess:`Catalog reset to defaults`,resetFailed:`Failed to reset catalog`,exported:`Exported {{count}} entries`,imported:`Imported {{added}} entries ({{skipped}} skipped)`,importFailed:`Failed to import: invalid JSON format`,exportTooltip:`Export catalog to JSON`,importTooltip:`Import catalog from JSON`,resetTooltip:`Reset to defaults`,selectedCount:`{{count}} selected`,deleteSelected:`Delete Selected`,bulkDeleteConfirm:`Are you sure you want to delete {{count}} entries?`,bulkDeleted:`Deleted {{count}} entries`,bulkDeleteFailed:`Failed to delete entries`,material:`Material`,spoolWeight:`Spool Weight`,color:`Color`,updateSpoolWeight:`Update Spool Weight`,filamentUpdated:`Filament updated`,filamentUpdateFailed:`Failed to update filament`,filamentUpdateInvalid:`Invalid filament data`,keepExistingSpoolWeight:`Keep old weight for existing spools`,keepExistingSpoolWeightDesc:`Spools already created with this filament type retain the old tare weight. New spools use the updated value.`,applyToAllSpools:`Apply to all spools`,applyToAllSpoolsDesc:`All weight calculations for this filament type immediately use the new tare weight.`},colorCatalog:{title:`Color Catalog`,description:`Filament colors by manufacturer/material. Used for automatic color lookup when adding spools.`,searchColors:`Search colors...`,allManufacturers:`All manufacturers`,addNewColor:`Add New Color`,manufacturer:`Manufacturer`,colorName:`Color Name`,hex:`Hex`,materialOptional:`Material (optional)`,showing:`Showing {{filtered}} of {{total}} colors`,noMatch:`No colors match your search`,empty:`No colors in catalog`,deleteColor:`Delete Color`,deleteConfirm:`Are you sure you want to delete "{{name}}"?`,resetCatalog:`Reset Color Catalog`,resetConfirm:`Reset catalog to defaults? This will remove all custom colors.`,sync:`Sync`,starting:`Starting...`,syncTooltip:`Sync from FilamentColors.xyz (2000+ colors, may take a minute)`,loadFailed:`Failed to load color catalog`,fieldsRequired:`Manufacturer, color name, and hex color are required`,colorAdded:`Color added`,addFailed:`Failed to add color`,colorUpdated:`Color updated`,updateFailed:`Failed to update color`,colorDeleted:`Color deleted`,deleteFailed:`Failed to delete color`,resetSuccess:`Color catalog reset to defaults`,resetFailed:`Failed to reset catalog`,syncUpToDate:`Already up to date ({{count}} colors checked)`,syncComplete:`Added {{added}} new colors ({{skipped}} already existed)`,syncError:`Sync error`,syncFailed:`Failed to sync from FilamentColors.xyz`,exported:`Exported {{count}} colors`,imported:`Imported {{added}} colors ({{skipped}} skipped)`,importFailed:`Failed to import: invalid JSON format`,selectedCount:`{{count}} selected`,deleteSelected:`Delete Selected`,bulkDeleteConfirm:`Are you sure you want to delete {{count}} colors?`,bulkDeleted:`Deleted {{count}} colors`,bulkDeleteFailed:`Failed to delete colors`},dateFormat:`Date Format`,dateFormatUs:`US (MM/DD/YYYY)`,dateFormatEu:`EU (DD/MM/YYYY)`,dateFormatIso:`ISO (YYYY-MM-DD)`,timeFormat:`Time Format`,timeFormat12:`12-hour (3:30 PM)`,timeFormat24:`24-hour (15:30)`,defaultPrinter:`Default Printer`,defaultPrinterDescription:`Pre-select this printer for uploads, reprints, and other operations.`,slicerBambuStudio:`Bambu Studio`,slicerOrcaSlicer:`OrcaSlicer`,sidebarOrderDescription:`Use Sidebar to reorder items, reset visibility, and manage custom links.`,setDefault:`Set Default`,sidebarOrderSetDefaultHint:`Set default applies the current menu order to users who haven't customized theirs.`,sidebarDefaultSet:`Default menu order has been set.`,sidebarDefaultCleared:`Default menu order cleared.`,sidebarDefaultFailed:`Failed to set default menu order.`,reset:`Reset`,darkMode:`Dark Mode`,lightMode:`Light Mode`,active:`(active)`,background:`Background`,accent:`Accent`,style:`Style`,bgNeutral:`Neutral`,bgWarm:`Warm`,bgCool:`Cool`,bgOled:`OLED Black`,bgSlate:`Slate Blue`,bgForest:`Forest Green`,accentGreen:`Green`,accentTeal:`Teal`,accentBlue:`Blue`,accentOrange:`Orange`,accentPurple:`Purple`,accentRed:`Red`,styleClassic:`Classic`,styleGlow:`Glow`,styleVibrant:`Vibrant`,themeToggleHint:`Toggle between dark, light, and system mode using the icon in the sidebar.`,autoArchivePrints:`Auto-archive prints`,autoArchiveDescription:`Automatically save 3MF files when prints complete`,saveThumbnailsDescription:`Extract and save preview images from 3MF files`,captureFinishPhotoDescription:`Take a photo from printer camera when print completes. Bambuddy records a brief timelapse during the print so the photo can be sourced from the moment before the bed drops; the timelapse file is kept if you enabled timelapse for this print, otherwise it is deleted automatically after the photo is captured.`,ffmpegNotInstalled:`ffmpeg not installed`,ffmpegRequired:`Camera capture requires ffmpeg. Install it via brew install ffmpeg (macOS) or apt install ffmpeg (Linux).`,camera:`Camera`,cameraViewMode:`Camera View Mode`,cameraOverlayDescription:`Camera opens in a resizable overlay on the main screen`,cameraWindowDescription:`Camera opens in a separate browser window`,externalCamerasDescription:`Configure external cameras to replace the built-in printer camera. Supports MJPEG streams, RTSP, HTTP snapshots, and USB cameras (V4L2). When enabled, the external camera is used for live view and finish photos.`,cameraPlaceholderUsb:`Device path (/dev/video0)`,cameraPlaceholderUrl:`Camera URL (rtsp://... or http://...)`,cameraTypeMjpeg:`MJPEG Stream`,cameraTypeRtsp:`RTSP Stream`,cameraTypeSnapshot:`HTTP Snapshot`,cameraTypeUsb:`USB Camera (V4L2)`,cameraSnapshotUrl:`Snapshot URL (optional)`,cameraSnapshotUrlPlaceholder:`http://192.168.1.61:1984/api/frame.jpeg?src=printer`,cameraSnapshotUrlHelp:`Single-frame URL used for notification thumbnails, finish photos, layer-timelapse frames, and plate detection. Timelapse and plate detection each require their own per-printer toggle — this URL is just the image source they pull from when active. Leave blank to capture from the live stream above. Useful for go2rtc (/api/frame.jpeg) and IP cameras with a dedicated snapshot endpoint.`,cameraRotation:`Rotation`,test:`Test`,connected:`Connected`,disconnected:`Disconnected`,currency:`Currency`,defaultFilamentCost:`Default filament cost (per kg)`,electricityCost:`Electricity cost per kWh`,energyDisplayMode:`Energy display mode`,energyModePrintDescription:`Dashboard shows sum of energy used during prints`,energyModeTotalDescription:`Dashboard shows lifetime energy from smart plugs`,fileManager:`File Manager`,createArchiveEntry:`Create Archive Entry When Printing`,createArchiveEntryDescription:`When printing from File Manager, optionally create an archive entry`,lowDiskSpaceWarning:`Low Disk Space Warning`,lowDiskSpaceDescription:`Show warning when free disk space falls below this threshold`,printerFirmware:`Printer Firmware`,checkFirmwareDescription:`Check for printer firmware updates from Bambu Lab`,bambuddySoftware:`Bambuddy Software`,autoCheckDescription:`Automatically check for new versions on startup`,checkNow:`Check now`,updateAvailableVersion:`Update available: v{{version}}`,releaseNotes:`Release Notes`,updateViaDocker:`Update via Docker Compose:`,updateViaHomeAssistant:`Updates are managed by the Home Assistant Supervisor. Open Settings → Add-ons → Bambuddy in Home Assistant to install the new version.`,updateViaWindowsInstaller:`Windows installations are updated by re-running the installer. Download the new version below — your data, settings and printers are preserved.`,downloadWindowsInstaller:`Download installer for v{{version}}`,installUpdate:`Install Update`,latestVersionRunning:`You're running the latest version`,failedToCheckUpdates:`Failed to check for updates: {{error}}`,backupRestore:`Backup & Restore`,backupRestoreDescription:`Export/import settings and configure GitHub backup`,goToBackup:`Go to Backup`,externalUrl:`External URL`,externalUrlDescription:`The external URL where Bambuddy is accessible. Used for notification images and external integrations.`,bambuddyUrl:`Bambuddy URL`,externalUrlHint:`Include protocol and port (e.g., http://192.168.1.100:8000)`,ftpRetry:`FTP Retry`,ftpRetryDescription:`Retry FTP operations when printer WiFi is unreliable. Applies to 3MF downloads, print uploads, timelapse downloads, and firmware updates.`,autoRetryDescription:`Automatically retry failed FTP operations`,retryAttempts:`Retry attempts`,retryDelay:`Retry delay`,connectionTimeout:`Connection timeout`,time_one:`{{count}} time`,time_other:`{{count}} times`,second_one:`{{count}} second`,second_other:`{{count}} seconds`,nSeconds:`{{count}} seconds`,increaseForWeakWifi:`Increase for printers with weak WiFi`,homeAssistant:`Home Assistant`,homeAssistantFullDescription:`Connect to Home Assistant to control smart plugs via HA's REST API. Supports switch, light, input_boolean, and script entities.`,homeAssistantUrl:`Home Assistant URL`,longLivedAccessToken:`Long-Lived Access Token`,haTokenHint:`Create a token in HA: Profile → Long-Lived Access Tokens → Create Token`,connectionSuccessful:`Connection Successful`,connectionFailed:`Connection Failed`,haConnectionSuccess:`Successfully connected to Home Assistant.`,haConnectionFailed:`Failed to connect to Home Assistant.`,mqttPublishing:`MQTT Publishing`,mqttDescription:`Publish BamBuddy events to an external MQTT broker for integration with Node-RED, Home Assistant, and other automation systems.`,mqttEnableDescription:`Publish events to external MQTT broker`,brokerHostname:`Broker hostname`,port:`Port`,usernameOptional:`Username (optional)`,passwordOptional:`Password (optional)`,topicPrefix:`Topic prefix`,topicPrefixHint:`Topics will be: {{prefix}}/printers//status, etc.`,prometheusMetrics:`Prometheus Metrics`,prometheusEndpointDescription:`Expose printer metrics at /api/v1/metrics for Prometheus/Grafana monitoring.`,bearerTokenOptional:`Bearer Token (optional)`,bearerTokenHint:`If set, requests must include Authorization: Bearer `,metricsConnectionStatus:`Connection status`,metricsPrinterState:`Printer state (idle/printing/etc)`,metricsPrintProgress:`Print progress 0-100%`,metricsBedTemp:`Bed temperature`,metricsNozzleTemp:`Nozzle temperature`,metricsPrintsTotal:`Total prints by result`,metricsMore:`...and more (layers, fans, queue, filament usage)`,smartPlugsDescription:`Connect smart plugs (Tasmota or Home Assistant) to automate power control and track energy usage for your printers.`,allOn:`All On`,allOff:`All Off`,addSmartPlug:`Add Smart Plug`,energySummary:`Energy Summary`,currentPower:`Current Power`,plugsOnline:`{{reachable}}/{{total}} plugs online`,today:`Today`,yesterday:`Yesterday`,total:`Total`,enablePlugsForSummary:`Enable plugs to see energy summary`,addNotificationProvider:`Add`,systemBadge:`(System)`,creating:`Creating...`,changing:`Changing...`,deleteUserAndItems:`Delete user AND their items`,deleteUserKeepItems:`Delete user, keep items (become ownerless)`,ok:`OK`,twoFa:{totpTitle:`Authenticator App (TOTP)`,totpDesc:`Use an authenticator app like Google Authenticator, Aegis or Authy.`,emailOtpTitle:`Email OTP`,emailOtpDesc:`Send a one-time code to {{email}} when you log in.`,emailOtpNoEmail:`Add an email address to your account to enable this method.`,addEmailFirst:`Your account has no email address. Ask an admin to add one before enabling Email OTP.`,setupTotp:`Set up Authenticator App`,setupAuthApp:`Set up Authenticator App`,setupInstructions:`Scan the QR code below with your authenticator app, then confirm with a code.`,manualEntry:`Can't scan? Enter this secret manually:`,scannedContinue:`I've scanned the code — continue`,enterCodeToConfirm:`Enter the 6-digit code from your authenticator app to confirm setup.`,activate:`Activate`,disableTotp:`Disable Authenticator`,disableConfirmHint:`Enter a valid TOTP code or a backup code to disable the authenticator.`,totpDisabled:`Authenticator app disabled.`,emailOtpEnabled:`Email OTP enabled.`,emailOtpDisabled:`Email OTP disabled.`,smtpRequired:`Please configure and test SMTP settings first.`,invalidCode:`Invalid code. Please try again.`,enableEmailOtp:`Enable Email OTP`,disableEmailOtp:`Disable Email OTP`,emailSetupEnterCode:`A verification code has been sent to your email address. Enter it below to confirm you own this inbox.`,verifyAndEnable:`Verify & Enable`,emailDisablePasswordHint:`Enter your account password to confirm disabling email OTP.`,passwordPlaceholder:`Enter your password`,backupCodesTitle:`Save your backup codes`,backupCodesWarning:`Save these codes somewhere safe. Each code can only be used once and they will not be shown again.`,backupCodesRemaining:`{{count}} backup codes remaining`,savedCodes:`I've saved my codes`,regenBackup:`Regenerate Backup Codes`,regenBackupHint:`Enter your current TOTP code to generate 10 new backup codes. All existing backup codes will be invalidated.`,newBackupCodes:`New backup codes`,linkedAccounts:`Linked SSO Accounts`,linkedAccountsDesc:`These external identity providers are linked to your account.`,oidcUnlinked:`Account unlinked.`},sessionPolicy:{title:`Session Policy`,description:`Maximum session lifetime for new user logins. Already-issued tokens keep their original expiry.`,preset24h:`24 hours`,preset7d:`7 days`,preset30d:`30 days`,customHoursLabel:`Custom session lifetime in hours`,hoursSuffix:`hours`,warning:`Longer sessions reduce automatic logout protection. Recommended only for trusted single-user deployments.`},oidc:{title:`SSO / OIDC Providers`,desc:`Configure OpenID Connect providers to allow single sign-on via external identity providers.`,addProvider:`Add Provider`,newProvider:`New Provider`,empty:`No OIDC providers configured yet.`,created:`Provider created.`,updated:`Provider updated.`,deleted:`Provider deleted.`,refreshIcon:`Refresh icon`,removeIcon:`Remove icon`,iconRefreshed:`Icon refreshed.`,iconRemoved:`Icon removed.`,iconFetchFailed:`Icon could not be fetched from the provider URL.`,deleteTitle:`Delete Provider`,deleteMessage:`Delete "{{name}}"? All linked user accounts will be disconnected.`,form:{name:`Display Name`,issuerUrl:`Issuer URL`,clientId:`Client ID`,clientSecret:`Client Secret`,scopes:`Scopes`,iconUrl:`Icon URL (optional)`,enabled:`Enabled`,autoCreate:`Auto-create users`,autoCreateDesc:`Automatically create a local account on first login.`,autoLink:`Auto-link existing accounts`,autoLinkDesc:`Link existing local accounts by matching email on first login.`,secretHint:`leave blank to keep current`,secretPlaceholder:`new secret`,emailClaim:`Email Claim`,emailClaimDesc:`JWT claim used as email identity. Use 'preferred_username' or 'upn' for Azure Entra ID (which does not send email_verified). Only use trusted claim names.`,emailClaimPlaceholder:`email`,emailClaimCustomClaimAutoLinkWarning:`Custom claims are safe for auto-link only when the value is tenant-administered (e.g. Azure Entra ID upn / preferred_username). Do not enable auto-link if your IdP allows users to self-assert this claim.`,requireEmailVerified:`Require email verified`,requireEmailVerifiedDesc:`Only accept the email claim when the provider marks it as verified.`,requireEmailVerifiedWarning:`Warning: email will be accepted even without verification. Use only with trusted providers.`,requireEmailVerifiedAutoLink:`Disable auto-link first to change this setting.`,defaultGroup:`Default Group`,defaultGroupDesc:`Group assigned to auto-created users. Falls back to Viewers if not set.`,defaultGroupViewersFallback:`Viewers (default)`,autologin:`Autologin`,autologinDesc:`Redirect unauthenticated visitors straight to this provider. Only one provider can carry this flag.`}},encryption:{title:`MFA Encryption Status`,enabledFromEnv:`At-rest encryption enabled (key from MFA_ENCRYPTION_KEY environment variable)`,enabledFromFile:`At-rest encryption enabled (key loaded from data directory)`,enabledGenerated:`At-rest encryption enabled with auto-generated key`,notConfigured:`At-rest encryption not configured`,notConfiguredDesc:`TOTP secrets and OIDC client_secrets are stored in plaintext. Set MFA_ENCRYPTION_KEY or restart Bambuddy with a writable data directory to auto-generate one.`,allEncrypted:`All MFA secrets are encrypted at rest.`,legacyRowsLabel:`Legacy plaintext rows`,encryptedRowsLabel:`Encrypted rows`,legacyRowsWarning:`{{count}} legacy plaintext row(s) detected. Re-save the OIDC provider or re-enroll the user’s authenticator app to migrate to encrypted storage.`,backupHint:`The auto-generated key is stored at DATA_DIR/.mfa_encryption_key and is included in local backup ZIPs. Keep your backups secure or set MFA_ENCRYPTION_KEY explicitly.`,decryptionBrokenTitle:`Encryption key missing`,decryptionBrokenError:`{{count}} encrypted record(s) cannot be decrypted because the encryption key is no longer available. Restore the previous MFA_ENCRYPTION_KEY or DATA_DIR/.mfa_encryption_key to recover.`,migrationErrorWarning:`{{count}} legacy row(s) failed to re-encrypt at startup. Check server logs and restart Bambuddy to retry.`},pipelineLimits:{title:`Slicer Pipeline limits`,maxCopiesLabel:`Max copies per run`,maxCopiesDesc:`Upper bound on the copies operators can request when running a pipeline. Server-side hard cap is 1000.`},pipelines:{title:`Slicer Pipelines`,subtitle:`Reusable preset bundles (printer + process + filaments + bed type). Save one from the Slice dialog and apply it with a single click on the next file.`,loading:`Loading pipelines…`,loadError:`Could not load pipelines.`,confirmDelete:`Delete this pipeline? This cannot be undone.`,staleWarning:`One or more referenced presets no longer exist. Re-save this pipeline from the Slice dialog to fix.`,empty:{title:`No pipelines yet.`,howto:`Open the Slice dialog for any file, pick your printer / process / filaments / bed type, then click "Save as pipeline". Your saved pipelines will appear here.`},field:{name:`Pipeline name`,description:`Description`,targetPrinter:`Target printer`,noTarget:`— No target —`,targetKind:`Target type`,targetKindSpecific:`Specific printer`,targetKindClass:`Printer class`,targetModelClass:`Printer model`,fanoutStrategy:`Fanout strategy`,fanout:{max_parallel:`Max parallel — distribute across any idle matching printer`,round_robin:`Round robin — cycle through eligible printers`,fill_one_first:`Fill one first — pin all copies to one printer`},fanoutShort:{max_parallel:`parallel`,round_robin:`round robin`,fill_one_first:`fill one first`}},action:{save:`Save`,cancel:`Cancel`,rename:`Rename`,delete:`Delete`},slot:{printer:`Printer`,process:`Process`,filament:`Filament`,filamentN:`Filament {{n}}`,filamentAll:`All {{n}} slots`,bed:`Bed`},group:{profiles:`Profiles`,filaments:`Filaments`},searchPlaceholder:`Search pipelines…`,filterTargetType:`Filter by target type`,filterTarget:`Filter by target`,filter:{all:`All targets`,noTarget:`No target set`,count:`{{shown}} / {{total}}`,noMatches:`No pipelines match the current filters.`},toast:{saved:`Pipeline saved`,saveFailed:`Save failed`,deleted:`Pipeline deleted`,deleteFailed:`Delete failed`},noTargetHint:`Set a target printer to run this`,noTargetWarning:`Set a target printer before running this pipeline.`,runs:{lastRun:`Last run`,status:{queued:`queued`,slicing:`slicing`,dispatching:`dispatching`,in_progress:`printing`,completed:`completed`,failed:`failed`,partial_failure:`partial failure`,cancelled:`cancelled`}}}},notification:{printStarted:{title:`Print Started`,body:`{{printer}}: {{filename}} has started printing`},printCompleted:{title:`Print Completed`,body:`{{printer}}: {{filename}} completed successfully`},printFailed:{title:`Print Failed`,body:`{{printer}}: {{filename}} has failed`},printStopped:{title:`Print Stopped`,body:`{{printer}}: {{filename}} was stopped`},printProgress:{title:`Print Progress`,body:`{{printer}}: {{filename}} is {{percent}}% complete`},printerOffline:{title:`Printer Offline`,body:`{{printer}} is offline`},printerError:{title:`Printer Error`,body:`{{printer}}: {{error}}`},filamentLow:{title:`Low Filament`,body:`{{printer}}: Filament is running low`},maintenanceDue:{title:`Maintenance Due`,body:`{{printer}}: {{items}} need attention`}},errors:{generic:`Something went wrong`,networkError:`Network error. Please check your connection.`,notFound:`Not found`,unauthorized:`Unauthorized`,serverError:`Server error`,validationError:`Please check your input`,printerConnectionFailed:`Failed to connect to printer`,saveFailed:`Failed to save changes`,deleteFailed:`Failed to delete`,loadFailed:`Failed to load data`},hmsErrors:{title:`Errors - {{name}}`,noErrors:`No errors`,viewOnWiki:`View on Bambu Lab Wiki`,unknownCode:`Unknown HMS code — see the Bambu Lab wiki for details.`,clearInstructions:`Clear errors on the printer to dismiss them here.`,clearErrors:`Clear Errors`,clearSuccess:`HMS errors cleared`,clearFailed:`Failed to clear HMS errors`,actionSuccess:`Action sent to printer`,actionFailed:`Failed to send action`,actions:{RESUME_PRINTING:`Resume Printing`,RESUME_PRINTING_DEFECTS:`Resume (defects acceptable)`,RESUME_PRINTING_PROBELM_SOLVED:`Resume (problem solved)`,STOP_PRINTING:`Stop Printing`,CHECK_ASSISTANT:`Check Assistant`,FILAMENT_EXTRUDED:`Filament Extruded, Continue`,RETRY_FILAMENT_EXTRUDED:`Not Extruded Yet, Retry`,CONTINUE:`Finished, Continue`,LOAD_VIRTUAL_TRAY:`Load Filament`,OK_BUTTON:`OK`,FILAMENT_LOAD_RESUME:`Filament Loaded, Resume`,JUMP_TO_LIVEVIEW:`View Liveview`,NO_REMINDER_NEXT_TIME:`No Reminder Next Time`,REFRESH_NOZZLE:`Recheck`,IGNORE_NO_REMINDER_NEXT_TIME:`Ignore. Don't Remind Next Time`,IGNORE_RESUME:`Ignore this and Resume`,PROBLEM_SOLVED_RESUME:`Problem Solved and Resume`,TURN_OFF_FIRE_ALARM:`Got it, Turn off the Fire Alarm.`,RETRY_PROBLEM_SOLVED:`Retry (problem solved)`,CANCLE:`Cancle`,STOP_DRYING:`Stop Drying`,PROCEED:`Proceed`,OK_JUMP_RACK:`OK`,ABORT:`Abort`,DISABLE_PURIFICATION:`Disable Purification for This Print`,DONT_REMIND_NEXT_TIME:`Don't Remind Me`,DBL_CHECK_CANCEL:`Cancel`,DBL_CHECK_DONE:`Done`,DBL_CHECK_RETRY:`Retry`,DBL_CHECK_RESUME:`Resume`,DBL_CHECK_OK:`Confirm`,REMOVE_CLOSE_BTN:`Close`}},mqttDebug:{title:`MQTT Debug Log`,searchPlaceholder:`Search topic or payload...`,noMessages:`No messages logged yet`,startLoggingHint:`Click "Start Logging" to begin capturing MQTT messages`,noMessagesMatch:`No messages match your filter`,adjustFilterHint:`Try adjusting your search or filter criteria`,incoming:`Incoming`,outgoing:`Outgoing`,loggingStopped:`Logging stopped`,loggingActive:`Logging active - messages will auto-refresh`,startLogging:`Start Logging`,stopLogging:`Stop Logging`,clearLog:`Clear Log`,topic:`Topic`,timestamp:`Timestamp`,direction:`Direction`,all:`All`},printerFiles:{title:`File Manager`,storageUsed:`Used:`,storageFree:`Free:`,filterPlaceholder:`Filter files...`,deleteButton:`Delete`,deleteFiles:`Delete {{count}} Files`,deleteFileConfirm:`Delete "{{name}}"? This cannot be undone.`,deleteFilesConfirm:`Delete {{count}} selected files? This cannot be undone.`,noFiles:`No files on printer`,loadingFiles:`Loading files...`,failedToLoad:`Failed to load files`,toast:{filesDeleted:`Deleted {{count}} file(s)`,deleteFailed:`Delete failed: {{error}}`}},confirm:{delete:`Are you sure you want to delete this?`,unsavedChanges:`You have unsaved changes. Are you sure you want to leave?`,clearQueue:`Are you sure you want to clear the queue?`},login:{title:`Bambuddy Login`,subtitle:`Sign in to your account`,username:`Username`,usernamePlaceholder:`Enter your username`,usernameOrEmail:`Username or Email`,usernameOrEmailPlaceholder:`Username or @ Email`,password:`Password`,passwordPlaceholder:`Enter your password`,signIn:`Sign in`,signingIn:`Logging in...`,rememberMe:`Remember Me`,forgotPassword:`Forgot your password?`,autologinFailed:`Automatic SSO sign-in failed. Pick a provider below to continue.`,localDisabledNotice:`Local sign-in is disabled. Use one of the SSO providers below.`,loginSuccess:`Logged in successfully`,loginFailed:`Login failed`,enterCredentials:`Please enter username and password`,enterEmail:`Please enter your email address`,oidcLoginFailed:`OIDC login failed`,oidcErrors:{providerError:`The identity provider returned an error`,missingParameters:`OIDC callback is missing required parameters`,invalidState:`OIDC state is invalid or has already been used`,stateExpired:`OIDC login session expired — please try again`,providerNotFound:`OIDC provider not found`,discoveryFailed:`Failed to fetch OIDC discovery document`,invalidDiscovery:`OIDC discovery document is invalid`,networkError:`Network error during OIDC token exchange`,badResponse:`Unexpected response during OIDC token exchange`,noIdToken:`OIDC provider did not return an ID token`,validationFailed:`OIDC token validation failed`,nonceMismatch:`OIDC nonce mismatch — possible replay attack`,missingSubClaim:`OIDC token is missing the sub claim`,noLinkedAccount:`No local account is linked to this OIDC identity`,accountInactive:`Your account is inactive`,userResolutionFailed:`Failed to resolve your account`,internalError:`An internal error occurred during OIDC login`,tokenExchangeFailed:`OIDC token exchange failed`},forgotPasswordTitle:`Forgot Password`,forgotPasswordMessage:`If you've forgotten your password, please contact your system administrator to reset it.`,forgotPasswordEmailMessage:`Enter your email address and we'll send you a new password.`,emailAddress:`Email Address`,emailPlaceholder:`your.email@example.com`,cancel:`Cancel`,sending:`Sending...`,sendResetEmail:`Send Reset Email`,howToReset:`How to reset your password:`,resetStep1:`Contact your Bambuddy administrator`,resetStep2:`Ask them to reset your password in User Management`,resetStep3:`They can set a new temporary password for you`,resetStep4:`Log in with the new password and change it in Settings`,gotIt:`Got it`,resetPassword:{title:`Set New Password`,subtitle:`Enter and confirm your new password below.`,newPassword:`New Password`,newPasswordPlaceholder:`At least 8 characters`,confirmPassword:`Confirm Password`,confirmPasswordPlaceholder:`Repeat new password`,saving:`Saving…`,submit:`Set New Password`,backToLogin:`Back to login`,passwordsDoNotMatch:`Passwords do not match`,passwordTooShort:`Password must be at least 8 characters`,resetFailed:`Password reset failed. The link may have expired.`},twoFA:{title:`Two-Factor Authentication`,subtitle:`Your account is protected with 2FA. Enter the verification code below.`,methodAuthenticator:`Authenticator App`,methodEmail:`Email Code`,methodBackup:`Backup Code`,instructionsTotp:`Open your authenticator app and enter the 6-digit code for Bambuddy.`,instructionsEmail:`A 6-digit code has been sent to your email address. It expires in 10 minutes.`,instructionsEmailNotSent:`Click the button below to receive a verification code via email.`,instructionsBackup:`Enter one of your 8-character backup recovery codes. Each code can only be used once.`,sendCodeButton:`Send Code via Email`,sendingCode:`Sending...`,resendCode:`Resend code`,codeLabel:`Verification Code`,backupCodeLabel:`Backup Code`,codePlaceholder:`000000`,backupCodePlaceholder:`XXXXXXXX`,verifyButton:`Verify`,verifyingButton:`Verifying...`,backToLogin:`← Back to login`,orContinueWith:`or continue with`,signInWith:`Sign in with {{provider}}`,enterCode:`Please enter the verification code`,sendCodeFailed:`Failed to send verification code`,invalidCode:`Invalid code. Please try again.`}},setup:{title:`Bambuddy Setup`,subtitle:`Configure authentication for your Bambuddy instance`,enableAuth:`Enable Authentication`,adminAccount:`Admin Account`,adminAccountDesc:`If admin users already exist, authentication will be enabled using the existing admin accounts. Leave the fields below empty to use existing admins, or enter new credentials to create a new admin user.`,adminUsername:`Admin Username`,adminPassword:`Admin Password`,optionalIfAdminExists:`(optional if admin users exist)`,adminUsernamePlaceholder:`Enter admin username (optional)`,adminPasswordPlaceholder:`Enter admin password (optional)`,confirmPassword:`Confirm Password`,confirmPasswordPlaceholder:`Confirm admin password`,settingUp:`Setting up...`,completeSetup:`Complete Setup`,toast:{authEnabledAdminCreated:`Authentication enabled and admin user created`,authEnabledExistingAdmins:`Authentication enabled using existing admin users`,setupCompleted:`Setup completed`,enterBothCredentials:`Please enter both admin username and password, or leave both empty to use existing admin users`,passwordsDoNotMatch:`Passwords do not match`,passwordTooShort:`Password must be at least 6 characters`}},changePassword:{title:`Change Password`,currentPassword:`Current Password`,currentPasswordPlaceholder:`Enter current password`,newPassword:`New Password`,newPasswordPlaceholder:`Enter new password (min 6 characters)`,confirmPassword:`Confirm New Password`,confirmPasswordPlaceholder:`Confirm new password`,passwordsDoNotMatch:`Passwords do not match`,passwordTooShort:`Password must be at least 6 characters`,changing:`Changing...`,success:`Password changed successfully`,failed:`Failed to change password`},plateAlert:{title:`Print Paused!`,message:`Objects detected on build plate. The print has been automatically paused. Please clear the plate and resume the print.`,understand:`I Understand`},camera:{title:`Camera View`,invalidPrinterId:`Invalid printer ID`,live:`Live`,snapshot:`Snapshot`,restartStream:`Restart stream`,refreshSnapshot:`Refresh snapshot`,fullscreen:`Fullscreen`,exitFullscreen:`Exit fullscreen`,connectingToCamera:`Connecting to camera...`,capturingSnapshot:`Capturing snapshot...`,connectionLost:`Connection lost`,connectionFailed:`Camera connection failed`,reconnecting:`Reconnecting in {{countdown}}s... (attempt {{attempt}}/{{max}})`,reconnectNow:`Reconnect now`,cameraUnavailable:`Camera unavailable`,cameraUnavailableDesc:`Make sure the printer is powered on and connected.`,noCamera:`No camera available`,retry:`Retry`,cameraStream:`Camera stream`,zoomOut:`Zoom out`,zoomIn:`Zoom in`,resetZoom:`Reset zoom`,recording:`Recording`,startRecording:`Start Recording`,stopRecording:`Stop Recording`,chamberLight:`Toggle chamber light`,unavailable:`Camera unavailable`,diagnose:{button:`Diagnose`,modalTitle:`Camera diagnostic`,running:`Running diagnostic...`,runFailed:`Diagnostic could not run: {{error}}`,retry:`Run again`,stage:{tcp_reachable:`Network reachability`,first_frame:`Frame capture`,live_stream_active:`Live stream active`},summary:{all_ok:`Camera is working. The diagnostic completed all stages successfully.`,live_stream_active_healthy:`Camera is currently streaming with recent frames — no test needed.`,printer_unreachable:`Printer is not reachable. Check the IP address, network connection, and that the printer is powered on.`,camera_port_closed:`Printer is reachable but the camera port is closed. Make sure LAN-only mode and Developer Mode are enabled in the printer settings.`,no_frame:`Connected to the camera but no frames were received. Try again, or check that the camera is enabled in the printer settings.`,unknown_failure:`Camera diagnostic failed for an unknown reason. Check the support log for details.`},meta:{protocol:`Protocol`,port:`Port`,profile:`Profile`}}},groups:{title:`Group Management`,subtitle:`Manage permission groups for access control`,backToSettings:`Back to Settings`,createGroup:`Create Group`,noPermission:`You do not have permission to access this page.`,system:`System`,noDescription:`No description`,usersCount:`{{count}} users`,permissionsCount:`{{count}} permissions`,edit:`Edit`,delete:`Delete`,toast:{created:`Group created successfully`,updated:`Group updated successfully`,deleted:`Group deleted successfully`,enterGroupName:`Please enter a group name`},modal:{editGroup:`Edit Group`,createGroup:`Create Group`,cancel:`Cancel`,saving:`Saving...`,creating:`Creating...`,saveChanges:`Save Changes`},form:{groupName:`Group Name`,groupNamePlaceholder:`Enter group name`,systemGroupWarning:`System group names cannot be changed`,description:`Description`,descriptionPlaceholder:`Enter description (optional)`,permissions:`Permissions ({{count}} selected)`},deleteModal:{title:`Delete Group`,message:`Are you sure you want to delete this group? Users in this group will lose these permissions.`,confirm:`Delete Group`},editor:{title:`Edit Group`,createTitle:`Create Group`,search:`Search permissions...`,selectAll:`Select All`,clearAll:`Clear All`,permissionsSelected:`{{count}} selected`,noResults:`No permissions match your search`,websocketHint:`Required for live updates. Without it, the interface falls back to periodic polling.`}},users:{title:`User Management`,subtitle:`Manage users and their access to your Bambuddy instance`,backToSettings:`Back to Settings`,createUser:`Create User`,noPermission:`You do not have permission to access this page.`,admin:`Admin`,noGroups:`No groups`,active:`Active`,inactive:`Inactive`,edit:`Edit`,delete:`Delete`,system:`System`,noGroupsAvailable:`No groups available`,table:{username:`Username`,groups:`Groups`,status:`Status`,actions:`Actions`},toast:{created:`User created successfully`,updated:`User updated successfully`,deleted:`User deleted successfully`,fillRequired:`Please fill in all required fields`,passwordsDoNotMatch:`Passwords do not match`,passwordTooShort:`Password must be at least 6 characters`,ldapProvisioned:`Provisioned LDAP user "{{username}}"`},modal:{createUser:`Create User`,editUser:`Edit User`,cancel:`Cancel`,creating:`Creating...`,saving:`Saving...`,saveChanges:`Save Changes`,advancedAuthSubtitle:`with Advanced Authentication`,tabsAriaLabel:`User source`,localTab:`Local`,ldapTab:`LDAP`,ldapSearchLabel:`Search directory`,ldapSearchPlaceholder:`Type a username, name, or email...`,ldapMinChars:`Type at least 2 characters to search`,ldapTypeToSearch:`Start typing to search the LDAP directory`,ldapSearching:`Searching directory...`,ldapNoResults:`No matching users in the directory`,ldapSearchError:`Directory search failed. Check the LDAP server status.`,ldapAlreadyProvisioned:`Already provisioned`,ldapSelectedLabel:`Selected`,ldapProvision:`Provision user`,ldapProvisioning:`Provisioning...`,ldapErrorProvision:`Provisioning failed. Check the LDAP server status and try again.`},form:{username:`Username`,usernamePlaceholder:`Enter username`,email:`Email`,emailPlaceholder:`user@example.com`,password:`Password`,passwordPlaceholder:`Enter password`,confirmPassword:`Confirm Password`,confirmPasswordPlaceholder:`Confirm password`,newPasswordPlaceholder:`Enter new password`,confirmNewPasswordPlaceholder:`Confirm new password`,leaveBlankToKeep:`leave blank to keep current`,groups:`Groups`,optional:`optional`,autoGeneratedPassword:`A secure password will be automatically generated and emailed to the user.`,passwordManagedByAdvancedAuth:`Password is managed by Advanced Authentication. Use "Reset Password" to send a new password to the user via email.`,resetPassword:`Reset Password`,resettingPassword:`Resetting Password...`},deleteModal:{title:`Delete User`,message:`Are you sure you want to delete this user? This action cannot be undone.`,confirm:`Delete User`}},streamOverlay:{title:`Stream Overlay`,invalidPrinterId:`Invalid printer ID`,cameraStream:`Camera stream`,progress:`Progress`,eta:`ETA`,printerIdle:`Printer is idle`,printerOffline:`Printer offline`,status:{printing:`Printing`,paused:`Paused`,finished:`Finished`,failed:`Failed`,idle:`Idle`,unknown:`Unknown`}},profiles:{title:`Profiles`,subtitle:`Manage your slicer presets and pressure advance calibrations`,tabs:{bambuCloud:`Bambu Cloud`,orcaCloud:`Orca Cloud`,local:`Local Profiles`,kprofiles:`K-Profiles`},orcaCloud:{connectedAs:`Connected as`,logout:`Disconnect`,noLogoutPermission:`You do not have permission to disconnect`,noConnectPermission:`You do not have permission to connect to Orca Cloud`,retry:`Retry`,back:`Use a different sign-in method`,connect:{title:`Connect to Orca Cloud`,description:`Sign in to your Orca Cloud account to sync your slicer profiles into Bambuddy.`},providers:{google:`Sign in with Google`,apple:`Sign in with Apple`,github:`Sign in with GitHub`,email:`Sign in with email and password`},password:{title:`Sign in with email and password`,email:`Email`,emailPlaceholder:`you@example.com`,password:`Password`,submit:`Sign in`},paste:{title:`Finish signing in`,step1:`A new tab opened with the Orca Cloud sign-in page. Sign in with your Orca account.`,step2:`Your browser will be redirected to a "localhost" URL that fails to load. That is expected — the URL is what we need.`,step3:`Copy the entire URL from your browser's address bar and paste it below.`,signInUrl:`If the sign-in tab did not open, click this URL:`,label:`Paste the callback URL here`,placeholder:`http://localhost:41172/callback?code=...&state=...`,submit:`Finish connecting`},profiles:{title:`Your Orca Cloud profiles ({{count}})`,refresh:`Refresh`,empty:`No profiles found in your Orca Cloud account yet.`},toast:{connected:`Connected to Orca Cloud as {{email}}`,disconnected:`Disconnected from Orca Cloud`},errors:{startFailed:`Could not start the Orca Cloud sign-in flow.`,finishFailed:`Could not finish the Orca Cloud sign-in.`,passwordFailed:`Could not sign in with that email and password.`,passwordEmpty:`Please enter both your email and password.`,emptyPaste:`Please paste the callback URL from your browser.`,noCode:`That URL does not look like an Orca Cloud callback (no code parameter). Copy the full URL from your address bar.`}},localProfiles:{title:`Local Profiles`,subtitle:`Import and manage slicer presets from OrcaSlicer`,import:`Import Profiles`,importDesc:`Drop .bbscfg, .bbsflmt, .orca_filament, .zip, or .json files here`,importing:`Importing...`,search:`Search local presets...`,noPresets:`No local presets yet`,noSearchResults:`No presets match your search`,badge:`Local`,edit:`Edit`,delete:`Delete`,cancel:`Cancel`,deleteConfirmTitle:`Delete Preset`,deleteConfirm:`Are you sure you want to delete this preset? This cannot be undone.`,source:`Source`,inheritsFrom:`Inherits`,filamentType:`Type`,vendor:`Vendor`,compatiblePrinters:`Printers`,nozzleTemp:`Nozzle Temp`,cost:`Cost`,density:`Density`,pressureAdvance:`Pressure Advance`,filament:`Filament`,process:`Process`,printer:`Printer`,toast:{importSuccess:`{{count}} preset(s) imported`,importSkipped:`{{count}} preset(s) skipped (duplicates)`,importError:`{{count}} error(s) during import`,deleted:`Preset deleted`,updated:`Preset updated`}},connectedAs:`Connected as`,logout:`Logout`,noLogoutPermission:`You do not have permission to logout`,failedToLoad:`Failed to load profiles`,retry:`Retry`,time:{justNow:`Just now`,minsAgo:`{{count}}m ago`,hoursAgo:`{{count}}h ago`,daysAgo:`{{count}}d ago`},toast:{loggedOut:`Logged out`},login:{title:`Connect to Bambu Cloud`,subtitle:`Sync your slicer presets across devices`,email:`Email`,password:`Password`,region:`Region`,regionGlobal:`Global`,regionChina:`China`,verificationCode:`Verification Code`,totpCode:`Authenticator Code`,checkEmail:`Check your email ({{email}}) for a 6-digit code`,enterTotpHint:`Enter the 6-digit code from your authenticator app`,accessToken:`Access Token`,accessTokenHint:`Paste your Bambu Cloud access token. China-region accounts must use this path (phone-bound — email login unavailable). See the wiki for how to retrieve the token from MakerWorld cookies.`,back:`Back`,loginButton:`Login`,verifyButton:`Verify`,setTokenButton:`Set Token`,useToken:`Use access token instead`,useEmail:`Login with email instead`,toast:{loggedIn:`Logged in successfully`,codeSent:`Verification code sent to your email`,enterTotp:`Enter code from your authenticator app`,tokenSet:`Token set successfully`}},presets:{myPreset:`My preset (editable)`,duplicate:`Duplicate`,editable:`Editable`,failedToLoadDetails:`Failed to load preset details`,deleteConfirm:`Delete this preset?`,deleteWarning:`This will permanently delete "{{name}}" from Bambu Cloud. This cannot be undone.`,noDuplicatePermission:`You do not have permission to duplicate presets`,noEditPermission:`You do not have permission to edit presets`,noDeletePermission:`You do not have permission to delete presets`,types:{filament:`Filament preset`,printer:`Printer preset`,process:`Process preset`},toast:{deleted:`Preset deleted`,created:`Preset created`,updated:`Preset updated`,duplicated:`Preset duplicated`,fieldAdded:`Field "{{key}}" added`,exported:`Preset exported`},baseLabel:`Base: {{name}}`,currentLabel:`Current: {{name}}`,newPreset:`New Preset`,editPreset:`Edit Preset`,duplicatePreset:`Duplicate Preset`,createNewPreset:`Create New Preset`,customizeSettings:`Customize settings for your new preset`,compareWithBase:`Compare with base preset`,compare:`Compare`,basePreset:`Base Preset`,selectBasePreset:`Select base preset...`,presetName:`Preset Name`,myCustomPreset:`My custom preset`,inheritsFrom:`Inherits from`,dropJsonToImport:`Drop JSON to import`,tabs:{common:`Common`,allFields:`All Fields`},availableFields:`Available Fields`,searchFieldsPlaceholder:`Search fields...`,noMatchingFields:`No matching fields`,allFieldsAdded:`All fields added`,addCustomField:`Add custom field`,yourOverrides:`Your Overrides`,noOverridesYet:`No overrides yet`,clickFieldsToAdd:`Click fields on the left to add them`,saveAsTemplate:`Save as template`,jsonTip:`Tip: Drag & drop a .json file anywhere on this modal to import settings`},cloudView:{searchPlaceholder:`Search presets...`,templates:`Templates`,refresh:`Refresh`,newPreset:`New Preset`,clearFilters:`Clear filters`,compareMode:`Compare Mode`,selectAnotherPreset:`Select another {{type}} preset`,clickTwoPresets:`Click two presets of the same type to compare`,selectFirst:`1. Select first`,selectSecond:`2. Select second`,compareNow:`Compare Now`,lastSynced:`Last synced:`,showingCount:`Showing {{showing}} of {{total}} presets`,noPresetsFound:`No presets found`,columns:{filament:`Filament`,process:`Process`,printer:`Printer`},noFilamentPresets:`No filament presets`,noProcessPresets:`No process presets`,noPrinterPresets:`No printer presets`,filters:{type:`Type`,owner:`Owner`,printer:`Printer`,nozzle:`Nozzle`,filament:`Filament`,layer:`Layer`,all:`All`,myPresets:`My Presets`,builtIn:`Built-in`,process:`Process`},noTemplatesPermission:`You do not have permission to manage templates`,noRefreshPermission:`You do not have permission to refresh profiles`,noCreatePermission:`You do not have permission to create presets`},templates:{title:`Quick Templates`,noTemplates:`No templates yet`,createFirst:`Create templates from the preset editor`,typeFilter:`Type:`,deleteTitle:`Delete Template`,deleteWarning:`This action cannot be undone`,deleteConfirm:`Are you sure you want to delete "{{name}}"?`,namePlaceholder:`Template name`,descriptionPlaceholder:`Description`,settingsJson:`Settings (JSON)`,fieldsCount:`{{count}} fields`,shownInModals:`Shown in modals`,hiddenInModals:`Hidden in modals`,apply:`Apply`,toast:{deleted:`Template deleted`,updated:`Template updated`,created:`Template created`,applied:`Template applied`}}},support:{debugLoggingActive:`Debug logging is active`,manageLogs:`Manage`,collectItem7:`Printer connectivity and firmware versions`,collectItem8:`Integration status (Spoolman, MQTT, HA)`,collectItem9:`Network interfaces (subnets only)`,collectItem10:`Python package versions`,collectItem11:`Database health checks`,collectItem12:`Docker environment details`,bundleGenerating:`Generating bundle...`,bundleStepConnection:`Running printer connectivity checks`,bundleStepVirtualPrinters:`Running virtual-printer setup checks`,bundleStepLogScan:`Scanning recent logs for known issues`,bundleStepBuild:`Building the support bundle ZIP`},fileManager:{title:`File Manager`,subtitle:`Organize and manage your print files`,uploadFiles:`Upload Files`,newFolder:`New Folder`,folderName:`Folder Name`,folderNamePlaceholder:`e.g., Functional Parts`,renameFile:`Rename File`,renameFolder:`Rename Folder`,invalidFilenameChar:`The character "{{char}}" is not allowed in print filenames. The printer SD card rejects: < > : " / \\ | ? *`,moveFiles:`Move {{count}} File(s)`,rootNoFolder:`Root (No Folder)`,current:`current`,linkFolder:`Link Folder`,linkFolderDescription:`Link "{{name}}" to a project or archive for quick access.`,project:`Project`,archive:`Archive`,noProjectsFound:`No projects found`,noArchivesFound:`No archives found`,unlink:`Unlink`,link:`Link`,dragDropFiles:`Drag & drop files here`,dropFilesHere:`Drop files here`,releaseToUpload:`Release to upload`,orClickToBrowse:`or click to browse`,allFileTypesSupported:`All file types supported. ZIP files will be extracted.`,zipFilesDetected:`ZIP files detected`,zipExtractOptions:`ZIP files will be extracted. Choose how to handle folder structure:`,preserveZipStructure:`Preserve folder structure from ZIP`,createFolderFromZip:`Create folder from ZIP filename`,stlThumbnailGeneration:`STL thumbnail generation`,zipMayContainStl:`ZIP files may contain STL files. Thumbnails can be generated during extraction.`,thumbnailsCanBeGenerated:`Thumbnails can be generated for STL files. Large models may take longer to process.`,generateThumbnailsForStl:`Generate thumbnails for STL files`,threemfDetected:`3MF files detected`,threemfExtractionInfo:`Printer model, material, color, and print settings will be automatically extracted from 3MF files.`,willBeExtracted:`Will be extracted`,filesExtracted:`{{count}} files extracted`,uploadComplete:`Upload complete: {{succeeded}} succeeded`,uploadFailed:`Upload failed`,zipFilesFailed:`{{count}} files failed`,uploading:`Uploading...`,changeLink:`Change Link...`,linkTo:`Link to...`,linkToProjectOrArchive:`Link to project or archive`,generateThumbnail:`Generate Thumbnail`,generateThumbnails:`Generate Thumbnails`,generateThumbnailsForMissing:`Generate thumbnails for STL files missing them`,gridView:`Grid view`,listView:`List view`,lowDiskSpaceWarning:`Low disk space warning`,lowDiskSpaceDetails:`Only {{free}} free of {{total}} total. Threshold is set to {{threshold}} GB in settings.`,files:`Files`,folders:`Folders`,size:`Size`,free:`Free`,allFiles:`All Files`,allExternal:`External`,externalIsEmpty:`No external files`,externalEmptyDescription:`Files in your linked external folders will appear here.`,wrap:`Wrap`,enableTextWrapping:`Enable text wrapping`,disableTextWrapping:`Disable text wrapping`,collapse:`Collapse`,collapseFoldersByDefault:`Collapse folders by default`,expandFoldersByDefault:`Expand folders by default`,folderSort:`Sort folders`,folderSortByName:`By name`,folderSortByActivity:`By recent activity`,dragToResizeTooltip:`Drag to resize, double-click to reset`,searchFiles:`Search files...`,searchSubfoldersHint:`Including subfolders`,readme:{truncated:`Truncated`},tags:{title:`Tags`,subtitle:`Label files for cross-cutting filtering — toys, kid-safe, PETG-only, anything.`,manage:`Tags`,manageTitle:`Manage tag catalog`,add:`New tag`,edit:`Rename tag`,name:`Name`,fileCount:`Files`,empty:`No tags yet. Create one to start labelling files.`,noMatches:`No matching tags.`,createPlaceholder:`e.g. toys, kid-safe, petg`,createButton:`Create`,nameRequired:`Name is required.`,searchPlaceholder:`Filter tags...`,created:`Tag created.`,updated:`Tag renamed.`,deleted:`Tag removed.`,saveFailed:`Could not save tag.`,deleteFailed:`Could not remove tag.`,applyFailed:`Could not apply tags.`,applyAdd:`Add tags`,applyRemove:`Remove tags`,applyAddSuccess:`Added {{count}} tag(s) across {{files}} file(s).`,applyRemoveSuccess:`Removed {{count}} tag(s) across {{files}} file(s).`,actionAdd:`Add to selected files`,actionRemove:`Remove from selected files`,tagAction:`Tag`,bulkTitle:`Tag {{count}} selected file(s)`,bulkTooltip:`Add or remove tags on every selected file.`,noPermission:`You do not have permission to tag files.`,filterLabel:`Filtering by:`,clearAll:`Clear all`,confirmDelete:`Delete tag "{{name}}"?`,confirmDeleteMessage:`This removes the tag from the catalog. Files keep their other tags.`,confirmDeleteInUseMessage:`This tag is on {{count}} file(s). Deleting removes the chip from all of them; files themselves are untouched.`,editAria:`Edit {{name}}`,deleteAria:`Delete {{name}}`},allTypes:`All types`,prints:`Prints`,ascending:`Ascending`,descending:`Descending`,resultsCount:`{{showing}} of {{total}} files`,selectAll:`Select All`,deselectAll:`Deselect All`,selected:`{{count}} selected`,adding:`Adding...`,loadingFiles:`Loading files...`,folderIsEmpty:`Folder is empty`,noFilesYet:`No files yet`,folderEmptyDescription:`Upload files or move files into this folder to get started.`,noFilesDescription:`Upload files to start organizing your print-related files.`,noMatchingFiles:`No matching files`,noMatchingFilesDescription:`No files match your current search or filter criteria.`,clearFilters:`Clear filters`,printedCount:`Printed {{count}}x`,uploadedBy:`Uploaded By`,deleteFolder:`Delete Folder`,deleteFile:`Delete File`,deleteFilesCount:`Delete {{count}} Files`,deleteFolderConfirm:`Are you sure you want to delete this folder? All files inside will also be deleted.`,deleteFileConfirm:`Are you sure you want to delete this file?`,deleteFilesConfirm:`Are you sure you want to delete {{count}} selected files? This action cannot be undone.`,deleting:`Deleting...`,noPermissionRenameFolder:`You do not have permission to rename folders`,noPermissionLinkFolder:`You do not have permission to link folders`,noPermissionDeleteFolder:`You do not have permission to delete folders`,noPermissionPrint:`You do not have permission to print`,noPermissionAddToQueue:`You do not have permission to add to queue`,noPermissionSlice:`You do not have permission to slice files`,noPermissionDownload:`You do not have permission to download files`,noPermissionRenameFile:`You do not have permission to rename this file`,noPermissionGenerateThumbnail:`You do not have permission to generate thumbnails`,noPermissionDeleteFile:`You do not have permission to delete this file`,noPermissionCreateFolder:`You do not have permission to create folders`,noPermissionUpload:`You do not have permission to upload files`,noPermissionMoveFiles:`You do not have permission to move files`,noPermissionDeleteFiles:`You do not have permission to delete files`,linkExternal:`Link External`,linkExternalFolder:`Link External Folder`,linkExternalFolderDescription:`Mount a host directory (NAS, USB, network share) into the File Manager. Files are not copied — they are accessed directly from the original path.`,externalFolderNamePlaceholder:`e.g., NAS Prints`,externalPath:`Host Path`,externalPathHelp:`Absolute path to the directory on the Docker host. Must be bind-mounted into the container.`,readOnly:`Read Only`,readOnlyHelp:`prevents uploads and deletions`,showHiddenFiles:`Show hidden files (dotfiles)`,externalFolder:`External Folder`,scanFolder:`Scan`,toast:{folderCreated:`Folder created`,folderDeleted:`Folder deleted`,fileDeleted:`File deleted`,filesDeleted:`Deleted {{count}} files`,filesMoved:`Files moved`,folderLinked:`Folder linked`,folderUnlinked:`Folder unlinked`,externalFolderLinked:`External folder linked and scanned`,folderScanned:`Scan complete: {{added}} added, {{removed}} removed`,addedToQueue:`Added {{count}} file(s) to queue`,addedToQueuePartial:`Added {{added}} file(s), {{failed}} failed`,failedToAddToQueue:`Failed to add files: {{error}}`,fileRenamed:`File renamed`,folderRenamed:`Folder renamed`,thumbnailsGenerated:`Generated {{count}} thumbnail(s)`,thumbnailsGeneratedPartial:`Generated {{succeeded}} thumbnail(s), {{failed}} failed`,noStlMissingThumbnails:`No STL files missing thumbnails`,failedToGenerateThumbnails:`Failed to generate thumbnails: {{error}}`,thumbnailGenerated:`Thumbnail generated`,failedToGenerateThumbnail:`Failed to generate thumbnail: {{error}}`}},projects:{title:`Projects`,subtitle:`Organize and track your 3D printing projects`,newProject:`New Project`,editProject:`Edit Project`,deleteProject:`Delete Project`,projectName:`Project Name`,description:`Description`,noProjects:`No projects yet`,noProjectsFiltered:`No {{status}} projects`,noProjectsFilteredHelp:`You don't have any {{status}} projects. Projects will appear here when their status changes.`,createFirst:`Create your first project to start organizing related prints, tracking progress, and managing your builds.`,createFirstButton:`Create Your First Project`,create:`Create`,files:`Files`,prints:`Prints`,plates:`plates`,parts:`parts`,lastModified:`Last Modified`,deleteConfirm:`Are you sure you want to delete this project? Archives and queue items will be unlinked but not deleted.`,addFiles:`Add Files`,removeFile:`Remove File`,viewDetails:`View Details`,namePlaceholder:`e.g., Voron 2.4 Build`,descriptionPlaceholder:`Optional description...`,urlLabel:`URL`,urlPlaceholder:`https://makerworld.com/...`,urlInvalid:`URL must start with http:// or https://`,openExternalUrl:`Open project URL`,coverImageLabel:`Cover photo`,coverImageAlt:`Project cover photo`,coverImageUpload:`Upload`,coverImageReplace:`Replace`,coverImageRemove:`Remove`,color:`Color`,targetPlates:`Target Plates`,targetPlatesPlaceholder:`e.g., 25`,targetPlatesHelp:`Number of print jobs`,targetParts:`Target Parts`,targetPartsPlaceholder:`e.g., 150`,targetPartsHelp:`Total objects needed`,tagsLabel:`Tags (comma-separated)`,tagsPlaceholder:`e.g., voron, functional, gift`,dueDate:`Due Date`,priority:`Priority`,priorityLow:`Low`,priorityNormal:`Normal`,priorityHigh:`High`,priorityUrgent:`Urgent`,statusActive:`Active`,statusCompleted:`Completed`,statusArchived:`Archived`,done:`Done`,completed:`completed`,failed:`failed`,inQueue:`in queue`,noPrintsYet:`No prints yet`,printJobs:`Print jobs (plates)`,partsPrinted:`Parts printed`,failedParts:`Failed parts`,import:`Import`,export:`Export`,importProject:`Import project`,exportAll:`Export all projects`,loading:`Loading projects...`,noEditPermission:`You do not have permission to edit projects`,noDeletePermission:`You do not have permission to delete projects`,noCreatePermission:`You do not have permission to create projects`,noImportPermission:`You do not have permission to import projects`,noExportPermission:`You do not have permission to export projects`,toast:{created:`Project created`,updated:`Project updated`,deleted:`Project deleted`,imported:`Project imported`,multipleImported:`{{count}} projects imported`,importFailed:`Import failed`,exported:`Projects exported (metadata only)`}},projectDetail:{notFound:`Project not found`,backToProjects:`Back to Projects`,export:`Export`,exportProject:`Export project`,noExportPermission:`You do not have permission to export projects`,noEditPermission:`You do not have permission to edit projects`,partOf:`Part of:`,priorityLabel:`Priority:`,noPrints:`No prints in this project yet`,status:{active:`Active`,completed:`Completed`,archived:`Archived`},priority:{low:`Low`,normal:`Normal`,high:`High`,urgent:`Urgent`},dueDate:{overdue:`Overdue`,today:`Due today`,daysLeft:`{{count}} days left`},progress:{platesProgress:`Plates Progress`,partsProgress:`Parts Progress`,printJobs:`print jobs`,parts:`parts`,percentComplete:`{{percent}}% complete`,remaining:`{{count}} remaining`},stats:{printJobs:`Print Jobs`,total:`total`,failed:`{{count}} failed`,partsPrinted:`{{count}} parts printed`,printTime:`Print Time`,filamentUsed:`Filament Used`},cost:{title:`Cost Tracking`,filamentCost:`Filament Cost`,energy:`Energy`,totalCost:`Total Cost`,total:`Total`,includesBom:`incl. BOM`,budget:`Budget`,remaining:`Remaining`},subProjects:{title:`Sub-projects ({{count}})`},notes:{title:`Notes`,noEditPermission:`You do not have permission to edit notes`,placeholder:`Add notes about this project...`,empty:`No notes yet. Click Edit to add notes.`},files:{title:`Files`,linkFolders:`Link folders from the File Manager`,forQuickAccess:`to this project for quick access.`,fileCount:`{{count}} file(s)`,empty:`No folders linked. Go to File Manager and link a folder to this project.`,noFiles:`No files in this folder.`},bom:{title:`Bill of Materials`,acquired:`{{completed}}/{{total}} acquired`,showAll:`Show all`,hideDone:`Hide done`,addPart:`Add Part`,noAddPermission:`You do not have permission to add parts`,partNamePlaceholder:`Part name (e.g., M3x8 screws)`,partName:`Part name`,qty:`Qty`,price:`Price ({{currency}})`,sourcingUrlPlaceholder:`Sourcing URL (optional)`,remarksPlaceholder:`Remarks (optional)`,deletePart:`Delete Part`,deleteConfirm:`Are you sure you want to delete "{{name}}"?`,noUpdatePermission:`You do not have permission to update parts`,noEditPermission:`You do not have permission to edit parts`,noDeletePermission:`You do not have permission to delete parts`,totalCost:`Total cost:`,empty:`No parts in the bill of materials. Add hardware, electronics, or other components to track what needs to be sourced.`},timeline:{title:`Activity Timeline`,empty:`No activity yet.`},template:{saveAsTemplate:`Save as Template`,noCreatePermission:`You do not have permission to create templates`},queue:{title:`Queue`,viewAll:`View all`,printing:`{{count}} printing`,queued:`{{count}} queued`},prints:{title:`Prints ({{count}})`},toast:{projectUpdated:`Project updated`,partAdded:`Part added`,partRemoved:`Part removed`,exportFailed:`Export failed`,projectExported:`Project exported`,templateCreated:`Template created`}},system:{title:`System Information`,version:`Version`,uptime:`Uptime`,cpuUsage:`CPU Usage`,memoryUsage:`Memory Usage`,diskUsage:`Disk Usage`,networkInfo:`Network Info`,logs:`Logs`,debugMode:`Debug Mode`,enableDebug:`Enable Debug Logging`,disableDebug:`Disable Debug Logging`,downloadLogs:`Download Logs`,clearLogs:`Clear Logs`,dockerInfo:`Docker Info`,containerName:`Container Name`,imageName:`Image Name`,platform:`Platform`,architecture:`Architecture`},sponsors:{sectionTitle:`Independent & community-funded`,tagline:`Bambuddy is free and stays that way because people choose to support it. No VC, no cloud lock-in.`,viewSupporters:`View supporters`,toastPrints:`You've completed {{count}} prints with Bambuddy. Bambuddy stays free thanks to its supporters.`,toastCost:`You've tracked {{total}} in filament with Bambuddy. See who keeps the project independent.`,toastArchives:`{{count}} prints archived with Bambuddy. See who keeps it independent.`,toastAnniversary:`One year with Bambuddy! See who keeps the project independent.`,toastVersionUpdate:`Updated to v{{version}}. Bambuddy stays free thanks to its supporters.`},library:{title:`Filament Library`,addFilament:`Add Filament`,editFilament:`Edit Filament`,deleteFilament:`Delete Filament`,vendor:`Vendor`,material:`Material`,color:`Color`,kFactor:`K Factor`,temperature:`Temperature`,noFilaments:`No filaments in library`,deleteConfirm:`Are you sure you want to delete this filament?`,importFromPrinter:`Import from Printer`,exportToFile:`Export to File`,runWithPipeline:{actionLabel:`Run with pipeline`,noPermission:`You do not have permission to run pipelines`,modalTitle:`Run with pipeline`,confirmTitle:`Confirm run`,confirmIntro:`Pre-flight found issues with this run`,sourceHint:`Source`,pipelineHint:`Pipeline`,targetHint:`Target`,pipelineListAria:`Available pipelines`,runAnyway:`Run anyway`,loading:`Loading…`,empty:`No pipelines saved yet. Open the Slice dialog and click "Save as pipeline" to create one.`,noTarget:`No target printer set`,noTargetMessage:`This pipeline has no target printer set. Open it in Settings to pick one.`,copies:`Copies`,copiesHint:`max {{n}}`,classTarget:`Any {{model}}`,toast:{started:`Pipeline run started`,failed:`Could not start run`},issue:{printerNotSet:`No target printer set on this pipeline.`,printerNotFound:`Target printer no longer exists.`,printerDisabled:`Target printer is disabled.`,printerOffline:`Target printer is offline.`,filamentType:`Filament slot {{slot}}: expected {{expected}}, AMS has {{actual}}`,filamentColor:`Filament slot {{slot}}: colour differs (expected {{expected}}, AMS has {{actual}})`,amsSlotMissing:`AMS slot {{slot}} not available on this printer`,filamentUnverified:`Filament slot {{slot}} comes from a cloud / standard preset and could not be statically verified.`,noClassMatches:`No printers in this install match the pipeline's target model class ({{expected}}).`,classNotSet:`Pipeline target is set to a printer class but no model was chosen.`}}},slice:{title:`Slice model`,action:`Slice`,actionAll:`Slice all {{count}} plates`,actionAllTitle:`Slice every plate into one multi-plate output (single archive). Filament selection covers every slot the project defines.`,allPlatesToggle:`Slice all {{count}} plates`,slicing:`Slicing…`,printer:`Printer profile`,process:`Process profile`,filament:`Filament profile`,filamentSlot:`Filament {{index}} ({{type}})`,selectPreset:`— Select a preset —`,loadingPresets:`Loading presets…`,analyzingPlateFilaments:`Analyzing plate filaments…`,analyzingPlateFilamentsHint:`Running a preview slice to discover which AMS slots this plate uses. Cached after — re-opening is instant.`,previewToast:`Analyzing {{name}} — {{elapsed}}`,previewWithProgress:`Analyzing {{name}} — {{stage}} ({{percent}}%) — {{elapsed}}`,notUsedByPlate:`— not used by this plate`,noPresetsForSlot:`No presets available`,otherPrinters:`Other printers`,presetsLoadFailed:`Failed to load presets. Open Settings → Profiles to import them first.`,refreshPresets:`Refresh`,refreshPresetsTitle:`Refresh presets — fetch the latest cloud and bundled listings (use after deleting a preset in Bambu Studio or Bambu Handy)`,allPresetsRequired:`All presets must be selected`,enqueuing:`Submitting slice job…`,queued:`Queued…`,failed:`Slicing failed. Check the slicer sidecar logs.`,startedToast:`Slicing {{name}} in the background…`,queuedToast:`Queued: {{name}} — {{elapsed}}`,runningToast:`Slicing {{name}} — {{elapsed}}`,runningWithProgress:`{{name}} — {{stage}} ({{percent}}%) — {{elapsed}}`,runningWithProgressMultiPlate:`Plate {{plateIndex}} of {{plateCount}} • {{name}} — {{stage}} ({{percent}}%) — {{elapsed}}`,completedToast:`Sliced {{name}}`,failedTitle:`Slicing failed`,failedToast:`Slicing {{name}} failed: {{detail}}`,tier:{local:`Imported`,cloud:`Bambu Cloud`,orcaCloud:`Orca Cloud`,standard:`Standard`},cloud:{notAuthenticated:`Sign in to Bambu Cloud (Settings → Profiles → Bambu Cloud) to see your cloud presets.`,expired:`Bambu Cloud session expired — sign in again to refresh your cloud presets.`,unreachable:`Bambu Cloud is unreachable right now. Local and standard presets still work.`},orcaCloud:{notAuthenticated:`Sign in to Orca Cloud (Profiles → Orca Cloud) to see your Orca presets.`,expired:`Orca Cloud session expired — sign in again to refresh your Orca presets.`,unreachable:`Orca Cloud is unreachable right now. Other presets still work.`},bedType:{label:`Build plate`,auto:`Auto (use process preset)`,coolPlate:`Cool Plate`,coolPlateSuperTack:`Cool Plate SuperTack`,engineering:`Engineering Plate`,highTemp:`High Temp Plate`,texturedPEI:`Textured PEI Plate`,smoothPEI:`Smooth PEI Plate`},pipelines:{label:`Pipeline`,applyAria:`Apply pipeline`,applyPrompt:`Apply pipeline…`,empty:`No saved pipelines`,saveButton:`Save as pipeline`,saveTitle:`Save the current four-slot selection as a reusable pipeline`,namePlaceholder:`Pipeline name`,nameAria:`New pipeline name`,toast:{applied:`Applied "{{name}}"`,saved:`Pipeline saved`,saveFailed:`Save failed`}}},spoolman:{title:`Spoolman Integration`,enabled:`Spoolman Enabled`,url:`Spoolman URL`,connected:`Connected`,disconnected:`Not Connected`,testConnection:`Test Connection`,sync:`Sync`,syncing:`Syncing...`,lastSync:`Last Sync`,linkToSpoolman:`Link to Spoolman`,openInSpoolman:`Open in Spoolman`,unlinkSpool:`Unlink Spool`,unlinkConfirmTitle:`Unassign Spool?`,unlinkConfirmMessage:`This will remove the spool from this slot. The spool data itself will remain unchanged.`,selectSpool:`Select Spool`,noUnlinkedSpools:`No unassigned spools available`,linkSuccess:`Spool assigned successfully`,linkFailed:`Failed to assign spool`,unlinkSuccess:`Spool unassigned successfully`,unlinkFailed:`Failed to unassign spool`,linkedSpool:`Assigned spool`,spoolId:`Spool ID`,fillSourceLabel:`(Spoolman)`,weight:`Weight`,remaining:`Remaining`,disableWeightSync:`Disable AMS Estimated Weight Sync`,disableWeightSyncDesc:`Don't update remaining capacity from AMS estimates. Use this if you prefer Spoolman's usage tracking over AMS percentage-based estimates. New spools will still use the AMS estimate as their initial weight.`,reportPartialUsage:`Report Partial Usage for Failed Prints`,reportPartialUsageDesc:`When a print fails or is cancelled, report the estimated filament used up to that point based on layer progress.`},locations:{title:`Storage Locations`,subtitle:`Manage shelves, drawers, and other physical storage spots for your spools`,add:`Add Location`,addShort:`Add`,edit:`Edit Location`,name:`Name`,spools:`Spools`,empty:`No storage locations yet. Create your first shelf or drawer.`,manage:`Locations`,createPlaceholder:`e.g. Shelf A, Drawer 1`,nameRequired:`Location name is required`,created:`Location created`,updated:`Location updated`,deleted:`Location deleted`,saveFailed:`Failed to save location`,deleteFailed:`Failed to delete location`,deleteBlocked:`Remove all spools from this location before deleting`,confirmDelete:`Delete "{{name}}"?`,confirmDeleteMessage:`This location will be removed from the catalog. Spools must be moved first.`},inventory:{title:`Spool Inventory`,subtitle:`Manage your spools`,addToInventory:`Add to Inventory`,addToInventoryPending:`Adding...`,addToInventorySuccess:`Spool added to inventory`,addToInventoryFailed:`Failed to add spool to inventory`,unknownSpoolTitle:`New filament detected`,unknownSpoolMessage:`A spool with an unknown RFID tag was detected at {{location}}. Add it to your inventory now?`,unknownSpoolSlot:`Slot`,bulk:{selectAllVisible:`Select all visible`,selectRow:`Select row`,selectGroup:`Select group`,selectionCount:`{{count}} selected`,edit:`Edit`,printLabels:`Print labels`,resetUsage:`Reset usage`,restore:`Restore`,archive:`Archive`,delete:`Delete`,clearSelection:`Clear selection`,editTitle:`Bulk edit spools`,editSubtitle:`Applies to {{count}} selected spools. Only fields you tick get updated.`,editHint:`Type into a field to mark it for update — only ticked rows are sent. Leaving a field empty leaves the spools unchanged (clearing fields is per-spool only).`,useCustom:`Use "{{value}}"`,toggleField:`Toggle update for this field`,changeCount:`{{count}} fields will be updated.`,applyPending:`Applying...`,applyButton:`Apply to {{count}} spools`,deleteTitle:`Delete selected spools`,archiveTitle:`Archive selected spools`,restoreTitle:`Restore selected spools`,resetUsageTitle:`Reset usage on selected spools`,deleteMessage:`Permanently delete {{count}} spools? This cannot be undone.`,archiveMessage:`Archive {{count}} spools? They can be restored later.`,restoreMessage:`Restore {{count}} archived spools?`,resetUsageMessage:`Reset the "Total Consumed" counter on {{count}} spools? Remaining weight is preserved.`,updateSuccess:`{{count}} spools updated`,updateFailed:`Bulk update failed`,updatePartial:`{{ok}} spools updated, {{failed}} failed`,updateAllFailed:`All {{count}} spool updates failed — selection kept so you can retry`,deleteSuccess:`{{count}} spools deleted`,deleteFailed:`Bulk delete failed`,deletePartial:`{{ok}} spools deleted, {{failed}} failed`,deleteAllFailed:`All {{count}} spool deletions failed — selection kept so you can retry`,archiveSuccess:`{{count}} spools archived`,archiveFailed:`Bulk archive failed`,archivePartial:`{{ok}} spools archived, {{failed}} failed`,archiveAllFailed:`All {{count}} spool archives failed — selection kept so you can retry`,restoreSuccess:`{{count}} spools restored`,restoreFailed:`Bulk restore failed`,restorePartial:`{{ok}} spools restored, {{failed}} failed`,restoreAllFailed:`All {{count}} spool restores failed — selection kept so you can retry`,invalidHex:`Enter 6 hex characters (RRGGBB) or 8 (RRGGBBAA). The field will not be applied otherwise.`},spoolmanMixedContentTitle:`Spoolman can't load over HTTPS — mixed-content blocked by your browser`,spoolmanMixedContentBody:`Bambuddy is served over HTTPS (via your reverse proxy), but your Spoolman URL is still plain HTTP. Browsers block mixed content for security, so the embedded Spoolman UI can't render. Spoolman needs to be reachable over HTTPS for this to work.`,spoolmanMixedContentFixReverseProxy:`Put Spoolman behind the same reverse proxy as Bambuddy (Traefik / Nginx / Caddy) with HTTPS, then update the Spoolman URL in Settings to the new HTTPS address.`,spoolmanMixedContentFixOpenNewTab:`As a workaround, open Spoolman in a new browser tab over HTTP — mixed-content rules only apply to embedded frames, so a standalone tab still works.`,spoolmanOpenInNewTab:`Open Spoolman in a new tab`,labels:{title:`Print spool labels`,selectedCount:`{{count}} selected`,pickSpools:`Pick which spools to print labels for:`,monochrome:`Monochrome (black & white printer)`,monochromeHint:`Drops the colour swatch and widens the text`,searchPlaceholder:`Search name, brand, or #ID`,filterByMaterial:`Material:`,allMaterials:`All`,selectVisible:`Select all visible ({{count}})`,deselectVisible:`Deselect visible`,clearAll:`Clear all`,noSpoolsToShow:`No spools to show. Adjust your filter and try again.`,noMatches:`No spools match the current search or filter.`,printOne:`Print label for this spool`,printLabels:`Print labels…`,bulkTitle:`Pick spools to print labels for from the {{count}} currently shown`,noSpoolsTitle:`No spools to label`,error:`Could not generate labels: {{msg}}`,sortBy:{label:`Sort:`,id:`By ID`,color:`By colour`},templates:{amsHolderSmall:{label:`AMS holder — small (74 × 33 mm)`,hint:`Single label per page; matches the printable label from MakerWorld model 752566 (AMS Filament Label Holder).`},amsHolderLarge:{label:`AMS holder — large (75 × 55 mm)`,hint:`Single label per page; fits the cardstock-insert variant of the AMS Filament Label Holder. Roomy enough for swatch, brand, material, ID, and QR code.`},box40x30:{label:`Box label (40 × 30 mm)`,hint:`Single label per page; common DK/Brother roll size, good for filament-bag and storage-bin labels.`},box:{label:`Box label (62 × 29 mm)`,hint:`Single label per page; sized for Brother PT/QL and Dymo small labels.`},averyL7160:{label:`Avery L7160 — A4 sheet (38.1 × 63.5 mm × 21)`,hint:`EU sheet stock; 21 labels per A4 page.`},avery5160:{label:`Avery 5160 — US Letter sheet (25.4 × 66.7 mm × 30)`,hint:`US sheet stock; 30 labels per Letter page.`}}},csv:{importButton:`Import CSV`,exportButton:`Export CSV`,modalTitle:`Import spools from CSV`,selectFile:`Choose a CSV file or drag it here`,dragHint:`Header: material (required), brand, subtype, color_name, rgba, …`,parsing:`Reading file…`,previewError:`Could not read the CSV file`,validCount:`{{count}} valid`,errorCount:`{{count}} error`,skippedCount:`{{count}} skipped`,colRow:`Row`,colStatus:`Status`,colColor:`Color`,colorResolved:`Color filled from catalog`,colorCrossMaterial:`Color taken from a different material — no exact match in catalog`,duplicateExisting:`A spool with this material, brand and color already exists — it will still be imported as a new spool`,spoolmanHint:`In Spoolman mode, use Spoolman's built-in CSV import/export.`,importValidRows:`Import {{count}} valid rows`,noValidRows:`No valid rows`,importing:`Importing…`,importSuccess:`{{count}} spools imported`,importError:`Import failed`,exportError:`Export failed`},addSpool:`Add Spool`,editSpool:`Edit Spool`,copySpool:`Copy Spool`,material:`Material`,selectMaterial:`Select material...`,subtype:`Subtype`,brand:`Brand`,searchBrand:`Search brand...`,useCustomBrand:`Use "{{brand}}"`,useCustomMaterial:`Use custom material: {{material}}`,colorName:`Color Name`,colorNamePlaceholder:`Jade White, Fire Red...`,color:`Color`,hexColor:`Hex Color`,pickColor:`Pick custom color`,labelWeight:`Label Weight`,coreWeight:`Empty Spool Weight`,searchSpoolWeight:`Search spool weight...`,weightUsed:`Used`,currentWeight:`Remaining Weight`,measuredWeight:`Measured Weight`,spoolName:`Spool`,costPerKg:`Cost per kg`,storageLocation:`Storage Location`,storageLocationPlaceholder:`e.g. Shelf A, Drawer 1`,openInInventory:`Open in Inventory`,measuredWeightError:`Measured weight must be between {{min}}g and {{max}}g.`,slicerFilament:`Slicer Filament`,slicerFilamentName:`Slicer Preset Name`,slicerPreset:`Slicer Preset`,searchPresets:`Search filament presets...`,selectedPreset:`Selected`,noPresetsFound:`No presets found`,tempOverrides:`Temperature Overrides`,note:`Note`,notePlaceholder:`Any additional notes about this spool...`,category:`Category`,categoryPlaceholder:`e.g. Production, Prototype, Client A`,categoryNone:`Uncategorized`,storageLocationNone:`No location set`,lowStockThresholdOverride:`Low-stock threshold (this spool)`,lowStockThresholdOverrideHelp:`Leave blank to use the global threshold ({{global}}%).`,clearRfid:`Clear RFID Tag`,rfidCleared:`RFID tag cleared`,archive:`Archive`,restore:`Restore`,noSpools:`No spools yet. Add your first spool to get started.`,noAvailableSpools:`No spools available. Add a spool to your inventory or unassign one from another slot first.`,kProfiles:`K-Profiles`,addKProfile:`Add K-Profile`,assignSpool:`Assign Spool`,unassignSpool:`Unassign`,assignSuccess:`Spool assigned and AMS slot configured`,assignPendingInsert:`Assigned. Slot will configure when you insert the spool.`,assignFailed:`Failed to assign spool`,selectSpool:`Select a spool to assign to this slot`,assigned:`Assigned`,assigning:`Assigning...`,searchSpools:`Search spools...`,showAllSpools:`Show all spools`,spoolmanSpools:`Spoolman Spools`,allMaterials:`All Materials`,filterByBrand:`Filter by brand...`,showArchived:`Show archived`,quickAdd:`Quick Add (Stock)`,quantity:`Quantity`,stock:`Stock`,configured:`Configured`,spoolsCreated:`{{count}} spools created`,spoolsPartiallyCreated:`{{created}} of {{total}} spools created (some failed)`,spoolCreated:`Spool created`,spoolUpdated:`Spool updated`,spoolDeleted:`Spool deleted`,deepLinkSpoolNotFound:`Spool not found`,deepLinkFetchFailed:`Could not load spool — try again`,spoolArchived:`Spool archived`,spoolRestored:`Spool restored`,kProfileSaveFailed:`K-profile settings could not be saved`,syncWeightSpoolNotFound:`Spool not found — it may have been deleted`,syncWeightSpoolmanUnreachable:`Spoolman is unreachable — try again later`,syncWeightFailed:`Failed to sync weight`,spoolmanUnreachable:`Spoolman is not reachable — please try again later`,deleteSpoolNotFound:`Spool not found — it may have already been deleted`,deleteFailed:`Failed to delete spool`,archiveSpoolNotFound:`Spool not found — it may have already been deleted`,archiveFailed:`Failed to archive spool`,restoreSpoolNotFound:`Spool not found — it may have already been deleted`,restoreFailed:`Failed to restore spool`,saveFailed:`Failed to save changes`,tagClearFailed:`Failed to clear tag`,deleteConfirm:`Are you sure you want to delete this spool? This cannot be undone.`,archiveConfirm:`Are you sure you want to archive this spool?`,advancedSettings:`Advanced Settings`,filamentInfoTab:`Filament Info`,paProfileTab:`PA Profile`,filamentInfo:`Filament`,additional:`Additional`,loadingPresets:`Loading cloud presets...`,cloudConnected:`Cloud connected`,cloudNotConnected:`Cloud not connected (using defaults)`,recentColors:`Recent`,searchColors:`Search colors...`,searchResults:`Search results`,allColors:`All colors`,commonColors:`Common colors`,showLess:`Show less`,showAll:`Show all`,noColorsFound:`No colors match your search`,noResults:`No matches found`,extraColorsLabel:`Extra colors`,extraColorsPlaceholder:`EC984C,#6CD4BC,A66EB9,D87694`,extraColorsHint:`Paste 2 to 8 hex stops, separated by commas. Renders as a gradient.`,extraColorsInvalid:`Ignored invalid hex: {{tokens}}`,colorEffectLabel:`Effect`,colorEffect:{none:`None`,sparkle:`Sparkle`,wood:`Wood`,marble:`Marble`,glow:`Glow`,matte:`Matte`,silk:`Silk`,galaxy:`Galaxy`,rainbow:`Rainbow`,metal:`Metal`,translucent:`Translucent`,gradient:`Gradient`,dualColor:`Dual Color`,triColor:`Tri Color`,multicolor:`Multicolor`},selectMaterialFirst:`Please select a material first in the Filament Info tab.`,noPrintersConfigured:`No printers configured. Add printers to use PA profiles.`,matchingFilter:`Matching`,anyBrand:`Any brand`,anyVariant:`Any variant`,autoSelect:`Auto-select`,matches:`matches`,match:`match`,noMatches:`No matches`,connected:`Connected`,offline:`Offline`,printerOffline:`Printer is offline. Connect to view calibration profiles.`,noKProfilesMatch:`No K-profiles match the selected filament.`,leftNozzle:`Left Nozzle`,rightNozzle:`Right Nozzle`,profilesSelected:`calibration profile(s) selected`,totalInventory:`Total Inventory`,totalConsumed:`Total Consumed`,byMaterial:`By Material`,inPrinter:`In Printer`,lowStock:`Low Stock`,sinceTracking:`Since tracking started`,resetConsumedCounter:`Reset counter`,resetConsumedCounterTooltip:`Zero the consumed-grams counter for this spool. Remaining weight is not changed.`,resetConsumedCounterConfirm:`Reset this spool's consumed-grams counter to 0? Future prints will track from zero again. The spool itself, its remaining weight calculation, and your settings are not changed.`,resetAllConsumedCounters:`Reset all counters`,resetAllConsumedCountersTooltip:`Zero the consumed-grams counter on every spool. Remaining weights are not changed.`,resetAllConsumedCountersConfirm:`Reset the consumed-grams counter to 0 on all {{count}} spools (archived ones included)? This clears the "Total Consumed" stat so future prints track from zero. Spools and remaining weights are not changed.`,consumedCounterReset:`Counter reset`,allConsumedCountersReset:`Counter reset for {{count}} spool(s)`,resetConsumedCounterFailed:`Failed to reset counter`,loadedInAms:`Loaded in AMS/Ext`,remaining:`Remaining`,weightCheck:`Weight Check`,lastWeighed:`Last weighed`,neverWeighed:`Never weighed`,search:`Search spools...`,showing:`Showing`,to:`to`,of:`of`,show:`Show`,spools:`spools`,spool:`spool`,page:`Page`,noSpoolsMatch:`No results found`,noSpoolsMatchDesc:`Try adjusting your search or filters to find what you're looking for.`,active:`Active`,archived:`Archived`,all:`All`,used:`Used`,new:`New`,clearFilters:`Clear filters`,table:`Table`,cards:`Cards`,net:`Net`,groupSimilar:`Group`,groupedSpools:`{{count}} identical spools`,groupedRows:`rows`,columns:`Columns`,configureColumns:`Configure Columns`,configureColumnsDesc:`Drag to reorder columns or use arrows. Toggle visibility with the eye icon.`,visible:`visible`,reset:`Reset`,cancel:`Cancel`,applyChanges:`Apply Changes`,moveUp:`Move up`,moveDown:`Move down`,hideColumn:`Hide column`,showColumn:`Show column`,linkToSpool:`Link to Spool`,tagLinked:`Tag linked to spool`,tagLinkFailed:`Failed to link tag`,tagAlreadyLinked:`Tag already linked to another spool`,unknownTag:`Unknown RFID tag detected`,usageHistory:`Usage History`,noUsageHistory:`No usage recorded yet`,printName:`Print Name`,weightConsumed:`Weight Consumed`,clearHistory:`Clear`,historyCleared:`Usage history cleared`,fillSourceLabel:`(Inv)`,lowStockThresholdError:`Threshold must be between 0.1 and 99.9`,assignMismatchTitle:`Material mismatch`,assignMismatchMessage:`The selected spool material "{{spoolMaterial}}" does not match the tray material "{{trayMaterial}}" for {{location}}. Assign anyway?`,assignMismatchConfirm:`Assign Anyway`,assignPartialMismatchMessage:`The spool material "{{spoolMaterial}}" is similar to but not exactly matching "{{trayMaterial}}" in {{location}}. Do you want to proceed?`,assignProfileMismatchMessage:`The spool profile "{{spoolProfile}}" does not match the tray profile "{{trayProfile}}" in {{location}}. Do you want to proceed?`,assignReconfigureNote:`The AMS slot will be reconfigured to use the spool's profile.`,spoolmanFilamentCatalog:`Spoolman Filament Catalog`,pickFromSpoolmanCatalog:`Pick from Spoolman catalog…`,spoolmanFilamentSelected:`Filament selected from Spoolman catalog`,spoolmanFilamentUnlinked:`Filament catalog link cleared`,noSpoolmanFilaments:`No filaments found in Spoolman catalog`,spoolmanFilamentColorSwatch:`Filament color`,spoolWeightManagedBySpoolman:`Empty spool weight is managed per filament type in Spoolman`,spoolmanCatalogLoadFailed:`Failed to load Spoolman filament catalog`},timelapse:{title:`Timelapse`,create:`Create Timelapse`,download:`Download`,delete:`Delete`,preview:`Preview`,frameRate:`Frame Rate`,quality:`Quality`,processing:`Processing...`,noTimelapses:`No timelapses available`},ams:{title:`AMS`,slot:`Slot`,empty:`Empty`,emptySlot:`Empty slot`,slotEmpty:`Empty`,slotUnconfigured:`?`,emptySlotReset:`No filament assigned`,unknown:`Unknown`,humidity:`Humidity`,temperature:`Temperature`,filamentType:`Filament Type`,filamentColor:`Color`,remaining:`Remaining`,history:`AMS History`,noHistory:`No history available`,configureSlot:`Configure Slot`,externalSpool:`External Spool`,profile:`Profile`,kFactor:`K Factor`,fill:`Fill`,configure:`Configure`,used:`used`,remainingUnit:`remaining`},printModal:{selectPrinter:`Select Printer`,selectPlate:`Select Plate`,filamentMapping:`Filament Mapping`,totalCost:`Total cost:`,slotRemainingShort:` - {{grams}}g left`,printSettings:`Print Settings`,bedLeveling:`Bed Leveling`,flowCalibration:`Flow Calibration`,vibrationCalibration:`Vibration Calibration`,layerInspection:`First Layer Inspection`,timelapse:`Timelapse`,cancel:`Cancel`,noPrintersAvailable:`No printers available`,printerBusy:`Printer is busy`,printerOffline:`Printer is offline`,sameTypeDifferentColor:`Same type, different color`,filamentTypeNotLoaded:`Filament type not loaded`,whenToPrint:`When to print`,asap:`ASAP`,queue:`Queue`,schedule:`Schedule`,dateTime:`Date & Time`,invalidDateTime:`Please enter a valid date and time`,openCalendar:`Open calendar`,requireManualStart:`Require manual start`,requirePreviousSuccess:`Only start if previous print succeeded`,autoOffAfter:`Power off printer when done`,helpAsap:`Print will be added to the top of the queue and start as soon as an eligible printer is idle.`,helpSchedule:`Print will start at the scheduled time if the printer is idle. If busy, it will wait until the printer becomes available.`,helpQueue:`Print will be added to the back of the queue.`,leftNozzle:`L`,rightNozzle:`R`,leftNozzleTooltip:`Left nozzle`,rightNozzleTooltip:`Right nozzle`,filamentOverride:`Filament Override`,filamentOverrideHint:`Optionally override filaments for model-based assignment. The scheduler will match against your selected filaments instead of the original 3MF values.`,originalFilament:`Original`,overrideWith:`Override with`,resetToOriginal:`Reset to original`,insufficientFilamentTitle:`Not enough filament`,insufficientFilamentMessage:`Some assigned spools have less filament remaining than this print needs:`,insufficientFilamentLine:`{{printer}} - {{slot}}: needs {{required}}g, remaining {{remaining}}g`,printAnyway:`Print anyway`,forceColorMatch:`Force color match`,staggerPrinterStarts:`Stagger printer starts`,staggerGroupSize:`Group size`,staggerInterval:`Interval (min)`,staggerPreview:`{{printers}} printers → {{groups}} groups of {{size}}, starting every {{interval}} min`,staggerLastGroup:`last group: {{count}}`,staggerTotal:`total: {{minutes}} min`,staggerToPrinters:`Stagger to {{count}} printers`,gcodeInjection:`Inject auto-print G-code`},backup:{includesEncryptionKey:`Local backups include the MFA encryption key file (DATA_DIR/.mfa_encryption_key) so a backup ZIP is self-contained. Treat the ZIP as sensitive — anyone with the file can decrypt the OIDC client secrets and TOTP secrets stored inside.`,title:`Backup & Restore`,createBackup:`Create Backup`,restoreBackup:`Restore Backup`,restoreDescription:`Replace all data from a backup file`,downloadBackup:`Download Backup`,uploadBackup:`Upload Backup`,lastBackup:`Last Backup`,autoBackup:`Auto Backup`,backupNow:`Backup Now`,restoreWarning:`Warning: Restoring a backup will overwrite all current data.`,includeArchives:`Include Archives`,includeSettings:`Include Settings`,includeProfiles:`Include Profiles`,backupSuccess:`Backup created successfully`,restoreSuccess:`Backup restored successfully`,backupFailed:`Backup failed`,restoreFailed:`Restore failed`,restoreNote:`Virtual Printer will be stopped during restore`,githubBackup:`Git Backup`,enabled:`Enabled`,cloudLoginRequired:`Bambu Cloud login required. Sign in under Profiles → Cloud Profiles to enable GitHub backup.`,cloudLoginRequiredShort:`Cloud login required`,githubDescription:`Automatically sync your profiles to a private GitHub repository for backup and version history.`,repoIsPrivate:`Repository is private — safe to back up to.`,repoIsPublicWarning:`Repository is PUBLIC. Bambuddy backups include MQTT credentials, Home Assistant tokens, Prometheus tokens, your Bambu Cloud email, and printer access codes via K-profiles. Saving is blocked until you make the repository private in your provider's settings.`,repoVisibilityUnknown:`Could not determine repository visibility. Bambuddy refuses to back up to anything not confirmed private; saving will be blocked.`,repositoryUrl:`Repository URL`,repoUrlPlaceholderGitHub:`https://github.com/username/repo-name`,repoUrlPlaceholderGitea:`https://gitea.example.com/username/repo-name`,repoUrlPlaceholderForgejo:`https://forgejo.example.com/username/repo-name`,repoUrlPlaceholderGitLab:`https://gitlab.com/username/repo-name`,allowInsecureHttp:`Allow insecure HTTP`,allowInsecureHttpHint:`Enable for self-hosted instances on private networks without TLS`,personalAccessToken:`Personal Access Token`,tokenSaved:`(saved)`,enterNewToken:`Enter new token to update`,tokenHint:`Fine-grained token with Contents read/write permission`,branch:`Branch`,provider:`Git Provider`,providerGitHub:`GitHub`,providerGitLab:`GitLab`,providerGitea:`Gitea`,providerForgejo:`Forgejo`,manualOnly:`Manual only`,hourly:`Hourly`,daily:`Daily`,weekly:`Weekly`,includeInBackup:`Include in backup`,kProfiles:`K-Profiles`,kProfilesDescription:`Pressure advance calibration from connected printers`,noPrintersConnected:`No printers connected`,printersConnected:`{{connected}}/{{total}} connected`,cloudProfiles:`Cloud Profiles`,cloudProfilesDescription:`Filament, printer, and process presets from Bambu Cloud`,appSettings:`App Settings`,appSettingsDescription:`Bambuddy configuration (complete database)`,spoolInventory:`Spool Inventory`,spoolInventoryDescription:`Filament spools, usage history, and cost tracking`,printArchives:`Print Archives`,printArchivesDescription:`Print history metadata (no gcode/3MF files)`,lastBackupAt:`Last backup:`,noBackupsYet:`No backups yet`,next:`Next:`,startingBackup:`Starting backup...`,test:`Test`,enableBackup:`Enable Backup`,testConnection:`Test Connection`,enterRepoUrl:`Enter repository URL`,enterRepoAndToken:`Enter repository URL and access token`,repoRequired:`Repository URL is required`,tokenRequired:`Access token is required`,githubBackupEnabled:`GitHub backup enabled`,tokenUpdated:`Token updated`,settingsSaved:`Settings saved`,failedToSave:`Failed to save: {{message}}`,backupCompleteFiles:`Backup complete - {{count}} files updated`,backupSkippedNoChanges:`Backup skipped - no changes`,backupFailed2:`Backup failed: {{message}}`,clearedLogs:`Cleared {{count}} logs`,failedToClearLogs:`Failed to clear logs: {{message}}`,history:`History`,clear:`Clear`,date:`Date`,status:`Status`,commit:`Commit`,localBackup:`Local Backup`,localBackupDescription:`Create a complete backup of your Bambuddy data including the database, archives, uploads, and all files.`,downloadBackupLabel:`Download Backup`,completeBackupZip:`Complete backup: database + all files (ZIP)`,download:`Download`,preparingBackup:`Preparing backup...`,creatingArchive:`Creating backup archive... This may take a while for large archives.`,downloadingFile:`Downloading backup file...`,backupDownloaded:`Backup downloaded successfully`,failedToCreateBackup:`Failed to create backup: {{message}}`,restore:`Restore`,restoreReplacesAll:`Restore replaces all data.`,restoreReplacesAllDetail:`Your current database and files will be completely replaced. A restart is required after restore.`,restoreConfirmTitle:`Restore Backup`,restoreConfirmMessage:`Are you sure you want to restore from "{{filename}}"? This will completely replace your current database and all files. The application will need to be restarted after restore.`,restoreConfirmButton:`Restore Backup`,uploadingFile:`Uploading backup file...`,backupRestoredRestart:`Backup restored. Please restart Bambuddy.`,failedToRestore:`Failed to restore backup. Please check the file format.`,reloadNow:`Reload Now`,creatingBackup:`Creating Backup`,restoringBackup:`Restoring Backup`,preparing:`Preparing...`,processing:`Processing...`,doNotClosePage:`Please do not close this page or navigate away. This operation may take several minutes for large backups.`,restoring:`Restoring...`,restoreComplete:`Restore Complete`,restoreFailed2:`Restore Failed`,importSettings:`Import settings from a backup file`,pleaseWaitRestoring:`Please wait while your data is being restored`,selectBackupFile:`Click to select backup file (.json or .zip)`,duplicateHandling:`How duplicate handling works:`,matchPrinters:`Printers`,matchPrintersBy:`matched by serial number`,matchSmartPlugs:`Smart Plugs`,matchSmartPlugsBy:`matched by IP address`,matchNotificationProviders:`Notification Providers`,matchNotificationProvidersBy:`matched by name`,matchFilaments:`Filaments`,matchFilamentsBy:`matched by name + type + brand`,matchArchives:`Archives`,matchArchivesBy:`matched by content hash (always skipped)`,matchPendingUploads:`Pending Uploads`,matchPendingUploadsBy:`matched by filename`,matchSettingsTemplates:`Settings & Templates`,matchSettingsTemplatesBy:`always overwritten`,replaceExisting:`Replace existing data`,keepExisting:`Keep existing data`,overwriteDescription:`Overwrite items that already exist with backup data`,keepDescription:`Only restore items that don't already exist`,overwriteCaution:`Caution:`,overwriteWarning:`Overwriting will replace your current configurations with data from the backup. Printer access codes are never overwritten for security.`,cancel:`Cancel`,processingBackup:`Processing backup file...`,itemsRestored:`Items Restored`,itemsSkipped:`Items Skipped`,restored:`Restored`,skippedAlreadyExist:`Skipped (already exist)`,filesCategory:`Files (3MF, thumbnails, etc.)`,andMore:`...and {{count}} more`,newApiKeysGenerated:`New API Keys Generated`,keysShownOnce:`These keys are only shown once. Copy them now!`,copy:`Copy`,noDataFound:`No data was found to restore in the backup file.`,close:`Close`,scheduledBackup:`Scheduled Backups`,scheduledBackupDescription:`Automatically create backup snapshots on a schedule. Output directory can be mounted to a NAS or external storage.`,frequency:`Frequency`,backupTime:`Time`,retention:`Retention`,retentionDescription:`Number of backups to keep`,outputPath:`Output Path`,outputPathPlaceholder:`Default: {{path}}`,outputPathDescription:`Leave empty for default location`,runNow:`Run Now`,backupFiles:`Backup Files`,noScheduledBackups:`No backups yet`,deleteBackup:`Delete`,deleteBackupConfirm:`Delete this backup file?`,backupRunning:`Backup in progress...`,scheduledBackupComplete:`Backup completed successfully`,scheduledBackupFailed:`Backup failed`,nextBackup:`Next backup`,backupSize:`Size`,localTimeHint:`Local time ({{tz}})`,defaultPathLabel:`Default:`,categories:{settings:`Settings`,notification_providers:`Notification Providers`,notification_templates:`Notification Templates`,smart_plugs:`Smart Plugs`,printers:`Printers`,filaments:`Filaments`,maintenance_types:`Maintenance Types`,archives:`Archives`,projects:`Projects`,pending_uploads:`Pending Uploads`,external_links:`External Links`,api_keys:`API Keys`}},tags:{title:`Tags`,addTag:`Add Tag`,editTag:`Edit Tag`,deleteTag:`Delete Tag`,tagName:`Tag Name`,tagColor:`Tag Color`,noTags:`No tags`,deleteConfirm:`Are you sure you want to delete this tag?`,manageTags:`Manage Tags`},uploadModal:{title:`Upload 3MF Files`,dragDrop:`Drag & drop .3mf files here`,or:`or`,browseFiles:`Browse Files`,extractionInfo:`The printer model will be automatically extracted from the 3MF file metadata.`,uploaded:`uploaded`,failed:`failed`,uploading:`Uploading...`,upload:`Upload`,uploadFailed:`Upload failed`},editArchive:{title:`Edit Archive`,name:`Name`,namePlaceholder:`Print name`,printer:`Printer`,noPrinter:`No printer`,project:`Project`,noProject:`No project`,itemsPrinted:`Items Printed`,itemsPrintedHelp:`Number of items produced in this print job`,notes:`Notes`,notesPlaceholder:`Add notes about this print...`,externalLink:`External Link`,externalLinkPlaceholder:`https://printables.com/model/...`,externalLinkHelp:`Link to Printables, Thingiverse, or other source`,tags:`Tags`,tagsPlaceholder:`Add tags...`,addMoreTags:`Add more tags...`,matchingTags:`Matching "{{query}}"`,existingTags:`Existing tags`,clickToAdd:`(click to add)`,status:`Status`,failureReason:`Failure Reason`,selectReason:`Select reason...`,photos:`Photos of Printed Result`,photosHelp:`Click + to add photos of your printed result`,printResult:`Print result`,saving:`Saving...`,failureReasons:{adhesionFailure:`Adhesion failure`,spaghettiDetached:`Spaghetti / Detached`,layerShift:`Layer shift`,cloggedNozzle:`Clogged nozzle`,filamentRunout:`Filament runout`,warping:`Warping`,stringing:`Stringing`,underExtrusion:`Under-extrusion`,powerFailure:`Power failure`,userCancelled:`User cancelled`,other:`Other`},statuses:{completed:`Completed`,failed:`Failed`,aborted:`Cancelled`,printing:`Printing`}},kProfiles:{title:`K-Profiles`,noPrintersConfigured:`No Printers Configured`,addPrinterInSettings:`Add a printer in Settings to manage K-profiles`,noActivePrinters:`No Active Printers`,enablePrinterConnection:`Enable a printer connection to view its K-profiles`,loadingProfiles:`Loading K-Profiles...`,printerOffline:`Printer Offline`,printerOfflineDesc:`The selected printer is not connected. Power it on to view K-profiles.`,noMatchingProfiles:`No Matching Profiles`,noMatchingProfilesDesc:`No profiles match your search criteria`,noKProfiles:`No K-Profiles`,noKProfilesDesc:`No pressure advance profiles found for {{diameter}}mm nozzle`,createFirstProfile:`Create First Profile`,printer:`Printer`,nozzle:`Nozzle`,refresh:`Refresh`,addProfile:`Add Profile`,export:`Export`,import:`Import`,select:`Select`,selectAll:`Select All`,delete:`Delete`,searchPlaceholder:`Search by name or filament...`,allExtruders:`All Extruders`,leftOnly:`Left Only`,rightOnly:`Right Only`,allFlow:`All Flow`,hfOnly:`HF Only`,sOnly:`S Only`,sortName:`Sort: Name`,sortKValue:`Sort: K-Value`,sortFilament:`Sort: Filament`,leftExtruder:`Left Extruder`,rightExtruder:`Right Extruder`,modal:{addTitle:`Add K-Profile`,editTitle:`Edit K-Profile`,profileName:`Profile Name`,profileNamePlaceholder:`My PLA Profile`,kValue:`K-Value`,kValuePlaceholder:`0.020`,kValueHelp:`Typical range: 0.01 - 0.06 for PLA, 0.02 - 0.10 for PETG`,filament:`Filament`,selectFilament:`Select filament...`,noFilamentsHelp:`No filaments found. Create a K-profile in Bambu Studio first.`,flowType:`Flow Type`,highFlow:`High Flow`,standard:`Standard`,nozzleSize:`Nozzle Size`,extruder:`Extruder`,extruders:`Extruders`,left:`Left`,right:`Right`,notes:`Notes (stored locally)`,notesPlaceholder:`Add notes about this profile...`,notesHelp:`Notes are saved in Bambuddy, not on the printer`,syncing:`Syncing with printer...`,savingExtruder:`Saving to extruder {{current}}/{{total}}...`,pleaseWait:`Please wait`},deleteConfirm:{title:`Delete Profile`,cannotUndo:`This cannot be undone`,message:`Are you sure you want to delete "{{name}}" from the printer?`},bulkDelete:{title:`Delete Profiles`,cannotUndo:`This cannot be undone`,message:`Are you sure you want to delete {{count}} selected profiles from the printer?`},toast:{profileSaved:`K-profile saved`,profilesSaved:`K-profile saved to {{count}} extruders`,selectAtLeastOneExtruder:`Please select at least one extruder`,profileDeleted:`K-profile deleted`,profilesDeleted:`Deleted {{count}} profiles`,exportedProfiles:`Exported {{count}} profiles`,importedProfiles:`Imported {{count}} of {{total}} profiles`,noProfilesToExport:`No profiles to export`,invalidFileFormat:`Invalid file format`,failedToParseImport:`Failed to parse import file`,failedToSaveBatch:`Failed to save K-profiles`,noteSaved:`Note saved`,failedToSaveNote:`Failed to save note`},permission:{noRead:`You do not have permission to refresh profiles`,noCreate:`You do not have permission to add profiles`,noUpdate:`You do not have permission to update K-profiles`,noDelete:`You do not have permission to delete K-profiles`,noExport:`You do not have permission to export profiles`,noImport:`You do not have permission to import profiles`}},virtualPrinter:{title:`Virtual Printer`,running:`Running`,stopped:`Stopped`,description:{default:`Enable a virtual printer that appears in Bambu Studio and OrcaSlicer. Files sent to this printer will be archived directly without printing.`,proxy:`Enable a proxy that relays slicer traffic to a real printer, allowing remote printing over any network.`},enable:{title:`Enable Virtual Printer`,visibleInSlicer:`Visible as "Bambuddy" in slicer discovery`,proxyingTo:`Proxying to {{name}}`,notActive:`Not active`},model:{title:`Printer Model`,description:`Select which printer model to emulate.`,restartWarning:`Changing the model will restart the virtual printer`},accessCode:{title:`Access Code`,isSet:`Access code is set`,notSet:`No access code set - required to enable`,placeholder:`Enter 8-char code`,placeholderChange:`Enter new code to change`,hint:`Must be exactly 8 characters. Used by slicers to authenticate.`,charCount:`({{count}}/8)`,inheritedFromTarget:`Inherited from target`,derivedFromTargetHint:`Uses the target printer's access code. The bridge forwards slicer auth to the real printer, so the codes must match — edit the printer's access code to change this value.`,reveal:`Show access code`,hide:`Hide access code`},targetPrinter:{title:`Target Printer`,configured:`Proxy target configured`,notConfigured:`No target printer selected - required for proxy mode`,placeholder:`Select a printer...`,hint:`Select the printer to proxy slicer traffic to. The printer must be in LAN mode.`,noPrinters:`No printers configured. Add a printer first to use proxy mode.`},remoteInterface:{title:`Network Interface Override`,configured:`Interface override active`,optional:`Optional - use if auto-detected IP is wrong (e.g. multiple NICs, Docker, VPN)`,placeholder:`Auto-detect (default)...`,hint:`Override the IP address advertised via SSDP and used in the TLS certificate. Useful when Bambuddy has multiple network interfaces.`},mode:{title:`Mode`,archive:`Archive`,archiveDesc:`Archive files immediately`,review:`Review`,reviewDesc:`Review before archiving`,queue:`Queue`,queueDesc:`Archive and add to queue`,proxy:`Proxy`,proxyDesc:`Relay to real printer`},autoDispatch:{title:`Auto-dispatch`,description:`Automatically start prints when added to queue. When off, prints wait for manual dispatch.`},queueForceColorMatch:{title:`Force color match`,description:`Refuse to dispatch onto a printer that does not have the exact filament type and color loaded. Off by default — without this, the queue uses model-only matching and may pick a printer with the wrong color loaded.`},gcodeInjection:{title:`G-code injection`,description:`Apply the per-model G-code snippets configured in Settings to jobs from this VP. Off by default.`},tailscaleDisabled:{title:`Tailscale integration`,description:`Enable to mark this VP as exposed over Tailscale. Shows the host's Tailscale address so you know which IP to paste into the slicer. The CA-import step is unchanged — this toggle has no effect on certificates.`},setupRequired:{title:`Setup Required`,description:`The virtual printer feature requires additional system configuration before it will work. This includes port forwarding, firewall rules, and platform-specific settings.`,readGuide:`Read the setup guide before enabling`},archiveNameSource:{title:`Archive name source`,description:`Choose how new archives are named when files arrive via the virtual printer. "Metadata" uses the slicer-embedded Title from the 3MF (default). "Filename" uses the filename Bambu Studio sent over FTP. Note: Bambu Studio overwrites the name you type in the "send to printer" dialog with the 3MF's Title field whenever one is present, so both modes often produce the same string.`,metadata:`Metadata`,filename:`Filename`},caCert:{title:`Slicer certificate`,description:`Virtual printers use a TLS certificate signed by the Bambuddy CA. Import this CA certificate into your slicer's trust store once so it accepts the connection — no need to copy it from the command line.`,copy:`Copy`,copied:`Copied`,download:`Download`,fingerprint:`SHA-256`},howItWorks:{title:`How it works`,step1:`On the same LAN, virtual printers appear in your slicer (Bambu Studio / OrcaSlicer) automatically via discovery. From other networks, add them manually by IP address and access code.`,step2:`In Archive, Review, and Queue modes, use the "Send" button in your slicer to upload 3MF files to Bambuddy. The slicer will show "Print success" — the file is stored, not printed.`,step3:`In Proxy mode, the virtual printer relays all traffic to a real printer — prints start immediately as if connected directly.`},status:{title:`Status Details`,printerName:`Printer Name`,model:`Model`,serialNumber:`Serial Number`,mode:`Mode`,pendingFiles:`Pending Files`,targetPrinter:`Target Printer`,ftpPort:`FTP Port`,mqttPort:`MQTT Port`,ftpConnections:`FTP Connections`,mqttConnections:`MQTT Connections`},toast:{updated:`Virtual printer settings updated`,failedToUpdate:`Failed to update settings`,copyFailed:`Failed to copy — try selecting the text manually`,accessCodeRequired:`Please set an access code first`,targetPrinterRequired:`Please select a target printer first`,bindIpRequired:`Please set a bind IP first`,accessCodeEmpty:`Access code cannot be empty`,accessCodeLength:`Access code must be exactly 8 characters`,targetCodeChangedRebind:`Access code now matches the new target printer. Re-add this device in your slicer to pick up the new code.`,created:`Virtual printer created`,failedToCreate:`Failed to create virtual printer`,deleted:`Virtual printer deleted`,failedToDelete:`Failed to delete virtual printer`},list:{title:`Virtual Printers`,add:`Add`,addFirst:`Add Virtual Printer`,empty:`No virtual printers configured. Add one to get started.`},bindIp:{title:`Bind Interface`,placeholder:`Select interface...`,hint:`Network interface for this virtual printer to bind to. Must be unique per printer.`},proxy:{accessCodeHint:`In proxy mode, use your target printer's access code in the slicer. The connection is forwarded transparently to the real printer.`},addDialog:{title:`Add Virtual Printer`,name:`Name`,hint:`You can configure access code, target printer, and other settings after creating.`,create:`Create`},deleteConfirm:{title:`Delete Virtual Printer`,message:`Are you sure you want to delete "{{name}}"? This will stop all services for this printer.`}},modelViewer:{openInSlicer:`Open in Slicer`,tabs:{model:`3D Model`,gcode:`G-code Preview`},notAvailable:`not available`,notSliced:`not sliced`,plates:`Plates`,allPlates:`All Plates`,plateNumber:`Plate {{number}}`,plateCount:`{{count}} plate`,plateCount_other:`{{count}} plates`,objectCount:`{{count}} object`,objectCount_other:`{{count}} objects`,filamentCount:`{{count}} filament`,filamentCount_other:`{{count}} filaments`,eta:`ETA {{minutes}} min`,noPreview:`No preview available for this file`,pagination:{pageOf:`Page {{current}} of {{total}}`,prev:`Prev`,next:`Next`},errors:{failedToLoad:`Failed to load file`,noMeshes:`No meshes found in 3MF file`,unsupportedFormat:`Unsupported file format`}},maintenanceDescriptions:{lubricateCarbonRods:`Apply lubricant to carbon rods for smooth motion`,lubricateRails:`Apply lubricant to linear rails for smooth motion`,cleanNozzle:`Clean hotend and nozzle to prevent clogs`,checkBelts:`Verify belt tension for accurate prints`,cleanBuildPlate:`Clean build plate for better adhesion`,checkExtruder:`Inspect extruder gears for wear`,checkCooling:`Ensure cooling fans are working properly`,generalInspection:`General printer inspection`,cleanCarbonRods:`Clean carbon rods to reduce friction`,lubricateSteelRods:`Apply lubricant to steel rods for smooth motion`,cleanSteelRods:`Clean steel rods to reduce friction`,cleanLinearRails:`Wipe linear rails to remove dust and debris`,checkPtfeTube:`Inspect PTFE tube for wear or damage`,replaceHepaFilter:`Replace HEPA filter for air quality`,replaceCarbonFilter:`Replace activated carbon filter`,lubricateLeftNozzleRail:`Lubricate left nozzle rail (H2 series)`},smartPlugs:{offline:`Offline`,admin:`Admin`,openPlugAdminPage:`Open plug admin page`,deleteSmartPlug:`Delete Smart Plug`,turnOnSmartPlug:`Turn On Smart Plug`,turnOffSmartPlug:`Turn Off Smart Plug`,turnOn:`Turn On`,turnOff:`Turn Off`,addSmartPlug:{scanningNetwork:`Scanning network...`,chooseEntity:`Choose an entity...`,connectionFailed:`Connection failed`,searchEntities:`Search entities...`,searchPowerSensors:`Search power sensors...`,searchEnergySensors:`Search energy sensors...`,placeholders:{plugName:`Living Room Plug`,mqttStateOnValue:`ON, true, 1`,mqttSameAsPower:`Same as power topic, or different`}},linkedTo:`Linked to:`,monitorOnly:`Monitor Only`,alerts:`Alerts`,scheduleOn:`On {{time}}`,scheduleOff:`Off {{time}}`,on:`On`,off:`Off`,power:`Power`,kwhToday:`kWh Today`,settings:`Settings`,automationSettings:`Automation Settings`,showInSwitchbar:`Show in Switchbar`,quickAccessSidebar:`Quick access from sidebar`,enabled:`Enabled`,enableAutomation:`Enable automation for this plug`,autoOn:`Auto On`,autoOnDescription:`Turn on when print starts`,autoOff:`Auto Off`,autoOffDescription:`Turn off when print completes (one-shot)`,autoOffPersistent:`Keep Enabled`,autoOffPersistentDescription:`Stay enabled between prints instead of one-shot`,autoOffAfterDrying:`Auto Off After Drying`,autoOffAfterDryingDescription:`Turn off when AMS drying completes`,delayAfterDryingMinutes:`Drying delay (minutes)`,turnOffDelayMode:`Turn Off Delay Mode`,time:`Time`,temp:`Temp`,delayMinutes:`Delay (minutes)`,tempThreshold:`Temperature threshold (°C)`,tempThresholdDescription:`Turns off when nozzle cools below this temperature`,edit:`Edit`,deleteConfirm:`Are you sure you want to delete "{{name}}"? This cannot be undone.`,turnOnConfirm:`Are you sure you want to turn on "{{name}}"?`,turnOffConfirm:`Are you sure you want to turn off "{{name}}"? This will cut power to the connected device.`,failedToTurn:`Failed to turn {{action}} "{{name}}"`,unknown:`Unknown`,addTitle:`Add Smart Plug`,editTitle:`Edit Smart Plug`,stopScanning:`Stop Scanning`,discoverTasmota:`Discover Tasmota Devices`,foundDevices:`Found {{count}} device(s) - click to select:`,noDevicesFound:`No Tasmota devices found on your network`,haNotConfigured:`Home Assistant is not configured. Set it up in`,haSettingsPath:`Settings → Network → Home Assistant`,selectEntity:`Select Entity *`,ipAddress:`IP Address *`,nameLabel:`Name *`,username:`Username`,password:`Password`,authHint:`Leave empty if your Tasmota device doesn't require authentication`,linkToPrinter:`Link to Printer`,noPrinter:`No printer (manual control only)`,linkingDescription:`Linking enables automatic on/off when prints start/complete`,powerAlerts:`Power Alerts`,alertAbove:`Alert if above (W)`,alertBelow:`Alert if below (W)`,alertDescription:`Get notified when power consumption crosses these thresholds. Leave empty to disable that direction.`,dailySchedule:`Daily Schedule`,turnOnAt:`Turn On at`,turnOffAt:`Turn Off at`,scheduleDescription:`Automatically turn the plug on/off at these times daily. Leave empty to skip that action.`,showOnPrinterCard:`Show on Printer Card`,displayOnPrinterCard:`Display button on printer card`,connectedResult:`Connected!`,deviceLabel:`Device: {{name}} - `,stateLabel:`State: {{state}}`,test:`Test`,delete:`Delete`,save:`Save`,add:`Add`,cancel:`Cancel`,failedToStartScan:`Failed to start scan`,nameRequired:`Name is required`,entityRequired:`Entity is required for Home Assistant plugs`,mqttTopicRequired:`At least one MQTT topic must be configured for power, energy, or state monitoring`,loadingEntities:`Loading entities...`,loading:`Loading...`,failedToLoadEntities:`Failed to load entities: {{error}}`,noEntitiesMatching:`No entities found matching "{{search}}"`,noEntitiesAvailable:`No entities available`,searchingEntities:`Searching all entities ({{count}} found)`,showingEntities:`Showing switch, light, input_boolean ({{count}} available)`,energyMonitoringOptional:`Energy Monitoring (Optional)`,energyMonitoringHint:`Search and select sensors that provide power/energy data.`,powerSensorW:`Power Sensor (W)`,energyTodayKwh:`Energy Today (kWh)`,totalEnergyKwh:`Total Energy (kWh)`,noMatchingSensors:`No matching sensors`,none:`None`,mqttNotConfigured:`MQTT broker not configured. Set broker address in`,mqttSettingsPath:`Settings → Network → MQTT Publishing`,mqttNotConfiguredSuffix:`(you don't need to enable publishing, just fill in the broker details).`,mqttMonitorOnlyDescription:`MQTT plugs receive power/energy data via MQTT subscription. On/off control is not available - use your MQTT broker or home automation system.`,powerMonitoring:`Power Monitoring`,energyMonitoring:`Energy Monitoring`,stateMonitoring:`State Monitoring`,optional:`optional`,topic:`Topic`,jsonPath:`JSON Path`,multiplier:`Multiplier`,onValue:`ON Value`,mqttPowerHint:`JSON path extracts value from JSON payload (e.g., "power_l1"). Leave empty if topic publishes raw numeric values. +`+e.stack}}var he=Object.prototype.hasOwnProperty,ge=t.unstable_scheduleCallback,_e=t.unstable_cancelCallback,ve=t.unstable_shouldYield,ye=t.unstable_requestPaint,be=t.unstable_now,xe=t.unstable_getCurrentPriorityLevel,Se=t.unstable_ImmediatePriority,Ce=t.unstable_UserBlockingPriority,we=t.unstable_NormalPriority,Te=t.unstable_LowPriority,Ee=t.unstable_IdlePriority,De=t.log,Oe=t.unstable_setDisableYieldValue,ke=null,Ae=null;function je(e){if(typeof De==`function`&&Oe(e),Ae&&typeof Ae.setStrictMode==`function`)try{Ae.setStrictMode(ke,e)}catch{}}var Me=Math.clz32?Math.clz32:Fe,Ne=Math.log,Pe=Math.LN2;function Fe(e){return e>>>=0,e===0?32:31-(Ne(e)/Pe|0)|0}var Ie=256,Le=262144,Re=4194304;function ze(e){var t=e&42;if(t!==0)return t;switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return e&261888;case 262144:case 524288:case 1048576:case 2097152:return e&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return e&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return e}}function Be(e,t,n){var r=e.pendingLanes;if(r===0)return 0;var i=0,a=e.suspendedLanes,o=e.pingedLanes;e=e.warmLanes;var s=r&134217727;return s===0?(s=r&~a,s===0?o===0?n||(n=r&~e,n!==0&&(i=ze(n))):i=ze(o):i=ze(s)):(r=s&~a,r===0?(o&=s,o===0?n||(n=s&~e,n!==0&&(i=ze(n))):i=ze(o)):i=ze(r)),i===0?0:t!==0&&t!==i&&(t&a)===0&&(a=i&-i,n=t&-t,a>=n||a===32&&n&4194048)?t:i}function Ve(e,t){return(e.pendingLanes&~(e.suspendedLanes&~e.pingedLanes)&t)===0}function He(e,t){switch(e){case 1:case 2:case 4:case 8:case 64:return t+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function Ue(){var e=Re;return Re<<=1,!(Re&62914560)&&(Re=4194304),e}function We(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Ge(e,t){e.pendingLanes|=t,t!==268435456&&(e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0)}function Ke(e,t,n,r,i,a){var o=e.pendingLanes;e.pendingLanes=n,e.suspendedLanes=0,e.pingedLanes=0,e.warmLanes=0,e.expiredLanes&=n,e.entangledLanes&=n,e.errorRecoveryDisabledLanes&=n,e.shellSuspendCounter=0;var s=e.entanglements,c=e.expirationTimes,l=e.hiddenUpdates;for(n=o&~n;0`u`||window.document===void 0||window.document.createElement===void 0),nn=!1;if(tn)try{var rn={};Object.defineProperty(rn,"passive",{get:function(){nn=!0}}),window.addEventListener(`test`,rn,rn),window.removeEventListener(`test`,rn,rn)}catch{nn=!1}var an=null,on=null,sn=null;function cn(){if(sn)return sn;var e,t=on,n=t.length,r,i=`value`in an?an.value:an.textContent,a=i.length;for(e=0;e=Bn),Un=` `,Wn=!1;function Gn(e,t){switch(e){case`keyup`:return Rn.indexOf(t.keyCode)!==-1;case`keydown`:return t.keyCode!==229;case`keypress`:case`mousedown`:case`focusout`:return!0;default:return!1}}function Kn(e){return e=e.detail,typeof e==`object`&&`data`in e?e.data:null}var qn=!1;function Jn(e,t){switch(e){case`compositionend`:return Kn(t);case`keypress`:return t.which===32?(Wn=!0,Un):null;case`textInput`:return e=t.data,e===Un&&Wn?null:e;default:return null}}function Yn(e,t){if(qn)return e===`compositionend`||!zn&&Gn(e,t)?(e=cn(),sn=on=an=null,qn=!1,e):null;switch(e){case`paste`:return null;case`keypress`:if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1=t)return{node:n,offset:t-e};e=r}a:{for(;n;){if(n.nextSibling){n=n.nextSibling;break a}n=n.parentNode}n=void 0}n=_r(n)}}function yr(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?yr(e,t.parentNode):`contains`in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function br(e){e=e!=null&&e.ownerDocument!=null&&e.ownerDocument.defaultView!=null?e.ownerDocument.defaultView:window;for(var t=At(e.document);t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href==`string`}catch{n=!1}if(n)e=t.contentWindow;else break;t=At(e.document)}return t}function xr(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t===`input`&&(e.type===`text`||e.type===`search`||e.type===`tel`||e.type===`url`||e.type===`password`)||t===`textarea`||e.contentEditable===`true`)}var Sr=tn&&`documentMode`in document&&11>=document.documentMode,Cr=null,wr=null,Tr=null,Er=!1;function Dr(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;Er||Cr==null||Cr!==At(r)||(r=Cr,`selectionStart`in r&&xr(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Tr&&gr(Tr,r)||(Tr=r,r=Ed(wr,`onSelect`),0>=o,i-=o,yi=1<<32-Me(t)+i|n<h?(g=d,d=null):g=d.sibling;var _=p(i,d,s[h],c);if(_===null){d===null&&(d=g);break}e&&d&&_.alternate===null&&t(i,d),a=o(_,a,h),u===null?l=_:u.sibling=_,u=_,d=g}if(h===s.length)return n(i,d),Oi&&xi(i,h),l;if(d===null){for(;hg?(_=h,h=null):_=h.sibling;var y=p(a,h,v.value,l);if(y===null){h===null&&(h=_);break}e&&h&&y.alternate===null&&t(a,h),s=o(y,s,g),d===null?u=y:d.sibling=y,d=y,h=_}if(v.done)return n(a,h),Oi&&xi(a,g),u;if(h===null){for(;!v.done;g++,v=c.next())v=f(a,v.value,l),v!==null&&(s=o(v,s,g),d===null?u=v:d.sibling=v,d=v);return Oi&&xi(a,g),u}for(h=r(h);!v.done;g++,v=c.next())v=m(h,a,g,v.value,l),v!==null&&(e&&v.alternate!==null&&h.delete(v.key===null?g:v.key),s=o(v,s,g),d===null?u=v:d.sibling=v,d=v);return e&&h.forEach(function(e){return t(a,e)}),Oi&&xi(a,g),u}function b(e,r,o,c){if(typeof o==`object`&&o&&o.type===y&&o.key===null&&(o=o.props.children),typeof o==`object`&&o){switch(o.$$typeof){case _:a:{for(var l=o.key;r!==null;){if(r.key===l){if(l=o.type,l===y){if(r.tag===7){n(e,r.sibling),c=a(r,o.props.children),c.return=e,e=c;break a}}else if(r.elementType===l||typeof l==`object`&&l&&l.$$typeof===O&&Sa(l)===r.type){n(e,r.sibling),c=a(r,o.props),ka(c,o),c.return=e,e=c;break a}n(e,r);break}else t(e,r);r=r.sibling}o.type===y?(c=oi(o.props.children,e.mode,c,o.key),c.return=e,e=c):(c=ai(o.type,o.key,o.props,null,e.mode,c),ka(c,o),c.return=e,e=c)}return s(e);case v:a:{for(l=o.key;r!==null;){if(r.key===l)if(r.tag===4&&r.stateNode.containerInfo===o.containerInfo&&r.stateNode.implementation===o.implementation){n(e,r.sibling),c=a(r,o.children||[]),c.return=e,e=c;break a}else{n(e,r);break}else t(e,r);r=r.sibling}c=li(o,e.mode,c),c.return=e,e=c}return s(e);case O:return o=Sa(o),b(e,r,o,c)}if(F(o))return h(e,r,o,c);if(M(o)){if(l=M(o),typeof l!=`function`)throw Error(i(150));return o=l.call(o),g(e,r,o,c)}if(typeof o.then==`function`)return b(e,r,Oa(o),c);if(o.$$typeof===C)return b(e,r,Xi(e,o),c);Aa(e,o)}return typeof o==`string`&&o!==``||typeof o==`number`||typeof o==`bigint`?(o=``+o,r!==null&&r.tag===6?(n(e,r.sibling),c=a(r,o),c.return=e,e=c):(n(e,r),c=si(o,e.mode,c),c.return=e,e=c),s(e)):n(e,r)}return function(e,t,n,r){try{Da=0;var i=b(e,t,n,r);return Ea=null,i}catch(t){if(t===ga||t===va)throw t;var a=ti(29,t,null,e.mode);return a.lanes=r,a.return=e,a}}}var Ma=ja(!0),Na=ja(!1),Pa=!1;function Fa(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function Ia(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,callbacks:null})}function La(e){return{lane:e,tag:0,payload:null,callback:null,next:null}}function Ra(e,t,n){var r=e.updateQueue;if(r===null)return null;if(r=r.shared,Pl&2){var i=r.pending;return i===null?t.next=t:(t.next=i.next,i.next=t),r.pending=t,t=Qr(e),Zr(e,null,n),t}return Jr(e,r,t,n),Qr(e)}function za(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,n&4194048)){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,Je(e,n)}}function Ba(e,t){var n=e.updateQueue,r=e.alternate;if(r!==null&&(r=r.updateQueue,n===r)){var i=null,a=null;if(n=n.firstBaseUpdate,n!==null){do{var o={lane:n.lane,tag:n.tag,payload:n.payload,callback:null,next:null};a===null?i=a=o:a=a.next=o,n=n.next}while(n!==null);a===null?i=a=t:a=a.next=t}else i=a=t;n={baseState:r.baseState,firstBaseUpdate:i,lastBaseUpdate:a,shared:r.shared,callbacks:r.callbacks},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}var Va=!1;function Ha(){if(Va){var e=sa;if(e!==null)throw e}}function Ua(e,t,n,r){Va=!1;var i=e.updateQueue;Pa=!1;var a=i.firstBaseUpdate,o=i.lastBaseUpdate,s=i.shared.pending;if(s!==null){i.shared.pending=null;var c=s,l=c.next;c.next=null,o===null?a=l:o.next=l,o=c;var u=e.alternate;u!==null&&(u=u.updateQueue,s=u.lastBaseUpdate,s!==o&&(s===null?u.firstBaseUpdate=l:s.next=l,u.lastBaseUpdate=c))}if(a!==null){var d=i.baseState;o=0,u=l=c=null,s=a;do{var f=s.lane&-536870913,m=f!==s.lane;if(m?(Ll&f)===f:(r&f)===f){f!==0&&f===oa&&(Va=!0),u!==null&&(u=u.next={lane:0,tag:s.tag,payload:s.payload,callback:null,next:null});a:{var h=e,g=s;f=t;var _=n;switch(g.tag){case 1:if(h=g.payload,typeof h==`function`){d=h.call(_,d,f);break a}d=h;break a;case 3:h.flags=h.flags&-65537|128;case 0:if(h=g.payload,f=typeof h==`function`?h.call(_,d,f):h,f==null)break a;d=p({},d,f);break a;case 2:Pa=!0}}f=s.callback,f!==null&&(e.flags|=64,m&&(e.flags|=8192),m=i.callbacks,m===null?i.callbacks=[f]:m.push(f))}else m={lane:f,tag:s.tag,payload:s.payload,callback:s.callback,next:null},u===null?(l=u=m,c=d):u=u.next=m,o|=f;if(s=s.next,s===null){if(s=i.shared.pending,s===null)break;m=s,s=m.next,m.next=null,i.lastBaseUpdate=m,i.shared.pending=null}}while(1);u===null&&(c=d),i.baseState=c,i.firstBaseUpdate=l,i.lastBaseUpdate=u,a===null&&(i.shared.lanes=0),Gl|=o,e.lanes=o,e.memoizedState=d}}function Wa(e,t){if(typeof e!=`function`)throw Error(i(191,e));e.call(t)}function Ga(e,t){var n=e.callbacks;if(n!==null)for(e.callbacks=null,e=0;ea?a:8;var o=I.T,s={};I.T=s,ks(e,!1,t,n);try{var c=i(),l=I.S;l!==null&&l(s,c),typeof c==`object`&&c&&typeof c.then==`function`?Os(e,t,ua(c,r),pu(e)):Os(e,t,r,pu(e))}catch(n){Os(e,t,{then:function(){},status:`rejected`,reason:n},pu())}finally{L.p=a,o!==null&&s.types!==null&&(o.types=s.types),I.T=o}}function vs(){}function ys(e,t,n,r){if(e.tag!==5)throw Error(i(476));var a=bs(e).queue;_s(e,a,t,R,n===null?vs:function(){return xs(e),n(r)})}function bs(e){var t=e.memoizedState;if(t!==null)return t;t={memoizedState:R,baseState:R,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:ko,lastRenderedState:R},next:null};var n={};return t.next={memoizedState:n,baseState:n,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:ko,lastRenderedState:n},next:null},e.memoizedState=t,e=e.alternate,e!==null&&(e.memoizedState=t),t}function xs(e){var t=bs(e);t.next===null&&(t=e.alternate.memoizedState),Os(e,t.next.queue,{},pu())}function Ss(){return Yi(Qf)}function Cs(){return To().memoizedState}function ws(){return To().memoizedState}function Ts(e){for(var t=e.return;t!==null;){switch(t.tag){case 24:case 3:var n=pu();e=La(n);var r=Ra(t,e,n);r!==null&&(hu(r,t,n),za(r,t,n)),t={cache:na()},e.payload=t;return}t=t.return}}function Es(e,t,n){var r=pu();n={lane:r,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null},As(e)?js(t,n):(n=Yr(e,t,n,r),n!==null&&(hu(n,e,r),Ms(n,t,r)))}function Ds(e,t,n){Os(e,t,n,pu())}function Os(e,t,n,r){var i={lane:r,revertLane:0,gesture:null,action:n,hasEagerState:!1,eagerState:null,next:null};if(As(e))js(t,i);else{var a=e.alternate;if(e.lanes===0&&(a===null||a.lanes===0)&&(a=t.lastRenderedReducer,a!==null))try{var o=t.lastRenderedState,s=a(o,n);if(i.hasEagerState=!0,i.eagerState=s,hr(s,o))return Jr(e,t,i,0),Fl===null&&qr(),!1}catch{}if(n=Yr(e,t,i,r),n!==null)return hu(n,e,r),Ms(n,t,r),!0}return!1}function ks(e,t,n,r){if(r={lane:2,revertLane:ud(),gesture:null,action:r,hasEagerState:!1,eagerState:null,next:null},As(e)){if(t)throw Error(i(479))}else t=Yr(e,n,r,2),t!==null&&hu(t,e,2)}function As(e){var t=e.alternate;return e===oo||t!==null&&t===oo}function js(e,t){uo=lo=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function Ms(e,t,n){if(n&4194048){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,Je(e,n)}}var Ns={readContext:Yi,use:Do,useCallback:_o,useContext:_o,useEffect:_o,useImperativeHandle:_o,useLayoutEffect:_o,useInsertionEffect:_o,useMemo:_o,useReducer:_o,useRef:_o,useState:_o,useDebugValue:_o,useDeferredValue:_o,useTransition:_o,useSyncExternalStore:_o,useId:_o,useHostTransitionStatus:_o,useFormState:_o,useActionState:_o,useOptimistic:_o,useMemoCache:_o,useCacheRefresh:_o};Ns.useEffectEvent=_o;var Ps={readContext:Yi,use:Do,useCallback:function(e,t){return wo().memoizedState=[e,t===void 0?null:t],e},useContext:Yi,useEffect:rs,useImperativeHandle:function(e,t,n){n=n==null?null:n.concat([e]),ts(4194308,4,us.bind(null,t,e),n)},useLayoutEffect:function(e,t){return ts(4194308,4,e,t)},useInsertionEffect:function(e,t){ts(4,2,e,t)},useMemo:function(e,t){var n=wo();t=t===void 0?null:t;var r=e();if(fo){je(!0);try{e()}finally{je(!1)}}return n.memoizedState=[r,t],r},useReducer:function(e,t,n){var r=wo();if(n!==void 0){var i=n(t);if(fo){je(!0);try{n(t)}finally{je(!1)}}}else i=t;return r.memoizedState=r.baseState=i,e={pending:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:i},r.queue=e,e=e.dispatch=Es.bind(null,oo,e),[r.memoizedState,e]},useRef:function(e){var t=wo();return e={current:e},t.memoizedState=e},useState:function(e){e=zo(e);var t=e.queue,n=Ds.bind(null,oo,t);return t.dispatch=n,[e.memoizedState,n]},useDebugValue:fs,useDeferredValue:function(e,t){return hs(wo(),e,t)},useTransition:function(){var e=zo(!1);return e=_s.bind(null,oo,e.queue,!0,!1),wo().memoizedState=e,[!1,e]},useSyncExternalStore:function(e,t,n){var r=oo,a=wo();if(Oi){if(n===void 0)throw Error(i(407));n=n()}else{if(n=t(),Fl===null)throw Error(i(349));Ll&127||Po(r,t,n)}a.memoizedState=n;var o={value:n,getSnapshot:t};return a.queue=o,rs(Io.bind(null,r,o,e),[e]),r.flags|=2048,$o(9,{destroy:void 0},Fo.bind(null,r,o,n,t),null),n},useId:function(){var e=wo(),t=Fl.identifierPrefix;if(Oi){var n=bi,r=yi;n=(r&~(1<<32-Me(r)-1)).toString(32)+n,t=`_`+t+`R_`+n,n=po++,0<\/script>`,o=o.removeChild(o.firstChild);break;case`select`:o=typeof r.is==`string`?s.createElement(`select`,{is:r.is}):s.createElement(`select`),r.multiple?o.multiple=!0:r.size&&(o.size=r.size);break;default:o=typeof r.is==`string`?s.createElement(a,{is:r.is}):s.createElement(a)}}o[et]=t,o[tt]=r;a:for(s=t.child;s!==null;){if(s.tag===5||s.tag===6)o.appendChild(s.stateNode);else if(s.tag!==4&&s.tag!==27&&s.child!==null){s.child.return=s,s=s.child;continue}if(s===t)break a;for(;s.sibling===null;){if(s.return===null||s.return===t)break a;s=s.return}s.sibling.return=s.return,s=s.sibling}t.stateNode=o;a:switch(Fd(o,a,r),a){case`button`:case`input`:case`select`:case`textarea`:r=!!r.autoFocus;break a;case`img`:r=!0;break a;default:r=!1}r&&Dc(t)}}return Mc(t),Oc(t,t.type,e===null?null:e.memoizedProps,t.pendingProps,n),null;case 6:if(e&&t.stateNode!=null)e.memoizedProps!==r&&Dc(t);else{if(typeof r!=`string`&&t.stateNode===null)throw Error(i(166));if(e=ie.current,Fi(t)){if(e=t.stateNode,n=t.memoizedProps,r=null,a=Ei,a!==null)switch(a.tag){case 27:case 5:r=a.memoizedProps}e[et]=t,e=!!(e.nodeValue===n||r!==null&&!0===r.suppressHydrationWarning||Md(e.nodeValue,n)),e||Mi(t,!0)}else e=Bd(e).createTextNode(r),e[et]=t,t.stateNode=e}return Mc(t),null;case 31:if(n=t.memoizedState,e===null||e.memoizedState!==null){if(r=Fi(t),n!==null){if(e===null){if(!r)throw Error(i(318));if(e=t.memoizedState,e=e===null?null:e.dehydrated,!e)throw Error(i(557));e[et]=t}else Ii(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;Mc(t),e=!1}else n=Li(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=n),e=!0;if(!e)return t.flags&256?(no(t),t):(no(t),null);if(t.flags&128)throw Error(i(558))}return Mc(t),null;case 13:if(r=t.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(a=Fi(t),r!==null&&r.dehydrated!==null){if(e===null){if(!a)throw Error(i(318));if(a=t.memoizedState,a=a===null?null:a.dehydrated,!a)throw Error(i(317));a[et]=t}else Ii(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;Mc(t),a=!1}else a=Li(),e!==null&&e.memoizedState!==null&&(e.memoizedState.hydrationErrors=a),a=!0;if(!a)return t.flags&256?(no(t),t):(no(t),null)}return no(t),t.flags&128?(t.lanes=n,t):(n=r!==null,e=e!==null&&e.memoizedState!==null,n&&(r=t.child,a=null,r.alternate!==null&&r.alternate.memoizedState!==null&&r.alternate.memoizedState.cachePool!==null&&(a=r.alternate.memoizedState.cachePool.pool),o=null,r.memoizedState!==null&&r.memoizedState.cachePool!==null&&(o=r.memoizedState.cachePool.pool),o!==a&&(r.flags|=2048)),n!==e&&n&&(t.child.flags|=8192),Ac(t,t.updateQueue),Mc(t),null);case 4:return oe(),e===null&&Sd(t.stateNode.containerInfo),Mc(t),null;case 10:return Ui(t.type),Mc(t),null;case 19:if(ee(ro),r=t.memoizedState,r===null)return Mc(t),null;if(a=(t.flags&128)!=0,o=r.rendering,o===null)if(a)jc(r,!1);else{if(Wl!==0||e!==null&&e.flags&128)for(e=t.child;e!==null;){if(o=io(e),o!==null){for(t.flags|=128,jc(r,!1),e=o.updateQueue,t.updateQueue=e,Ac(t,e),t.subtreeFlags=0,e=n,n=t.child;n!==null;)ii(n,e),n=n.sibling;return te(ro,ro.current&1|2),Oi&&xi(t,r.treeForkCount),t.child}e=e.sibling}r.tail!==null&&be()>tu&&(t.flags|=128,a=!0,jc(r,!1),t.lanes=4194304)}else{if(!a)if(e=io(o),e!==null){if(t.flags|=128,a=!0,e=e.updateQueue,t.updateQueue=e,Ac(t,e),jc(r,!0),r.tail===null&&r.tailMode===`hidden`&&!o.alternate&&!Oi)return Mc(t),null}else 2*be()-r.renderingStartTime>tu&&n!==536870912&&(t.flags|=128,a=!0,jc(r,!1),t.lanes=4194304);r.isBackwards?(o.sibling=t.child,t.child=o):(e=r.last,e===null?t.child=o:e.sibling=o,r.last=o)}return r.tail===null?(Mc(t),null):(e=r.tail,r.rendering=e,r.tail=e.sibling,r.renderingStartTime=be(),e.sibling=null,n=ro.current,te(ro,a?n&1|2:n&1),Oi&&xi(t,r.treeForkCount),e);case 22:case 23:return no(t),Xa(),r=t.memoizedState!==null,e===null?r&&(t.flags|=8192):e.memoizedState!==null!==r&&(t.flags|=8192),r?n&536870912&&!(t.flags&128)&&(Mc(t),t.subtreeFlags&6&&(t.flags|=8192)):Mc(t),n=t.updateQueue,n!==null&&Ac(t,n.retryQueue),n=null,e!==null&&e.memoizedState!==null&&e.memoizedState.cachePool!==null&&(n=e.memoizedState.cachePool.pool),r=null,t.memoizedState!==null&&t.memoizedState.cachePool!==null&&(r=t.memoizedState.cachePool.pool),r!==n&&(t.flags|=2048),e!==null&&ee(fa),null;case 24:return n=null,e!==null&&(n=e.memoizedState.cache),t.memoizedState.cache!==n&&(t.flags|=2048),Ui(ta),Mc(t),null;case 25:return null;case 30:return null}throw Error(i(156,t.tag))}function Pc(e,t){switch(wi(t),t.tag){case 1:return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return Ui(ta),oe(),e=t.flags,e&65536&&!(e&128)?(t.flags=e&-65537|128,t):null;case 26:case 27:case 5:return se(t),null;case 31:if(t.memoizedState!==null){if(no(t),t.alternate===null)throw Error(i(340));Ii()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 13:if(no(t),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(i(340));Ii()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return ee(ro),null;case 4:return oe(),null;case 10:return Ui(t.type),null;case 22:case 23:return no(t),Xa(),e!==null&&ee(fa),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 24:return Ui(ta),null;case 25:return null;default:return null}}function Fc(e,t){switch(wi(t),t.tag){case 3:Ui(ta),oe();break;case 26:case 27:case 5:se(t);break;case 4:oe();break;case 31:t.memoizedState!==null&&no(t);break;case 13:no(t);break;case 19:ee(ro);break;case 10:Ui(t.type);break;case 22:case 23:no(t),Xa(),e!==null&&ee(fa);break;case 24:Ui(ta)}}function Ic(e,t){try{var n=t.updateQueue,r=n===null?null:n.lastEffect;if(r!==null){var i=r.next;n=i;do{if((n.tag&e)===e){r=void 0;var a=n.create,o=n.inst;r=a(),o.destroy=r}n=n.next}while(n!==i)}}catch(e){Gu(t,t.return,e)}}function Lc(e,t,n){try{var r=t.updateQueue,i=r===null?null:r.lastEffect;if(i!==null){var a=i.next;r=a;do{if((r.tag&e)===e){var o=r.inst,s=o.destroy;if(s!==void 0){o.destroy=void 0,i=t;var c=n,l=s;try{l()}catch(e){Gu(i,c,e)}}}r=r.next}while(r!==a)}}catch(e){Gu(t,t.return,e)}}function Rc(e){var t=e.updateQueue;if(t!==null){var n=e.stateNode;try{Ga(t,n)}catch(t){Gu(e,e.return,t)}}}function zc(e,t,n){n.props=Vs(e.type,e.memoizedProps),n.state=e.memoizedState;try{n.componentWillUnmount()}catch(n){Gu(e,t,n)}}function Bc(e,t){try{var n=e.ref;if(n!==null){switch(e.tag){case 26:case 27:case 5:var r=e.stateNode;break;case 30:r=e.stateNode;break;default:r=e.stateNode}typeof n==`function`?e.refCleanup=n(r):n.current=r}}catch(n){Gu(e,t,n)}}function Vc(e,t){var n=e.ref,r=e.refCleanup;if(n!==null)if(typeof r==`function`)try{r()}catch(n){Gu(e,t,n)}finally{e.refCleanup=null,e=e.alternate,e!=null&&(e.refCleanup=null)}else if(typeof n==`function`)try{n(null)}catch(n){Gu(e,t,n)}else n.current=null}function Hc(e){var t=e.type,n=e.memoizedProps,r=e.stateNode;try{a:switch(t){case`button`:case`input`:case`select`:case`textarea`:n.autoFocus&&r.focus();break a;case`img`:n.src?r.src=n.src:n.srcSet&&(r.srcset=n.srcSet)}}catch(t){Gu(e,e.return,t)}}function Uc(e,t,n){try{var r=e.stateNode;$(r,e.type,n,t),r[tt]=t}catch(t){Gu(e,e.return,t)}}function X(e){return e.tag===5||e.tag===3||e.tag===26||e.tag===27&&Zd(e.type)||e.tag===4}function Wc(e){a:for(;;){for(;e.sibling===null;){if(e.return===null||X(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.tag===27&&Zd(e.type)||e.flags&2||e.child===null||e.tag===4)continue a;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Gc(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?(n.nodeType===9?n.body:n.nodeName===`HTML`?n.ownerDocument.body:n).insertBefore(e,t):(t=n.nodeType===9?n.body:n.nodeName===`HTML`?n.ownerDocument.body:n,t.appendChild(e),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=Kt));else if(r!==4&&(r===27&&Zd(e.type)&&(n=e.stateNode,t=null),e=e.child,e!==null))for(Gc(e,t,n),e=e.sibling;e!==null;)Gc(e,t,n),e=e.sibling}function Kc(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(r===27&&Zd(e.type)&&(n=e.stateNode),e=e.child,e!==null))for(Kc(e,t,n),e=e.sibling;e!==null;)Kc(e,t,n),e=e.sibling}function qc(e){var t=e.stateNode,n=e.memoizedProps;try{for(var r=e.type,i=t.attributes;i.length;)t.removeAttributeNode(i[0]);Fd(t,r,n),t[et]=e,t[tt]=n}catch(t){Gu(e,e.return,t)}}var Jc=!1,Yc=!1,Xc=!1,Zc=typeof WeakSet==`function`?WeakSet:Set,Qc=null;function $c(e,t){if(e=e.containerInfo,Rd=sp,e=br(e),xr(e)){if(`selectionStart`in e)var n={start:e.selectionStart,end:e.selectionEnd};else a:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var a=r.anchorOffset,o=r.focusNode;r=r.focusOffset;try{n.nodeType,o.nodeType}catch{n=null;break a}var s=0,c=-1,l=-1,u=0,d=0,f=e,p=null;b:for(;;){for(var m;f!==n||a!==0&&f.nodeType!==3||(c=s+a),f!==o||r!==0&&f.nodeType!==3||(l=s+r),f.nodeType===3&&(s+=f.nodeValue.length),(m=f.firstChild)!==null;)p=f,f=m;for(;;){if(f===e)break b;if(p===n&&++u===a&&(c=s),p===o&&++d===r&&(l=s),(m=f.nextSibling)!==null)break;f=p,p=f.parentNode}f=m}n=c===-1||l===-1?null:{start:c,end:l}}else n=null}n||={start:0,end:0}}else n=null;for(zd={focusedElem:e,selectionRange:n},sp=!1,Qc=t;Qc!==null;)if(t=Qc,e=t.child,t.subtreeFlags&1028&&e!==null)e.return=t,Qc=e;else for(;Qc!==null;){switch(t=Qc,o=t.alternate,e=t.flags,t.tag){case 0:if(e&4&&(e=t.updateQueue,e=e===null?null:e.events,e!==null))for(n=0;n title`))),Fd(o,r,n),o[et]=e,pt(o),r=o;break a;case`link`:var s=Vf(`link`,`href`,a).get(r+(n.href||``));if(s){for(var c=0;cg&&(o=g,g=h,h=o);var _=vr(s,h),v=vr(s,g);if(_&&v&&(p.rangeCount!==1||p.anchorNode!==_.node||p.anchorOffset!==_.offset||p.focusNode!==v.node||p.focusOffset!==v.offset)){var y=d.createRange();y.setStart(_.node,_.offset),p.removeAllRanges(),h>g?(p.addRange(y),p.extend(v.node,v.offset)):(y.setEnd(v.node,v.offset),p.addRange(y))}}}}for(d=[],p=s;p=p.parentNode;)p.nodeType===1&&d.push({element:p,left:p.scrollLeft,top:p.scrollTop});for(typeof s.focus==`function`&&s.focus(),s=0;sn?32:n,I.T=null,n=lu,lu=null;var o=au,s=su;if(iu=0,ou=au=null,su=0,Pl&6)throw Error(i(331));var c=Pl;if(Pl|=4,kl(o.current),xl(o,o.current,s,n),Pl=c,rd(0,!1),Ae&&typeof Ae.onPostCommitFiberRoot==`function`)try{Ae.onPostCommitFiberRoot(ke,o)}catch{}return!0}finally{L.p=a,I.T=r,Vu(e,t)}}function Wu(e,t,n){t=di(n,t),t=Ks(e.stateNode,t,2),e=Ra(e,t,2),e!==null&&(Ge(e,2),nd(e))}function Gu(e,t,n){if(e.tag===3)Wu(e,e,n);else for(;t!==null;){if(t.tag===3){Wu(t,e,n);break}else if(t.tag===1){var r=t.stateNode;if(typeof t.type.getDerivedStateFromError==`function`||typeof r.componentDidCatch==`function`&&(ru===null||!ru.has(r))){e=di(n,e),n=qs(2),r=Ra(t,n,2),r!==null&&(Js(n,r,t,e),Ge(r,2),nd(r));break}}t=t.return}}function Ku(e,t,n){var r=e.pingCache;if(r===null){r=e.pingCache=new Nl;var i=new Set;r.set(t,i)}else i=r.get(t),i===void 0&&(i=new Set,r.set(t,i));i.has(n)||(Hl=!0,i.add(n),e=qu.bind(null,e,t,n),t.then(e,e))}function qu(e,t,n){var r=e.pingCache;r!==null&&r.delete(t),e.pingedLanes|=e.suspendedLanes&n,e.warmLanes&=~n,Fl===e&&(Ll&n)===n&&(Wl===4||Wl===3&&(Ll&62914560)===Ll&&300>be()-$l?!(Pl&2)&&Su(e,0):ql|=n,Yl===Ll&&(Yl=0)),nd(e)}function Ju(e,t){t===0&&(t=Ue()),e=Xr(e,t),e!==null&&(Ge(e,t),nd(e))}function Yu(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),Ju(e,n)}function Xu(e,t){var n=0;switch(e.tag){case 31:case 13:var r=e.stateNode,a=e.memoizedState;a!==null&&(n=a.retryLane);break;case 19:r=e.stateNode;break;case 22:r=e.stateNode._retryCache;break;default:throw Error(i(314))}r!==null&&r.delete(t),Ju(e,n)}function Zu(e,t){return ge(e,t)}var Qu=null,$u=null,ed=!1,Z=!1,td=!1,Q=0;function nd(e){e!==$u&&e.next===null&&($u===null?Qu=$u=e:$u=$u.next=e),Z=!0,ed||(ed=!0,ld())}function rd(e,t){if(!td&&Z){td=!0;do for(var n=!1,r=Qu;r!==null;){if(!t)if(e!==0){var i=r.pendingLanes;if(i===0)var a=0;else{var o=r.suspendedLanes,s=r.pingedLanes;a=(1<<31-Me(42|e)+1)-1,a&=i&~(o&~s),a=a&201326741?a&201326741|1:a?a|2:0}a!==0&&(n=!0,cd(r,a))}else a=Ll,a=Be(r,r===Fl?a:0,r.cancelPendingCommit!==null||r.timeoutHandle!==-1),!(a&3)||Ve(r,a)||(n=!0,cd(r,a));r=r.next}while(n);td=!1}}function id(){ad()}function ad(){Z=ed=!1;var e=0;Q!==0&&Gd()&&(e=Q);for(var t=be(),n=null,r=Qu;r!==null;){var i=r.next,a=od(r,t);a===0?(r.next=null,n===null?Qu=i:n.next=i,i===null&&($u=n)):(n=r,(e!==0||a&3)&&(Z=!0)),r=i}iu!==0&&iu!==5||rd(e,!1),Q!==0&&(Q=0)}function od(e,t){for(var n=e.suspendedLanes,r=e.pingedLanes,i=e.expirationTimes,a=e.pendingLanes&-62914561;0s)break;var u=c.transferSize,d=c.initiatorType;u&&Id(d)&&(c=c.responseEnd,o+=u*(c`u`?null:document;function xf(e,t,n){var r=bf;if(r&&typeof t==`string`&&t){var i=Mt(t);i=`link[rel="`+e+`"][href="`+i+`"]`,typeof n==`string`&&(i+=`[crossorigin="`+n+`"]`),hf.has(i)||(hf.add(i),e={rel:e,crossOrigin:n,href:t},r.querySelector(i)===null&&(t=r.createElement(`link`),Fd(t,`link`,e),pt(t),r.head.appendChild(t)))}}function Sf(e){_f.D(e),xf(`dns-prefetch`,e,null)}function Cf(e,t){_f.C(e,t),xf(`preconnect`,e,t)}function wf(e,t,n){_f.L(e,t,n);var r=bf;if(r&&e&&t){var i=`link[rel="preload"][as="`+Mt(t)+`"]`;t===`image`&&n&&n.imageSrcSet?(i+=`[imagesrcset="`+Mt(n.imageSrcSet)+`"]`,typeof n.imageSizes==`string`&&(i+=`[imagesizes="`+Mt(n.imageSizes)+`"]`)):i+=`[href="`+Mt(e)+`"]`;var a=i;switch(t){case`style`:a=Af(e);break;case`script`:a=Pf(e)}mf.has(a)||(e=p({rel:`preload`,href:t===`image`&&n&&n.imageSrcSet?void 0:e,as:t},n),mf.set(a,e),r.querySelector(i)!==null||t===`style`&&r.querySelector(jf(a))||t===`script`&&r.querySelector(Ff(a))||(t=r.createElement(`link`),Fd(t,`link`,e),pt(t),r.head.appendChild(t)))}}function Tf(e,t){_f.m(e,t);var n=bf;if(n&&e){var r=t&&typeof t.as==`string`?t.as:`script`,i=`link[rel="modulepreload"][as="`+Mt(r)+`"][href="`+Mt(e)+`"]`,a=i;switch(r){case`audioworklet`:case`paintworklet`:case`serviceworker`:case`sharedworker`:case`worker`:case`script`:a=Pf(e)}if(!mf.has(a)&&(e=p({rel:`modulepreload`,href:e},t),mf.set(a,e),n.querySelector(i)===null)){switch(r){case`audioworklet`:case`paintworklet`:case`serviceworker`:case`sharedworker`:case`worker`:case`script`:if(n.querySelector(Ff(a)))return}r=n.createElement(`link`),Fd(r,`link`,e),pt(r),n.head.appendChild(r)}}}function Ef(e,t,n){_f.S(e,t,n);var r=bf;if(r&&e){var i=ft(r).hoistableStyles,a=Af(e);t||=`default`;var o=i.get(a);if(!o){var s={loading:0,preload:null};if(o=r.querySelector(jf(a)))s.loading=5;else{e=p({rel:`stylesheet`,href:e,"data-precedence":t},n),(n=mf.get(a))&&Rf(e,n);var c=o=r.createElement(`link`);pt(c),Fd(c,`link`,e),c._p=new Promise(function(e,t){c.onload=e,c.onerror=t}),c.addEventListener(`load`,function(){s.loading|=1}),c.addEventListener(`error`,function(){s.loading|=2}),s.loading|=4,Lf(o,t,r)}o={type:`stylesheet`,instance:o,count:1,state:s},i.set(a,o)}}}function Df(e,t){_f.X(e,t);var n=bf;if(n&&e){var r=ft(n).hoistableScripts,i=Pf(e),a=r.get(i);a||(a=n.querySelector(Ff(i)),a||(e=p({src:e,async:!0},t),(t=mf.get(i))&&zf(e,t),a=n.createElement(`script`),pt(a),Fd(a,`link`,e),n.head.appendChild(a)),a={type:`script`,instance:a,count:1,state:null},r.set(i,a))}}function Of(e,t){_f.M(e,t);var n=bf;if(n&&e){var r=ft(n).hoistableScripts,i=Pf(e),a=r.get(i);a||(a=n.querySelector(Ff(i)),a||(e=p({src:e,async:!0,type:`module`},t),(t=mf.get(i))&&zf(e,t),a=n.createElement(`script`),pt(a),Fd(a,`link`,e),n.head.appendChild(a)),a={type:`script`,instance:a,count:1,state:null},r.set(i,a))}}function kf(e,t,n,r){var a=(a=ie.current)?gf(a):null;if(!a)throw Error(i(446));switch(e){case`meta`:case`title`:return null;case`style`:return typeof n.precedence==`string`&&typeof n.href==`string`?(t=Af(n.href),n=ft(a).hoistableStyles,r=n.get(t),r||(r={type:`style`,instance:null,count:0,state:null},n.set(t,r)),r):{type:`void`,instance:null,count:0,state:null};case`link`:if(n.rel===`stylesheet`&&typeof n.href==`string`&&typeof n.precedence==`string`){e=Af(n.href);var o=ft(a).hoistableStyles,s=o.get(e);if(s||(a=a.ownerDocument||a,s={type:`stylesheet`,instance:null,count:0,state:{loading:0,preload:null}},o.set(e,s),(o=a.querySelector(jf(e)))&&!o._p&&(s.instance=o,s.state.loading=5),mf.has(e)||(n={rel:`preload`,as:`style`,href:n.href,crossOrigin:n.crossOrigin,integrity:n.integrity,media:n.media,hrefLang:n.hrefLang,referrerPolicy:n.referrerPolicy},mf.set(e,n),o||Nf(a,e,n,s.state))),t&&r===null)throw Error(i(528,``));return s}if(t&&r!==null)throw Error(i(529,``));return null;case`script`:return t=n.async,n=n.src,typeof n==`string`&&t&&typeof t!=`function`&&typeof t!=`symbol`?(t=Pf(n),n=ft(a).hoistableScripts,r=n.get(t),r||(r={type:`script`,instance:null,count:0,state:null},n.set(t,r)),r):{type:`void`,instance:null,count:0,state:null};default:throw Error(i(444,e))}}function Af(e){return`href="`+Mt(e)+`"`}function jf(e){return`link[rel="stylesheet"][`+e+`]`}function Mf(e){return p({},e,{"data-precedence":e.precedence,precedence:null})}function Nf(e,t,n,r){e.querySelector(`link[rel="preload"][as="style"][`+t+`]`)?r.loading=1:(t=e.createElement(`link`),r.preload=t,t.addEventListener(`load`,function(){return r.loading|=1}),t.addEventListener(`error`,function(){return r.loading|=2}),Fd(t,`link`,n),pt(t),e.head.appendChild(t))}function Pf(e){return`[src="`+Mt(e)+`"]`}function Ff(e){return`script[async]`+e}function If(e,t,n){if(t.count++,t.instance===null)switch(t.type){case`style`:var r=e.querySelector(`style[data-href~="`+Mt(n.href)+`"]`);if(r)return t.instance=r,pt(r),r;var a=p({},n,{"data-href":n.href,"data-precedence":n.precedence,href:null,precedence:null});return r=(e.ownerDocument||e).createElement(`style`),pt(r),Fd(r,`style`,a),Lf(r,n.precedence,e),t.instance=r;case`stylesheet`:a=Af(n.href);var o=e.querySelector(jf(a));if(o)return t.state.loading|=4,t.instance=o,pt(o),o;r=Mf(n),(a=mf.get(a))&&Rf(r,a),o=(e.ownerDocument||e).createElement(`link`),pt(o);var s=o;return s._p=new Promise(function(e,t){s.onload=e,s.onerror=t}),Fd(o,`link`,r),t.state.loading|=4,Lf(o,n.precedence,e),t.instance=o;case`script`:return o=Pf(n.src),(a=e.querySelector(Ff(o)))?(t.instance=a,pt(a),a):(r=n,(a=mf.get(o))&&(r=p({},n),zf(r,a)),e=e.ownerDocument||e,a=e.createElement(`script`),pt(a),Fd(a,`link`,r),e.head.appendChild(a),t.instance=a);case`void`:return null;default:throw Error(i(443,t.type))}else t.type===`stylesheet`&&!(t.state.loading&4)&&(r=t.instance,t.state.loading|=4,Lf(r,n.precedence,e));return t.instance}function Lf(e,t,n){for(var r=n.querySelectorAll(`link[rel="stylesheet"][data-precedence],style[data-precedence]`),i=r.length?r[r.length-1]:null,a=i,o=0;o title`):null)}function Uf(e,t,n){if(n===1||t.itemProp!=null)return!1;switch(e){case`meta`:case`title`:return!0;case`style`:if(typeof t.precedence!=`string`||typeof t.href!=`string`||t.href===``)break;return!0;case`link`:if(typeof t.rel!=`string`||typeof t.href!=`string`||t.href===``||t.onLoad||t.onError)break;switch(t.rel){case`stylesheet`:return e=t.disabled,typeof t.precedence==`string`&&e==null;default:return!0}case`script`:if(t.async&&typeof t.async!=`function`&&typeof t.async!=`symbol`&&!t.onLoad&&!t.onError&&t.src&&typeof t.src==`string`)return!0}return!1}function Wf(e){return!(e.type===`stylesheet`&&!(e.state.loading&3))}function Gf(e,t,n,r){if(n.type===`stylesheet`&&(typeof r.media!=`string`||!1!==matchMedia(r.media).matches)&&!(n.state.loading&4)){if(n.instance===null){var i=Af(r.href),a=t.querySelector(jf(i));if(a){t=a._p,typeof t==`object`&&t&&typeof t.then==`function`&&(e.count++,e=Jf.bind(e),t.then(e,e)),n.state.loading|=4,n.instance=a,pt(a);return}a=t.ownerDocument||t,r=Mf(r),(i=mf.get(i))&&Rf(r,i),a=a.createElement(`link`),pt(a);var o=a;o._p=new Promise(function(e,t){o.onload=e,o.onerror=t}),Fd(a,`link`,r),n.instance=a}e.stylesheets===null&&(e.stylesheets=new Map),e.stylesheets.set(n,t),(t=n.state.preload)&&!(n.state.loading&3)&&(e.count++,n=Jf.bind(e),t.addEventListener(`load`,n),t.addEventListener(`error`,n))}}var Kf=0;function qf(e,t){return e.stylesheets&&e.count===0&&Xf(e,e.stylesheets),0Kf?50:800)+t);return e.unsuspend=n,function(){e.unsuspend=null,clearTimeout(r),clearTimeout(i)}}:null}function Jf(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)Xf(this,this.stylesheets);else if(this.unsuspend){var e=this.unsuspend;this.unsuspend=null,e()}}}var Yf=null;function Xf(e,t){e.stylesheets=null,e.unsuspend!==null&&(e.count++,Yf=new Map,t.forEach(Zf,e),Yf=null,Jf.call(e))}function Zf(e,t){if(!(t.state.loading&4)){var n=Yf.get(e);if(n)var r=n.get(null);else{n=new Map,Yf.set(e,n);for(var i=e.querySelectorAll(`link[data-precedence],style[data-precedence]`),a=0;a{function n(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>`u`||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!=`function`))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(n)}catch(e){console.error(e)}}n(),t.exports=_()})),y=l(f()),b=v(),x=e=>typeof e==`string`,S=()=>{let e,t,n=new Promise((n,r)=>{e=n,t=r});return n.resolve=e,n.reject=t,n},C=e=>e==null?``:``+e,w=(e,t,n)=>{e.forEach(e=>{t[e]&&(n[e]=t[e])})},T=/###/g,E=e=>e&&e.indexOf(`###`)>-1?e.replace(T,`.`):e,D=e=>!e||x(e),O=(e,t,n)=>{let r=x(t)?t.split(`.`):t,i=0;for(;i{let{obj:r,k:i}=O(e,t,Object);if(r!==void 0||t.length===1){r[i]=n;return}let a=t[t.length-1],o=t.slice(0,t.length-1),s=O(e,o,Object);for(;s.obj===void 0&&o.length;)a=`${o[o.length-1]}.${a}`,o=o.slice(0,o.length-1),s=O(e,o,Object),s?.obj&&s.obj[`${s.k}.${a}`]!==void 0&&(s.obj=void 0);s.obj[`${s.k}.${a}`]=n},A=(e,t,n,r)=>{let{obj:i,k:a}=O(e,t,Object);i[a]=i[a]||[],i[a].push(n)},j=(e,t)=>{let{obj:n,k:r}=O(e,t);if(n&&Object.prototype.hasOwnProperty.call(n,r))return n[r]},M=(e,t,n)=>{let r=j(e,n);return r===void 0?j(t,n):r},N=(e,t,n)=>{for(let r in t)r!==`__proto__`&&r!==`constructor`&&(r in e?x(e[r])||e[r]instanceof String||x(t[r])||t[r]instanceof String?n&&(e[r]=t[r]):N(e[r],t[r],n):e[r]=t[r]);return e},P=e=>e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,`\\$&`),F={"&":`&`,"<":`<`,">":`>`,'"':`"`,"'":`'`,"/":`/`},I=e=>x(e)?e.replace(/[&<>"'\/]/g,e=>F[e]):e,L=class{constructor(e){this.capacity=e,this.regExpMap=new Map,this.regExpQueue=[]}getRegExp(e){let t=this.regExpMap.get(e);if(t!==void 0)return t;let n=new RegExp(e);return this.regExpQueue.length===this.capacity&&this.regExpMap.delete(this.regExpQueue.shift()),this.regExpMap.set(e,n),this.regExpQueue.push(e),n}},R=[` `,`,`,`?`,`!`,`;`],z=new L(20),B=(e,t,n)=>{t||=``,n||=``;let r=R.filter(e=>t.indexOf(e)<0&&n.indexOf(e)<0);if(r.length===0)return!0;let i=z.getRegExp(`(${r.map(e=>e===`?`?`\\?`:e).join(`|`)})`),a=!i.test(e);if(!a){let t=e.indexOf(n);t>0&&!i.test(e.substring(0,t))&&(a=!0)}return a},V=(e,t,n=`.`)=>{if(!e)return;if(e[t])return Object.prototype.hasOwnProperty.call(e,t)?e[t]:void 0;let r=t.split(n),i=e;for(let e=0;e-1&&oe?.replace(`_`,`-`),te={type:`logger`,log(e){this.output(`log`,e)},warn(e){this.output(`warn`,e)},error(e){this.output(`error`,e)},output(e,t){console?.[e]?.apply?.(console,t)}},ne=new class e{constructor(e,t={}){this.init(e,t)}init(e,t={}){this.prefix=t.prefix||`i18next:`,this.logger=e||te,this.options=t,this.debug=t.debug}log(...e){return this.forward(e,`log`,``,!0)}warn(...e){return this.forward(e,`warn`,``,!0)}error(...e){return this.forward(e,`error`,``)}deprecate(...e){return this.forward(e,`warn`,`WARNING DEPRECATED: `,!0)}forward(e,t,n,r){return r&&!this.debug?null:(x(e[0])&&(e[0]=`${n}${this.prefix} ${e[0]}`),this.logger[t](e))}create(t){return new e(this.logger,{prefix:`${this.prefix}:${t}:`,...this.options})}clone(t){return t||=this.options,t.prefix=t.prefix||this.prefix,new e(this.logger,t)}},re=class{constructor(){this.observers={}}on(e,t){return e.split(` `).forEach(e=>{this.observers[e]||(this.observers[e]=new Map);let n=this.observers[e].get(t)||0;this.observers[e].set(t,n+1)}),this}off(e,t){if(this.observers[e]){if(!t){delete this.observers[e];return}this.observers[e].delete(t)}}emit(e,...t){this.observers[e]&&Array.from(this.observers[e].entries()).forEach(([e,n])=>{for(let r=0;r{for(let i=0;i-1&&this.options.ns.splice(t,1)}getResource(e,t,n,r={}){let i=r.keySeparator===void 0?this.options.keySeparator:r.keySeparator,a=r.ignoreJSONStructure===void 0?this.options.ignoreJSONStructure:r.ignoreJSONStructure,o;e.indexOf(`.`)>-1?o=e.split(`.`):(o=[e,t],n&&(Array.isArray(n)?o.push(...n):x(n)&&i?o.push(...n.split(i)):o.push(n)));let s=j(this.data,o);return!s&&!t&&!n&&e.indexOf(`.`)>-1&&(e=o[0],t=o[1],n=o.slice(2).join(`.`)),s||!a||!x(n)?s:V(this.data?.[e]?.[t],n,i)}addResource(e,t,n,r,i={silent:!1}){let a=i.keySeparator===void 0?this.options.keySeparator:i.keySeparator,o=[e,t];n&&(o=o.concat(a?n.split(a):n)),e.indexOf(`.`)>-1&&(o=e.split(`.`),r=t,t=o[1]),this.addNamespaces(t),k(this.data,o,r),i.silent||this.emit(`added`,e,t,n,r)}addResources(e,t,n,r={silent:!1}){for(let r in n)(x(n[r])||Array.isArray(n[r]))&&this.addResource(e,t,r,n[r],{silent:!0});r.silent||this.emit(`added`,e,t,n)}addResourceBundle(e,t,n,r,i,a={silent:!1,skipCopy:!1}){let o=[e,t];e.indexOf(`.`)>-1&&(o=e.split(`.`),r=n,n=t,t=o[1]),this.addNamespaces(t);let s=j(this.data,o)||{};a.skipCopy||(n=JSON.parse(JSON.stringify(n))),r?N(s,n,i):s={...s,...n},k(this.data,o,s),a.silent||this.emit(`added`,e,t,n)}removeResourceBundle(e,t){this.hasResourceBundle(e,t)&&delete this.data[e][t],this.removeNamespaces(t),this.emit(`removed`,e,t)}hasResourceBundle(e,t){return this.getResource(e,t)!==void 0}getResourceBundle(e,t){return t||=this.options.defaultNS,this.getResource(e,t)}getDataByLanguage(e){return this.data[e]}hasLanguageSomeTranslations(e){let t=this.getDataByLanguage(e);return!!(t&&Object.keys(t)||[]).find(e=>t[e]&&Object.keys(t[e]).length>0)}toJSON(){return this.data}},H={processors:{},addPostProcessor(e){this.processors[e.name]=e},handle(e,t,n,r,i){return e.forEach(e=>{t=this.processors[e]?.process(t,n,r,i)??t}),t}},ae=Symbol(`i18next/PATH_KEY`);function oe(){let e=[],t=Object.create(null),n;return t.get=(r,i)=>(n?.revoke?.(),i===ae?e:(e.push(i),n=Proxy.revocable(r,t),n.proxy)),Proxy.revocable(Object.create(null),t).proxy}function U(e,t){let{[ae]:n}=e(oe());return n.join(t?.keySeparator??`.`)}var se={},ce=e=>!x(e)&&typeof e!=`boolean`&&typeof e!=`number`,le=class e extends re{constructor(e,t={}){super(),w([`resourceStore`,`languageUtils`,`pluralResolver`,`interpolator`,`backendConnector`,`i18nFormat`,`utils`],e,this),this.options=t,this.options.keySeparator===void 0&&(this.options.keySeparator=`.`),this.logger=ne.create(`translator`)}changeLanguage(e){e&&(this.language=e)}exists(e,t={interpolation:{}}){let n={...t};if(e==null)return!1;let r=this.resolve(e,n);if(r?.res===void 0)return!1;let i=ce(r.res);return!(n.returnObjects===!1&&i)}extractFromKey(e,t){let n=t.nsSeparator===void 0?this.options.nsSeparator:t.nsSeparator;n===void 0&&(n=`:`);let r=t.keySeparator===void 0?this.options.keySeparator:t.keySeparator,i=t.ns||this.options.defaultNS||[],a=n&&e.indexOf(n)>-1,o=!this.options.userDefinedKeySeparator&&!t.keySeparator&&!this.options.userDefinedNsSeparator&&!t.nsSeparator&&!B(e,n,r);if(a&&!o){let t=e.match(this.interpolator.nestingRegexp);if(t&&t.length>0)return{key:e,namespaces:x(i)?[i]:i};let a=e.split(n);(n!==r||n===r&&this.options.ns.indexOf(a[0])>-1)&&(i=a.shift()),e=a.join(r)}return{key:e,namespaces:x(i)?[i]:i}}translate(t,n,r){let i=typeof n==`object`?{...n}:n;if(typeof i!=`object`&&this.options.overloadTranslationOptionHandler&&(i=this.options.overloadTranslationOptionHandler(arguments)),typeof i==`object`&&(i={...i}),i||={},t==null)return``;typeof t==`function`&&(t=U(t,{...this.options,...i})),Array.isArray(t)||(t=[String(t)]);let a=i.returnDetails===void 0?this.options.returnDetails:i.returnDetails,o=i.keySeparator===void 0?this.options.keySeparator:i.keySeparator,{key:s,namespaces:c}=this.extractFromKey(t[t.length-1],i),l=c[c.length-1],u=i.nsSeparator===void 0?this.options.nsSeparator:i.nsSeparator;u===void 0&&(u=`:`);let d=i.lng||this.language,f=i.appendNamespaceToCIMode||this.options.appendNamespaceToCIMode;if(d?.toLowerCase()===`cimode`)return f?a?{res:`${l}${u}${s}`,usedKey:s,exactUsedKey:s,usedLng:d,usedNS:l,usedParams:this.getUsedParamsDetails(i)}:`${l}${u}${s}`:a?{res:s,usedKey:s,exactUsedKey:s,usedLng:d,usedNS:l,usedParams:this.getUsedParamsDetails(i)}:s;let p=this.resolve(t,i),m=p?.res,h=p?.usedKey||s,g=p?.exactUsedKey||s,_=[`[object Number]`,`[object Function]`,`[object RegExp]`],v=i.joinArrays===void 0?this.options.joinArrays:i.joinArrays,y=!this.i18nFormat||this.i18nFormat.handleAsObject,b=i.count!==void 0&&!x(i.count),S=e.hasDefaultValue(i),C=b?this.pluralResolver.getSuffix(d,i.count,i):``,w=i.ordinal&&b?this.pluralResolver.getSuffix(d,i.count,{ordinal:!1}):``,T=b&&!i.ordinal&&i.count===0,E=T&&i[`defaultValue${this.options.pluralSeparator}zero`]||i[`defaultValue${C}`]||i[`defaultValue${w}`]||i.defaultValue,D=m;y&&!m&&S&&(D=E);let O=ce(D),k=Object.prototype.toString.apply(D);if(y&&D&&O&&_.indexOf(k)<0&&!(x(v)&&Array.isArray(D))){if(!i.returnObjects&&!this.options.returnObjects){this.options.returnedObjectHandler||this.logger.warn(`accessing an object - but returnObjects options is not enabled!`);let e=this.options.returnedObjectHandler?this.options.returnedObjectHandler(h,D,{...i,ns:c}):`key '${s} (${this.language})' returned an object instead of string.`;return a?(p.res=e,p.usedParams=this.getUsedParamsDetails(i),p):e}if(o){let e=Array.isArray(D),t=e?[]:{},n=e?g:h;for(let e in D)if(Object.prototype.hasOwnProperty.call(D,e)){let r=`${n}${o}${e}`;S&&!m?t[e]=this.translate(r,{...i,defaultValue:ce(E)?E[e]:void 0,joinArrays:!1,ns:c}):t[e]=this.translate(r,{...i,joinArrays:!1,ns:c}),t[e]===r&&(t[e]=D[e])}m=t}}else if(y&&x(v)&&Array.isArray(m))m=m.join(v),m&&=this.extendTranslation(m,t,i,r);else{let e=!1,n=!1;!this.isValidLookup(m)&&S&&(e=!0,m=E),this.isValidLookup(m)||(n=!0,m=s);let a=(i.missingKeyNoValueFallbackToKey||this.options.missingKeyNoValueFallbackToKey)&&n?void 0:m,c=S&&E!==m&&this.options.updateMissing;if(n||e||c){if(this.logger.log(c?`updateKey`:`missingKey`,d,l,s,c?E:m),o){let e=this.resolve(s,{...i,keySeparator:!1});e&&e.res&&this.logger.warn(`Seems the loaded translations were in flat JSON format instead of nested. Either set keySeparator: false on init or make sure your translations are published in nested format.`)}let e=[],t=this.languageUtils.getFallbackCodes(this.options.fallbackLng,i.lng||this.language);if(this.options.saveMissingTo===`fallback`&&t&&t[0])for(let n=0;n{let r=S&&n!==m?n:a;this.options.missingKeyHandler?this.options.missingKeyHandler(e,l,t,r,c,i):this.backendConnector?.saveMissing&&this.backendConnector.saveMissing(e,l,t,r,c,i),this.emit(`missingKey`,e,l,t,m)};this.options.saveMissing&&(this.options.saveMissingPlurals&&b?e.forEach(e=>{let t=this.pluralResolver.getSuffixes(e,i);T&&i[`defaultValue${this.options.pluralSeparator}zero`]&&t.indexOf(`${this.options.pluralSeparator}zero`)<0&&t.push(`${this.options.pluralSeparator}zero`),t.forEach(t=>{n([e],s+t,i[`defaultValue${t}`]||E)})}):n(e,s,E))}m=this.extendTranslation(m,t,i,p,r),n&&m===s&&this.options.appendNamespaceToMissingKey&&(m=`${l}${u}${s}`),(n||e)&&this.options.parseMissingKeyHandler&&(m=this.options.parseMissingKeyHandler(this.options.appendNamespaceToMissingKey?`${l}${u}${s}`:s,e?m:void 0,i))}return a?(p.res=m,p.usedParams=this.getUsedParamsDetails(i),p):m}extendTranslation(e,t,n,r,i){if(this.i18nFormat?.parse)e=this.i18nFormat.parse(e,{...this.options.interpolation.defaultVariables,...n},n.lng||this.language||r.usedLng,r.usedNS,r.usedKey,{resolved:r});else if(!n.skipInterpolation){n.interpolation&&this.interpolator.init({...n,interpolation:{...this.options.interpolation,...n.interpolation}});let a=x(e)&&(n?.interpolation?.skipOnVariables===void 0?this.options.interpolation.skipOnVariables:n.interpolation.skipOnVariables),o;if(a){let t=e.match(this.interpolator.nestingRegexp);o=t&&t.length}let s=n.replace&&!x(n.replace)?n.replace:n;if(this.options.interpolation.defaultVariables&&(s={...this.options.interpolation.defaultVariables,...s}),e=this.interpolator.interpolate(e,s,n.lng||this.language||r.usedLng,n),a){let t=e.match(this.interpolator.nestingRegexp),r=t&&t.length;oi?.[0]===e[0]&&!n.context?(this.logger.warn(`It seems you are nesting recursively key: ${e[0]} in key: ${t[0]}`),null):this.translate(...e,t),n)),n.interpolation&&this.interpolator.reset()}let a=n.postProcess||this.options.postProcess,o=x(a)?[a]:a;return e!=null&&o?.length&&n.applyPostProcessor!==!1&&(e=H.handle(o,e,t,this.options&&this.options.postProcessPassResolved?{i18nResolved:{...r,usedParams:this.getUsedParamsDetails(n)},...n}:n,this)),e}resolve(e,t={}){let n,r,i,a,o;return x(e)&&(e=[e]),e.forEach(e=>{if(this.isValidLookup(n))return;let s=this.extractFromKey(e,t),c=s.key;r=c;let l=s.namespaces;this.options.fallbackNS&&(l=l.concat(this.options.fallbackNS));let u=t.count!==void 0&&!x(t.count),d=u&&!t.ordinal&&t.count===0,f=t.context!==void 0&&(x(t.context)||typeof t.context==`number`)&&t.context!==``,p=t.lngs?t.lngs:this.languageUtils.toResolveHierarchy(t.lng||this.language,t.fallbackLng);l.forEach(e=>{this.isValidLookup(n)||(o=e,!se[`${p[0]}-${e}`]&&this.utils?.hasLoadedNamespace&&!this.utils?.hasLoadedNamespace(o)&&(se[`${p[0]}-${e}`]=!0,this.logger.warn(`key "${r}" for languages "${p.join(`, `)}" won't get resolved as namespace "${o}" was not yet loaded`,`This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!`)),p.forEach(r=>{if(this.isValidLookup(n))return;a=r;let o=[c];if(this.i18nFormat?.addLookupKeys)this.i18nFormat.addLookupKeys(o,c,r,e,t);else{let e;u&&(e=this.pluralResolver.getSuffix(r,t.count,t));let n=`${this.options.pluralSeparator}zero`,i=`${this.options.pluralSeparator}ordinal${this.options.pluralSeparator}`;if(u&&(t.ordinal&&e.indexOf(i)===0&&o.push(c+e.replace(i,this.options.pluralSeparator)),o.push(c+e),d&&o.push(c+n)),f){let r=`${c}${this.options.contextSeparator||`_`}${t.context}`;o.push(r),u&&(t.ordinal&&e.indexOf(i)===0&&o.push(r+e.replace(i,this.options.pluralSeparator)),o.push(r+e),d&&o.push(r+n))}}let s;for(;s=o.pop();)this.isValidLookup(n)||(i=s,n=this.getResource(r,e,s,t))}))})}),{res:n,usedKey:r,exactUsedKey:i,usedLng:a,usedNS:o}}isValidLookup(e){return e!==void 0&&!(!this.options.returnNull&&e===null)&&!(!this.options.returnEmptyString&&e===``)}getResource(e,t,n,r={}){return this.i18nFormat?.getResource?this.i18nFormat.getResource(e,t,n,r):this.resourceStore.getResource(e,t,n,r)}getUsedParamsDetails(e={}){let t=[`defaultValue`,`ordinal`,`context`,`replace`,`lng`,`lngs`,`fallbackLng`,`ns`,`keySeparator`,`nsSeparator`,`returnObjects`,`returnDetails`,`joinArrays`,`postProcess`,`interpolation`],n=e.replace&&!x(e.replace),r=n?e.replace:e;if(n&&e.count!==void 0&&(r.count=e.count),this.options.interpolation.defaultVariables&&(r={...this.options.interpolation.defaultVariables,...r}),!n){r={...r};for(let e of t)delete r[e]}return r}static hasDefaultValue(e){for(let t in e)if(Object.prototype.hasOwnProperty.call(e,t)&&t.substring(0,12)===`defaultValue`&&e[t]!==void 0)return!0;return!1}},ue=class{constructor(e){this.options=e,this.supportedLngs=this.options.supportedLngs||!1,this.logger=ne.create(`languageUtils`)}getScriptPartFromCode(e){if(e=ee(e),!e||e.indexOf(`-`)<0)return null;let t=e.split(`-`);return t.length===2||(t.pop(),t[t.length-1].toLowerCase()===`x`)?null:this.formatLanguageCode(t.join(`-`))}getLanguagePartFromCode(e){if(e=ee(e),!e||e.indexOf(`-`)<0)return e;let t=e.split(`-`);return this.formatLanguageCode(t[0])}formatLanguageCode(e){if(x(e)&&e.indexOf(`-`)>-1){let t;try{t=Intl.getCanonicalLocales(e)[0]}catch{}return t&&this.options.lowerCaseLng&&(t=t.toLowerCase()),t||(this.options.lowerCaseLng?e.toLowerCase():e)}return this.options.cleanCode||this.options.lowerCaseLng?e.toLowerCase():e}isSupportedCode(e){return(this.options.load===`languageOnly`||this.options.nonExplicitSupportedLngs)&&(e=this.getLanguagePartFromCode(e)),!this.supportedLngs||!this.supportedLngs.length||this.supportedLngs.indexOf(e)>-1}getBestMatchFromCodes(e){if(!e)return null;let t;return e.forEach(e=>{if(t)return;let n=this.formatLanguageCode(e);(!this.options.supportedLngs||this.isSupportedCode(n))&&(t=n)}),!t&&this.options.supportedLngs&&e.forEach(e=>{if(t)return;let n=this.getScriptPartFromCode(e);if(this.isSupportedCode(n))return t=n;let r=this.getLanguagePartFromCode(e);if(this.isSupportedCode(r))return t=r;t=this.options.supportedLngs.find(e=>{if(e===r||!(e.indexOf(`-`)<0&&r.indexOf(`-`)<0)&&(e.indexOf(`-`)>0&&r.indexOf(`-`)<0&&e.substring(0,e.indexOf(`-`))===r||e.indexOf(r)===0&&r.length>1))return e})}),t||=this.getFallbackCodes(this.options.fallbackLng)[0],t}getFallbackCodes(e,t){if(!e)return[];if(typeof e==`function`&&(e=e(t)),x(e)&&(e=[e]),Array.isArray(e))return e;if(!t)return e.default||[];let n=e[t];return n||=e[this.getScriptPartFromCode(t)],n||=e[this.formatLanguageCode(t)],n||=e[this.getLanguagePartFromCode(t)],n||=e.default,n||[]}toResolveHierarchy(e,t){let n=this.getFallbackCodes((t===!1?[]:t)||this.options.fallbackLng||[],e),r=[],i=e=>{e&&(this.isSupportedCode(e)?r.push(e):this.logger.warn(`rejecting language code not found in supportedLngs: ${e}`))};return x(e)&&(e.indexOf(`-`)>-1||e.indexOf(`_`)>-1)?(this.options.load!==`languageOnly`&&i(this.formatLanguageCode(e)),this.options.load!==`languageOnly`&&this.options.load!==`currentOnly`&&i(this.getScriptPartFromCode(e)),this.options.load!==`currentOnly`&&i(this.getLanguagePartFromCode(e))):x(e)&&i(this.formatLanguageCode(e)),n.forEach(e=>{r.indexOf(e)<0&&i(this.formatLanguageCode(e))}),r}},de={zero:0,one:1,two:2,few:3,many:4,other:5},fe={select:e=>e===1?`one`:`other`,resolvedOptions:()=>({pluralCategories:[`one`,`other`]})},pe=class{constructor(e,t={}){this.languageUtils=e,this.options=t,this.logger=ne.create(`pluralResolver`),this.pluralRulesCache={}}addRule(e,t){this.rules[e]=t}clearCache(){this.pluralRulesCache={}}getRule(e,t={}){let n=ee(e===`dev`?`en`:e),r=t.ordinal?`ordinal`:`cardinal`,i=JSON.stringify({cleanedCode:n,type:r});if(i in this.pluralRulesCache)return this.pluralRulesCache[i];let a;try{a=new Intl.PluralRules(n,{type:r})}catch{if(!Intl)return this.logger.error(`No Intl support, please use an Intl polyfill!`),fe;if(!e.match(/-|_/))return fe;let n=this.languageUtils.getLanguagePartFromCode(e);a=this.getRule(n,t)}return this.pluralRulesCache[i]=a,a}needsPlural(e,t={}){let n=this.getRule(e,t);return n||=this.getRule(`dev`,t),n?.resolvedOptions().pluralCategories.length>1}getPluralFormsOfKey(e,t,n={}){return this.getSuffixes(e,n).map(e=>`${t}${e}`)}getSuffixes(e,t={}){let n=this.getRule(e,t);return n||=this.getRule(`dev`,t),n?n.resolvedOptions().pluralCategories.sort((e,t)=>de[e]-de[t]).map(e=>`${this.options.prepend}${t.ordinal?`ordinal${this.options.prepend}`:``}${e}`):[]}getSuffix(e,t,n={}){let r=this.getRule(e,n);return r?`${this.options.prepend}${n.ordinal?`ordinal${this.options.prepend}`:``}${r.select(t)}`:(this.logger.warn(`no plural rule found for: ${e}`),this.getSuffix(`dev`,t,n))}},me=(e,t,n,r=`.`,i=!0)=>{let a=M(e,t,n);return!a&&i&&x(n)&&(a=V(e,n,r),a===void 0&&(a=V(t,n,r))),a},he=e=>e.replace(/\$/g,`$$$$`),ge=class{constructor(e={}){this.logger=ne.create(`interpolator`),this.options=e,this.format=e?.interpolation?.format||(e=>e),this.init(e)}init(e={}){e.interpolation||={escapeValue:!0};let{escape:t,escapeValue:n,useRawValueToEscape:r,prefix:i,prefixEscaped:a,suffix:o,suffixEscaped:s,formatSeparator:c,unescapeSuffix:l,unescapePrefix:u,nestingPrefix:d,nestingPrefixEscaped:f,nestingSuffix:p,nestingSuffixEscaped:m,nestingOptionsSeparator:h,maxReplaces:g,alwaysFormat:_}=e.interpolation;this.escape=t===void 0?I:t,this.escapeValue=n===void 0?!0:n,this.useRawValueToEscape=r===void 0?!1:r,this.prefix=i?P(i):a||`{{`,this.suffix=o?P(o):s||`}}`,this.formatSeparator=c||`,`,this.unescapePrefix=l?``:u||`-`,this.unescapeSuffix=this.unescapePrefix?``:l||``,this.nestingPrefix=d?P(d):f||P(`$t(`),this.nestingSuffix=p?P(p):m||P(`)`),this.nestingOptionsSeparator=h||`,`,this.maxReplaces=g||1e3,this.alwaysFormat=_===void 0?!1:_,this.resetRegExp()}reset(){this.options&&this.init(this.options)}resetRegExp(){let e=(e,t)=>e?.source===t?(e.lastIndex=0,e):new RegExp(t,`g`);this.regexp=e(this.regexp,`${this.prefix}(.+?)${this.suffix}`),this.regexpUnescape=e(this.regexpUnescape,`${this.prefix}${this.unescapePrefix}(.+?)${this.unescapeSuffix}${this.suffix}`),this.nestingRegexp=e(this.nestingRegexp,`${this.nestingPrefix}((?:[^()"']+|"[^"]*"|'[^']*'|\\((?:[^()]|"[^"]*"|'[^']*')*\\))*?)${this.nestingSuffix}`)}interpolate(e,t,n,r){let i,a,o,s=this.options&&this.options.interpolation&&this.options.interpolation.defaultVariables||{},c=e=>{if(e.indexOf(this.formatSeparator)<0){let i=me(t,s,e,this.options.keySeparator,this.options.ignoreJSONStructure);return this.alwaysFormat?this.format(i,void 0,n,{...r,...t,interpolationkey:e}):i}let i=e.split(this.formatSeparator),a=i.shift().trim(),o=i.join(this.formatSeparator).trim();return this.format(me(t,s,a,this.options.keySeparator,this.options.ignoreJSONStructure),o,n,{...r,...t,interpolationkey:a})};this.resetRegExp();let l=r?.missingInterpolationHandler||this.options.missingInterpolationHandler,u=r?.interpolation?.skipOnVariables===void 0?this.options.interpolation.skipOnVariables:r.interpolation.skipOnVariables;return[{regex:this.regexpUnescape,safeValue:e=>he(e)},{regex:this.regexp,safeValue:e=>this.escapeValue?he(this.escape(e)):he(e)}].forEach(t=>{for(o=0;i=t.regex.exec(e);){let n=i[1].trim();if(a=c(n),a===void 0)if(typeof l==`function`){let t=l(e,i,r);a=x(t)?t:``}else if(r&&Object.prototype.hasOwnProperty.call(r,n))a=``;else if(u){a=i[0];continue}else this.logger.warn(`missed to pass in variable ${n} for interpolating ${e}`),a=``;else !x(a)&&!this.useRawValueToEscape&&(a=C(a));let s=t.safeValue(a);if(e=e.replace(i[0],s),u?(t.regex.lastIndex+=a.length,t.regex.lastIndex-=i[0].length):t.regex.lastIndex=0,o++,o>=this.maxReplaces)break}}),e}nest(e,t,n={}){let r,i,a,o=(e,t)=>{let n=this.nestingOptionsSeparator;if(e.indexOf(n)<0)return e;let r=e.split(RegExp(`${n}[ ]*{`)),i=`{${r[1]}`;e=r[0],i=this.interpolate(i,a);let o=i.match(/'/g),s=i.match(/"/g);((o?.length??0)%2==0&&!s||s.length%2!=0)&&(i=i.replace(/'/g,`"`));try{a=JSON.parse(i),t&&(a={...t,...a})}catch(t){return this.logger.warn(`failed parsing options string in nesting for key ${e}`,t),`${e}${n}${i}`}return a.defaultValue&&a.defaultValue.indexOf(this.prefix)>-1&&delete a.defaultValue,e};for(;r=this.nestingRegexp.exec(e);){let s=[];a={...n},a=a.replace&&!x(a.replace)?a.replace:a,a.applyPostProcessor=!1,delete a.defaultValue;let c=/{.*}/.test(r[1])?r[1].lastIndexOf(`}`)+1:r[1].indexOf(this.formatSeparator);if(c!==-1&&(s=r[1].slice(c).split(this.formatSeparator).map(e=>e.trim()).filter(Boolean),r[1]=r[1].slice(0,c)),i=t(o.call(this,r[1].trim(),a),a),i&&r[0]===e&&!x(i))return i;x(i)||(i=C(i)),i||=(this.logger.warn(`missed to resolve ${r[1]} for nesting ${e}`),``),s.length&&(i=s.reduce((e,t)=>this.format(e,t,n.lng,{...n,interpolationkey:r[1].trim()}),i.trim())),e=e.replace(r[0],i),this.regexp.lastIndex=0}return e}},_e=e=>{let t=e.toLowerCase().trim(),n={};if(e.indexOf(`(`)>-1){let r=e.split(`(`);t=r[0].toLowerCase().trim();let i=r[1].substring(0,r[1].length-1);t===`currency`&&i.indexOf(`:`)<0?n.currency||=i.trim():t===`relativetime`&&i.indexOf(`:`)<0?n.range||=i.trim():i.split(`;`).forEach(e=>{if(e){let[t,...r]=e.split(`:`),i=r.join(`:`).trim().replace(/^'+|'+$/g,``),a=t.trim();n[a]||(n[a]=i),i===`false`&&(n[a]=!1),i===`true`&&(n[a]=!0),isNaN(i)||(n[a]=parseInt(i,10))}})}return{formatName:t,formatOptions:n}},ve=e=>{let t={};return(n,r,i)=>{let a=i;i&&i.interpolationkey&&i.formatParams&&i.formatParams[i.interpolationkey]&&i[i.interpolationkey]&&(a={...a,[i.interpolationkey]:void 0});let o=r+JSON.stringify(a),s=t[o];return s||(s=e(ee(r),i),t[o]=s),s(n)}},ye=e=>(t,n,r)=>e(ee(n),r)(t),be=class{constructor(e={}){this.logger=ne.create(`formatter`),this.options=e,this.init(e)}init(e,t={interpolation:{}}){this.formatSeparator=t.interpolation.formatSeparator||`,`;let n=t.cacheInBuiltFormats?ve:ye;this.formats={number:n((e,t)=>{let n=new Intl.NumberFormat(e,{...t});return e=>n.format(e)}),currency:n((e,t)=>{let n=new Intl.NumberFormat(e,{...t,style:`currency`});return e=>n.format(e)}),datetime:n((e,t)=>{let n=new Intl.DateTimeFormat(e,{...t});return e=>n.format(e)}),relativetime:n((e,t)=>{let n=new Intl.RelativeTimeFormat(e,{...t});return e=>n.format(e,t.range||`day`)}),list:n((e,t)=>{let n=new Intl.ListFormat(e,{...t});return e=>n.format(e)})}}add(e,t){this.formats[e.toLowerCase().trim()]=t}addCached(e,t){this.formats[e.toLowerCase().trim()]=ve(t)}format(e,t,n,r={}){let i=t.split(this.formatSeparator);if(i.length>1&&i[0].indexOf(`(`)>1&&i[0].indexOf(`)`)<0&&i.find(e=>e.indexOf(`)`)>-1)){let e=i.findIndex(e=>e.indexOf(`)`)>-1);i[0]=[i[0],...i.splice(1,e)].join(this.formatSeparator)}return i.reduce((e,t)=>{let{formatName:i,formatOptions:a}=_e(t);if(this.formats[i]){let t=e;try{let o=r?.formatParams?.[r.interpolationkey]||{},s=o.locale||o.lng||r.locale||r.lng||n;t=this.formats[i](e,s,{...a,...r,...o})}catch(e){this.logger.warn(e)}return t}else this.logger.warn(`there was no format function for ${i}`);return e},e)}},xe=(e,t)=>{e.pending[t]!==void 0&&(delete e.pending[t],e.pendingCount--)},Se=class extends re{constructor(e,t,n,r={}){super(),this.backend=e,this.store=t,this.services=n,this.languageUtils=n.languageUtils,this.options=r,this.logger=ne.create(`backendConnector`),this.waitingReads=[],this.maxParallelReads=r.maxParallelReads||10,this.readingCalls=0,this.maxRetries=r.maxRetries>=0?r.maxRetries:5,this.retryTimeout=r.retryTimeout>=1?r.retryTimeout:350,this.state={},this.queue=[],this.backend?.init?.(n,r.backend,r)}queueLoad(e,t,n,r){let i={},a={},o={},s={};return e.forEach(e=>{let r=!0;t.forEach(t=>{let o=`${e}|${t}`;!n.reload&&this.store.hasResourceBundle(e,t)?this.state[o]=2:this.state[o]<0||(this.state[o]===1?a[o]===void 0&&(a[o]=!0):(this.state[o]=1,r=!1,a[o]===void 0&&(a[o]=!0),i[o]===void 0&&(i[o]=!0),s[t]===void 0&&(s[t]=!0)))}),r||(o[e]=!0)}),(Object.keys(i).length||Object.keys(a).length)&&this.queue.push({pending:a,pendingCount:Object.keys(a).length,loaded:{},errors:[],callback:r}),{toLoad:Object.keys(i),pending:Object.keys(a),toLoadLanguages:Object.keys(o),toLoadNamespaces:Object.keys(s)}}loaded(e,t,n){let r=e.split(`|`),i=r[0],a=r[1];t&&this.emit(`failedLoading`,i,a,t),!t&&n&&this.store.addResourceBundle(i,a,n,void 0,void 0,{skipCopy:!0}),this.state[e]=t?-1:2,t&&n&&(this.state[e]=0);let o={};this.queue.forEach(n=>{A(n.loaded,[i],a),xe(n,e),t&&n.errors.push(t),n.pendingCount===0&&!n.done&&(Object.keys(n.loaded).forEach(e=>{o[e]||(o[e]={});let t=n.loaded[e];t.length&&t.forEach(t=>{o[e][t]===void 0&&(o[e][t]=!0)})}),n.done=!0,n.errors.length?n.callback(n.errors):n.callback())}),this.emit(`loaded`,o),this.queue=this.queue.filter(e=>!e.done)}read(e,t,n,r=0,i=this.retryTimeout,a){if(!e.length)return a(null,{});if(this.readingCalls>=this.maxParallelReads){this.waitingReads.push({lng:e,ns:t,fcName:n,tried:r,wait:i,callback:a});return}this.readingCalls++;let o=(o,s)=>{if(this.readingCalls--,this.waitingReads.length>0){let e=this.waitingReads.shift();this.read(e.lng,e.ns,e.fcName,e.tried,e.wait,e.callback)}if(o&&s&&r{this.read.call(this,e,t,n,r+1,i*2,a)},i);return}a(o,s)},s=this.backend[n].bind(this.backend);if(s.length===2){try{let n=s(e,t);n&&typeof n.then==`function`?n.then(e=>o(null,e)).catch(o):o(null,n)}catch(e){o(e)}return}return s(e,t,o)}prepareLoading(e,t,n={},r){if(!this.backend)return this.logger.warn(`No backend was added via i18next.use. Will not load resources.`),r&&r();x(e)&&(e=this.languageUtils.toResolveHierarchy(e)),x(t)&&(t=[t]);let i=this.queueLoad(e,t,n,r);if(!i.toLoad.length)return i.pending.length||r(),null;i.toLoad.forEach(e=>{this.loadOne(e)})}load(e,t,n){this.prepareLoading(e,t,{},n)}reload(e,t,n){this.prepareLoading(e,t,{reload:!0},n)}loadOne(e,t=``){let n=e.split(`|`),r=n[0],i=n[1];this.read(r,i,`read`,void 0,void 0,(n,a)=>{n&&this.logger.warn(`${t}loading namespace ${i} for language ${r} failed`,n),!n&&a&&this.logger.log(`${t}loaded namespace ${i} for language ${r}`,a),this.loaded(e,n,a)})}saveMissing(e,t,n,r,i,a={},o=()=>{}){if(this.services?.utils?.hasLoadedNamespace&&!this.services?.utils?.hasLoadedNamespace(t)){this.logger.warn(`did not save key "${n}" as the namespace "${t}" was not yet loaded`,`This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!`);return}if(!(n==null||n===``)){if(this.backend?.create){let s={...a,isUpdate:i},c=this.backend.create.bind(this.backend);if(c.length<6)try{let i;i=c.length===5?c(e,t,n,r,s):c(e,t,n,r),i&&typeof i.then==`function`?i.then(e=>o(null,e)).catch(o):o(null,i)}catch(e){o(e)}else c(e,t,n,r,o,s)}!e||!e[0]||this.store.addResource(e[0],t,n,r)}}},Ce=()=>({debug:!1,initAsync:!0,ns:[`translation`],defaultNS:[`translation`],fallbackLng:[`dev`],fallbackNS:!1,supportedLngs:!1,nonExplicitSupportedLngs:!1,load:`all`,preload:!1,simplifyPluralSuffix:!0,keySeparator:`.`,nsSeparator:`:`,pluralSeparator:`_`,contextSeparator:`_`,partialBundledLanguages:!1,saveMissing:!1,updateMissing:!1,saveMissingTo:`fallback`,saveMissingPlurals:!0,missingKeyHandler:!1,missingInterpolationHandler:!1,postProcess:!1,postProcessPassResolved:!1,returnNull:!1,returnEmptyString:!0,returnObjects:!1,joinArrays:!1,returnedObjectHandler:!1,parseMissingKeyHandler:!1,appendNamespaceToMissingKey:!1,appendNamespaceToCIMode:!1,overloadTranslationOptionHandler:e=>{let t={};if(typeof e[1]==`object`&&(t=e[1]),x(e[1])&&(t.defaultValue=e[1]),x(e[2])&&(t.tDescription=e[2]),typeof e[2]==`object`||typeof e[3]==`object`){let n=e[3]||e[2];Object.keys(n).forEach(e=>{t[e]=n[e]})}return t},interpolation:{escapeValue:!0,format:e=>e,prefix:`{{`,suffix:`}}`,formatSeparator:`,`,unescapePrefix:`-`,nestingPrefix:`$t(`,nestingSuffix:`)`,nestingOptionsSeparator:`,`,maxReplaces:1e3,skipOnVariables:!0},cacheInBuiltFormats:!0}),we=e=>(x(e.ns)&&(e.ns=[e.ns]),x(e.fallbackLng)&&(e.fallbackLng=[e.fallbackLng]),x(e.fallbackNS)&&(e.fallbackNS=[e.fallbackNS]),e.supportedLngs?.indexOf?.(`cimode`)<0&&(e.supportedLngs=e.supportedLngs.concat([`cimode`])),typeof e.initImmediate==`boolean`&&(e.initAsync=e.initImmediate),e),Te=()=>{},Ee=e=>{Object.getOwnPropertyNames(Object.getPrototypeOf(e)).forEach(t=>{typeof e[t]==`function`&&(e[t]=e[t].bind(e))})},De=class e extends re{constructor(e={},t){if(super(),this.options=we(e),this.services={},this.logger=ne,this.modules={external:[]},Ee(this),t&&!this.isInitialized&&!e.isClone){if(!this.options.initAsync)return this.init(e,t),this;setTimeout(()=>{this.init(e,t)},0)}}init(e={},t){this.isInitializing=!0,typeof e==`function`&&(t=e,e={}),e.defaultNS==null&&e.ns&&(x(e.ns)?e.defaultNS=e.ns:e.ns.indexOf(`translation`)<0&&(e.defaultNS=e.ns[0]));let n=Ce();this.options={...n,...this.options,...we(e)},this.options.interpolation={...n.interpolation,...this.options.interpolation},e.keySeparator!==void 0&&(this.options.userDefinedKeySeparator=e.keySeparator),e.nsSeparator!==void 0&&(this.options.userDefinedNsSeparator=e.nsSeparator);let r=e=>e?typeof e==`function`?new e:e:null;if(!this.options.isClone){this.modules.logger?ne.init(r(this.modules.logger),this.options):ne.init(null,this.options);let e;e=this.modules.formatter?this.modules.formatter:be;let t=new ue(this.options);this.store=new ie(this.options.resources,this.options);let i=this.services;i.logger=ne,i.resourceStore=this.store,i.languageUtils=t,i.pluralResolver=new pe(t,{prepend:this.options.pluralSeparator,simplifyPluralSuffix:this.options.simplifyPluralSuffix}),this.options.interpolation.format&&this.options.interpolation.format!==n.interpolation.format&&this.logger.deprecate(`init: you are still using the legacy format function, please use the new approach: https://www.i18next.com/translation-function/formatting`),e&&(!this.options.interpolation.format||this.options.interpolation.format===n.interpolation.format)&&(i.formatter=r(e),i.formatter.init&&i.formatter.init(i,this.options),this.options.interpolation.format=i.formatter.format.bind(i.formatter)),i.interpolator=new ge(this.options),i.utils={hasLoadedNamespace:this.hasLoadedNamespace.bind(this)},i.backendConnector=new Se(r(this.modules.backend),i.resourceStore,i,this.options),i.backendConnector.on(`*`,(e,...t)=>{this.emit(e,...t)}),this.modules.languageDetector&&(i.languageDetector=r(this.modules.languageDetector),i.languageDetector.init&&i.languageDetector.init(i,this.options.detection,this.options)),this.modules.i18nFormat&&(i.i18nFormat=r(this.modules.i18nFormat),i.i18nFormat.init&&i.i18nFormat.init(this)),this.translator=new le(this.services,this.options),this.translator.on(`*`,(e,...t)=>{this.emit(e,...t)}),this.modules.external.forEach(e=>{e.init&&e.init(this)})}if(this.format=this.options.interpolation.format,t||=Te,this.options.fallbackLng&&!this.services.languageDetector&&!this.options.lng){let e=this.services.languageUtils.getFallbackCodes(this.options.fallbackLng);e.length>0&&e[0]!==`dev`&&(this.options.lng=e[0])}!this.services.languageDetector&&!this.options.lng&&this.logger.warn(`init: no languageDetector is used and no lng is defined`),[`getResource`,`hasResourceBundle`,`getResourceBundle`,`getDataByLanguage`].forEach(e=>{this[e]=(...t)=>this.store[e](...t)}),[`addResource`,`addResources`,`addResourceBundle`,`removeResourceBundle`].forEach(e=>{this[e]=(...t)=>(this.store[e](...t),this)});let i=S(),a=()=>{let e=(e,n)=>{this.isInitializing=!1,this.isInitialized&&!this.initializedStoreOnce&&this.logger.warn(`init: i18next is already initialized. You should call init just once!`),this.isInitialized=!0,this.options.isClone||this.logger.log(`initialized`,this.options),this.emit(`initialized`,this.options),i.resolve(n),t(e,n)};if(this.languages&&!this.isInitialized)return e(null,this.t.bind(this));this.changeLanguage(this.options.lng,e)};return this.options.resources||!this.options.initAsync?a():setTimeout(a,0),i}loadResources(e,t=Te){let n=t,r=x(e)?e:this.language;if(typeof e==`function`&&(n=e),!this.options.resources||this.options.partialBundledLanguages){if(r?.toLowerCase()===`cimode`&&(!this.options.preload||this.options.preload.length===0))return n();let e=[],t=t=>{t&&t!==`cimode`&&this.services.languageUtils.toResolveHierarchy(t).forEach(t=>{t!==`cimode`&&e.indexOf(t)<0&&e.push(t)})};r?t(r):this.services.languageUtils.getFallbackCodes(this.options.fallbackLng).forEach(e=>t(e)),this.options.preload?.forEach?.(e=>t(e)),this.services.backendConnector.load(e,this.options.ns,e=>{!e&&!this.resolvedLanguage&&this.language&&this.setResolvedLanguage(this.language),n(e)})}else n(null)}reloadResources(e,t,n){let r=S();return typeof e==`function`&&(n=e,e=void 0),typeof t==`function`&&(n=t,t=void 0),e||=this.languages,t||=this.options.ns,n||=Te,this.services.backendConnector.reload(e,t,e=>{r.resolve(),n(e)}),r}use(e){if(!e)throw Error(`You are passing an undefined module! Please check the object you are passing to i18next.use()`);if(!e.type)throw Error(`You are passing a wrong module! Please check the object you are passing to i18next.use()`);return e.type===`backend`&&(this.modules.backend=e),(e.type===`logger`||e.log&&e.warn&&e.error)&&(this.modules.logger=e),e.type===`languageDetector`&&(this.modules.languageDetector=e),e.type===`i18nFormat`&&(this.modules.i18nFormat=e),e.type===`postProcessor`&&H.addPostProcessor(e),e.type===`formatter`&&(this.modules.formatter=e),e.type===`3rdParty`&&this.modules.external.push(e),this}setResolvedLanguage(e){if(!(!e||!this.languages)&&!([`cimode`,`dev`].indexOf(e)>-1)){for(let e=0;e-1)&&this.store.hasLanguageSomeTranslations(t)){this.resolvedLanguage=t;break}}!this.resolvedLanguage&&this.languages.indexOf(e)<0&&this.store.hasLanguageSomeTranslations(e)&&(this.resolvedLanguage=e,this.languages.unshift(e))}}changeLanguage(e,t){this.isLanguageChangingTo=e;let n=S();this.emit(`languageChanging`,e);let r=e=>{this.language=e,this.languages=this.services.languageUtils.toResolveHierarchy(e),this.resolvedLanguage=void 0,this.setResolvedLanguage(e)},i=(i,a)=>{a?this.isLanguageChangingTo===e&&(r(a),this.translator.changeLanguage(a),this.isLanguageChangingTo=void 0,this.emit(`languageChanged`,a),this.logger.log(`languageChanged`,a)):this.isLanguageChangingTo=void 0,n.resolve((...e)=>this.t(...e)),t&&t(i,(...e)=>this.t(...e))},a=t=>{!e&&!t&&this.services.languageDetector&&(t=[]);let n=x(t)?t:t&&t[0],a=this.store.hasLanguageSomeTranslations(n)?n:this.services.languageUtils.getBestMatchFromCodes(x(t)?[t]:t);a&&(this.language||r(a),this.translator.language||this.translator.changeLanguage(a),this.services.languageDetector?.cacheUserLanguage?.(a)),this.loadResources(a,e=>{i(e,a)})};return!e&&this.services.languageDetector&&!this.services.languageDetector.async?a(this.services.languageDetector.detect()):!e&&this.services.languageDetector&&this.services.languageDetector.async?this.services.languageDetector.detect.length===0?this.services.languageDetector.detect().then(a):this.services.languageDetector.detect(a):a(e),n}getFixedT(e,t,n){let r=(e,t,...i)=>{let a;a=typeof t==`object`?{...t}:this.options.overloadTranslationOptionHandler([e,t].concat(i)),a.lng=a.lng||r.lng,a.lngs=a.lngs||r.lngs,a.ns=a.ns||r.ns,a.keyPrefix!==``&&(a.keyPrefix=a.keyPrefix||n||r.keyPrefix);let o=this.options.keySeparator||`.`,s;return a.keyPrefix&&Array.isArray(e)?s=e.map(e=>(typeof e==`function`&&(e=U(e,{...this.options,...t})),`${a.keyPrefix}${o}${e}`)):(typeof e==`function`&&(e=U(e,{...this.options,...t})),s=a.keyPrefix?`${a.keyPrefix}${o}${e}`:e),this.t(s,a)};return x(e)?r.lng=e:r.lngs=e,r.ns=t,r.keyPrefix=n,r}t(...e){return this.translator?.translate(...e)}exists(...e){return this.translator?.exists(...e)}setDefaultNamespace(e){this.options.defaultNS=e}hasLoadedNamespace(e,t={}){if(!this.isInitialized)return this.logger.warn(`hasLoadedNamespace: i18next was not initialized`,this.languages),!1;if(!this.languages||!this.languages.length)return this.logger.warn(`hasLoadedNamespace: i18n.languages were undefined or empty`,this.languages),!1;let n=t.lng||this.resolvedLanguage||this.languages[0],r=this.options?this.options.fallbackLng:!1,i=this.languages[this.languages.length-1];if(n.toLowerCase()===`cimode`)return!0;let a=(e,t)=>{let n=this.services.backendConnector.state[`${e}|${t}`];return n===-1||n===0||n===2};if(t.precheck){let e=t.precheck(this,a);if(e!==void 0)return e}return!!(this.hasResourceBundle(n,e)||!this.services.backendConnector.backend||this.options.resources&&!this.options.partialBundledLanguages||a(n,e)&&(!r||a(i,e)))}loadNamespaces(e,t){let n=S();return this.options.ns?(x(e)&&(e=[e]),e.forEach(e=>{this.options.ns.indexOf(e)<0&&this.options.ns.push(e)}),this.loadResources(e=>{n.resolve(),t&&t(e)}),n):(t&&t(),Promise.resolve())}loadLanguages(e,t){let n=S();x(e)&&(e=[e]);let r=this.options.preload||[],i=e.filter(e=>r.indexOf(e)<0&&this.services.languageUtils.isSupportedCode(e));return i.length?(this.options.preload=r.concat(i),this.loadResources(e=>{n.resolve(),t&&t(e)}),n):(t&&t(),Promise.resolve())}dir(e){if(e||=this.resolvedLanguage||(this.languages?.length>0?this.languages[0]:this.language),!e)return`rtl`;try{let t=new Intl.Locale(e);if(t&&t.getTextInfo){let e=t.getTextInfo();if(e&&e.direction)return e.direction}}catch{}let t=`ar.shu.sqr.ssh.xaa.yhd.yud.aao.abh.abv.acm.acq.acw.acx.acy.adf.ads.aeb.aec.afb.ajp.apc.apd.arb.arq.ars.ary.arz.auz.avl.ayh.ayl.ayn.ayp.bbz.pga.he.iw.ps.pbt.pbu.pst.prp.prd.ug.ur.ydd.yds.yih.ji.yi.hbo.men.xmn.fa.jpr.peo.pes.prs.dv.sam.ckb`.split(`.`),n=this.services?.languageUtils||new ue(Ce());return e.toLowerCase().indexOf(`-latn`)>1?`ltr`:t.indexOf(n.getLanguagePartFromCode(e))>-1||e.toLowerCase().indexOf(`-arab`)>1?`rtl`:`ltr`}static createInstance(t={},n){let r=new e(t,n);return r.createInstance=e.createInstance,r}cloneInstance(t={},n=Te){let r=t.forkResourceStore;r&&delete t.forkResourceStore;let i={...this.options,...t,isClone:!0},a=new e(i);return(t.debug!==void 0||t.prefix!==void 0)&&(a.logger=a.logger.clone(t)),[`store`,`services`,`language`].forEach(e=>{a[e]=this[e]}),a.services={...this.services},a.services.utils={hasLoadedNamespace:a.hasLoadedNamespace.bind(a)},r&&(a.store=new ie(Object.keys(this.store.data).reduce((e,t)=>(e[t]={...this.store.data[t]},e[t]=Object.keys(e[t]).reduce((n,r)=>(n[r]={...e[t][r]},n),e[t]),e),{}),i),a.services.resourceStore=a.store),a.translator=new le(a.services,i),a.translator.on(`*`,(e,...t)=>{a.emit(e,...t)}),a.init(i,n),a.translator.options=i,a.translator.backendConnector.services.utils={hasLoadedNamespace:a.hasLoadedNamespace.bind(a)},a}toJSON(){return{options:this.options,store:this.store,language:this.language,languages:this.languages,resolvedLanguage:this.resolvedLanguage}}}.createInstance();De.createInstance,De.dir,De.init,De.loadResources,De.reloadResources,De.use,De.changeLanguage,De.getFixedT,De.t,De.exists,De.setDefaultNamespace,De.hasLoadedNamespace,De.loadNamespaces,De.loadLanguages;var Oe=(e,t,n,r)=>{let i=[n,{code:t,...r||{}}];if(e?.services?.logger?.forward)return e.services.logger.forward(i,`warn`,`react-i18next::`,!0);Fe(i[0])&&(i[0]=`react-i18next:: ${i[0]}`),e?.services?.logger?.warn?e.services.logger.warn(...i):console?.warn&&console.warn(...i)},ke={},Ae=(e,t,n,r)=>{Fe(n)&&ke[n]||(Fe(n)&&(ke[n]=new Date),Oe(e,t,n,r))},je=(e,t)=>()=>{if(e.isInitialized)t();else{let n=()=>{setTimeout(()=>{e.off(`initialized`,n)},0),t()};e.on(`initialized`,n)}},Me=(e,t,n)=>{e.loadNamespaces(t,je(e,n))},Ne=(e,t,n,r)=>{if(Fe(n)&&(n=[n]),e.options.preload&&e.options.preload.indexOf(t)>-1)return Me(e,n,r);n.forEach(t=>{e.options.ns.indexOf(t)<0&&e.options.ns.push(t)}),e.loadLanguages(t,je(e,r))},Pe=(e,t,n={})=>!t.languages||!t.languages.length?(Ae(t,`NO_LANGUAGES`,`i18n.languages were undefined or empty`,{languages:t.languages}),!0):t.hasLoadedNamespace(e,{lng:n.lng,precheck:(t,r)=>{if(n.bindI18n&&n.bindI18n.indexOf(`languageChanging`)>-1&&t.services.backendConnector.backend&&t.isLanguageChangingTo&&!r(t.isLanguageChangingTo,e))return!1}}),Fe=e=>typeof e==`string`,Ie=e=>typeof e==`object`&&!!e,Le=/&(?:amp|#38|lt|#60|gt|#62|apos|#39|quot|#34|nbsp|#160|copy|#169|reg|#174|hellip|#8230|#x2F|#47);/g,Re={"&":`&`,"&":`&`,"<":`<`,"<":`<`,">":`>`,">":`>`,"'":`'`,"'":`'`,""":`"`,""":`"`," ":` `," ":` `,"©":`©`,"©":`©`,"®":`®`,"®":`®`,"…":`…`,"…":`…`,"/":`/`,"/":`/`},ze=e=>Re[e],Be={bindI18n:`languageChanged`,bindI18nStore:``,transEmptyNodeValue:``,transSupportBasicHtmlNodes:!0,transWrapTextNodes:``,transKeepBasicHtmlNodesFor:[`br`,`strong`,`i`,`p`],useSuspense:!0,unescape:e=>e.replace(Le,ze),transDefaultProps:void 0},Ve=(e={})=>{Be={...Be,...e}},He=()=>Be,Ue,We=e=>{Ue=e},Ge=()=>Ue,Ke={type:`3rdParty`,init(e){Ve(e.options.react),We(e)}},qe=(0,y.createContext)(),Je=class{constructor(){this.usedNamespaces={}}addUsedNamespaces(e){e.forEach(e=>{this.usedNamespaces[e]||(this.usedNamespaces[e]=!0)})}getUsedNamespaces(){return Object.keys(this.usedNamespaces)}},Ye=o((e=>{var t=f();function n(e,t){return e===t&&(e!==0||1/e==1/t)||e!==e&&t!==t}var r=typeof Object.is==`function`?Object.is:n,i=t.useState,a=t.useEffect,o=t.useLayoutEffect,s=t.useDebugValue;function c(e,t){var n=t(),r=i({inst:{value:n,getSnapshot:t}}),c=r[0].inst,u=r[1];return o(function(){c.value=n,c.getSnapshot=t,l(c)&&u({inst:c})},[e,n,t]),a(function(){return l(c)&&u({inst:c}),e(function(){l(c)&&u({inst:c})})},[e]),s(n),n}function l(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!r(e,n)}catch{return!0}}function u(e,t){return t()}var d=typeof window>`u`||window.document===void 0||window.document.createElement===void 0?u:c;e.useSyncExternalStore=t.useSyncExternalStore===void 0?d:t.useSyncExternalStore})),Xe=o(((e,t)=>{t.exports=Ye()})),Ze=Xe(),Qe={t:(e,t)=>Fe(t)?t:Ie(t)&&Fe(t.defaultValue)?t.defaultValue:Array.isArray(e)?e[e.length-1]:e,ready:!1},$e=()=>()=>{},W=(e,t={})=>{let{i18n:n}=t,{i18n:r,defaultNS:i}=(0,y.useContext)(qe)||{},a=n||r||Ge();a&&!a.reportNamespaces&&(a.reportNamespaces=new Je),a||Ae(a,`NO_I18NEXT_INSTANCE`,`useTranslation: You will need to pass in an i18next instance by using initReactI18next`);let o=(0,y.useMemo)(()=>({...He(),...a?.options?.react,...t}),[a,t]),{useSuspense:s,keyPrefix:c}=o,l=e||i||a?.options?.defaultNS,u=Fe(l)?[l]:l||[`translation`],d=(0,y.useMemo)(()=>u,u);a?.reportNamespaces?.addUsedNamespaces?.(d);let f=(0,y.useRef)(0),p=(0,y.useCallback)(e=>{if(!a)return $e;let{bindI18n:t,bindI18nStore:n}=o,r=()=>{f.current+=1,e()};return t&&a.on(t,r),n&&a.store.on(n,r),()=>{t&&t.split(` `).forEach(e=>a.off(e,r)),n&&n.split(` `).forEach(e=>a.store.off(e,r))}},[a,o]),m=(0,y.useRef)(),h=(0,y.useCallback)(()=>{if(!a)return Qe;let e=!!(a.isInitialized||a.initializedStoreOnce)&&d.every(e=>Pe(e,a,o)),n=t.lng||a.language,r=f.current,i=m.current;if(i&&i.ready===e&&i.lng===n&&i.keyPrefix===c&&i.revision===r)return i;let s={t:a.getFixedT(n,o.nsMode===`fallback`?d:d[0],c),ready:e,lng:n,keyPrefix:c,revision:r};return m.current=s,s},[a,d,c,o,t.lng]),[g,_]=(0,y.useState)(0),{t:v,ready:b}=(0,Ze.useSyncExternalStore)(p,h,h);(0,y.useEffect)(()=>{if(a&&!b&&!s){let e=()=>_(e=>e+1);t.lng?Ne(a,t.lng,d,e):Me(a,d,e)}},[a,t.lng,d,b,s,g]);let x=a||{},S=(0,y.useRef)(null),C=(0,y.useRef)(),w=e=>{let t=Object.getOwnPropertyDescriptors(e);t.__original&&delete t.__original;let n=Object.create(Object.getPrototypeOf(e),t);if(!Object.prototype.hasOwnProperty.call(n,`__original`))try{Object.defineProperty(n,"__original",{value:e,writable:!1,enumerable:!1,configurable:!1})}catch{}return n},T=(0,y.useMemo)(()=>{let e=x,t=e?.language,n=e;e&&(S.current&&S.current.__original===e&&C.current===t?n=S.current:(n=w(e),S.current=n,C.current=t));let r=[v,n,b];return r.t=v,r.i18n=n,r.ready=b,r},[v,x,b,x.resolvedLanguage,x.language,x.languages]);if(a&&s&&!b)throw new Promise(e=>{let n=()=>e();t.lng?Ne(a,t.lng,d,n):Me(a,d,n)});return T},{slice:et,forEach:tt}=[];function nt(e){return tt.call(et.call(arguments,1),t=>{if(t)for(let n in t)e[n]===void 0&&(e[n]=t[n])}),e}function rt(e){return typeof e==`string`?[/<\s*script.*?>/i,/<\s*\/\s*script\s*>/i,/<\s*img.*?on\w+\s*=/i,/<\s*\w+\s*on\w+\s*=.*?>/i,/javascript\s*:/i,/vbscript\s*:/i,/expression\s*\(/i,/eval\s*\(/i,/alert\s*\(/i,/document\.cookie/i,/document\.write\s*\(/i,/window\.location/i,/innerHTML/i].some(t=>t.test(e)):!1}var it=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/,at=function(e,t){let n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{path:`/`},r=`${e}=${encodeURIComponent(t)}`;if(n.maxAge>0){let e=n.maxAge-0;if(Number.isNaN(e))throw Error(`maxAge should be a Number`);r+=`; Max-Age=${Math.floor(e)}`}if(n.domain){if(!it.test(n.domain))throw TypeError(`option domain is invalid`);r+=`; Domain=${n.domain}`}if(n.path){if(!it.test(n.path))throw TypeError(`option path is invalid`);r+=`; Path=${n.path}`}if(n.expires){if(typeof n.expires.toUTCString!=`function`)throw TypeError(`option expires is invalid`);r+=`; Expires=${n.expires.toUTCString()}`}if(n.httpOnly&&(r+=`; HttpOnly`),n.secure&&(r+=`; Secure`),n.sameSite)switch(typeof n.sameSite==`string`?n.sameSite.toLowerCase():n.sameSite){case!0:r+=`; SameSite=Strict`;break;case`lax`:r+=`; SameSite=Lax`;break;case`strict`:r+=`; SameSite=Strict`;break;case`none`:r+=`; SameSite=None`;break;default:throw TypeError(`option sameSite is invalid`)}return n.partitioned&&(r+=`; Partitioned`),r},ot={create(e,t,n,r){let i=arguments.length>4&&arguments[4]!==void 0?arguments[4]:{path:`/`,sameSite:`strict`};n&&(i.expires=new Date,i.expires.setTime(i.expires.getTime()+n*60*1e3)),r&&(i.domain=r),document.cookie=at(e,t,i)},read(e){let t=`${e}=`,n=document.cookie.split(`;`);for(let e=0;e-1&&(e=window.location.hash.substring(window.location.hash.indexOf(`?`)));let r=e.substring(1).split(`&`);for(let e=0;e0&&r[e].substring(0,i)===t&&(n=r[e].substring(i+1))}}return n}},lt={name:`hash`,lookup(e){let{lookupHash:t,lookupFromHashIndex:n}=e,r;if(typeof window<`u`){let{hash:e}=window.location;if(e&&e.length>2){let i=e.substring(1);if(t){let e=i.split(`&`);for(let n=0;n0&&e[n].substring(0,i)===t&&(r=e[n].substring(i+1))}}if(r)return r;if(!r&&n>-1){let t=e.match(/\/([a-zA-Z-]*)/g);return Array.isArray(t)?t[typeof n==`number`?n:0]?.replace(`/`,``):void 0}}}return r}},ut=null,dt=()=>{if(ut!==null)return ut;try{if(ut=typeof window<`u`&&window.localStorage!==null,!ut)return!1;let e=`i18next.translate.boo`;window.localStorage.setItem(e,`foo`),window.localStorage.removeItem(e)}catch{ut=!1}return ut},ft={name:`localStorage`,lookup(e){let{lookupLocalStorage:t}=e;if(t&&dt())return window.localStorage.getItem(t)||void 0},cacheUserLanguage(e,t){let{lookupLocalStorage:n}=t;n&&dt()&&window.localStorage.setItem(n,e)}},pt=null,mt=()=>{if(pt!==null)return pt;try{if(pt=typeof window<`u`&&window.sessionStorage!==null,!pt)return!1;let e=`i18next.translate.boo`;window.sessionStorage.setItem(e,`foo`),window.sessionStorage.removeItem(e)}catch{pt=!1}return pt},ht={name:`sessionStorage`,lookup(e){let{lookupSessionStorage:t}=e;if(t&&mt())return window.sessionStorage.getItem(t)||void 0},cacheUserLanguage(e,t){let{lookupSessionStorage:n}=t;n&&mt()&&window.sessionStorage.setItem(n,e)}},gt={name:`navigator`,lookup(e){let t=[];if(typeof navigator<`u`){let{languages:e,userLanguage:n,language:r}=navigator;if(e)for(let n=0;n0?t:void 0}},_t={name:`htmlTag`,lookup(e){let{htmlTag:t}=e,n,r=t||(typeof document<`u`?document.documentElement:null);return r&&typeof r.getAttribute==`function`&&(n=r.getAttribute(`lang`)),n}},vt={name:`path`,lookup(e){let{lookupFromPathIndex:t}=e;if(typeof window>`u`)return;let n=window.location.pathname.match(/\/([a-zA-Z-]*)/g);if(Array.isArray(n))return n[typeof t==`number`?t:0]?.replace(`/`,``)}},yt={name:`subdomain`,lookup(e){let{lookupFromSubdomainIndex:t}=e,n=typeof t==`number`?t+1:1,r=typeof window<`u`&&window.location?.hostname?.match(/^(\w{2,5})\.(([a-z0-9-]{1,63}\.[a-z]{2,6})|localhost)/i);if(r)return r[n]}},bt=!1;try{document.cookie,bt=!0}catch{}var xt=[`querystring`,`cookie`,`localStorage`,`sessionStorage`,`navigator`,`htmlTag`];bt||xt.splice(1,1);var St=()=>({order:xt,lookupQuerystring:`lng`,lookupCookie:`i18next`,lookupLocalStorage:`i18nextLng`,lookupSessionStorage:`i18nextLng`,caches:[`localStorage`],excludeCacheFor:[`cimode`],convertDetectedLanguage:e=>e}),Ct=class{constructor(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{};this.type=`languageDetector`,this.detectors={},this.init(e,t)}init(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{languageUtils:{}},t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};this.services=e,this.options=nt(t,this.options||{},St()),typeof this.options.convertDetectedLanguage==`string`&&this.options.convertDetectedLanguage.indexOf(`15897`)>-1&&(this.options.convertDetectedLanguage=e=>e.replace(`-`,`_`)),this.options.lookupFromUrlIndex&&(this.options.lookupFromPathIndex=this.options.lookupFromUrlIndex),this.i18nOptions=n,this.addDetector(st),this.addDetector(ct),this.addDetector(ft),this.addDetector(ht),this.addDetector(gt),this.addDetector(_t),this.addDetector(vt),this.addDetector(yt),this.addDetector(lt)}addDetector(e){return this.detectors[e.name]=e,this}detect(){let e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:this.options.order,t=[];return e.forEach(e=>{if(this.detectors[e]){let n=this.detectors[e].lookup(this.options);n&&typeof n==`string`&&(n=[n]),n&&(t=t.concat(n))}}),t=t.filter(e=>e!=null&&!rt(e)).map(e=>this.options.convertDetectedLanguage(e)),this.services&&this.services.languageUtils&&this.services.languageUtils.getBestMatchFromCodes?t:t.length>0?t[0]:null}cacheUserLanguage(e){let t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:this.options.caches;t&&(this.options.excludeCacheFor&&this.options.excludeCacheFor.indexOf(e)>-1||t.forEach(t=>{this.detectors[t]&&this.detectors[t].cacheUserLanguage(e,this.options)}))}};Ct.type=`languageDetector`;var wt={en:{translation:{nav:{printers:`Printers`,archives:`Archives`,queue:`Print Queue`,stats:`Statistics`,profiles:`Profiles`,maintenance:`Maintenance`,projects:`Projects`,inventory:`Filament`,files:`File Manager`,makerworld:`MakerWorld`,notifications:`Notifications`,settings:`Settings`,system:`System`,collapseSidebar:`Collapse sidebar`,expandSidebar:`Expand sidebar`,update:`Update`,updateAvailable:`Update available: v{{version}}`,updateAvailableBanner:`Version {{version}} is available!`,viewUpdate:`View update`,viewOnGithub:`View on GitHub`,keyboardShortcuts:`Keyboard shortcuts (?)`,switchToLight:`Switch to light mode`,switchToDark:`Switch to dark mode`,switchToSystem:`Switch to system mode`,smartSwitches:`Smart Switches`,logout:`Logout`,installApp:`Install app`,installAppSuccess:`Bambuddy was installed`},common:{save:`Save`,saving:`Saving...`,cancel:`Cancel`,delete:`Delete`,edit:`Edit`,add:`Add`,close:`Close`,confirm:`Confirm`,loading:`Loading...`,error:`Error`,errorLoading:`Error loading data`,retry:`Retry`,success:`Success`,warning:`Warning`,enabled:`Enabled`,disabled:`Disabled`,yes:`Yes`,no:`No`,on:`On`,off:`Off`,all:`All`,none:`None`,search:`Search`,filter:`Filter`,sort:`Sort`,refresh:`Refresh`,download:`Download`,upload:`Upload`,uploading:`Uploading...`,uploadFailed:`Upload failed`,actions:`Actions`,status:`Status`,name:`Name`,description:`Description`,date:`Date`,time:`Time`,hours:`hours`,minutes:`minutes`,seconds:`seconds`,days:`days`,enable:`Enable`,disable:`Disable`,permissions:`Permissions`,noPrinters:`No printers configured`,noData:`No data available`,linkNotFound:`Link not found`,required:`Required`,optional:`Optional`,dismiss:`Dismiss`,apply:`Apply`,reset:`Reset`,export:`Export`,import:`Import`,clear:`Clear`,selectAll:`Select All`,deselectAll:`Deselect All`,noChange:`— No change —`,unchanged:`Unchanged`,unassigned:`Unassigned`,unknown:`Unknown`,unknownError:`Unknown error`,today:`Today`,tomorrow:`Tomorrow`,asap:`ASAP`,overdue:`Overdue`,now:`Now`,collapse:`Collapse`,expand:`Expand`,previous:`Previous`,next:`Next`,viewArchive:`View archive`,viewInFileManager:`View in File Manager`,addedBy:`Added by {{username}}`,prints:`prints`,more:`+{{count}} more`,ascending:`Ascending`,descending:`Descending`,back:`Back`,copy:`Copy`,copied:`Copied!`,printer:`Printer`,remove:`Remove`,type:`Type`,print:`Print`,rename:`Rename`,move:`Move`,create:`Create`,duplicate:`Duplicate`,left:`Left`,right:`Right`},printers:{title:`Printers`,addPrinter:`Add Printer`,addPreflight:{checking:`Checking connection...`,warning:`Some connection checks failed. This printer may show as offline. Review the checks below, fix what you can, or save anyway.`,back:`Back`,saveAnyway:`Save anyway`},editPrinter:`Edit Printer`,deletePrinter:`Delete Printer`,printerName:`Printer Name`,serialNumber:`Serial Number`,ipAddress:`IP Address / Hostname`,accessCode:`Access Code`,model:`Model`,nozzleCount:`Nozzle Count`,autoArchive:`Auto Archive`,status:{available:`Available`,idle:`Idle`,printing:`Printing`,paused:`Paused`,offline:`Offline`,problem:`Problem`,error:`Error`,finished:`Finished`,unknown:`Unknown`},temperatures:{nozzle:`Nozzle`,bed:`Bed`,chamber:`Chamber`},heaterHistory:{title:`Heater History`,openLabel:`View heater history`,nozzle:`Nozzle`,nozzle2:`Nozzle 2`,bed:`Bed`,chamber:`Chamber`,error:`Failed to load history`,empty:`No data recorded yet`},progress:`{{percent}}% complete`,timeRemaining:`{{time}} remaining`,deleteConfirm:`Are you sure you want to delete "{{name}}"?`,maintenanceOk:`Maintenance OK`,maintenanceWarning:`{{count}} warning`,maintenanceWarning_plural:`{{count}} warnings`,maintenanceDue:`{{count}} due`,maintenanceDue_plural:`{{count}} due`,sort:{name:`Name`,status:`Status`,model:`Model`,location:`Location`,eta:`ETA`,ascending:`Sort ascending`,descending:`Sort descending`},cardSize:{small:`Small cards`,medium:`Medium cards`,large:`Large cards`,extraLarge:`Extra large cards`},pageView:{cards:`Cards`,camWall:`Cam wall`},camWall:{noPrinters:`No printers to show`,noSignal:`No signal`,live:`Live`,snap:`Snap`,off:`Off`,summary:`{{live}} live, {{snap}} snapshots, {{total}} total`,layer:`Layer {{cur}}/{{total}}`,timeLeft:`{{time}} left`,statusMode:{off:`Off`,compact:`Compact`,full:`Full`},settings:{title:`Cam wall settings`,maxLive:`Max live streams`,maxLiveHint:`How many tiles stream live at once. Others refresh as snapshots.`,snapshotInterval:`Snapshot interval (seconds)`,snapshotIntervalHint:`How often non-live tiles fetch a fresh snapshot.`,statusOverlay:`Status overlay`,statusOverlayHint:`Compact: state badge only. Full: + progress, layer, time left.`}},hideOffline:`Hide offline`,nextAvailable:`Next available`,powerOn:`Power On`,offlinePrintersWithPlugs:`Offline printers with smart plugs`,noPrintersConfigured:`No printers configured yet`,search:`Search printers...`,noSearchResults:`No printers match your search or filters`,filter:{allStatuses:`All statuses`,allLocations:`All locations`},toolbar:{filters:`Filters`,view:`View`,actions:`Actions`},readyToPrint:`Ready to print`,external:`External`,extL:`Ext-L`,extR:`Ext-R`,deleteArchives:`Delete print archives`,noLabel:`No label`,printPreview:`Print preview`,width:`Width`,height:`Height`,noObjectsFound:`No objects found`,objectsLoadedOnPrintStart:`Objects are loaded when a print starts`,willBeSkipped:`Will be skipped`,name:`Name`,serialCannotBeChanged:`Serial number cannot be changed`,locationHelp:`Used to group printers and filter queue jobs`,wifiSignal:{veryWeak:`Very weak`,weak:`Weak`,fair:`Fair`,good:`Good`,excellent:`Excellent`},maintenanceUpToDate:`All maintenance up to date - Click to view`,maintenance:{title:`In Maintenance`,subtitle:`This printer is paused — not connected, not eligible for the queue, not sending notifications.`,pillLabel:`Maintenance`,exitButton:`Exit maintenance`,menuEnter:`Enter maintenance mode`,menuExit:`Exit maintenance mode`,toastEntered:`{{name}} is now in maintenance mode`,toastExited:`{{name}} is back online`,confirmMidPrintTitle:`Enter maintenance mode mid-print?`,confirmMidPrintMessage:`{{name}} is currently printing. Entering maintenance mode will disconnect MQTT and stop progress tracking and completion notifications for this job. Continue?`,editFieldLabel:`Maintenance mode`,editFieldHelp:`When on, this printer is paused from MQTT, queue dispatch and notifications — useful for repair, parallel Bambuddy installs, or temporary suspension.`},chamberLightOn:`Turn on chamber light`,chamberLightOff:`Turn off chamber light`,files:`Files`,browseFiles:`Browse printer files`,autoOffAfterPrint:`Auto power-off after print`,autoOffExecuted:`Auto-off was executed - turn printer on to reset`,hmsErrors:`HMS Errors`,viewHmsErrors:`View {{count}} HMS error(s)`,resume:`Resume`,pause:`Pause`,stop:`Stop`,camera:`Camera`,skipObject:`Skip Object`,reconnect:`Reconnect`,forceRefresh:`Force Refresh`,forceRefreshSuccess:`Refresh requested`,mqttDebug:`MQTT Debug`,printerInformation:`Printer Information`,copyToClipboard:`Copy`,copied:`Copied!`,state:`State`,wifiSignalLabel:`WiFi Signal`,developerMode:`Developer Mode`,enabled:`Enabled`,disabled:`Disabled`,addedOn:`Added`,sdCard:`SD Card`,inserted:`Inserted`,notInserted:`Not inserted`,totalPrintHours:`Print Hours`,activeNozzle:`Active: {{nozzle}} nozzle`,nozzleRack:`Nozzle Rack`,nozzleDocked:`Docked`,nozzleMounted:`Mounted`,nozzleActive:`Active`,nozzleIdle:`Idle`,nozzleDiameter:`Diameter`,nozzleType:`Type`,nozzleStatus:`Status`,nozzleFilament:`Filament`,nozzleWear:`Wear`,nozzleMaxTemp:`Max Temp`,nozzleSerial:`Serial`,nozzleHardenedSteel:`Hardened Steel`,nozzleStainlessSteel:`Stainless Steel`,nozzleTungstenCarbide:`Tungsten Carbide`,nozzleFlow:`Flow`,nozzleHighFlow:`High Flow`,nozzleStandardFlow:`Standard`,firmwareUpdate:`Firmware Update`,firmwareInstructions:`On the printer's touchscreen, go to`,firmwareNav:`Navigate to`,settings:`Settings`,firmware:`Firmware`,discoverPrinters:`Discover Printers`,searching:`Searching...`,manualEntry:`Manual Entry`,addFromCloud:`Add from Cloud`,toast:{printerDeleted:`Printer deleted`,missingSpoolAssignment:`Print started on {{printer}}. Missing spool assignment for: {{slots}}`,printerAdded:`Printer added`,printerUpdated:`Printer updated`,failedToDelete:`Failed to delete printer`,failedToAdd:`Failed to add printer`,connectionFailedNotAdded:`Could not connect to the printer. Verify the IP, serial number, and access code, and confirm LAN-only mode is on. The printer was not added.`,failedToUpdate:`Failed to update printer`,commandSent:`Command sent`,failedToSendCommand:`Failed to send command`,turnedOn:`{{name}} turned on`,failedToPowerOn:`Failed to power on {{name}}`,scriptTriggered:`Script triggered`,printStopped:`Print stopped`,printPaused:`Print paused`,printResumed:`Print resumed`,referenceDeleted:`Reference deleted`,detectionAreaSaved:`Detection area saved`,failedToRunScript:`Failed to run script`,failedToStopPrint:`Failed to stop print`,failedToPausePrint:`Failed to pause print`,failedToResumePrint:`Failed to resume print`,failedToControlChamberLight:`Failed to control chamber light`,failedToSetSpeed:`Failed to set print speed`,failedToUpdateSetting:`Failed to update setting`,failedToSkipObjects:`Failed to skip objects`,failedToRereadRfid:`Failed to re-read RFID`,failedToCheckPlate:`Failed to check plate`,failedToUpdateLabel:`Failed to update label`,failedToDeleteReference:`Failed to delete reference`,failedToSaveDetectionArea:`Failed to save detection area`,plateCheckEnabled:`Plate check enabled`,plateCheckDisabled:`Plate check disabled`,calibrationSaved:`Calibration saved!`,calibrationFailed:`Calibration failed`,rfidRereadInitiated:`RFID re-read initiated`,loadInitiated:`Loading filament…`,unloadInitiated:`Unloading filament…`,failedToLoad:`Failed to load filament`,failedToUnload:`Failed to unload filament`},connection:{connected:`Connected`,offline:`Offline`},plateStatus:{markCleared:`Mark plate as cleared`,cleared:`Plate Clear`,notCleared:`Plate not Clear`,inUse:`Plate in Use`},queue:{inQueue:`{{count}} print in queue`,inQueue_plural:`{{count}} prints in queue`},controls:`Controls`,rfid:{reread:`Re-read RFID`},ams:{load:`Load`,unload:`Unload`},bedJog:{title:`Jog Controls`,bed:`Bed`,step:`Step (mm)`,up:`Move plate up`,down:`Move plate down`,disabledWhilePrinting:`Disabled while printing`,notHomedTitle:`Printer is not homed`,notHomedMessage:`The printer has not been homed since the last print. Run auto-home first for safe positioning (parks the toolhead, then homes X, Y, and Z), or move anyway — soft endstops will be bypassed.`,homeZ:`Auto Home`,moveAnyway:`Move anyway`,homingStarted:`Auto-homing printer…`},permission:{noAdd:`You do not have permission to add printers`,noEdit:`You do not have permission to edit printers`,noDelete:`You do not have permission to delete printers`,noControl:`You do not have permission to control printers`,noFiles:`You do not have permission to access printer files`,noAmsRfid:`You do not have permission to re-read AMS RFID`,noSmartPlugControl:`You do not have permission to control smart plugs`,noCamera:`You do not have permission to view cameras`},modal:{addTitle:`Add Printer`,editTitle:`Edit Printer`,myPrinter:`My Printer`,selectModel:`Select model...`,locationGroup:`Location / Group (optional)`,locationPlaceholder:`e.g., Workshop, Office, Basement`,autoArchiveLabel:`Auto-archive completed prints`,fromPrinterSettings:`From printer settings`,modelOptional:`Model (optional)`,saveChanges:`Save Changes`},skipObjects:{tooltip:`Skip objects`,onlyWhilePrinting:`Skip objects (only while printing)`,requiresMultiple:`Skip objects (requires 2+ objects)`,title:`Skip Objects`,matchIdsInfo:`Match IDs with your printer display`,printerShowsIds:`The printer screen shows object IDs on the build plate`,skipSelected:`Skip Selected`,skipping:`Skipping...`,noObjectsSelected:`No objects selected`,selectObjectsToSkip:`Select objects you want to skip from the current print`,skipped:`skipped`,objectsSkipped:`Objects skipped`,activeCount:`{{count}} active`,waitForLayer:`Wait for layer 2+ to skip objects (currently layer {{layer}})`,skip:`Skip`,confirmTitle:`Skip Object?`,confirmMessage:`Are you sure you want to skip "{{name}}"? This cannot be undone.`},confirm:{deleteTitle:`Delete Printer`,deleteMessage:`Are you sure you want to delete "{{name}}"? This will remove all connection settings.`,deleteArchivesNote:`All print history for this printer will be permanently deleted.`,keepArchivesNote:`Print history will be kept but no longer associated with this printer.`,stopTitle:`Stop Print`,stopMessage:`Are you sure you want to stop the current print on "{{name}}"? This will cancel the print job.`,stopButton:`Stop Print`,pauseTitle:`Pause Print`,pauseMessage:`Are you sure you want to pause the current print on "{{name}}"?`,pauseButton:`Pause Print`,resumeTitle:`Resume Print`,resumeMessage:`Are you sure you want to resume the print on "{{name}}"?`,resumeButton:`Resume Print`,powerOnTitle:`Power On Printer`,powerOnMessage:`Are you sure you want to turn ON the power for "{{name}}"?`,powerOnButton:`Power On`,powerOffTitle:`Power Off Printer`,powerOffMessage:`Are you sure you want to turn OFF the power for "{{name}}"?`,powerOffWarning:`WARNING: "{{name}}" is currently printing! Are you sure you want to turn OFF the power? This will interrupt the print and may damage the printer.`,powerOffButton:`Power Off`,haToggleTitle:`Toggle "{{name}}"`,haToggleMessage:`Toggle the Home Assistant entity {{entity}}? This may turn power off if it is currently on.`,haToggleWarning:`WARNING: "{{name}}" is currently printing! Toggling {{entity}} may cut power and interrupt the print. Continue?`,haToggleButton:`Toggle`},bulk:{select:`Select`,selectAll:`Select All`,selectByLocation:`Select by Location`,selected:`{{count}} selected`,actions:{stop:`Stop`,pause:`Pause`,resume:`Resume`,clearPlate:`Clear Bed`,clearHMS:`Clear Notifications`},confirm:{stopTitle:`Stop {{count}} Prints`,stopMessage:`This will cancel active prints on {{count}} printer(s). This action cannot be undone.`,stopButton:`Stop All`,pauseTitle:`Pause {{count}} Prints`,pauseMessage:`This will pause active prints on {{count}} printer(s).`,pauseButton:`Pause All`,clearPlateTitle:`Clear {{count}} Print Beds`,clearPlateMessage:`This will clear the print bed on {{count}} printer(s) and may trigger queued jobs.`,clearPlateButton:`Clear All`},success:`{{action}} completed on {{count}} printer(s)`,partial:`{{succeeded}} succeeded, {{failed}} failed`,noneApplicable:`No selected printers are in the right state for this action`,selectByState:`Select by State`},discovery:{title:`Discover Printers`,searching:`Searching...`,scanning:`Scanning...`,scanProgress:`Scanning... {{scanned}}/{{total}}`,foundPrinters:`Found {{count}} printer(s)`,noPrintersFound:`No printers found`,noPrintersFoundSubnet:`No printers found in the specified subnet.`,noPrintersFoundNetwork:`No printers found on the network.`,allConfigured:`All discovered printers are already configured.`,alreadyAdded:`Already added`,select:`Select`,manualEntry:`Manual Entry`,addFromCloud:`Add from Cloud`,subnetToScan:`Subnet to scan`,dockerNote:`Docker detected. Enter your printer's subnet in CIDR notation. Requires network_mode: host in docker-compose.yml.`,scanSubnet:`Scan Subnet for Printers`,discoverNetwork:`Discover Printers on Network`,scanningSubnet:`Scanning subnet for Bambu printers...`,scanningNetwork:`Scanning network...`,serialRequired:`Serial required`,unknown:`Unknown`,failedToStart:`Failed to start discovery`,customSubnetOption:`Custom subnet...`,customSubnetLabel:`Custom subnet (CIDR)`,customSubnetNote:`Use a custom subnet if your printer is on a different network than this server. The FTP (990) and MQTT (8883) ports must be reachable across the routing boundary.`},drying:{start:`Start Drying`,stop:`Stop Drying`,temperature:`Temperature`,duration:`Duration`,hours:`hours`,timeRemaining:`{{time}} left`,active:`Drying`,targetSummary:`{{filament}} @ {{temp}}°C`,notSupported:`Drying not supported`,powerRequired:`Connect AMS power adapter to enable drying`,startingDrying:`Starting drying...`,stoppingDrying:`Stopping drying...`,rotateTray:`Rotate spool during drying`,rotateUnavailableReason:`Unavailable — a slot in this AMS is loaded to the toolhead. The spool is locked by the feed tube and cannot rotate. Retract the filament first.`},amsBackup:{titleOn:`AMS Filament Backup is ON. Click to disable.`,titleOff:`AMS Filament Backup is OFF. Click to enable.`,titleUnknown:`AMS Filament Backup status unavailable on this printer.`,toastEnabled:`AMS Filament Backup enabled`,toastDisabled:`AMS Filament Backup disabled`,modalTitle:`AMS Filament Backup`,modalHelp:`When the active slot runs out, the printer cycles through any matching same-preset, same-colour slots in this order.`,modalNoSlots:`No filament loaded.`,modalNoPairs:`No backup pairs — no two slots share the same filament profile and colour.`,extruderRightShort:`R`,extruderLeftShort:`L`,stateOn:`Enabled`,stateOff:`Disabled`,stateUnknown:`Unsupported on this printer`},activeJobSlot:{title:`This slot is filament {{n}} in the active print`,ariaLabel:`Active print slot {{n}}`},filaments:`Filaments`,openCameraOverlay:`Open camera overlay`,openCameraWindow:`Open camera in new window`,firmwareUpdateAvailable:`Firmware update available: {{current}} → {{latest}}`,firmwareUpToDate:`Firmware {{version}} — Up to date`,firmwareUpdateButton:`Update`,plateDetection:{noPermission:`You do not have permission to update printers`,enabledClick:`Plate check enabled - Click to disable`,disabledClick:`Plate check disabled - Click to enable`,manageCalibration:`Manage plate detection calibration`,calibrationRequired:`Calibration Required`,calibrationInstructions:`Please ensure the build plate is completely empty, then click Calibrate.`,calibrationDescription:`Calibration captures a reference image of the empty plate. Future checks will compare against this reference to detect objects.`,calibrationTip:`Tip: You can store up to 5 calibrations for different plates. The system automatically uses the best match when checking.`,plateEmpty:`Plate appears empty`,objectsDetected:`Objects detected on plate`,confidence:`Confidence`,difference:`Difference`,analysisPreview:`Analysis preview:`,analysisLegend:`Green box = detection area, Red overlay = differences from calibration`,savedReferences:`Saved References ({{count}}/{{max}})`,deleteReference:`Delete reference`,labelPlaceholder:`Label...`,clickToEdit:`{{label}} - Click to edit`,clickToAddLabel:`Click to add label`},speed:{title:`Print Speed`,silent:`Silent (50%)`,standard:`Standard (100%)`,sport:`Sport (124%)`,ludicrous:`Ludicrous (166%)`},airduct:{title:`Airduct Mode`,cooling:`Cooling`,heating:`Heating`},noSdCard:`No SD`,door:{open:`Open`,closed:`Closed`},fans:{partCooling:`Part Cooling Fan`,auxiliary:`Auxiliary Fan`,chamber:`Chamber Fan`},clickToViewHmsErrors:`Click to view HMS errors`,estimatedCompletion:`Estimated completion time`,plateNumber:`Plate {{number}}`,slotOptions:`Slot options`,amsPopup:{friendlyName:`AMS Name`,friendlyNamePlaceholder:`e.g. AMS Friendly Name`,serialNumber:`Serial Number`,firmwareVersion:`Firmware`,save:`Save`,clear:`Clear`,noEditPermission:`You do not have permission to rename AMS units`},firmwareModal:{title:`Firmware Update`,titleUpToDate:`Firmware Info`,currentVersion:`Current:`,latestVersion:`Latest:`,releaseNotes:`Release Notes`,checkingPrereqs:`Checking prerequisites...`,sdCardReady:`SD card ready. Click below to upload firmware.`,uploadedSuccess:`Firmware uploaded to SD card!`,applyInstructions:`To apply the update on your printer:`,step1:`On the printer's touchscreen, go to Settings`,step2:`Navigate to Firmware`,step3:`Select Update from SD card`,step4:`The update will take 10-20 minutes`,done:`Done`,starting:`Starting...`,uploadFirmware:`Upload Firmware`,uploadFailed:`Failed to start upload: {{error}}`,uploadedToast:`Firmware uploaded! Trigger update from printer screen.`,availableVersions:`Available versions`,usable:`Usable`,unavailable:`Unavailable`,installed:`Installed`,newerBadge:`newer`,olderBadge:`older`,currentBadge:`current`},accessCodePlaceholder:`Leave empty to keep current`,roi:{title:`Detection Area (ROI)`,xStart:`X Start`,yStart:`Y Start`,width:`Width`,height:`Height`,instruction:`Adjust the detection area to focus on the build plate. The green box in the preview shows the current area.`},developerModeWarning:`Developer LAN mode is not enabled on: {{names}}. Some features may not work.`,howToEnable:`How to enable`,incompatibleFile:`This file was sliced for {{slicedFor}}, but this printer is a {{printerModel}}`,dropNotPrintable:`Only .gcode and .gcode.3mf files can be printed`,dropToPrint:`Drop to print`,cannotPrint:`Printer busy`},archives:{title:`Print Archives`,no3mfBanner:{title:`Some recent prints couldn't be archived with thumbnails`,body:`The slicer didn't leave the .gcode.3mf on the printer's SD card, so Bambuddy couldn't pull the thumbnail or slicer metadata. This is usually because "Store sent files on external storage" is off in the slicer (Bambu Studio / OrcaSlicer Device tab).`,docsLink:`See install step 4`,dismissLabel:`Dismiss this notice`},searchPlaceholder:`Search archives...`,filterByPrinter:`Filter by printer`,filterByStatus:`Filter by status`,sortBy:`Sort by`,sortNewest:`Newest first`,sortOldest:`Oldest first`,sortName:`Name`,sortDuration:`Duration`,sortLargest:`Largest first`,sortSmallest:`Smallest first`,sortSize:`Size`,noArchives:`No archives found`,noArchivesSearch:`No archives match your search`,originalPrintNotVisible:`Original print not visible - try clearing filters`,noArchivesYet:`No archives yet`,prints:`prints`,pagination:{showing:`Showing`,to:`to`,of:`of`,show:`Show`,page:`Page`,all:`All`},loadingArchives:`Loading archives...`,releaseToUpload:`Release to upload`,showAll:`Show all`,showFavoritesOnly:`Show favorites only`,gridView:`Grid view`,listView:`List view`,calendarView:`Calendar view`,logView:`Print Log`,manageTags:`Manage Tags`,showFailedPrints:`Show failed prints`,hideFailedPrints:`Hide failed prints`,hideDuplicates:`Hide Duplicates`,viewOriginalPrint:`Click to view original print (#{{id}})`,printTime:`Print Time`,filamentUsed:`Filament Used`,cost:`Cost`,preview:`Preview`,deleteArchive:`Delete Archive`,deleteConfirm:`Are you sure you want to delete this archive?`,favorite:`Favorite`,unfavorite:`Remove from favorites`,viewDetails:`View Details`,status:{completed:`Completed`,failed:`Failed`,stopped:`Stopped`},toast:{source3mfAttached:`Source 3MF attached: {{filename}}`,failedUploadSource3mf:`Failed to upload source 3MF`,source3mfRemoved:`Source 3MF removed`,failedRemoveSource3mf:`Failed to remove source 3MF`,f3dAttached:`F3D attached: {{filename}}`,failedUploadF3d:`Failed to upload F3D`,f3dRemoved:`F3D removed`,failedRemoveF3d:`Failed to remove F3D`,timelapseAttached:`Timelapse attached: {{filename}}`,timelapseAlreadyAttached:`Timelapse already attached`,noMatchingTimelapse:`No matching timelapse found`,failedScanTimelapse:`Failed to scan for timelapse`,failedAttachTimelapse:`Failed to attach timelapse`,timelapseRemoved:`Timelapse removed`,failedRemoveTimelapse:`Failed to remove timelapse`,timelapseUploaded:`Timelapse uploaded: {{filename}}`,failedUploadTimelapse:`Failed to upload timelapse`,archiveDeleted:`Archive deleted`,failedDeleteArchive:`Failed to delete archive`,addedToFavorites:`Added to favorites`,removedFromFavorites:`Removed from favorites`,projectUpdated:`Project updated`,failedUpdateProject:`Failed to update project`,linkCopied:`Link copied to clipboard`,failedCopyLink:`Failed to copy link`,photoDeleted:`Photo deleted`,failedDeletePhoto:`Failed to delete photo`,failedDeleteArchives:`Failed to delete archives`,failedUpdateFavorites:`Failed to update favorites`,exportDownloaded:`Export downloaded`,exportFailed:`Export failed`},menu:{print:`Print`,openInBambuStudio:`Open in Slicer`,slice:`Slice`,externalLink:`External Link`,viewOnMakerWorld:`View on MakerWorld`,preview3d:`3D Preview`,viewTimelapse:`View Timelapse`,scanForTimelapse:`Scan for Timelapse`,uploadTimelapse:`Upload Timelapse`,removeTimelapse:`Remove Timelapse`,downloadSource3mf:`Download Source 3MF`,uploadSource3mf:`Upload Source 3MF`,replaceSource3mf:`Replace Source 3MF`,removeSource3mf:`Remove Source 3MF`,uploadF3d:`Upload F3D`,replaceF3d:`Replace F3D`,downloadF3d:`Download F3D`,removeF3d:`Remove F3D`,download:`Download`,copyDownloadLink:`Copy Download Link`,qrCode:`QR Code`,viewPhotos:`View Photos`,viewPhotosCount:`View Photos ({{count}})`,projectPage:`Project Page`,addToFavorites:`Add to Favorites`,removeFromFavorites:`Remove from Favorites`,edit:`Edit`,printLog:`Print Log`,goToProject:`Go to Project: {{name}}`,addToProject:`Add to Project`,removeFromProject:`Remove from Project`,loading:`Loading...`,noProjectsAvailable:`No projects available`,searchProjects:`Search projects…`,select:`Select`,deselect:`Deselect`,delete:`Delete`},permission:{noReprint:`You do not have permission to reprint this archive`,noAddToQueue:`You do not have permission to add to queue`,noUpdateArchives:`You do not have permission to update archives`,noUploadFiles:`You do not have permission to upload files`,noDownload:`You do not have permission to download archives`,noCopyLink:`You do not have permission to copy download links`,noDelete:`You do not have permission to delete this archive`,noEdit:`You do not have permission to edit this entry`,noCreate:`You do not have permission to create archives`},platePicker:{title:`Select plate to preview`,hint:`This archive has multiple plates. Pick one to open in the GCode viewer.`,plateLabel:`Plate {{index}}`,objectCount:`{{count}} object`,objectCount_plural:`{{count}} objects`,noGcode:`This archive has no sliced G-code to preview. Open it in Bambu Studio to slice first.`},card:{previousPlate:`Previous plate`,nextPlate:`Next plate`,plateNumber:`Plate {{index}}`,moreOptions:`Right-click for more options`,addToFavorites:`Add to favorites`,removeFromFavorites:`Remove from favorites`,cancelled:`cancelled`,failed:`failed`,duplicate:`duplicate`,duplicateTitle:`This model has been printed before`,openSource3mf:`Open source 3MF in Bambu Studio (right-click for more options)`,downloadF3d:`Download Fusion 360 design file`,viewTimelapse:`View timelapse`,viewPhoto:`View 1 photo`,viewPhotos:`View {{count}} photos`,openFolder:`Open folder: {{name}}`,slicedFile:`Sliced file - ready to print`,sourceFile:`Source file only - no AMS mapping available`,gcode:`GCODE`,source:`SOURCE`,project:`Project: {{name}}`,runsBadge:`{{count}} prints`,runsBadgeTitle:`{{count}} prints total — {{successful}} successful, {{failed}} failed. Click to see the full print log.`,estimated:`Estimated: {{time}}`,actual:`Actual: {{time}}`,accuracy:`Accuracy: {{percent}}%`,filament:`{{weight}}g`,layer:`{{count}} layer`,layers:`{{count}} layers`,object:`{{count}} object`,objects:`{{count}} objects`,slicedFor:`Sliced for {{model}}`,uploadedBy:`Uploaded By`,noPermissionReprint:`You do not have permission to reprint`,noFileForReprint:`No 3MF file available — the file could not be downloaded from the printer when the print was recorded`,noPermissionEdit:`You do not have permission to edit archives`,noPermissionDelete:`You do not have permission to delete archives`,openInBambuStudio:`Open in Slicer`,openInBambuStudioToSlice:`Open in Slicer to slice`,slice:`Slice`,externalLink:`External Link`,makerWorld:`MakerWorld: {{designer}}`,viewProject:`View project`,noExternalLink:`No external link`,preview3d:`3D Preview`,download:`Download`,edit:`Edit`,delete:`Delete`},runLog:{title:`Print Log`,modalTitle:`Print Log — {{name}}`,modalTitleFallback:`this archive`,empty:`No print events recorded for this archive yet.`,col:{date:`Date`,status:`Status`,duration:`Duration`,filament:`Filament`,cost:`Cost`},status:{completed:`Completed`,failed:`Failed`,cancelled:`Cancelled`,stopped:`Stopped`,skipped:`Skipped`,printing:`Printing`}},modal:{deleteArchive:`Delete Archive`,deleteConfirm:`Are you sure you want to delete "{{name}}"? This action cannot be undone.`,deleteButton:`Delete`,deletePurgeStats:`Also remove this print from Quick Stats (filament, time, cost, energy)`,deleteQueueItemsWarning:`{{count}} queue item(s) linked to this archive will also be removed.`,deleteBlockedByPrinting:`Cannot delete — {{count}} queue item(s) are currently printing. Stop the print first, then retry.`,removeSource3mf:`Remove Source 3MF`,removeSource3mfConfirm:`Are you sure you want to remove the source 3MF file from "{{name}}"? This will delete the original slicer project file.`,removeButton:`Remove`,removeF3d:`Remove F3D`,removeF3dConfirm:`Are you sure you want to remove the Fusion 360 design file from "{{name}}"?`,removeTimelapse:`Remove Timelapse`,removeTimelapseConfirm:`Are you sure you want to remove the timelapse video from "{{name}}"?`,timelapse:`{{name}} - Timelapse`,selectTimelapse:`Select Timelapse`,selectTimelapseDesc:`No auto-match found. Select the timelapse for this print:`,deleteArchives:`Delete Archives`,deleteArchivesConfirm:`Are you sure you want to delete {{count}} archive(s)? This action cannot be undone.`,deleteCount:`Delete {{count}}`},page:{title:`Archives`,printsCount:`{{filtered}} of {{total}} prints`,dropFilesHere:`Drop .3mf files here`,releaseToUpload:`Release to upload`,only3mfSupported:`Only .3mf files are supported`,close:`Close`,selected:`{{count}} selected`,selectAll:`Select All`,tags:`Tags`,project:`Project`,favorite:`Favorite`,delete:`Delete`,toggledFavorites:`Toggled favorites for {{count}} archive(s)`,failedUpdateFavorites:`Failed to update favorites`,archivesDeleted:`{{count}} archive(s) deleted`,failedDeleteArchives:`Failed to delete archives`,photoDeleted:`Photo deleted`,failedDeletePhoto:`Failed to delete photo`},list:{name:`Name`,printer:`Printer`,date:`Date`,size:`Size`,actions:`Actions`,hasTimelapse:`Has timelapse`},log:{date:`Date`,printName:`Print Name`,printer:`Printer`,user:`User`,status:`Status`,duration:`Duration`,filament:`Filament`,allPrinters:`All Printers`,allUsers:`All Users`,allStatuses:`All Statuses`,cancelled:`Cancelled`,skipped:`Skipped`,dateFrom:`From`,dateTo:`To`,noEntries:`No print log entries found`,showing:`Showing {{count}} of {{total}} entries`,rowsPerPage:`Rows`,page:`Page`,prev:`Prev`,next:`Next`,clearLog:`Clear Log`,clearLogTitle:`Clear Print Log`,clearLogConfirm:`All print log entries will be permanently deleted. Archives and queue items are not affected. This action cannot be undone. Are you sure?`,clearLogButton:`Clear All`,cleared:`{{count}} log entries cleared`,clearFailed:`Failed to clear print log`,deleteEntryTitle:`Delete print log entry`,deleteEntryConfirm:`This entry will be removed from the log and its filament, time, and cost contributions will drop out of Quick Stats. The matching archive (if any) is not affected. This action cannot be undone.`,entryDeleted:`Print log entry deleted`,entryDeleteFailed:`Failed to delete print log entry`,editEntryTitle:`Edit print log entry`,editEntryDescription:`Classify this print run. The Failure Analysis widget groups by these values, so updates flow through to stats immediately.`,entryUpdated:`Print log entry updated`,entryUpdateFailed:`Failed to update print log entry`,statuses:{completed:`Completed`,failed:`Failed`,stopped:`Stopped`,cancelled:`Cancelled`,skipped:`Skipped`}}},dispatchToast:{untitled:`Print job`,startingPrints:`Starting prints`,progressSummary:`{{complete}}/{{total}} complete • Processing: {{processing}}`,expandDetails:`Expand dispatch details`,collapseDetails:`Collapse dispatch details`,awaitingPrinter:`Awaiting printer…`,status:{processing:`Processing`,completed:`Completed`,failed:`Failed`},failed:{generic:`Dispatch failed`,upload_failed:`Upload to printer failed`,start_command_failed:`Printer rejected start command`},dismiss:`Dismiss`},pipelineRuns:{title:`Pipeline Runs`,loading:`Loading…`,empty:`No pipeline runs yet.`,filter:{pipeline:`Pipeline`,status:`Status`,target:`Target`,all:`All`,allPipelines:`All pipelines`,allStatus:`All statuses`,allTargets:`All targets`,clear:`Clear filters`,noMatches:`No runs match the current filters.`},totalCount_one:`{{n}} run`,totalCount_other:`{{n}} runs`,copies:`{{n}} copies`,failedCount:`{{n}} failed`,copyN:`Copy {{n}}`,retryFailed:`Retry failed`,retryOf:`retry of #{{n}}`,pagination:`{{start}}–{{end}} of {{total}}`,cancelledByUser:`Cancelled by user`,toast:{cancelled:`Run cancelled`,cancelFailed:`Cancel failed`,retryStarted:`Retry started`,retryFailed:`Retry failed`,cleared:`{{n}} runs cleared`,clearFailed:`Clear failed`},clearLog:`Clear log`,clearConfirmTitle:`Clear log?`,clearConfirmBody:`Delete every completed, failed, cancelled, and partial-failure pipeline run? In-flight runs are kept. This cannot be undone.`,clearConfirmAction:`Clear`,jobStatus:{pending:`pending`,awaiting_printer:`awaiting printer`,queued:`queued`,printing:`printing`,completed:`completed`,failed:`failed`,cancelled:`cancelled`}},queue:{title:`Print Queue`,subtitle:`Schedule and manage your print jobs`,filamentShort:{rowBadge:`Insufficient filament for the assigned spool`,rowTooltip:`The dispatch scheduler flagged this item. Click Play to see the per-slot deficit and decide whether to print anyway.`,confirmTitle:`Insufficient filament`,confirmIntro:`The assigned spool cannot satisfy at least one slot. Print anyway?`,lineItem:`Slot {{slot}}: needs {{required}} g, {{remaining}} g remaining`,unknown:`unknown`,printAnyway:`Print Anyway`},editQueueItem:`Edit Queue Item`,selectAllPlates:`Select All {{count}} Plates`,deselectAll:`Deselect All`,printQueued:`Print queued`,printQueuedWillStartWhenIdle:`Will start when printer is idle`,itemsQueued:`{{count}} items queued`,sending:`Sending...`,sendingProgress:`Sending {{current}}/{{total}}...`,adding:`Adding...`,addingProgress:`Adding {{current}}/{{total}}...`,savingProgress:`Saving {{current}}/{{total}}...`,clearQueue:`Clear Queue`,clearHistory:`Clear History`,emptyQueue:`Queue is empty`,position:`Position`,scheduledTime:`Scheduled Time`,moveUp:`Move Up`,moveDown:`Move Down`,startNow:`Start Now`,printingInProgress:`Printing in progress...`,viewArchive:`View archive`,viewInFileManager:`View in File Manager`,itemCount:`{{count}} item`,itemCount_plural:`{{count}} items`,dragToReorder:`Drag to reorder (ASAP only)`,reorderHint:`Position only affects ASAP items. Scheduled items run at their set time.`,sjf:{label:`SJF`,tooltip:`Shortest Job First — scheduler prioritizes shorter prints`},addedBy:`Added by {{name}}`,nextInQueue:`Next in queue`,clearPlateSuccess:`Plate cleared — ready for next print`,plateNumber:`Plate {{index}}`,quantity:`Quantity`,quantityHint:`Creates {{count}} queue items`,activeBatches:`Active Batches`,batchProgress:`{{completed}} of {{total}} completed`,cancelBatch:`Cancel Remaining`,batchCancelled:`Remaining batch items cancelled`,cancelBatchConfirmTitle:`Cancel Batch`,cancelBatchConfirmMessage:`Cancel all remaining pending items in this batch?`,batch:{defaultName:`Batch`,label:`{{count}} item`,label_plural:`{{count}} items`,pendingCount:`{{count}} pending`,pendingCount_plural:`{{count}} pending`,expand:`Expand batch`,collapse:`Collapse batch`,groupAsBatch:`Group as batch…`,groupAsBatchDescription:`Combine the {{count}} selected items into a single collapsible batch.`,nameLabel:`Batch name`,namePlaceholder:`e.g. Friday gifts`,create:`Create batch`,ungroup:`Ungroup`,ungroupConfirmTitle:`Ungroup batch?`,ungroupConfirmMessage:`The items will stay in the queue but no longer be grouped together.`,dragGroup:`Drag group`},tabs:{queue:`Queue`,history:`History`,timeline:`Timeline`,pipelines:`Pipelines`},layout:{flatList:`List`,byPrinter:`By Printer`,groupByPrinter:`Group by Printer`},history:{emptyTitle:`No history yet`,emptyDescription:`Completed, cancelled, and failed prints will appear here.`},dragGhost:{multiCount:`{{count}} items`,batch:`{{name}} ({{count}} copy)`,batch_plural:`{{name}} ({{count}} copies)`},sections:{currentlyPrinting:`Currently Printing`,queued:`Queued`,history:`History`},status:{pending:`Pending`,waiting:`Waiting`,printing:`Printing`,paused:`Paused`,completed:`Completed`,failed:`Failed`,skipped:`Skipped`,cancelled:`Cancelled`},summary:{printing:`Printing`,queued:`Queued`,totalTime:`Total Queue Time`,totalWeight:`Total Queue Weight`,history:`History`},filter:{allPrinters:`All Printers`,unassigned:`Unassigned`,allStatus:`All Status`,allLocations:`All Locations`,any:`Any`},sort:{byPosition:`Sort by Position`,byName:`Sort by Name`,byPrinter:`Sort by Printer`,bySchedule:`Sort by Schedule`,byDate:`Sort by Date`,ascendingOldest:`Ascending (oldest first)`,descendingNewest:`Descending (newest first)`},badges:{staged:`Staged`,requiresPrevious:`Requires previous success`,autoPowerOff:`Auto power off`,gcodeInjection:`G-code`},empty:{title:`No prints scheduled`,description:`Schedule a print from the Archives page using the "Schedule" option in the context menu, or drag and drop files to get started.`},time:{asap:`ASAP`,overdue:`Overdue`,now:`Now`,lessThanMinute:`In less than a minute`,inMinutes:`In {{count}} min`,inHours:`In {{count}} hours`},actions:{startPrint:`Start Print`,stopPrint:`Stop Print`,requeue:`Re-queue`},bulkEdit:{title:`Edit {{count}} Item`,title_plural:`Edit {{count}} Items`,description:`Only changed settings will be applied to selected items.`,printer:`Printer`,noChange:`— No change —`,queueOptions:`Queue Options`,staged:`Staged (manual start)`,autoPowerOff:`Auto power off after print`,requirePrevious:`Require previous success`,printOptions:`Print Options`,bedLevelling:`Bed levelling`,flowCalibration:`Flow calibration`,vibrationCalibration:`Vibration calibration`,layerInspection:`First layer inspection`,timelapse:`Timelapse`,useAms:`Use AMS`,nozzleOffsetCali:`Nozzle offset calibration`,applyChanges:`Apply Changes`,selectAll:`Select All`,deselectAll:`Deselect All`,selected:`{{count}} selected`,editSelected:`Edit Selected`,cancelSelected:`Cancel Selected`},confirm:{cancelTitle:`Cancel Scheduled Print`,cancelMessage:`Are you sure you want to cancel "{{name}}"?`,stopTitle:`Stop Print`,stopMessage:`Are you sure you want to stop the current print "{{name}}"? This will cancel the print job on the printer.`,removeTitle:`Remove from History`,removeMessage:`Are you sure you want to remove "{{name}}" from the queue history?`,clearHistoryTitle:`Clear History`,clearHistoryMessage:`Are you sure you want to remove all {{count}} item(s) from the history?`,cancelButton:`Cancel Print`,stopButton:`Stop Print`,thisPrint:`this print`,thisItem:`this item`},toast:{cancelled:`Queue item cancelled`,cancelFailed:`Failed to cancel item`,removed:`Queue item removed`,removeFailed:`Failed to remove item`,stopped:`Print stopped`,stopFailed:`Failed to stop print`,released:`Print released to queue`,startFailed:`Failed to start print`,reorderFailed:`Failed to reorder queue`,historyCleared:`Cleared {{count}} history item(s)`,clearHistoryFailed:`Failed to clear history`,updateFailed:`Failed to update items`,bulkCancelled:`Cancelled {{count}} item(s)`,bulkCancelFailed:`Failed to cancel items`,batchCreated:`Batch "{{name}}" created`,batchCreateFailed:`Failed to create batch`,batchUngrouped:`Ungrouped {{count}} item(s)`,batchUngroupFailed:`Failed to ungroup batch`,resumedAfterFailure:`Resumed queue — {{restored}} job(s) restored to pending`,resumeAfterFailureFailed:`Failed to resume queue`},resumeAfterFailure:{banner:`{{printer}} is blocked by a previous-print failure — {{count}} job(s) skipped`,bannerHint:`Fix the printer issue, then resume to restore the skipped jobs and clear the gate.`,button:`Resume after failure`,confirmTitle:`Resume queue after failure?`,confirmMessage:`Restore {{count}} skipped job(s) on {{printer}} to pending and clear the previous-print gate. Make sure the printer is ready before continuing.`},timeline:{listView:`List`,timelineView:`Timeline`,unassigned:`Unassigned`,noData:`No scheduled prints for this day`,nothingCommitted:`No committed schedules in this window. Staged items, waiting items, and ASAP jobs on idle printers are not shown — set a scheduled time or release a staged item to see it here.`,allDoneBy:`All prints estimated done by {{time}}`,staged:`Staged`,filterAll:`Show All`,filterPrinting:`Printing`,filterQueued:`Queued`,time:{anyMoment:`any moment`,minutesLeft:`{{minutes}}m left`,hoursLeft:`{{hours}}h left`,hoursMinutesLeft:`{{hours}}h {{minutes}}m left`},day:{previous:`Previous day`,next:`Next day`,today:`Today`},window:{back12h:`Back 12 hours`,forward12h:`Forward 12 hours`,now:`Now`},printerColumnHeader:`Printer`},permissions:{noStopPrint:`You do not have permission to stop prints`,noStartPrint:`You do not have permission to start prints`,noEdit:`You do not have permission to edit this queue item`,noCancel:`You do not have permission to cancel this queue item`,noRequeue:`You do not have permission to re-queue items`,noRemove:`You do not have permission to remove this queue item`,noClearHistory:`You do not have permission to clear all history`,noEditItems:`You do not have permission to edit queue items`,noCancelItems:`You do not have permission to cancel queue items`}},stats:{title:`Statistics`,subtitle:`Drag widgets to rearrange. Click the eye icon to hide.`,overview:`Overview`,totalPrints:`Total Prints`,successRate:`Success Rate`,totalPrintTime:`Total Print Time`,printTime:`Print Time`,totalFilament:`Total Filament Used`,filamentUsed:`Filament Used`,filamentCost:`Filament Cost`,totalCost:`Total Cost`,energyUsed:`Energy Used`,energyCost:`Energy Cost`,energyWarmingUpTooltip:`Energy tracking is still collecting hourly snapshots. Date-range totals will become accurate once at least one snapshot exists before the selected range. Early values may undercount.`,averagePrintTime:`Average Print Time`,printsPerDay:`Prints per Day`,byPrinter:`By Printer`,printsByPrinter:`Prints by Printer`,byMaterial:`By Material`,byMonth:`By Month`,last7Days:`Last 7 Days`,last30Days:`Last 30 Days`,last90Days:`Last 90 Days`,allTime:`All Time`,quickStats:`Quick Stats`,printActivity:`Print Activity`,filamentTypes:`Filament Types`,filamentTrends:`Filament Trends`,failureAnalysis:`Failure Analysis`,timeAccuracy:`Time Accuracy`,successful:`Successful:`,failed:`Failed:`,cancelled:`Cancelled:`,perfectEstimate:`100% = perfect estimate`,noTimeAccuracyData:`No time accuracy data yet`,noFilamentData:`No filament data available`,noPrinterData:`No printer data available`,noPrintData:`No print data available`,noPrintDataLast30Days:`No print data in the last 30 days`,failureReasons:`Failure Reasons`,topFailureReasons:`Top Failure Reasons`,failedPrintsCount:`{{failed}} / {{total}} prints failed`,lastWeekRate:`Last week: {{rate}}%`,resetLayout:`Reset Layout`,recalculateCosts:`Recalculate Costs`,recalculateCostsHint:`Recalculate all archive costs using current filament prices`,exportStats:`Export Stats`,exportAsCsv:`Export as CSV`,exportAsExcel:`Export as Excel`,hiddenCount:`{{count}} Hidden`,exportDownloaded:`Export downloaded`,exportFailed:`Export failed`,layoutReset:`Layout reset`,recalculatedCosts:`Recalculated costs for {{count}} archives`,recalculateFailed:`Failed to recalculate costs`,loadingStats:`Loading statistics...`,noPermissionResetLayout:`You do not have permission to reset layout`,noPermissionRecalculate:`You do not have permission to recalculate costs`,noPrintDataInRange:`No print data in selected range`,periodFilament:`Period Filament`,periodCost:`Period Cost`,avgPerPrint:`Avg per Print`,usageOverTime:`Usage Over Time`,filamentByWeight:`Weight`,printDuration:`Print Duration`,printerUtilization:`Printer Utilization`,filamentSuccess:`Success by Material`,printHabits:`Print Habits`,printTimeOfDay:`Print Time of Day`,colorDistribution:`Color Distribution`,noColorData:`No color data available`,records:`Records`,longestPrint:`Longest Print`,heaviestPrint:`Heaviest Print`,mostExpensivePrint:`Most Expensive`,busiestDay:`Busiest Day`,successStreak:`Success Streak`,streakPrint:`consecutive print`,streakPrints:`{{count}} consecutive prints`,printerStats:`Printer Stats`,hours:`hours`,avgPrints:`Avg. prints`,noArchiveData:`No print data available`,filamentByTime:`Time`,avgWeight:`Avg. weight`,avgTime:`Avg. time`,filamentByPrints:`Prints`,timeframe:{today:`Today`,"this-week":`This Week`,"this-month":`This Month`,"last-7":`Last 7 Days`,"last-30":`Last 30 Days`,"last-90":`Last 90 Days`,"this-year":`This Year`,"all-time":`All Time`,custom:`Custom Range`,from:`From`,to:`To`},allUsers:`All Users`,noUser:`No User (System)`,filterByUser:`Filter by User`},maintenance:{title:`Maintenance`,overview:`Overview`,allOk:`All maintenance up to date`,dueCount:`{{count}} item due`,dueCount_plural:`{{count}} items due`,warningCount:`{{count}} warning`,warningCount_plural:`{{count}} warnings`,totalPrintTime:`Total Print Time`,nextMaintenance:`Next Maintenance`,nothingDue:`Nothing due`,tasks:`Tasks`,lastPerformed:`Last performed`,interval:`Interval`,hoursRemaining:`{{hours}}h remaining`,hoursOverdue:`{{hours}}h overdue`,markDone:`Mark as Done`,performMaintenance:`Perform Maintenance`,history:`History`,noHistory:`No maintenance history`,editPrintHours:`Edit Print Hours`,currentHours:`Current Hours`,statusTab:`Status`,settingsTab:`Settings`,overdueCount:`{{count}} overdue`,dueSoonCount:`{{count}} due soon`,dueSoon:`Due soon`,allGood:`All good`,overdueBy:`Overdue by {{duration}}`,dueIn:`Due in {{duration}}`,timeLeft:`{{duration}} left`,day:`1 day`,days:`{{count}} days`,week:`1 week`,weeks:`{{count}} weeks`,month:`1 month`,months:`{{count}} months`,year:`1 year`,maintenanceTypes:`Maintenance Types`,maintenanceTypesDescription:`System types and your custom maintenance tasks`,addCustomType:`Add Custom Type`,restoreDefaults:`Restore Default Tasks`,intervalType:`Interval Type`,intervalValue:`Interval ({{type}})`,icon:`Icon`,documentationLink:`Documentation Link (optional)`,assignToPrinters:`Assign to Printers`,selectAtLeastOnePrinter:`Select at least one printer`,addType:`Add Type`,custom:`Custom`,printHours:`Print Hours`,calendarDays:`Calendar Days`,exampleName:`e.g., Replace HEPA Filter`,viewDocumentation:`View documentation`,timeBasedInterval:`Time-based interval`,intervalOverrides:`Interval Overrides`,intervalOverridesDescription:`Customize intervals for specific printers`,assignedToPrinters:`Assigned to printers:`,noPrintersAssigned:`No printers assigned`,addPrinterShort:`Add:`,printersAssignedClick:`{{count}} printer(s) assigned - click to manage`,removeFromPrinter:`Remove from this printer`,types:{lubricateCarbonRods:`Lubricate Carbon Rods`,lubricateRails:`Lubricate Linear Rails`,cleanNozzle:`Clean Nozzle/Hotend`,checkBelts:`Check Belt Tension`,cleanBuildPlate:`Clean Build Plate`,checkExtruder:`Check Extruder Gears`,checkCooling:`Check Cooling Fans`,generalInspection:`General Inspection`,cleanCarbonRods:`Clean Carbon Rods`,lubricateSteelRods:`Lubricate Steel Rods`,cleanSteelRods:`Clean Steel Rods`,cleanLinearRails:`Clean Linear Rails`,checkPtfeTube:`Check PTFE Tube`,replaceHepaFilter:`Replace HEPA Filter`,replaceCarbonFilter:`Replace Carbon Filter`,lubricateLeftNozzleRail:`Lubricate Left Nozzle Rail`},maintenanceComplete:`Maintenance marked as complete`,typeUpdated:`Maintenance type updated`,typeDeleted:`Maintenance type deleted`,defaultsRestored:`Restored {{count}} default task(s)`,printHoursUpdated:`Print hours updated`,printerAssigned:`Printer assigned`,printerRemoved:`Printer removed`,deleteTypeConfirm:`Delete "{{name}}"?`,deleteSystemTypeTitle:`Delete default maintenance task?`,deleteSystemTypeMessage:`Are you sure you want to delete the default maintenance task "{{name}}"?`,noPermissionUpdate:`You do not have permission to update maintenance items`,noPermissionPerform:`You do not have permission to perform maintenance`,noPermissionEditTypes:`You do not have permission to edit maintenance types`,noPermissionDeleteTypes:`You do not have permission to delete maintenance types`,noPermissionEditHours:`You do not have permission to edit print hours`,noPermissionRemovePrinter:`You do not have permission to remove printer assignments`,noPermissionAssignPrinter:`You do not have permission to assign printers`,noPermissionEditIntervals:`You do not have permission to edit intervals`,configureSettings:`Configure maintenance types and intervals`},settings:{title:`Settings`,general:`General`,tabs:{general:`General`,smartPlugs:`Smart Plugs`,notifications:`Notifications`,queue:`Workflow`,queueDispatch:`Queue & Dispatch`,queuePipelines:`Pipelines`,filament:`Filament`,network:`Network`,apiKeys:`API Keys`,virtualPrinter:`Virtual Printer`,spoolbuddy:`SpoolBuddy`,failureDetection:`Failure Detection`,users:`Authentication`,backup:`Backup`,emailAuth:`Email Authentication`,ldap:`LDAP`,twoFa:`Two-Factor Auth`,oidc:`SSO / OIDC`,security:`Security`},spoolbuddy:{infoTitle:`SpoolBuddy devices`,infoBody:`SpoolBuddy kiosks register themselves automatically via heartbeat. Unregister a device here if it is no longer in use or if a stale duplicate was left behind by a daemon crash.`,duplicatesTitle:`{{count}} devices registered`,duplicatesBody:`Only the first registered device is used by the kiosk UI. If one of these is a stale duplicate from a crash, unregister it — an online device will re-register itself on its next heartbeat.`,empty:`No SpoolBuddy devices registered yet.`,online:`Online`,offline:`Offline`,unregister:`Unregister`,unregisterSuccess:`Device unregistered`,unregisterError:`Failed to unregister device`,confirmTitle:`Unregister SpoolBuddy device?`,confirmBody:`This will remove "{{hostname}}" ({{deviceId}}) from the database. If the device is online, it will re-register itself on its next heartbeat.`,ipAddress:`IP address`,firmware:`Firmware`,lastSeen:`Last seen`,daemonUptime:`Daemon uptime`,systemUptime:`System uptime`,never:`never`,nfc:`NFC`,scale:`Scale`,cpuTemp:`CPU temp`,cpuLoad:`CPU load`,memory:`Memory`,disk:`Disk`,update:`Update`,updateConfirmTitle:`Update Spoolbuddy daemon?`,updateConfirmBody:`Trigger a software update on "{{hostname}}"? The daemon will restart once the update is applied.`,restartBrowser:`Restart Browser`,restartBrowserConfirmTitle:`Restart kiosk browser?`,restartBrowserConfirmBody:`Restart the kiosk browser on "{{hostname}}"? The display will blank briefly.`,restartDaemon:`Restart Daemon`,restartDaemonConfirmTitle:`Restart Spoolbuddy daemon?`,restartDaemonConfirmBody:`Restart the Spoolbuddy daemon on "{{hostname}}"? The device will go offline for a few seconds.`,reboot:`Reboot`,rebootConfirmTitle:`Reboot device?`,rebootConfirmBody:`Reboot "{{hostname}}"? The device will be offline for around a minute.`,shutdown:`Shutdown`,shutdownConfirmTitle:`Shutdown device?`,shutdownConfirmBody:`Shutdown "{{hostname}}"? You will need physical access to power it back on.`,commandConfirm:`Confirm`,commandQueued:`Command queued`,commandError:`Failed to send command`},ldap:{title:`LDAP Authentication`,enabledDesc:`LDAP authentication is enabled`,disabledDesc:`LDAP authentication is disabled`,disabledHint:`Configure and save LDAP settings below, then enable.`,enabled:`LDAP authentication enabled`,disabled:`LDAP authentication disabled`,feature1:`Users can login with LDAP credentials`,feature2:`Local admin account remains as fallback`,feature3:`LDAP groups are mapped to BamBuddy groups on login`,serverConfig:`LDAP Server Configuration`,serverUrl:`Server URL`,serverUrlHint:`Use ldaps:// for SSL or ldap:// with StartTLS`,security:`Security`,securityHint:`StartTLS upgrades a plain connection to TLS. LDAPS uses TLS from the start.`,bindDn:`Bind DN (Service Account)`,bindPassword:`Bind Password`,searchBase:`Search Base DN`,userFilter:`User Search Filter`,userFilterHint:`{username} is replaced with the login username. Use (uid={username}) for OpenLDAP.`,advanced:`Advanced`,autoProvision:`Auto-provision users`,autoProvisionHint:`Automatically create a BamBuddy account on first LDAP login`,defaultGroup:`Default group`,defaultGroupNone:`— None (no fallback) —`,defaultGroupHint:`Fallback group assigned when an LDAP user authenticates but is not listed in any mapped LDAP group. Leave empty to leave unmapped users without permissions.`,groupMapping:`Group Mapping (JSON)`,groupMappingHint:`Map LDAP group DNs to BamBuddy groups. Available groups: `,testConnection:`Test Connection`,settingsSaved:`LDAP settings saved`,errors:{serverRequired:`LDAP server URL is required`,searchBaseRequired:`Search base DN is required`,enableAuthFirst:`Enable authentication first`,configureLdapFirst:`Save LDAP settings first`}},email:{smtpSettings:`SMTP Configuration`,smtpHost:`SMTP Server`,smtpPort:`SMTP Port`,security:`Security`,authentication:`Authentication`,username:`Username`,password:`Password`,fromEmail:`From Email`,fromName:`From Name`,testConnection:`Test SMTP Connection`,testRecipient:`Test Recipient Email`,sendTest:`Send Test Email`,sending:`Sending...`,save:`Save Settings`,saving:`Saving...`,advancedAuth:`Advanced Authentication`,advancedAuthEnabled:`Advanced Authentication is enabled`,advancedAuthEnabledDesc:`Email-based user management features are active. New users will receive auto-generated passwords via email, and users can reset their passwords through the forgot password feature.`,advancedAuthDisabled:`Advanced Authentication is disabled`,advancedAuthDisabledDesc:`Enable advanced authentication to activate email-based features for user management.`,enable:`Enable`,disable:`Disable`,feature1:`Passwords are auto-generated and emailed to new users`,feature2:`Users can login with username or email`,feature3:`Forgot password feature is available`,feature4:`Admins can reset user passwords via email`,errors:{requiredFields:`Please fill in all required fields`,usernameRequired:`Username is required when authentication is enabled`,enterTestEmail:`Please enter a test email address`,smtpServerAndEmail:`Please fill in SMTP Server and From Email before testing`,usernamePasswordRequired:`Username and Password are required when authentication is enabled`,configureSmtpFirst:`Please configure and test SMTP settings first`,enableAuthFirst:`Please enable authentication first to use email-based features.`},success:{settingsSaved:`SMTP settings saved successfully`},securityOptions:{starttls:`STARTTLS (Port 587)`,ssl:`SSL/TLS (Port 465)`,none:`None (Port 25)`},authOptions:{enabled:`Enabled`,disabled:`Disabled`}},appearance:`Appearance`,notifications:`Notifications`,smartPlugs:`Smart Plugs`,spoolman:`Spoolman`,updates:`Updates`,language:`Language`,languageDescription:`Select your preferred language`,theme:`Theme`,themeLight:`Light`,themeDark:`Dark`,themeSystem:`System`,defaultView:`Default View`,defaultViewDescription:`Page to show when opening the app`,checkForUpdates:`Check for Updates`,autoUpdate:`Auto Update`,currentVersion:`Current Version`,latestVersion:`Latest Version`,upToDate:`You are up to date`,updateAvailable:`Update available`,notificationLanguage:`Notification Language`,notificationLanguageDescription:`Language for push notifications`,bedCooledThreshold:`Bed Cooled Threshold`,bedCooledThresholdDescription:`Temperature below which the bed is considered cooled after a print`,userNotificationsEnabled:`User Notifications`,userNotificationsEnabledDescription:`Enable the user notifications menu and email notifications for print job events. Requires Advanced Authentication.`,userNotificationsDisabledHint:`Enable Advanced Authentication to use user notifications.`,notificationProviders:`Notification Providers`,addProvider:`Add Provider`,editProvider:`Edit Provider`,providerType:`Provider Type`,testNotification:`Test Notification`,testSuccess:`Test notification sent successfully`,testFailed:`Failed to send test notification`,quietHours:`Quiet Hours`,quietHoursDescription:`Do not disturb during these hours`,quietHoursStart:`Start`,quietHoursEnd:`End`,events:{title:`Notification Events`,printStart:`Print Started`,printComplete:`Print Completed`,printFailed:`Print Failed`,printStopped:`Print Stopped`,printProgress:`Progress Milestones`,printProgressDescription:`Notify at 25%, 50%, 75%`,printerOffline:`Printer Offline`,printerError:`Printer Error`,filamentLow:`Low Filament`,maintenanceDue:`Maintenance Due`,maintenanceDueDescription:`Notify when maintenance is needed`},smartPlug:{title:`Smart Plugs`,add:`Add Smart Plug`,edit:`Edit Smart Plug`,name:`Name`,ipAddress:`IP Address`,linkedPrinter:`Linked Printer`,autoOn:`Auto Power On`,autoOnDescription:`Turn on when print starts`,autoOff:`Auto Power Off`,autoOffDescription:`Turn off after print completes`,offDelay:`Off Delay`,offDelayMinutes:`Minutes after print`,offDelayTemp:`When nozzle below temperature`,currentState:`Current State`,turnOn:`Turn On`,turnOff:`Turn Off`},filamentTracking:`Filament Tracking`,filamentTrackingDesc:`Choose how to track your filament spools. You can use the built-in inventory or connect an external Spoolman server.`,autoAddUnknownRfid:`Auto-add unknown RFID spools`,autoAddUnknownRfidDesc:`Automatically create an inventory entry when a spool with an unknown RFID tag is detected. Turn off if you pre-register new spools manually to avoid duplicates.`,filamentChecks:`Filament checks`,disableFilamentWarnings:`Disable filament warnings`,disableFilamentWarningsDesc:`Don't show warnings about insufficient filament when printing or queueing`,preferLowestFilament:`Prefer lowest remaining filament`,preferLowestFilamentDesc:`When multiple spools match, use the one with the least filament remaining`,preferLowestFilamentBackupNote:`Only takes effect when AMS Filament Backup is enabled on the printer — otherwise the printer cannot switch to a second spool when the picked one runs out.`,trackingModeBuiltIn:`Built-in Inventory`,trackingModeBuiltInDesc:`RFID auto-matching and usage tracking included`,trackingModeSpoolmanDesc:`External filament management server`,builtInFeatureRfid:`Automatically detects Bambu Lab RFID spools in AMS`,builtInFeatureUsage:`Tracks filament consumption per print`,builtInFeatureCatalog:`Manage spools, colors, and K-factor profiles`,builtInFeatureThirdParty:`Third-party spools can be assigned to inventory spools`,amsSyncButton:`Sync Weights from AMS`,amsSyncTitle:`Sync Spool Weights from AMS`,amsSyncMessage:`This will overwrite all inventory spool weights with the current AMS remain% values from connected printers. Use this to recover from corrupted weight data. Printers must be online.`,amsSyncing:`Syncing...`,amsSyncSuccess:`{{synced}} spool(s) synced, {{skipped}} skipped`,amsSyncError:`Failed to sync weights from AMS`,spoolmanAmsSyncButton:`Sync Spoolman Weights from AMS`,spoolmanAmsSyncTitle:`Sync Spoolman Spool Weights from AMS`,spoolmanAmsSyncMessage:`This will update all Spoolman spool weights based on the current AMS remain% values from connected printers. Printers must be online.`,spoolmanAmsSyncing:`Syncing...`,spoolmanAmsSyncSuccess:`{{synced}} spool(s) synced, {{skipped}} skipped`,spoolmanAmsSyncError:`Failed to sync Spoolman weights from AMS`,spoolmanAmsSyncErrorUnreachable:`Failed to sync Spoolman weights (Spoolman unreachable)`,spoolmanAmsSyncErrorNotConfigured:`Failed to sync Spoolman weights (Spoolman not configured)`,spoolmanNotConfigured:`Spoolman not configured`,spoolmanFilamentCatalogTitle:`Spoolman Filament Catalog`,spoolmanFilamentCatalogDesc:`Filament names and tare weights from your Spoolman instance. Name and spool weight are editable here; all other properties are managed directly in Spoolman.`,spoolmanUrl:`Spoolman URL`,spoolmanUrlHint:`URL of your Spoolman server (e.g., http://localhost:7912)`,spoolmanConnected:`Connected`,spoolmanDisconnected:`Disconnected`,status:`Status`,connect:`Connect`,disconnect:`Disconnect`,howSyncWorks:`How Sync Works`,syncInfoRfidOnly:`Only official Bambu Lab spools with RFID are synced`,syncInfoAutoCreate:`New spools are auto-created in Spoolman on first sync`,syncInfoThirdPartySkipped:`Non-Bambu Lab spools (third-party, refilled) are skipped`,linkingExistingSpools:`Linking Existing Spools`,linkingExistingSpoolsDesc:`To link existing Spoolman spools to your AMS, hover over an AMS slot and click "Link to Spoolman".`,syncMode:`Sync Mode`,syncModeAuto:`Automatic`,syncModeManual:`Manual Only`,syncModeAutoDesc:`AMS data syncs automatically when changes are detected`,syncModeManualDesc:`Only sync when manually triggered`,syncAmsData:`Sync AMS Data`,syncAmsDataDesc:`Manually sync printer AMS data to Spoolman`,allPrinters:`All Printers`,noDefaultPrinter:`No default (ask each time)`,sidebarOrder:`Sidebar order`,saveThumbnails:`Save thumbnails`,captureFinishPhoto:`Capture finish photo`,noPrintersConfigured:`No printers configured`,archiveMode:{always:`Always create archive entry`,never:`Never create archive entry`,ask:`Ask each time`},checkForUpdatesLabel:`Check for updates`,checkPrinterFirmware:`Check printer firmware`,includeBetaUpdates:`Include beta versions`,includeBetaUpdatesDesc:`Notify about beta and prerelease versions when checking for updates`,localLogin:{disable:`Disable local username/password login`,disableHint:`When enabled, only SSO providers can sign in. LDAP is unaffected. Set BAMBUDDY_LOCAL_LOGIN=true on the server to keep a recovery path.`},enableRetry:`Enable retry`,homeAssistantDescription:`Control smart plugs via Home Assistant`,environmentManagedLabel:`(Environment Managed)`,autoEnabledViaEnv:`Automatically enabled via environment variables`,urlFromEnvReadOnly:`Value set by HA_URL environment variable (read-only)`,tokenFromEnvReadOnly:`Value set by HA_TOKEN environment variable (read-only)`,mqttConnectedTo:`Connected to`,prometheusDescription:`Expose printer data in Prometheus format`,noSmartPlugsTitle:`No smart plugs configured`,noSmartPlugsDescription:`Add a Tasmota-based smart plug to track energy usage and automate power control.`,noProvidersTitle:`No providers configured`,noProvidersDescription:`Add a provider to receive alerts.`,noTemplatesAvailable:`No templates available. Restart the backend to seed default templates.`,apiPermissionView:`View printer status and queue`,apiPermissionEdit:`Add and remove items from print queue`,apiKeysEmptyTitle:`No API keys`,apiKeysEmptyDescription:`Create an API key to integrate with external services.`,noUsersFound:`No users found`,noGroupsFound:`No groups found`,noGroupsAvailable:`No groups available`,passwordsDoNotMatch:`Passwords do not match`,systemGroupWarning:`System group names cannot be changed`,authDisabledTitle:`Authentication is Disabled`,authDisabledFeature1:`Require login to access the system`,authDisabledFeature2:`Create multiple users with group-based permissions`,authDisabledFeature3:`Control access with 50+ granular permissions`,userHasCreated:`This user has created:`,userItemsQuestion:`What would you like to do with these items?`,deleteUserConfirm:`Are you sure you want to delete this user?`,actionCannotBeUndone:`This action cannot be undone.`,addFirstSmartPlug:`Add Your First Smart Plug`,providers:`Providers`,log:`Log`,testAll:`Test All`,testResults:`Test Results`,testPassedCount:`{{count}} passed`,testFailedCount:`{{count}} failed`,messageTemplates:`Message Templates`,messageTemplatesDescription:`Customize notification messages for each event.`,apiKeys:`API Keys`,apiKeysDescription:`Create API keys for external integrations and webhooks.`,createKey:`Create Key`,apiKeyCreated:`API Key Created Successfully`,apiKeyCopyWarning:`Copy this key now - it won't be shown again!`,useInApiBrowser:`Use in API Browser`,apiKeyQrButton:`QR code`,apiKeyQrTitle:`Scan to configure`,apiKeyQrCaption:`Scan with your mobile app to add this server and API key.`,apiKeyQrWarning:`Contains your secret API key — don't share or screenshot it where others can see.`,createNewApiKey:`Create New API Key`,keyName:`Key Name`,keyNamePlaceholder:`e.g., Home Assistant, OctoPrint`,readStatus:`Read Status`,readStatusDescription:`View printer status and queue`,manageQueue:`Manage Queue`,manageQueueDescription:`Add and remove items from print queue`,controlPrinter:`Control Printer`,controlPrinterDescription:`Pause, resume, and stop prints`,manageLibrary:`Manage Library`,manageLibraryDescription:`Upload, rename, and delete library files; import models from MakerWorld`,manageInventory:`Manage Inventory`,manageInventoryDescription:`Create, update, and delete spools and inventory records. Required for SpoolBuddy kiosks (NFC scan, scale readings, kiosk system commands).`,manageMaintenance:`Manage Maintenance`,manageMaintenanceDescription:`Log completed maintenance, reset counters, edit intervals, and manage the maintenance-type catalog. Suited to Home Assistant automations that record "I cleaned the nozzle" without granting broader printer control.`,manageArchives:`Manage Archives`,manageArchivesDescription:`Edit and delete print archives, including removing old prints. Does not include purging their statistics contribution. Suited to automations that prune the print history.`,manageProjects:`Manage Projects`,manageProjectsDescription:`Create, update, and delete projects, and add archives to them. Suited to automations that organize prints into projects.`,libraryBadge:`Library`,inventoryBadge:`Inventory`,maintenanceBadge:`Maintenance`,archivesBadge:`Archives`,projectsBadge:`Projects`,cloudAccess:`Allow cloud access`,cloudAccessDescription:`Read Bambu Cloud presets and filaments on your behalf. Requires you to be signed into Bambu Cloud.`,cloudBadge:`Cloud`,updateEnergyCost:`Update electricity price`,updateEnergyCostDescription:`Allow this key to POST a new per-kWh electricity price to /settings/electricity-price. Useful for Home Assistant dynamic-tariff automations (Tibber, Octopus, etc.). This is the only settings field writable via API key.`,energyCostBadge:`Energy`,legacyKey:`Legacy`,legacyKeyTooltip:`Created before per-user ownership; recreate to use cloud access`,unnamedKey:`Unnamed Key`,lastUsed:`Last used`,read:`Read`,control:`Control`,createFirstKey:`Create Your First Key`,webhookEndpoints:`Webhook Endpoints`,webhookApiKeyHint:`Use your API key in the X-API-Key header.`,webhook:{getAllStatus:`Get all printer status`,getSpecificStatus:`Get specific printer status`,addToQueue:`Add to print queue`,pausePrint:`Pause print`,resumePrint:`Resume print`,stopPrint:`Stop print`},apiBrowser:`API Browser`,apiBrowserDescription:`Explore and test all available API endpoints.`,apiKeyForTesting:`API Key for Testing`,apiKeyPlaceholder:`Paste your API key here to test authenticated endpoints...`,apiKeyHint:`This key will be sent as X-API-Key header with requests.`,deleteApiKeyTitle:`Delete API Key`,deleteApiKeyMessage:`Are you sure you want to delete this API key? Any integrations using this key will stop working.`,deleteKey:`Delete Key`,amsDisplayThresholds:`AMS Display Thresholds`,amsThresholdsDescription:`Configure color thresholds for AMS humidity and temperature indicators.`,humidity:`Humidity`,goodGreen:`Good (green)`,fairOrange:`Fair (orange)`,aboveFairBad:`Above fair threshold shows as red (bad)`,fairAlsoDryingThreshold:`This threshold is also used to trigger auto-drying when enabled`,temperature:`Temperature`,goodBlue:`Good (blue)`,aboveFairHot:`Above fair threshold shows as red (hot)`,historyRetention:`History Retention`,keepSensorHistory:`Keep sensor history for`,historyRetentionDescription:`Older humidity and temperature data will be automatically deleted`,defaultPrintOptions:`Default Print Options`,defaultPrintOptionsDescription:`Set default values for print options when starting new prints. These can be overridden per print in the print dialog.`,defaultBedLevelling:`Bed Levelling`,defaultBedLevellingDesc:`Auto-level bed before print`,defaultFlowCali:`Flow Calibration`,defaultFlowCaliDesc:`Calibrate extrusion flow`,defaultVibrationCali:`Vibration Calibration`,defaultVibrationCaliDesc:`Reduce ringing artifacts`,defaultLayerInspect:`First Layer Inspection`,defaultLayerInspectDesc:`AI inspection of first layer`,defaultTimelapse:`Timelapse`,defaultTimelapseDesc:`Record timelapse video`,defaultNozzleOffsetCali:`Nozzle Offset Calibration`,defaultNozzleOffsetCaliDesc:`Calibrate nozzle offsets between extruders`,tempFanPresetsTitle:`Temperature & Fan Presets`,tempFanPresetsDescription:`Customize the quick-select values shown in printer-card temperature and fan-speed popovers. The Off button is always shown.`,tempFanPresetsNozzle:`Nozzle temperature`,tempFanPresetsBed:`Bed temperature`,tempFanPresetsChamber:`Chamber temperature`,tempFanPresetsFan:`Fan speed`,tempFanPresetsReset:`Reset to defaults`,staggeredStart:`Staggered Start`,staggeredStartDescription:`Default group size and interval when staggering multi-printer batch starts. Can be overridden per batch in the print modal.`,preheatTitle:`Preheat & Heat Soak`,preheatDescription:`Heat the bed (and chamber, if supported) and hold at temperature before each queued print starts. Helpful for engineering filaments (PA, ABS) on printers without an active chamber heater — the bed warms the chamber by radiation while the soak timer runs. The bed target is read from the print file; chamber behaviour depends on printer model.`,preheatEnabled:`Enable preheat & soak`,preheatEnabledDesc:`When off, queued prints dispatch immediately. Each queue item can override per print.`,preheatFilamentTargetsLabel:`Per-filament chamber target (°C)`,preheatFilamentTargetsHint:`Bambuddy picks the highest target across the loaded AMS slots; PLA-only prints derive 0 and skip the chamber phase automatically.`,preheatFilamentTargetsReset:`Reset to defaults`,preheatFilamentTargetsDefaultRow:`Other / unmapped`,preheatMaxWait:`Max wait (seconds)`,preheatMaxWaitHelp:`Cap on the chamber warm-up phase before falling through.`,preheatSoak:`Soak (seconds)`,preheatSoakHelp:`Hold time after target reached or max-wait elapsed.`,preheatHardwareTitle:`Per-printer behaviour:`,preheatHardwareDetail:`H2C/H2D/H2D Pro/H2S/X2D/X1E actively heat the chamber via M141. X1C/P2S read chamber temp but rely on bed-radiation heating. P1S/P1P/A1/A1 Mini have no chamber sensor — only the soak timer applies.`,preheatPerItemDesc:`Heat the bed and chamber before this print starts. Defaults to the global Settings → Workflow toggle.`,preheatOverride_inherit:`Inherit`,preheatOverride_on:`On`,preheatOverride_off:`Off`,preheatTargetOverride:`Chamber target override (°C, blank = filament default)`,plateClear:`Plate-Clear Confirmation`,requirePlateClear:`Require plate-clear confirmation`,requirePlateClearDescription:`When enabled, the scheduler waits for per-printer plate-clear confirmation before starting queued prints on printers with finished jobs. Disabling this also hides the plate status badge and the "Mark plate as cleared" button on printer cards.`,gcodeInjection:`G-code Injection`,gcodeInjectionDescription:`Configure custom G-code to inject at the start and/or end of prints for auto-print systems like Farmloop, SwapMod, AutoClear, and Printflow 3D. Snippets are configured per printer model and applied when "Inject G-code" is enabled on a queue item.`,gcodeInjectionNoPrinters:`No printers found. Add printers to configure G-code snippets.`,gcodeStartLabel:`Start G-code`,gcodeEndLabel:`End G-code`,gcodeStartPlaceholder:`G-code prepended before the print starts...`,gcodeEndPlaceholder:`G-code appended after the print ends...`,staggerGroupSize:`Group size`,staggerGroupSizeHelp:`Printers to start simultaneously per group`,staggerInterval:`Interval (minutes)`,staggerIntervalHelp:`Delay between each group starting`,queueDrying:`Queue Auto-Drying`,queueDryingDescription:`Automatically dry AMS filament when printer is idle between queued prints. Uses humidity threshold above to trigger drying.`,queueDryingEnabled:`Enable auto-drying`,queueDryingEnabledDescription:`Start AMS drying automatically when printer is idle and humidity is above threshold`,queueDryingBlock:`Wait for drying to complete`,queueDryingBlockDescription:`Block the print queue until drying finishes. When off, prints take priority over drying.`,ambientDryingEnabled:`Ambient drying`,ambientDryingEnabledDescription:`Automatically dry filament on idle printers when humidity exceeds threshold, even without queued prints.`,printDryingEnabled:`Continue drying while printing`,printDryingEnabledDescription:`Allow auto-drying to keep running during a print on supported hardware (H2D, H2C, H2S, P2S, H2D Pro, X2D, X1C, A2L on recent firmware). Drying temperature is automatically capped 5°C below the idle preset to protect spools.`,dryingPresets:`Drying Presets`,dryingPresetsDescription:`Temperature and duration per filament type. AMS 2 Pro uses lower temps, AMS-HT supports higher temps.`,dryingFilament:`Filament`,humidityThresholds:`Humidity Thresholds`,humidityThresholdsDescription:`Per-filament humidity trigger for auto-drying and alarms. Mixed loads in one AMS use the lowest threshold.`,humidityThresholdCol:`Threshold`,humidityThresholdDefault:`Default (unknown types)`,printModal:`Print Modal`,expandCustomMapping:`Expand custom mapping by default`,expandCustomMappingDescription:`When printing to multiple printers, show per-printer AMS mapping expanded`,authentication:`Authentication`,authEnabledDescription:`Your instance is secured with user authentication`,authDisabledDescription:`Enable to require login and manage user access`,authDisabledMessage:`Enable authentication to create user accounts, manage permissions, and secure your Bambuddy instance.`,enableAuthentication:`Enable Authentication`,currentUser:`Current User`,changePassword:`Change Password`,admin:`Admin`,users:`Users`,addUser:`Add User`,groups:`Groups`,addGroup:`Add Group`,system:`System`,noDescription:`No description`,userCount:`{{count}} users`,permissionCount:`{{count}} permissions`,createUser:`Create User`,username:`Username`,enterUsername:`Enter username`,password:`Password`,enterPassword:`Enter password`,passwordRequirements:`At least 8 characters, with one uppercase, one lowercase, one digit, and one special character.`,confirmPassword:`Confirm Password`,confirmPasswordPlaceholder:`Confirm password`,viewReleaseOnGitHub:`View release on GitHub`,turnAllPlugsOn:`Turn all plugs on`,turnAllPlugsOff:`Turn all plugs off`,clearNotificationLogs:`Clear Notification Logs`,clearLogsMessage:`This will permanently delete all notification logs older than 30 days. This action cannot be undone.`,clearLogs:`Clear Logs`,resetUiPreferences:`Reset UI Preferences`,resetUiPreferencesMessage:`This will reset all UI preferences to defaults: sidebar order, theme, dashboard layout, view modes, and sorting preferences. Your printers, archives, and server settings will NOT be affected. The page will reload after clearing.`,resetPreferences:`Reset Preferences`,deleteGroupTitle:`Delete Group`,deleteGroupMessage:`Are you sure you want to delete this group? Users in this group will lose these permissions.`,deleteGroup:`Delete Group`,disableAuthenticationTitle:`Disable Authentication`,disableAuthenticationMessage:`Are you sure you want to disable authentication? This will make your Bambuddy instance accessible without login. All users will remain in the database but authentication will be disabled.`,disableAuthentication:`Disable Authentication`,configureBambuddy:`Configure Bambuddy`,systemDefault:`System Default`,archiveSettings:`Archive Settings`,newWindow:`New Window`,embeddedOverlay:`Embedded Overlay`,preferredSlicer:`Preferred Slicer`,preferredSlicerDescription:`Slicer used for in-app slicing via the API sidecar`,openInSlicerLabel:`Open in Slicer`,openInSlicerInherit:`Same as API slicer`,openInSlicerDescription:`Desktop slicer used by the 'Open in Slicer' button. Leave on 'Same as API slicer' to inherit, or pick a different slicer to use locally.`,orcaslicerKnownIssuesWarning:`OrcaSlicer 2.3.2 / 2.4.0-dev have known CLI bugs that block slicing many Bambu-authored 3MFs — see upstream issues #12426 (segfault on painted multi-extruder files) and #13386 (parameter-range strict-validation reject). Bambu Studio is recommended until the upstream fixes land.`,useSlicerApi:`Use Slicer API`,useSlicerApiDescription:`When on, "Slice" actions open the in-app slicer modal and call the slicer-API sidecar. When off (default), they hand off to the desktop slicer via URI scheme.`,slicerCard:`Slicer`,orcaslicerApiUrl:`OrcaSlicer sidecar URL`,bambuStudioApiUrl:`Bambu Studio sidecar URL`,slicerApiUrlDescription:`URL of the slicer-API sidecar container. Leave blank to use the SLICER_API_URL / BAMBU_STUDIO_API_URL env var defaults.`,slicerBundlesRemoved:{title:`Slicer Bundles (removed)`,description:`Printer Preset Bundle (.bbscfg) import was removed. BambuStudio's bundle export only includes user-customised presets, so the import never delivered standard processes / filaments and slicing fell back to embedded settings.`,alternatives:`Use Single Preset Import for individual customs, or sync via Bambu Cloud / Orca Cloud. Stock presets come from the slicer sidecar automatically.`,lookupOrder:`Slice-time preset lookup order: 1) Imported (local), 2) Orca Cloud, 3) Bambu Cloud, 4) Standard (sidecar fallback).`},externalCameras:`External Cameras`,costTracking:`Cost Tracking`,printsOnly:`Prints Only`,totalConsumption:`Total Consumption`,dataManagement:`Data Management`,storageUsage:`Storage Usage`,storageUsageDescription:`Breakdown of data usage by category`,storageUsageTotal:`Total`,storageUsageErrors:`Errors`,storageUsageOtherBreakdown:`Other (includes static assets, scripts, and configuration files)`,storageUsageSystem:`System`,storageUsageData:`Data`,storageUsageUnavailable:`Storage usage information unavailable`,clearNotificationLogsDescription:`Delete notification logs older than 30 days`,resetUiPreferencesDescription:`Reset sidebar order, theme, view modes, and layout preferences. Printers, archives, and settings are not affected.`,enableHomeAssistant:`Enable Home Assistant`,enableMqtt:`Enable MQTT`,useTls:`Use TLS`,enableMetricsEndpoint:`Enable Metrics Endpoint`,availableMetrics:`Available Metrics`,editUser:`Edit User`,deleteUserTitle:`Delete User`,groupName:`Group Name`,leaveEmptyForAnonymous:`Leave empty for anonymous`,leaveEmptyForNoAuth:`Leave empty for no authentication`,enterNewPassword:`Enter new password`,confirmNewPassword:`Confirm new password`,enterGroupName:`Enter group name`,enterDescriptionOptional:`Enter description (optional)`,enterCurrentPassword:`Enter current password`,enterNewPasswordMin6:`Enter new password (min 6 characters)`,toast:{keyCopied:`Key copied to clipboard`,copyFailed:`Failed to copy key`,keyAddedToBrowser:`Key added to API Browser`,clearLogsFailed:`Failed to clear logs`,uiPreferencesReset:`UI preferences reset. Refreshing...`,authDisabled:`Authentication disabled successfully`,authDisableFailed:`Failed to disable authentication`,apiKeyCreated:`API key created`,apiKeyDeleted:`API key deleted`,userCreated:`User created successfully`,userUpdated:`User updated successfully`,userDeleted:`User deleted successfully`,groupCreated:`Group created successfully`,groupUpdated:`Group updated successfully`,groupDeleted:`Group deleted successfully`,fillRequiredFields:`Please fill in all required fields`,passwordsDoNotMatch:`Passwords do not match`,passwordTooShort:`Password must be at least 8 characters`,passwordNeedsUppercase:`Password must contain at least one uppercase letter`,passwordNeedsLowercase:`Password must contain at least one lowercase letter`,passwordNeedsDigit:`Password must contain at least one digit`,passwordNeedsSpecial:`Password must contain at least one special character`,enterGroupName:`Please enter a group name`,settingsSaved:`Settings saved`,noPermissionUpdate:`You do not have permission to change settings`,cameraSettingsSaved:`Camera settings saved`,enterCameraUrl:`Please enter a camera URL`,passwordChanged:`Password changed successfully`,connectionFailed:`Connection failed`,testFailed:`Test failed`,cameraConnected:`Camera connected{{resolution}}`},testConnection:`Test Connection`,catalog:{spoolCatalog:`Spool Catalog`,spoolCatalogDescription:`Empty spool weights by brand/type. Used for automatic weight lookup when adding spools.`,searchCatalog:`Search catalog...`,addNewEntry:`Add New Entry`,namePlaceholder:`Name (e.g., Bambu Lab - Plastic)`,weight:`Weight`,type:`Type`,default:`Default`,custom:`Custom`,noMatch:`No entries match your search`,empty:`No entries in catalog`,deleteEntry:`Delete Entry`,deleteConfirm:`Are you sure you want to delete "{{name}}"?`,resetCatalog:`Reset Catalog`,resetConfirm:`Reset catalog to defaults? This will remove all custom entries.`,loadFailed:`Failed to load spool catalog`,nameWeightRequired:`Name and weight are required`,entryAdded:`Entry added`,addFailed:`Failed to add entry`,entryUpdated:`Entry updated`,updateFailed:`Failed to update entry`,entryDeleted:`Entry deleted`,deleteFailed:`Failed to delete entry`,resetSuccess:`Catalog reset to defaults`,resetFailed:`Failed to reset catalog`,exported:`Exported {{count}} entries`,imported:`Imported {{added}} entries ({{skipped}} skipped)`,importFailed:`Failed to import: invalid JSON format`,exportTooltip:`Export catalog to JSON`,importTooltip:`Import catalog from JSON`,resetTooltip:`Reset to defaults`,selectedCount:`{{count}} selected`,deleteSelected:`Delete Selected`,bulkDeleteConfirm:`Are you sure you want to delete {{count}} entries?`,bulkDeleted:`Deleted {{count}} entries`,bulkDeleteFailed:`Failed to delete entries`,material:`Material`,spoolWeight:`Spool Weight`,color:`Color`,updateSpoolWeight:`Update Spool Weight`,filamentUpdated:`Filament updated`,filamentUpdateFailed:`Failed to update filament`,filamentUpdateInvalid:`Invalid filament data`,keepExistingSpoolWeight:`Keep old weight for existing spools`,keepExistingSpoolWeightDesc:`Spools already created with this filament type retain the old tare weight. New spools use the updated value.`,applyToAllSpools:`Apply to all spools`,applyToAllSpoolsDesc:`All weight calculations for this filament type immediately use the new tare weight.`},colorCatalog:{title:`Color Catalog`,description:`Filament colors by manufacturer/material. Used for automatic color lookup when adding spools.`,searchColors:`Search colors...`,allManufacturers:`All manufacturers`,addNewColor:`Add New Color`,manufacturer:`Manufacturer`,colorName:`Color Name`,hex:`Hex`,materialOptional:`Material (optional)`,showing:`Showing {{filtered}} of {{total}} colors`,noMatch:`No colors match your search`,empty:`No colors in catalog`,deleteColor:`Delete Color`,deleteConfirm:`Are you sure you want to delete "{{name}}"?`,resetCatalog:`Reset Color Catalog`,resetConfirm:`Reset catalog to defaults? This will remove all custom colors.`,sync:`Sync`,starting:`Starting...`,syncTooltip:`Sync from FilamentColors.xyz (2000+ colors, may take a minute)`,loadFailed:`Failed to load color catalog`,fieldsRequired:`Manufacturer, color name, and hex color are required`,colorAdded:`Color added`,addFailed:`Failed to add color`,colorUpdated:`Color updated`,updateFailed:`Failed to update color`,colorDeleted:`Color deleted`,deleteFailed:`Failed to delete color`,resetSuccess:`Color catalog reset to defaults`,resetFailed:`Failed to reset catalog`,syncUpToDate:`Already up to date ({{count}} colors checked)`,syncComplete:`Added {{added}} new colors ({{skipped}} already existed)`,syncError:`Sync error`,syncFailed:`Failed to sync from FilamentColors.xyz`,exported:`Exported {{count}} colors`,imported:`Imported {{added}} colors ({{skipped}} skipped)`,importFailed:`Failed to import: invalid JSON format`,selectedCount:`{{count}} selected`,deleteSelected:`Delete Selected`,bulkDeleteConfirm:`Are you sure you want to delete {{count}} colors?`,bulkDeleted:`Deleted {{count}} colors`,bulkDeleteFailed:`Failed to delete colors`},dateFormat:`Date Format`,dateFormatUs:`US (MM/DD/YYYY)`,dateFormatEu:`EU (DD/MM/YYYY)`,dateFormatIso:`ISO (YYYY-MM-DD)`,timeFormat:`Time Format`,timeFormat12:`12-hour (3:30 PM)`,timeFormat24:`24-hour (15:30)`,defaultPrinter:`Default Printer`,defaultPrinterDescription:`Pre-select this printer for uploads, reprints, and other operations.`,slicerBambuStudio:`Bambu Studio`,slicerOrcaSlicer:`OrcaSlicer`,sidebarOrderDescription:`Use Sidebar to reorder items, reset visibility, and manage custom links.`,setDefault:`Set Default`,sidebarOrderSetDefaultHint:`Set default applies the current menu order to users who haven't customized theirs.`,sidebarDefaultSet:`Default menu order has been set.`,sidebarDefaultCleared:`Default menu order cleared.`,sidebarDefaultFailed:`Failed to set default menu order.`,reset:`Reset`,darkMode:`Dark Mode`,lightMode:`Light Mode`,active:`(active)`,background:`Background`,accent:`Accent`,style:`Style`,bgNeutral:`Neutral`,bgWarm:`Warm`,bgCool:`Cool`,bgOled:`OLED Black`,bgSlate:`Slate Blue`,bgForest:`Forest Green`,accentGreen:`Green`,accentTeal:`Teal`,accentBlue:`Blue`,accentOrange:`Orange`,accentPurple:`Purple`,accentRed:`Red`,styleClassic:`Classic`,styleGlow:`Glow`,styleVibrant:`Vibrant`,themeToggleHint:`Toggle between dark, light, and system mode using the icon in the sidebar.`,autoArchivePrints:`Auto-archive prints`,autoArchiveDescription:`Automatically save 3MF files when prints complete`,saveThumbnailsDescription:`Extract and save preview images from 3MF files`,captureFinishPhotoDescription:`Take a photo from printer camera when print completes. Bambuddy records a brief timelapse during the print so the photo can be sourced from the moment before the bed drops; the timelapse file is kept if you enabled timelapse for this print, otherwise it is deleted automatically after the photo is captured.`,ffmpegNotInstalled:`ffmpeg not installed`,ffmpegRequired:`Camera capture requires ffmpeg. Install it via brew install ffmpeg (macOS) or apt install ffmpeg (Linux).`,camera:`Camera`,cameraViewMode:`Camera View Mode`,cameraOverlayDescription:`Camera opens in a resizable overlay on the main screen`,cameraWindowDescription:`Camera opens in a separate browser window`,externalCamerasDescription:`Configure external cameras to replace the built-in printer camera. Supports MJPEG streams, RTSP, HTTP snapshots, and USB cameras (V4L2). When enabled, the external camera is used for live view and finish photos.`,cameraPlaceholderUsb:`Device path (/dev/video0)`,cameraPlaceholderUrl:`Camera URL (rtsp://... or http://...)`,cameraTypeMjpeg:`MJPEG Stream`,cameraTypeRtsp:`RTSP Stream`,cameraTypeSnapshot:`HTTP Snapshot`,cameraTypeUsb:`USB Camera (V4L2)`,cameraSnapshotUrl:`Snapshot URL (optional)`,cameraSnapshotUrlPlaceholder:`http://192.168.1.61:1984/api/frame.jpeg?src=printer`,cameraSnapshotUrlHelp:`Single-frame URL used for notification thumbnails, finish photos, layer-timelapse frames, and plate detection. Timelapse and plate detection each require their own per-printer toggle — this URL is just the image source they pull from when active. Leave blank to capture from the live stream above. Useful for go2rtc (/api/frame.jpeg) and IP cameras with a dedicated snapshot endpoint.`,cameraRotation:`Rotation`,test:`Test`,connected:`Connected`,disconnected:`Disconnected`,currency:`Currency`,defaultFilamentCost:`Default filament cost (per kg)`,electricityCost:`Electricity cost per kWh`,energyDisplayMode:`Energy display mode`,energyModePrintDescription:`Dashboard shows sum of energy used during prints`,energyModeTotalDescription:`Dashboard shows lifetime energy from smart plugs`,fileManager:`File Manager`,createArchiveEntry:`Create Archive Entry When Printing`,createArchiveEntryDescription:`When printing from File Manager, optionally create an archive entry`,lowDiskSpaceWarning:`Low Disk Space Warning`,lowDiskSpaceDescription:`Show warning when free disk space falls below this threshold`,printerFirmware:`Printer Firmware`,checkFirmwareDescription:`Check for printer firmware updates from Bambu Lab`,bambuddySoftware:`Bambuddy Software`,autoCheckDescription:`Automatically check for new versions on startup`,checkNow:`Check now`,updateAvailableVersion:`Update available: v{{version}}`,releaseNotes:`Release Notes`,updateViaDocker:`Update via Docker Compose:`,updateViaHomeAssistant:`Updates are managed by the Home Assistant Supervisor. Open Settings → Add-ons → Bambuddy in Home Assistant to install the new version.`,updateViaWindowsInstaller:`Windows installations are updated by re-running the installer. Download the new version below — your data, settings and printers are preserved.`,downloadWindowsInstaller:`Download installer for v{{version}}`,installUpdate:`Install Update`,latestVersionRunning:`You're running the latest version`,failedToCheckUpdates:`Failed to check for updates: {{error}}`,backupRestore:`Backup & Restore`,backupRestoreDescription:`Export/import settings and configure GitHub backup`,goToBackup:`Go to Backup`,externalUrl:`External URL`,externalUrlDescription:`The external URL where Bambuddy is accessible. Used for notification images and external integrations.`,bambuddyUrl:`Bambuddy URL`,externalUrlHint:`Include protocol and port (e.g., http://192.168.1.100:8000)`,ftpRetry:`FTP Retry`,ftpRetryDescription:`Retry FTP operations when printer WiFi is unreliable. Applies to 3MF downloads, print uploads, timelapse downloads, and firmware updates.`,autoRetryDescription:`Automatically retry failed FTP operations`,retryAttempts:`Retry attempts`,retryDelay:`Retry delay`,connectionTimeout:`Connection timeout`,time_one:`{{count}} time`,time_other:`{{count}} times`,second_one:`{{count}} second`,second_other:`{{count}} seconds`,nSeconds:`{{count}} seconds`,increaseForWeakWifi:`Increase for printers with weak WiFi`,homeAssistant:`Home Assistant`,homeAssistantFullDescription:`Connect to Home Assistant to control smart plugs via HA's REST API. Supports switch, light, input_boolean, and script entities.`,homeAssistantUrl:`Home Assistant URL`,longLivedAccessToken:`Long-Lived Access Token`,haTokenHint:`Create a token in HA: Profile → Long-Lived Access Tokens → Create Token`,connectionSuccessful:`Connection Successful`,connectionFailed:`Connection Failed`,haConnectionSuccess:`Successfully connected to Home Assistant.`,haConnectionFailed:`Failed to connect to Home Assistant.`,mqttPublishing:`MQTT Publishing`,mqttDescription:`Publish BamBuddy events to an external MQTT broker for integration with Node-RED, Home Assistant, and other automation systems.`,mqttEnableDescription:`Publish events to external MQTT broker`,brokerHostname:`Broker hostname`,port:`Port`,usernameOptional:`Username (optional)`,passwordOptional:`Password (optional)`,topicPrefix:`Topic prefix`,topicPrefixHint:`Topics will be: {{prefix}}/printers//status, etc.`,prometheusMetrics:`Prometheus Metrics`,prometheusEndpointDescription:`Expose printer metrics at /api/v1/metrics for Prometheus/Grafana monitoring.`,bearerTokenOptional:`Bearer Token (optional)`,bearerTokenHint:`If set, requests must include Authorization: Bearer `,metricsConnectionStatus:`Connection status`,metricsPrinterState:`Printer state (idle/printing/etc)`,metricsPrintProgress:`Print progress 0-100%`,metricsBedTemp:`Bed temperature`,metricsNozzleTemp:`Nozzle temperature`,metricsPrintsTotal:`Total prints by result`,metricsMore:`...and more (layers, fans, queue, filament usage)`,smartPlugsDescription:`Connect smart plugs (Tasmota or Home Assistant) to automate power control and track energy usage for your printers.`,allOn:`All On`,allOff:`All Off`,addSmartPlug:`Add Smart Plug`,energySummary:`Energy Summary`,currentPower:`Current Power`,plugsOnline:`{{reachable}}/{{total}} plugs online`,today:`Today`,yesterday:`Yesterday`,total:`Total`,enablePlugsForSummary:`Enable plugs to see energy summary`,addNotificationProvider:`Add`,systemBadge:`(System)`,creating:`Creating...`,changing:`Changing...`,deleteUserAndItems:`Delete user AND their items`,deleteUserKeepItems:`Delete user, keep items (become ownerless)`,ok:`OK`,twoFa:{totpTitle:`Authenticator App (TOTP)`,totpDesc:`Use an authenticator app like Google Authenticator, Aegis or Authy.`,emailOtpTitle:`Email OTP`,emailOtpDesc:`Send a one-time code to {{email}} when you log in.`,emailOtpNoEmail:`Add an email address to your account to enable this method.`,addEmailFirst:`Your account has no email address. Ask an admin to add one before enabling Email OTP.`,setupTotp:`Set up Authenticator App`,setupAuthApp:`Set up Authenticator App`,setupInstructions:`Scan the QR code below with your authenticator app, then confirm with a code.`,manualEntry:`Can't scan? Enter this secret manually:`,scannedContinue:`I've scanned the code — continue`,enterCodeToConfirm:`Enter the 6-digit code from your authenticator app to confirm setup.`,activate:`Activate`,disableTotp:`Disable Authenticator`,disableConfirmHint:`Enter a valid TOTP code or a backup code to disable the authenticator.`,totpDisabled:`Authenticator app disabled.`,emailOtpEnabled:`Email OTP enabled.`,emailOtpDisabled:`Email OTP disabled.`,smtpRequired:`Please configure and test SMTP settings first.`,invalidCode:`Invalid code. Please try again.`,enableEmailOtp:`Enable Email OTP`,disableEmailOtp:`Disable Email OTP`,emailSetupEnterCode:`A verification code has been sent to your email address. Enter it below to confirm you own this inbox.`,verifyAndEnable:`Verify & Enable`,emailDisablePasswordHint:`Enter your account password to confirm disabling email OTP.`,passwordPlaceholder:`Enter your password`,backupCodesTitle:`Save your backup codes`,backupCodesWarning:`Save these codes somewhere safe. Each code can only be used once and they will not be shown again.`,backupCodesRemaining:`{{count}} backup codes remaining`,savedCodes:`I've saved my codes`,regenBackup:`Regenerate Backup Codes`,regenBackupHint:`Enter your current TOTP code to generate 10 new backup codes. All existing backup codes will be invalidated.`,newBackupCodes:`New backup codes`,linkedAccounts:`Linked SSO Accounts`,linkedAccountsDesc:`These external identity providers are linked to your account.`,oidcUnlinked:`Account unlinked.`},sessionPolicy:{title:`Session Policy`,description:`Maximum session lifetime for new user logins. Already-issued tokens keep their original expiry.`,preset24h:`24 hours`,preset7d:`7 days`,preset30d:`30 days`,customHoursLabel:`Custom session lifetime in hours`,hoursSuffix:`hours`,warning:`Longer sessions reduce automatic logout protection. Recommended only for trusted single-user deployments.`},oidc:{title:`SSO / OIDC Providers`,desc:`Configure OpenID Connect providers to allow single sign-on via external identity providers.`,addProvider:`Add Provider`,newProvider:`New Provider`,empty:`No OIDC providers configured yet.`,created:`Provider created.`,updated:`Provider updated.`,deleted:`Provider deleted.`,refreshIcon:`Refresh icon`,removeIcon:`Remove icon`,iconRefreshed:`Icon refreshed.`,iconRemoved:`Icon removed.`,iconFetchFailed:`Icon could not be fetched from the provider URL.`,deleteTitle:`Delete Provider`,deleteMessage:`Delete "{{name}}"? All linked user accounts will be disconnected.`,form:{name:`Display Name`,issuerUrl:`Issuer URL`,clientId:`Client ID`,clientSecret:`Client Secret`,scopes:`Scopes`,iconUrl:`Icon URL (optional)`,enabled:`Enabled`,autoCreate:`Auto-create users`,autoCreateDesc:`Automatically create a local account on first login.`,autoLink:`Auto-link existing accounts`,autoLinkDesc:`Link existing local accounts by matching email on first login.`,secretHint:`leave blank to keep current`,secretPlaceholder:`new secret`,emailClaim:`Email Claim`,emailClaimDesc:`JWT claim used as email identity. Use 'preferred_username' or 'upn' for Azure Entra ID (which does not send email_verified). Only use trusted claim names.`,emailClaimPlaceholder:`email`,emailClaimCustomClaimAutoLinkWarning:`Custom claims are safe for auto-link only when the value is tenant-administered (e.g. Azure Entra ID upn / preferred_username). Do not enable auto-link if your IdP allows users to self-assert this claim.`,requireEmailVerified:`Require email verified`,requireEmailVerifiedDesc:`Only accept the email claim when the provider marks it as verified.`,requireEmailVerifiedWarning:`Warning: email will be accepted even without verification. Use only with trusted providers.`,requireEmailVerifiedAutoLink:`Disable auto-link first to change this setting.`,defaultGroup:`Default Group`,defaultGroupDesc:`Group assigned to auto-created users. Falls back to Viewers if not set.`,defaultGroupViewersFallback:`Viewers (default)`,autologin:`Autologin`,autologinDesc:`Redirect unauthenticated visitors straight to this provider. Only one provider can carry this flag.`}},encryption:{title:`MFA Encryption Status`,enabledFromEnv:`At-rest encryption enabled (key from MFA_ENCRYPTION_KEY environment variable)`,enabledFromFile:`At-rest encryption enabled (key loaded from data directory)`,enabledGenerated:`At-rest encryption enabled with auto-generated key`,notConfigured:`At-rest encryption not configured`,notConfiguredDesc:`TOTP secrets and OIDC client_secrets are stored in plaintext. Set MFA_ENCRYPTION_KEY or restart Bambuddy with a writable data directory to auto-generate one.`,allEncrypted:`All MFA secrets are encrypted at rest.`,legacyRowsLabel:`Legacy plaintext rows`,encryptedRowsLabel:`Encrypted rows`,legacyRowsWarning:`{{count}} legacy plaintext row(s) detected. Re-save the OIDC provider or re-enroll the user’s authenticator app to migrate to encrypted storage.`,backupHint:`The auto-generated key is stored at DATA_DIR/.mfa_encryption_key and is included in local backup ZIPs. Keep your backups secure or set MFA_ENCRYPTION_KEY explicitly.`,decryptionBrokenTitle:`Encryption key missing`,decryptionBrokenError:`{{count}} encrypted record(s) cannot be decrypted because the encryption key is no longer available. Restore the previous MFA_ENCRYPTION_KEY or DATA_DIR/.mfa_encryption_key to recover.`,migrationErrorWarning:`{{count}} legacy row(s) failed to re-encrypt at startup. Check server logs and restart Bambuddy to retry.`},pipelineLimits:{title:`Slicer Pipeline limits`,maxCopiesLabel:`Max copies per run`,maxCopiesDesc:`Upper bound on the copies operators can request when running a pipeline. Server-side hard cap is 1000.`},pipelines:{title:`Slicer Pipelines`,subtitle:`Reusable preset bundles (printer + process + filaments + bed type). Save one from the Slice dialog and apply it with a single click on the next file.`,loading:`Loading pipelines…`,loadError:`Could not load pipelines.`,confirmDelete:`Delete this pipeline? This cannot be undone.`,staleWarning:`One or more referenced presets no longer exist. Re-save this pipeline from the Slice dialog to fix.`,empty:{title:`No pipelines yet.`,howto:`Open the Slice dialog for any file, pick your printer / process / filaments / bed type, then click "Save as pipeline". Your saved pipelines will appear here.`},field:{name:`Pipeline name`,description:`Description`,targetPrinter:`Target printer`,noTarget:`— No target —`,targetKind:`Target type`,targetKindSpecific:`Specific printer`,targetKindClass:`Printer class`,targetModelClass:`Printer model`,fanoutStrategy:`Fanout strategy`,fanout:{max_parallel:`Max parallel — distribute across any idle matching printer`,round_robin:`Round robin — cycle through eligible printers`,fill_one_first:`Fill one first — pin all copies to one printer`},fanoutShort:{max_parallel:`parallel`,round_robin:`round robin`,fill_one_first:`fill one first`}},action:{save:`Save`,cancel:`Cancel`,rename:`Rename`,delete:`Delete`},slot:{printer:`Printer`,process:`Process`,filament:`Filament`,filamentN:`Filament {{n}}`,filamentAll:`All {{n}} slots`,bed:`Bed`},group:{profiles:`Profiles`,filaments:`Filaments`},searchPlaceholder:`Search pipelines…`,filterTargetType:`Filter by target type`,filterTarget:`Filter by target`,filter:{all:`All targets`,noTarget:`No target set`,count:`{{shown}} / {{total}}`,noMatches:`No pipelines match the current filters.`},toast:{saved:`Pipeline saved`,saveFailed:`Save failed`,deleted:`Pipeline deleted`,deleteFailed:`Delete failed`},noTargetHint:`Set a target printer to run this`,noTargetWarning:`Set a target printer before running this pipeline.`,runs:{lastRun:`Last run`,status:{queued:`queued`,slicing:`slicing`,dispatching:`dispatching`,in_progress:`printing`,completed:`completed`,failed:`failed`,partial_failure:`partial failure`,cancelled:`cancelled`}}}},notification:{printStarted:{title:`Print Started`,body:`{{printer}}: {{filename}} has started printing`},printCompleted:{title:`Print Completed`,body:`{{printer}}: {{filename}} completed successfully`},printFailed:{title:`Print Failed`,body:`{{printer}}: {{filename}} has failed`},printStopped:{title:`Print Stopped`,body:`{{printer}}: {{filename}} was stopped`},printProgress:{title:`Print Progress`,body:`{{printer}}: {{filename}} is {{percent}}% complete`},printerOffline:{title:`Printer Offline`,body:`{{printer}} is offline`},printerError:{title:`Printer Error`,body:`{{printer}}: {{error}}`},filamentLow:{title:`Low Filament`,body:`{{printer}}: Filament is running low`},maintenanceDue:{title:`Maintenance Due`,body:`{{printer}}: {{items}} need attention`}},errors:{generic:`Something went wrong`,networkError:`Network error. Please check your connection.`,notFound:`Not found`,unauthorized:`Unauthorized`,serverError:`Server error`,validationError:`Please check your input`,printerConnectionFailed:`Failed to connect to printer`,saveFailed:`Failed to save changes`,deleteFailed:`Failed to delete`,loadFailed:`Failed to load data`},hmsErrors:{title:`Errors - {{name}}`,noErrors:`No errors`,viewOnWiki:`View on Bambu Lab Wiki`,unknownCode:`Unknown HMS code — see the Bambu Lab wiki for details.`,clearInstructions:`Clear errors on the printer to dismiss them here.`,clearErrors:`Clear Errors`,clearSuccess:`HMS errors cleared`,clearFailed:`Failed to clear HMS errors`,actionSuccess:`Action sent to printer`,actionFailed:`Failed to send action`,actions:{RESUME_PRINTING:`Resume Printing`,RESUME_PRINTING_DEFECTS:`Resume (defects acceptable)`,RESUME_PRINTING_PROBELM_SOLVED:`Resume (problem solved)`,STOP_PRINTING:`Stop Printing`,CHECK_ASSISTANT:`Check Assistant`,FILAMENT_EXTRUDED:`Filament Extruded, Continue`,RETRY_FILAMENT_EXTRUDED:`Not Extruded Yet, Retry`,CONTINUE:`Finished, Continue`,LOAD_VIRTUAL_TRAY:`Load Filament`,OK_BUTTON:`OK`,FILAMENT_LOAD_RESUME:`Filament Loaded, Resume`,JUMP_TO_LIVEVIEW:`View Liveview`,NO_REMINDER_NEXT_TIME:`No Reminder Next Time`,REFRESH_NOZZLE:`Recheck`,IGNORE_NO_REMINDER_NEXT_TIME:`Ignore. Don't Remind Next Time`,IGNORE_RESUME:`Ignore this and Resume`,PROBLEM_SOLVED_RESUME:`Problem Solved and Resume`,TURN_OFF_FIRE_ALARM:`Got it, Turn off the Fire Alarm.`,RETRY_PROBLEM_SOLVED:`Retry (problem solved)`,CANCLE:`Cancle`,STOP_DRYING:`Stop Drying`,PROCEED:`Proceed`,OK_JUMP_RACK:`OK`,ABORT:`Abort`,DISABLE_PURIFICATION:`Disable Purification for This Print`,DONT_REMIND_NEXT_TIME:`Don't Remind Me`,DBL_CHECK_CANCEL:`Cancel`,DBL_CHECK_DONE:`Done`,DBL_CHECK_RETRY:`Retry`,DBL_CHECK_RESUME:`Resume`,DBL_CHECK_OK:`Confirm`,REMOVE_CLOSE_BTN:`Close`}},mqttDebug:{title:`MQTT Debug Log`,searchPlaceholder:`Search topic or payload...`,noMessages:`No messages logged yet`,startLoggingHint:`Click "Start Logging" to begin capturing MQTT messages`,noMessagesMatch:`No messages match your filter`,adjustFilterHint:`Try adjusting your search or filter criteria`,incoming:`Incoming`,outgoing:`Outgoing`,loggingStopped:`Logging stopped`,loggingActive:`Logging active - messages will auto-refresh`,startLogging:`Start Logging`,stopLogging:`Stop Logging`,clearLog:`Clear Log`,topic:`Topic`,timestamp:`Timestamp`,direction:`Direction`,all:`All`},printerFiles:{title:`File Manager`,storageUsed:`Used:`,storageFree:`Free:`,filterPlaceholder:`Filter files...`,deleteButton:`Delete`,deleteFiles:`Delete {{count}} Files`,deleteFileConfirm:`Delete "{{name}}"? This cannot be undone.`,deleteFilesConfirm:`Delete {{count}} selected files? This cannot be undone.`,noFiles:`No files on printer`,loadingFiles:`Loading files...`,failedToLoad:`Failed to load files`,toast:{filesDeleted:`Deleted {{count}} file(s)`,deleteFailed:`Delete failed: {{error}}`}},confirm:{delete:`Are you sure you want to delete this?`,unsavedChanges:`You have unsaved changes. Are you sure you want to leave?`,clearQueue:`Are you sure you want to clear the queue?`},login:{title:`Bambuddy Login`,subtitle:`Sign in to your account`,username:`Username`,usernamePlaceholder:`Enter your username`,usernameOrEmail:`Username or Email`,usernameOrEmailPlaceholder:`Username or @ Email`,password:`Password`,passwordPlaceholder:`Enter your password`,signIn:`Sign in`,signingIn:`Logging in...`,rememberMe:`Remember Me`,forgotPassword:`Forgot your password?`,autologinFailed:`Automatic SSO sign-in failed. Pick a provider below to continue.`,localDisabledNotice:`Local sign-in is disabled. Use one of the SSO providers below.`,loginSuccess:`Logged in successfully`,loginFailed:`Login failed`,enterCredentials:`Please enter username and password`,enterEmail:`Please enter your email address`,oidcLoginFailed:`OIDC login failed`,oidcErrors:{providerError:`The identity provider returned an error`,missingParameters:`OIDC callback is missing required parameters`,invalidState:`OIDC state is invalid or has already been used`,stateExpired:`OIDC login session expired — please try again`,providerNotFound:`OIDC provider not found`,discoveryFailed:`Failed to fetch OIDC discovery document`,invalidDiscovery:`OIDC discovery document is invalid`,networkError:`Network error during OIDC token exchange`,badResponse:`Unexpected response during OIDC token exchange`,noIdToken:`OIDC provider did not return an ID token`,validationFailed:`OIDC token validation failed`,nonceMismatch:`OIDC nonce mismatch — possible replay attack`,missingSubClaim:`OIDC token is missing the sub claim`,noLinkedAccount:`No local account is linked to this OIDC identity`,accountInactive:`Your account is inactive`,userResolutionFailed:`Failed to resolve your account`,internalError:`An internal error occurred during OIDC login`,tokenExchangeFailed:`OIDC token exchange failed`},forgotPasswordTitle:`Forgot Password`,forgotPasswordMessage:`If you've forgotten your password, please contact your system administrator to reset it.`,forgotPasswordEmailMessage:`Enter your email address and we'll send you a new password.`,emailAddress:`Email Address`,emailPlaceholder:`your.email@example.com`,cancel:`Cancel`,sending:`Sending...`,sendResetEmail:`Send Reset Email`,howToReset:`How to reset your password:`,resetStep1:`Contact your Bambuddy administrator`,resetStep2:`Ask them to reset your password in User Management`,resetStep3:`They can set a new temporary password for you`,resetStep4:`Log in with the new password and change it in Settings`,gotIt:`Got it`,resetPassword:{title:`Set New Password`,subtitle:`Enter and confirm your new password below.`,newPassword:`New Password`,newPasswordPlaceholder:`At least 8 characters`,confirmPassword:`Confirm Password`,confirmPasswordPlaceholder:`Repeat new password`,saving:`Saving…`,submit:`Set New Password`,backToLogin:`Back to login`,passwordsDoNotMatch:`Passwords do not match`,passwordTooShort:`Password must be at least 8 characters`,resetFailed:`Password reset failed. The link may have expired.`},twoFA:{title:`Two-Factor Authentication`,subtitle:`Your account is protected with 2FA. Enter the verification code below.`,methodAuthenticator:`Authenticator App`,methodEmail:`Email Code`,methodBackup:`Backup Code`,instructionsTotp:`Open your authenticator app and enter the 6-digit code for Bambuddy.`,instructionsEmail:`A 6-digit code has been sent to your email address. It expires in 10 minutes.`,instructionsEmailNotSent:`Click the button below to receive a verification code via email.`,instructionsBackup:`Enter one of your 8-character backup recovery codes. Each code can only be used once.`,sendCodeButton:`Send Code via Email`,sendingCode:`Sending...`,resendCode:`Resend code`,codeLabel:`Verification Code`,backupCodeLabel:`Backup Code`,codePlaceholder:`000000`,backupCodePlaceholder:`XXXXXXXX`,verifyButton:`Verify`,verifyingButton:`Verifying...`,backToLogin:`← Back to login`,orContinueWith:`or continue with`,signInWith:`Sign in with {{provider}}`,enterCode:`Please enter the verification code`,sendCodeFailed:`Failed to send verification code`,invalidCode:`Invalid code. Please try again.`}},setup:{title:`Bambuddy Setup`,subtitle:`Configure authentication for your Bambuddy instance`,enableAuth:`Enable Authentication`,adminAccount:`Admin Account`,adminAccountDesc:`If admin users already exist, authentication will be enabled using the existing admin accounts. Leave the fields below empty to use existing admins, or enter new credentials to create a new admin user.`,adminUsername:`Admin Username`,adminPassword:`Admin Password`,optionalIfAdminExists:`(optional if admin users exist)`,adminUsernamePlaceholder:`Enter admin username (optional)`,adminPasswordPlaceholder:`Enter admin password (optional)`,confirmPassword:`Confirm Password`,confirmPasswordPlaceholder:`Confirm admin password`,settingUp:`Setting up...`,completeSetup:`Complete Setup`,toast:{authEnabledAdminCreated:`Authentication enabled and admin user created`,authEnabledExistingAdmins:`Authentication enabled using existing admin users`,setupCompleted:`Setup completed`,enterBothCredentials:`Please enter both admin username and password, or leave both empty to use existing admin users`,passwordsDoNotMatch:`Passwords do not match`,passwordTooShort:`Password must be at least 6 characters`}},changePassword:{title:`Change Password`,currentPassword:`Current Password`,currentPasswordPlaceholder:`Enter current password`,newPassword:`New Password`,newPasswordPlaceholder:`Enter new password (min 6 characters)`,confirmPassword:`Confirm New Password`,confirmPasswordPlaceholder:`Confirm new password`,passwordsDoNotMatch:`Passwords do not match`,passwordTooShort:`Password must be at least 6 characters`,changing:`Changing...`,success:`Password changed successfully`,failed:`Failed to change password`},plateAlert:{title:`Print Paused!`,message:`Objects detected on build plate. The print has been automatically paused. Please clear the plate and resume the print.`,understand:`I Understand`},camera:{title:`Camera View`,invalidPrinterId:`Invalid printer ID`,live:`Live`,snapshot:`Snapshot`,restartStream:`Restart stream`,refreshSnapshot:`Refresh snapshot`,fullscreen:`Fullscreen`,exitFullscreen:`Exit fullscreen`,connectingToCamera:`Connecting to camera...`,capturingSnapshot:`Capturing snapshot...`,connectionLost:`Connection lost`,connectionFailed:`Camera connection failed`,reconnecting:`Reconnecting in {{countdown}}s... (attempt {{attempt}}/{{max}})`,reconnectNow:`Reconnect now`,cameraUnavailable:`Camera unavailable`,cameraUnavailableDesc:`Make sure the printer is powered on and connected.`,noCamera:`No camera available`,retry:`Retry`,cameraStream:`Camera stream`,zoomOut:`Zoom out`,zoomIn:`Zoom in`,resetZoom:`Reset zoom`,recording:`Recording`,startRecording:`Start Recording`,stopRecording:`Stop Recording`,chamberLight:`Toggle chamber light`,unavailable:`Camera unavailable`,diagnose:{button:`Diagnose`,modalTitle:`Camera diagnostic`,running:`Running diagnostic...`,runFailed:`Diagnostic could not run: {{error}}`,retry:`Run again`,stage:{tcp_reachable:`Network reachability`,first_frame:`Frame capture`,live_stream_active:`Live stream active`},summary:{all_ok:`Camera is working. The diagnostic completed all stages successfully.`,live_stream_active_healthy:`Camera is currently streaming with recent frames — no test needed.`,printer_unreachable:`Printer is not reachable. Check the IP address, network connection, and that the printer is powered on.`,camera_port_closed:`Printer is reachable but the camera port is closed. Make sure LAN-only mode and Developer Mode are enabled in the printer settings.`,no_frame:`Connected to the camera but no frames were received. Try again, or check that the camera is enabled in the printer settings.`,unknown_failure:`Camera diagnostic failed for an unknown reason. Check the support log for details.`},meta:{protocol:`Protocol`,port:`Port`,profile:`Profile`}}},groups:{title:`Group Management`,subtitle:`Manage permission groups for access control`,backToSettings:`Back to Settings`,createGroup:`Create Group`,noPermission:`You do not have permission to access this page.`,system:`System`,noDescription:`No description`,usersCount:`{{count}} users`,permissionsCount:`{{count}} permissions`,edit:`Edit`,delete:`Delete`,toast:{created:`Group created successfully`,updated:`Group updated successfully`,deleted:`Group deleted successfully`,enterGroupName:`Please enter a group name`},modal:{editGroup:`Edit Group`,createGroup:`Create Group`,cancel:`Cancel`,saving:`Saving...`,creating:`Creating...`,saveChanges:`Save Changes`},form:{groupName:`Group Name`,groupNamePlaceholder:`Enter group name`,systemGroupWarning:`System group names cannot be changed`,description:`Description`,descriptionPlaceholder:`Enter description (optional)`,permissions:`Permissions ({{count}} selected)`},deleteModal:{title:`Delete Group`,message:`Are you sure you want to delete this group? Users in this group will lose these permissions.`,confirm:`Delete Group`},editor:{title:`Edit Group`,createTitle:`Create Group`,search:`Search permissions...`,selectAll:`Select All`,clearAll:`Clear All`,permissionsSelected:`{{count}} selected`,noResults:`No permissions match your search`,websocketHint:`Required for live updates. Without it, the interface falls back to periodic polling.`}},users:{title:`User Management`,subtitle:`Manage users and their access to your Bambuddy instance`,backToSettings:`Back to Settings`,createUser:`Create User`,noPermission:`You do not have permission to access this page.`,admin:`Admin`,noGroups:`No groups`,active:`Active`,inactive:`Inactive`,edit:`Edit`,delete:`Delete`,system:`System`,noGroupsAvailable:`No groups available`,table:{username:`Username`,groups:`Groups`,status:`Status`,actions:`Actions`},toast:{created:`User created successfully`,updated:`User updated successfully`,deleted:`User deleted successfully`,fillRequired:`Please fill in all required fields`,passwordsDoNotMatch:`Passwords do not match`,passwordTooShort:`Password must be at least 6 characters`,ldapProvisioned:`Provisioned LDAP user "{{username}}"`},modal:{createUser:`Create User`,editUser:`Edit User`,cancel:`Cancel`,creating:`Creating...`,saving:`Saving...`,saveChanges:`Save Changes`,advancedAuthSubtitle:`with Advanced Authentication`,tabsAriaLabel:`User source`,localTab:`Local`,ldapTab:`LDAP`,ldapSearchLabel:`Search directory`,ldapSearchPlaceholder:`Type a username, name, or email...`,ldapMinChars:`Type at least 2 characters to search`,ldapTypeToSearch:`Start typing to search the LDAP directory`,ldapSearching:`Searching directory...`,ldapNoResults:`No matching users in the directory`,ldapSearchError:`Directory search failed. Check the LDAP server status.`,ldapAlreadyProvisioned:`Already provisioned`,ldapSelectedLabel:`Selected`,ldapProvision:`Provision user`,ldapProvisioning:`Provisioning...`,ldapErrorProvision:`Provisioning failed. Check the LDAP server status and try again.`},form:{username:`Username`,usernamePlaceholder:`Enter username`,email:`Email`,emailPlaceholder:`user@example.com`,password:`Password`,passwordPlaceholder:`Enter password`,confirmPassword:`Confirm Password`,confirmPasswordPlaceholder:`Confirm password`,newPasswordPlaceholder:`Enter new password`,confirmNewPasswordPlaceholder:`Confirm new password`,leaveBlankToKeep:`leave blank to keep current`,groups:`Groups`,optional:`optional`,autoGeneratedPassword:`A secure password will be automatically generated and emailed to the user.`,passwordManagedByAdvancedAuth:`Password is managed by Advanced Authentication. Use "Reset Password" to send a new password to the user via email.`,resetPassword:`Reset Password`,resettingPassword:`Resetting Password...`},deleteModal:{title:`Delete User`,message:`Are you sure you want to delete this user? This action cannot be undone.`,confirm:`Delete User`}},streamOverlay:{title:`Stream Overlay`,invalidPrinterId:`Invalid printer ID`,cameraStream:`Camera stream`,progress:`Progress`,eta:`ETA`,printerIdle:`Printer is idle`,printerOffline:`Printer offline`,status:{printing:`Printing`,paused:`Paused`,finished:`Finished`,failed:`Failed`,idle:`Idle`,unknown:`Unknown`}},profiles:{title:`Profiles`,subtitle:`Manage your slicer presets and pressure advance calibrations`,tabs:{bambuCloud:`Bambu Cloud`,orcaCloud:`Orca Cloud`,local:`Local Profiles`,kprofiles:`K-Profiles`},orcaCloud:{connectedAs:`Connected as`,logout:`Disconnect`,noLogoutPermission:`You do not have permission to disconnect`,noConnectPermission:`You do not have permission to connect to Orca Cloud`,retry:`Retry`,back:`Use a different sign-in method`,connect:{title:`Connect to Orca Cloud`,description:`Sign in to your Orca Cloud account to sync your slicer profiles into Bambuddy.`},providers:{google:`Sign in with Google`,apple:`Sign in with Apple`,github:`Sign in with GitHub`,email:`Sign in with email and password`},password:{title:`Sign in with email and password`,email:`Email`,emailPlaceholder:`you@example.com`,password:`Password`,submit:`Sign in`},paste:{title:`Finish signing in`,step1:`A new tab opened with the Orca Cloud sign-in page. Sign in with your Orca account.`,step2:`Your browser will be redirected to a "localhost" URL that fails to load. That is expected — the URL is what we need.`,step3:`Copy the entire URL from your browser's address bar and paste it below.`,signInUrl:`If the sign-in tab did not open, click this URL:`,label:`Paste the callback URL here`,placeholder:`http://localhost:41172/callback?code=...&state=...`,submit:`Finish connecting`},profiles:{title:`Your Orca Cloud profiles ({{count}})`,refresh:`Refresh`,empty:`No profiles found in your Orca Cloud account yet.`},toast:{connected:`Connected to Orca Cloud as {{email}}`,disconnected:`Disconnected from Orca Cloud`},errors:{startFailed:`Could not start the Orca Cloud sign-in flow.`,finishFailed:`Could not finish the Orca Cloud sign-in.`,passwordFailed:`Could not sign in with that email and password.`,passwordEmpty:`Please enter both your email and password.`,emptyPaste:`Please paste the callback URL from your browser.`,noCode:`That URL does not look like an Orca Cloud callback (no code parameter). Copy the full URL from your address bar.`}},localProfiles:{title:`Local Profiles`,subtitle:`Import and manage slicer presets from OrcaSlicer`,import:`Import Profiles`,importDesc:`Drop .bbscfg, .bbsflmt, .orca_filament, .zip, or .json files here`,importing:`Importing...`,search:`Search local presets...`,noPresets:`No local presets yet`,noSearchResults:`No presets match your search`,badge:`Local`,edit:`Edit`,delete:`Delete`,cancel:`Cancel`,deleteConfirmTitle:`Delete Preset`,deleteConfirm:`Are you sure you want to delete this preset? This cannot be undone.`,source:`Source`,inheritsFrom:`Inherits`,filamentType:`Type`,vendor:`Vendor`,compatiblePrinters:`Printers`,nozzleTemp:`Nozzle Temp`,cost:`Cost`,density:`Density`,pressureAdvance:`Pressure Advance`,filament:`Filament`,process:`Process`,printer:`Printer`,toast:{importSuccess:`{{count}} preset(s) imported`,importSkipped:`{{count}} preset(s) skipped (duplicates)`,importError:`{{count}} error(s) during import`,deleted:`Preset deleted`,updated:`Preset updated`}},connectedAs:`Connected as`,logout:`Logout`,noLogoutPermission:`You do not have permission to logout`,failedToLoad:`Failed to load profiles`,retry:`Retry`,time:{justNow:`Just now`,minsAgo:`{{count}}m ago`,hoursAgo:`{{count}}h ago`,daysAgo:`{{count}}d ago`},toast:{loggedOut:`Logged out`},login:{title:`Connect to Bambu Cloud`,subtitle:`Sync your slicer presets across devices`,email:`Email`,password:`Password`,region:`Region`,regionGlobal:`Global`,regionChina:`China`,verificationCode:`Verification Code`,totpCode:`Authenticator Code`,checkEmail:`Check your email ({{email}}) for a 6-digit code`,enterTotpHint:`Enter the 6-digit code from your authenticator app`,accessToken:`Access Token`,accessTokenHint:`Paste your Bambu Cloud access token. China-region accounts must use this path (phone-bound — email login unavailable). See the wiki for how to retrieve the token from MakerWorld cookies.`,back:`Back`,loginButton:`Login`,verifyButton:`Verify`,setTokenButton:`Set Token`,useToken:`Use access token instead`,useEmail:`Login with email instead`,toast:{loggedIn:`Logged in successfully`,codeSent:`Verification code sent to your email`,enterTotp:`Enter code from your authenticator app`,tokenSet:`Token set successfully`}},presets:{myPreset:`My preset (editable)`,duplicate:`Duplicate`,editable:`Editable`,failedToLoadDetails:`Failed to load preset details`,deleteConfirm:`Delete this preset?`,deleteWarning:`This will permanently delete "{{name}}" from Bambu Cloud. This cannot be undone.`,noDuplicatePermission:`You do not have permission to duplicate presets`,noEditPermission:`You do not have permission to edit presets`,noDeletePermission:`You do not have permission to delete presets`,types:{filament:`Filament preset`,printer:`Printer preset`,process:`Process preset`},toast:{deleted:`Preset deleted`,created:`Preset created`,updated:`Preset updated`,duplicated:`Preset duplicated`,fieldAdded:`Field "{{key}}" added`,exported:`Preset exported`},baseLabel:`Base: {{name}}`,currentLabel:`Current: {{name}}`,newPreset:`New Preset`,editPreset:`Edit Preset`,duplicatePreset:`Duplicate Preset`,createNewPreset:`Create New Preset`,customizeSettings:`Customize settings for your new preset`,compareWithBase:`Compare with base preset`,compare:`Compare`,basePreset:`Base Preset`,selectBasePreset:`Select base preset...`,presetName:`Preset Name`,myCustomPreset:`My custom preset`,inheritsFrom:`Inherits from`,dropJsonToImport:`Drop JSON to import`,tabs:{common:`Common`,allFields:`All Fields`},availableFields:`Available Fields`,searchFieldsPlaceholder:`Search fields...`,noMatchingFields:`No matching fields`,allFieldsAdded:`All fields added`,addCustomField:`Add custom field`,yourOverrides:`Your Overrides`,noOverridesYet:`No overrides yet`,clickFieldsToAdd:`Click fields on the left to add them`,saveAsTemplate:`Save as template`,jsonTip:`Tip: Drag & drop a .json file anywhere on this modal to import settings`},cloudView:{searchPlaceholder:`Search presets...`,templates:`Templates`,refresh:`Refresh`,newPreset:`New Preset`,clearFilters:`Clear filters`,compareMode:`Compare Mode`,selectAnotherPreset:`Select another {{type}} preset`,clickTwoPresets:`Click two presets of the same type to compare`,selectFirst:`1. Select first`,selectSecond:`2. Select second`,compareNow:`Compare Now`,lastSynced:`Last synced:`,showingCount:`Showing {{showing}} of {{total}} presets`,noPresetsFound:`No presets found`,columns:{filament:`Filament`,process:`Process`,printer:`Printer`},noFilamentPresets:`No filament presets`,noProcessPresets:`No process presets`,noPrinterPresets:`No printer presets`,filters:{type:`Type`,owner:`Owner`,printer:`Printer`,nozzle:`Nozzle`,filament:`Filament`,layer:`Layer`,all:`All`,myPresets:`My Presets`,builtIn:`Built-in`,process:`Process`},noTemplatesPermission:`You do not have permission to manage templates`,noRefreshPermission:`You do not have permission to refresh profiles`,noCreatePermission:`You do not have permission to create presets`},templates:{title:`Quick Templates`,noTemplates:`No templates yet`,createFirst:`Create templates from the preset editor`,typeFilter:`Type:`,deleteTitle:`Delete Template`,deleteWarning:`This action cannot be undone`,deleteConfirm:`Are you sure you want to delete "{{name}}"?`,namePlaceholder:`Template name`,descriptionPlaceholder:`Description`,settingsJson:`Settings (JSON)`,fieldsCount:`{{count}} fields`,shownInModals:`Shown in modals`,hiddenInModals:`Hidden in modals`,apply:`Apply`,toast:{deleted:`Template deleted`,updated:`Template updated`,created:`Template created`,applied:`Template applied`}}},support:{debugLoggingActive:`Debug logging is active`,manageLogs:`Manage`,collectItem7:`Printer connectivity and firmware versions`,collectItem8:`Integration status (Spoolman, MQTT, HA)`,collectItem9:`Network interfaces (subnets only)`,collectItem10:`Python package versions`,collectItem11:`Database health checks`,collectItem12:`Docker environment details`,bundleGenerating:`Generating bundle...`,bundleStepConnection:`Running printer connectivity checks`,bundleStepVirtualPrinters:`Running virtual-printer setup checks`,bundleStepLogScan:`Scanning recent logs for known issues`,bundleStepBuild:`Building the support bundle ZIP`},fileManager:{title:`File Manager`,subtitle:`Organize and manage your print files`,uploadFiles:`Upload Files`,newFolder:`New Folder`,folderName:`Folder Name`,folderNamePlaceholder:`e.g., Functional Parts`,renameFile:`Rename File`,renameFolder:`Rename Folder`,invalidFilenameChar:`The character "{{char}}" is not allowed in print filenames. The printer SD card rejects: < > : " / \\ | ? *`,moveFiles:`Move {{count}} File(s)`,rootNoFolder:`Root (No Folder)`,current:`current`,linkFolder:`Link Folder`,linkFolderDescription:`Link "{{name}}" to a project or archive for quick access.`,project:`Project`,archive:`Archive`,noProjectsFound:`No projects found`,noArchivesFound:`No archives found`,unlink:`Unlink`,link:`Link`,dragDropFiles:`Drag & drop files here`,dropFilesHere:`Drop files here`,releaseToUpload:`Release to upload`,orClickToBrowse:`or click to browse`,allFileTypesSupported:`All file types supported. ZIP files will be extracted.`,zipFilesDetected:`ZIP files detected`,zipExtractOptions:`ZIP files will be extracted. Choose how to handle folder structure:`,preserveZipStructure:`Preserve folder structure from ZIP`,createFolderFromZip:`Create folder from ZIP filename`,stlThumbnailGeneration:`STL thumbnail generation`,zipMayContainStl:`ZIP files may contain STL files. Thumbnails can be generated during extraction.`,thumbnailsCanBeGenerated:`Thumbnails can be generated for STL files. Large models may take longer to process.`,generateThumbnailsForStl:`Generate thumbnails for STL files`,threemfDetected:`3MF files detected`,threemfExtractionInfo:`Printer model, material, color, and print settings will be automatically extracted from 3MF files.`,willBeExtracted:`Will be extracted`,filesExtracted:`{{count}} files extracted`,uploadComplete:`Upload complete: {{succeeded}} succeeded`,uploadFailed:`Upload failed`,zipFilesFailed:`{{count}} files failed`,uploading:`Uploading...`,changeLink:`Change Link...`,linkTo:`Link to...`,linkToProjectOrArchive:`Link to project or archive`,generateThumbnail:`Generate Thumbnail`,generateThumbnails:`Generate Thumbnails`,generateThumbnailsForMissing:`Generate thumbnails for STL files missing them`,gridView:`Grid view`,listView:`List view`,lowDiskSpaceWarning:`Low disk space warning`,lowDiskSpaceDetails:`Only {{free}} free of {{total}} total. Threshold is set to {{threshold}} GB in settings.`,files:`Files`,folders:`Folders`,size:`Size`,free:`Free`,allFiles:`All Files`,allExternal:`External`,externalIsEmpty:`No external files`,externalEmptyDescription:`Files in your linked external folders will appear here.`,wrap:`Wrap`,enableTextWrapping:`Enable text wrapping`,disableTextWrapping:`Disable text wrapping`,collapse:`Collapse`,collapseFoldersByDefault:`Collapse folders by default`,expandFoldersByDefault:`Expand folders by default`,folderSort:`Sort folders`,folderSortByName:`By name`,folderSortByActivity:`By recent activity`,dragToResizeTooltip:`Drag to resize, double-click to reset`,searchFiles:`Search files...`,searchSubfoldersHint:`Including subfolders`,readme:{truncated:`Truncated`},tags:{title:`Tags`,subtitle:`Label files for cross-cutting filtering — toys, kid-safe, PETG-only, anything.`,manage:`Tags`,manageTitle:`Manage tag catalog`,add:`New tag`,edit:`Rename tag`,name:`Name`,fileCount:`Files`,empty:`No tags yet. Create one to start labelling files.`,noMatches:`No matching tags.`,createPlaceholder:`e.g. toys, kid-safe, petg`,createButton:`Create`,nameRequired:`Name is required.`,searchPlaceholder:`Filter tags...`,created:`Tag created.`,updated:`Tag renamed.`,deleted:`Tag removed.`,saveFailed:`Could not save tag.`,deleteFailed:`Could not remove tag.`,applyFailed:`Could not apply tags.`,applyAdd:`Add tags`,applyRemove:`Remove tags`,applyAddSuccess:`Added {{count}} tag(s) across {{files}} file(s).`,applyRemoveSuccess:`Removed {{count}} tag(s) across {{files}} file(s).`,actionAdd:`Add to selected files`,actionRemove:`Remove from selected files`,tagAction:`Tag`,bulkTitle:`Tag {{count}} selected file(s)`,bulkTooltip:`Add or remove tags on every selected file.`,noPermission:`You do not have permission to tag files.`,filterLabel:`Filtering by:`,clearAll:`Clear all`,confirmDelete:`Delete tag "{{name}}"?`,confirmDeleteMessage:`This removes the tag from the catalog. Files keep their other tags.`,confirmDeleteInUseMessage:`This tag is on {{count}} file(s). Deleting removes the chip from all of them; files themselves are untouched.`,editAria:`Edit {{name}}`,deleteAria:`Delete {{name}}`},allTypes:`All types`,prints:`Prints`,ascending:`Ascending`,descending:`Descending`,resultsCount:`{{showing}} of {{total}} files`,selectAll:`Select All`,deselectAll:`Deselect All`,selected:`{{count}} selected`,adding:`Adding...`,loadingFiles:`Loading files...`,folderIsEmpty:`Folder is empty`,noFilesYet:`No files yet`,folderEmptyDescription:`Upload files or move files into this folder to get started.`,noFilesDescription:`Upload files to start organizing your print-related files.`,noMatchingFiles:`No matching files`,noMatchingFilesDescription:`No files match your current search or filter criteria.`,clearFilters:`Clear filters`,printedCount:`Printed {{count}}x`,uploadedBy:`Uploaded By`,deleteFolder:`Delete Folder`,deleteFile:`Delete File`,deleteFilesCount:`Delete {{count}} Files`,deleteFolderConfirm:`Are you sure you want to delete this folder? All files inside will also be deleted.`,deleteFileConfirm:`Are you sure you want to delete this file?`,deleteFilesConfirm:`Are you sure you want to delete {{count}} selected files? This action cannot be undone.`,deleting:`Deleting...`,noPermissionRenameFolder:`You do not have permission to rename folders`,noPermissionLinkFolder:`You do not have permission to link folders`,noPermissionDeleteFolder:`You do not have permission to delete folders`,noPermissionPrint:`You do not have permission to print`,noPermissionAddToQueue:`You do not have permission to add to queue`,noPermissionSlice:`You do not have permission to slice files`,noPermissionDownload:`You do not have permission to download files`,noPermissionRenameFile:`You do not have permission to rename this file`,noPermissionGenerateThumbnail:`You do not have permission to generate thumbnails`,noPermissionDeleteFile:`You do not have permission to delete this file`,noPermissionCreateFolder:`You do not have permission to create folders`,noPermissionUpload:`You do not have permission to upload files`,noPermissionMoveFiles:`You do not have permission to move files`,noPermissionDeleteFiles:`You do not have permission to delete files`,linkExternal:`Link External`,linkExternalFolder:`Link External Folder`,linkExternalFolderDescription:`Mount a host directory (NAS, USB, network share) into the File Manager. Files are not copied — they are accessed directly from the original path.`,externalFolderNamePlaceholder:`e.g., NAS Prints`,externalPath:`Host Path`,externalPathHelp:`Absolute path to the directory on the Docker host. Must be bind-mounted into the container.`,readOnly:`Read Only`,readOnlyHelp:`prevents uploads and deletions`,showHiddenFiles:`Show hidden files (dotfiles)`,externalFolder:`External Folder`,scanFolder:`Scan`,toast:{folderCreated:`Folder created`,folderDeleted:`Folder deleted`,fileDeleted:`File deleted`,filesDeleted:`Deleted {{count}} files`,filesMoved:`Files moved`,folderLinked:`Folder linked`,folderUnlinked:`Folder unlinked`,externalFolderLinked:`External folder linked and scanned`,folderScanned:`Scan complete: {{added}} added, {{removed}} removed`,addedToQueue:`Added {{count}} file(s) to queue`,addedToQueuePartial:`Added {{added}} file(s), {{failed}} failed`,failedToAddToQueue:`Failed to add files: {{error}}`,fileRenamed:`File renamed`,folderRenamed:`Folder renamed`,thumbnailsGenerated:`Generated {{count}} thumbnail(s)`,thumbnailsGeneratedPartial:`Generated {{succeeded}} thumbnail(s), {{failed}} failed`,noStlMissingThumbnails:`No STL files missing thumbnails`,failedToGenerateThumbnails:`Failed to generate thumbnails: {{error}}`,thumbnailGenerated:`Thumbnail generated`,failedToGenerateThumbnail:`Failed to generate thumbnail: {{error}}`}},projects:{title:`Projects`,subtitle:`Organize and track your 3D printing projects`,newProject:`New Project`,editProject:`Edit Project`,deleteProject:`Delete Project`,projectName:`Project Name`,description:`Description`,noProjects:`No projects yet`,noProjectsFiltered:`No {{status}} projects`,noProjectsFilteredHelp:`You don't have any {{status}} projects. Projects will appear here when their status changes.`,createFirst:`Create your first project to start organizing related prints, tracking progress, and managing your builds.`,createFirstButton:`Create Your First Project`,create:`Create`,files:`Files`,prints:`Prints`,plates:`plates`,parts:`parts`,lastModified:`Last Modified`,deleteConfirm:`Are you sure you want to delete this project? Archives and queue items will be unlinked but not deleted.`,addFiles:`Add Files`,removeFile:`Remove File`,viewDetails:`View Details`,namePlaceholder:`e.g., Voron 2.4 Build`,descriptionPlaceholder:`Optional description...`,urlLabel:`URL`,urlPlaceholder:`https://makerworld.com/...`,urlInvalid:`URL must start with http:// or https://`,openExternalUrl:`Open project URL`,coverImageLabel:`Cover photo`,coverImageAlt:`Project cover photo`,coverImageUpload:`Upload`,coverImageReplace:`Replace`,coverImageRemove:`Remove`,color:`Color`,targetPlates:`Target Plates`,targetPlatesPlaceholder:`e.g., 25`,targetPlatesHelp:`Number of print jobs`,targetParts:`Target Parts`,targetPartsPlaceholder:`e.g., 150`,targetPartsHelp:`Total objects needed`,tagsLabel:`Tags (comma-separated)`,tagsPlaceholder:`e.g., voron, functional, gift`,dueDate:`Due Date`,priority:`Priority`,priorityLow:`Low`,priorityNormal:`Normal`,priorityHigh:`High`,priorityUrgent:`Urgent`,statusActive:`Active`,statusCompleted:`Completed`,statusArchived:`Archived`,done:`Done`,completed:`completed`,failed:`failed`,inQueue:`in queue`,noPrintsYet:`No prints yet`,printJobs:`Print jobs (plates)`,partsPrinted:`Parts printed`,failedParts:`Failed parts`,import:`Import`,export:`Export`,importProject:`Import project`,exportAll:`Export all projects`,loading:`Loading projects...`,noEditPermission:`You do not have permission to edit projects`,noDeletePermission:`You do not have permission to delete projects`,noCreatePermission:`You do not have permission to create projects`,noImportPermission:`You do not have permission to import projects`,noExportPermission:`You do not have permission to export projects`,toast:{created:`Project created`,updated:`Project updated`,deleted:`Project deleted`,imported:`Project imported`,multipleImported:`{{count}} projects imported`,importFailed:`Import failed`,exported:`Projects exported (metadata only)`}},projectDetail:{notFound:`Project not found`,backToProjects:`Back to Projects`,export:`Export`,exportProject:`Export project`,noExportPermission:`You do not have permission to export projects`,noEditPermission:`You do not have permission to edit projects`,partOf:`Part of:`,priorityLabel:`Priority:`,noPrints:`No prints in this project yet`,status:{active:`Active`,completed:`Completed`,archived:`Archived`},priority:{low:`Low`,normal:`Normal`,high:`High`,urgent:`Urgent`},dueDate:{overdue:`Overdue`,today:`Due today`,daysLeft:`{{count}} days left`},progress:{platesProgress:`Plates Progress`,partsProgress:`Parts Progress`,printJobs:`print jobs`,parts:`parts`,percentComplete:`{{percent}}% complete`,remaining:`{{count}} remaining`},stats:{printJobs:`Print Jobs`,total:`total`,failed:`{{count}} failed`,partsPrinted:`{{count}} parts printed`,printTime:`Print Time`,filamentUsed:`Filament Used`},cost:{title:`Cost Tracking`,filamentCost:`Filament Cost`,energy:`Energy`,totalCost:`Total Cost`,total:`Total`,includesBom:`incl. BOM`,budget:`Budget`,remaining:`Remaining`},subProjects:{title:`Sub-projects ({{count}})`},notes:{title:`Notes`,noEditPermission:`You do not have permission to edit notes`,placeholder:`Add notes about this project...`,empty:`No notes yet. Click Edit to add notes.`},files:{title:`Files`,linkFolders:`Link folders from the File Manager`,forQuickAccess:`to this project for quick access.`,fileCount:`{{count}} file(s)`,empty:`No folders linked. Go to File Manager and link a folder to this project.`,noFiles:`No files in this folder.`},bom:{title:`Bill of Materials`,acquired:`{{completed}}/{{total}} acquired`,showAll:`Show all`,hideDone:`Hide done`,addPart:`Add Part`,noAddPermission:`You do not have permission to add parts`,partNamePlaceholder:`Part name (e.g., M3x8 screws)`,partName:`Part name`,qty:`Qty`,price:`Price ({{currency}})`,sourcingUrlPlaceholder:`Sourcing URL (optional)`,remarksPlaceholder:`Remarks (optional)`,deletePart:`Delete Part`,deleteConfirm:`Are you sure you want to delete "{{name}}"?`,noUpdatePermission:`You do not have permission to update parts`,noEditPermission:`You do not have permission to edit parts`,noDeletePermission:`You do not have permission to delete parts`,totalCost:`Total cost:`,empty:`No parts in the bill of materials. Add hardware, electronics, or other components to track what needs to be sourced.`},timeline:{title:`Activity Timeline`,empty:`No activity yet.`},template:{saveAsTemplate:`Save as Template`,noCreatePermission:`You do not have permission to create templates`},queue:{title:`Queue`,viewAll:`View all`,printing:`{{count}} printing`,queued:`{{count}} queued`},prints:{title:`Prints ({{count}})`},toast:{projectUpdated:`Project updated`,partAdded:`Part added`,partRemoved:`Part removed`,exportFailed:`Export failed`,projectExported:`Project exported`,templateCreated:`Template created`}},system:{title:`System Information`,version:`Version`,uptime:`Uptime`,cpuUsage:`CPU Usage`,memoryUsage:`Memory Usage`,diskUsage:`Disk Usage`,networkInfo:`Network Info`,logs:`Logs`,debugMode:`Debug Mode`,enableDebug:`Enable Debug Logging`,disableDebug:`Disable Debug Logging`,downloadLogs:`Download Logs`,clearLogs:`Clear Logs`,dockerInfo:`Docker Info`,containerName:`Container Name`,imageName:`Image Name`,platform:`Platform`,architecture:`Architecture`},sponsors:{sectionTitle:`Independent & community-funded`,tagline:`Bambuddy is free and stays that way because people choose to support it. No VC, no cloud lock-in.`,viewSupporters:`View supporters`,toastPrints:`You've completed {{count}} prints with Bambuddy. Bambuddy stays free thanks to its supporters.`,toastCost:`You've tracked {{total}} in filament with Bambuddy. See who keeps the project independent.`,toastArchives:`{{count}} prints archived with Bambuddy. See who keeps it independent.`,toastAnniversary:`One year with Bambuddy! See who keeps the project independent.`,toastVersionUpdate:`Updated to v{{version}}. Bambuddy stays free thanks to its supporters.`},library:{title:`Filament Library`,addFilament:`Add Filament`,editFilament:`Edit Filament`,deleteFilament:`Delete Filament`,vendor:`Vendor`,material:`Material`,color:`Color`,kFactor:`K Factor`,temperature:`Temperature`,noFilaments:`No filaments in library`,deleteConfirm:`Are you sure you want to delete this filament?`,importFromPrinter:`Import from Printer`,exportToFile:`Export to File`,runWithPipeline:{actionLabel:`Run with pipeline`,noPermission:`You do not have permission to run pipelines`,modalTitle:`Run with pipeline`,confirmTitle:`Confirm run`,confirmIntro:`Pre-flight found issues with this run`,sourceHint:`Source`,pipelineHint:`Pipeline`,targetHint:`Target`,pipelineListAria:`Available pipelines`,runAnyway:`Run anyway`,loading:`Loading…`,empty:`No pipelines saved yet. Open the Slice dialog and click "Save as pipeline" to create one.`,noTarget:`No target printer set`,noTargetMessage:`This pipeline has no target printer set. Open it in Settings to pick one.`,copies:`Copies`,copiesHint:`max {{n}}`,classTarget:`Any {{model}}`,toast:{started:`Pipeline run started`,failed:`Could not start run`},issue:{printerNotSet:`No target printer set on this pipeline.`,printerNotFound:`Target printer no longer exists.`,printerDisabled:`Target printer is disabled.`,printerOffline:`Target printer is offline.`,filamentType:`Filament slot {{slot}}: expected {{expected}}, AMS has {{actual}}`,filamentColor:`Filament slot {{slot}}: colour differs (expected {{expected}}, AMS has {{actual}})`,amsSlotMissing:`AMS slot {{slot}} not available on this printer`,filamentUnverified:`Filament slot {{slot}} comes from a cloud / standard preset and could not be statically verified.`,noClassMatches:`No printers in this install match the pipeline's target model class ({{expected}}).`,classNotSet:`Pipeline target is set to a printer class but no model was chosen.`}}},slice:{title:`Slice model`,action:`Slice`,actionAll:`Slice all {{count}} plates`,actionAllTitle:`Slice every plate into one multi-plate output (single archive). Filament selection covers every slot the project defines.`,allPlatesToggle:`Slice all {{count}} plates`,slicing:`Slicing…`,printer:`Printer profile`,process:`Process profile`,filament:`Filament profile`,filamentSlot:`Filament {{index}} ({{type}})`,selectPreset:`— Select a preset —`,loadingPresets:`Loading presets…`,analyzingPlateFilaments:`Analyzing plate filaments…`,analyzingPlateFilamentsHint:`Running a preview slice to discover which AMS slots this plate uses. Cached after — re-opening is instant.`,previewToast:`Analyzing {{name}} — {{elapsed}}`,previewWithProgress:`Analyzing {{name}} — {{stage}} ({{percent}}%) — {{elapsed}}`,notUsedByPlate:`— not used by this plate`,noPresetsForSlot:`No presets available`,otherPrinters:`Other printers`,presetsLoadFailed:`Failed to load presets. Open Settings → Profiles to import them first.`,refreshPresets:`Refresh`,refreshPresetsTitle:`Refresh presets — fetch the latest cloud and bundled listings (use after deleting a preset in Bambu Studio or Bambu Handy)`,allPresetsRequired:`All presets must be selected`,enqueuing:`Submitting slice job…`,queued:`Queued…`,failed:`Slicing failed. Check the slicer sidecar logs.`,startedToast:`Slicing {{name}} in the background…`,queuedToast:`Queued: {{name}} — {{elapsed}}`,runningToast:`Slicing {{name}} — {{elapsed}}`,runningWithProgress:`{{name}} — {{stage}} ({{percent}}%) — {{elapsed}}`,runningWithProgressMultiPlate:`Plate {{plateIndex}} of {{plateCount}} • {{name}} — {{stage}} ({{percent}}%) — {{elapsed}}`,completedToast:`Sliced {{name}}`,failedTitle:`Slicing failed`,failedToast:`Slicing {{name}} failed: {{detail}}`,tier:{local:`Imported`,cloud:`Bambu Cloud`,orcaCloud:`Orca Cloud`,standard:`Standard`},cloud:{notAuthenticated:`Sign in to Bambu Cloud (Settings → Profiles → Bambu Cloud) to see your cloud presets.`,expired:`Bambu Cloud session expired — sign in again to refresh your cloud presets.`,unreachable:`Bambu Cloud is unreachable right now. Local and standard presets still work.`},orcaCloud:{notAuthenticated:`Sign in to Orca Cloud (Profiles → Orca Cloud) to see your Orca presets.`,expired:`Orca Cloud session expired — sign in again to refresh your Orca presets.`,unreachable:`Orca Cloud is unreachable right now. Other presets still work.`},bedType:{label:`Build plate`,auto:`Auto (use process preset)`,coolPlate:`Cool Plate`,coolPlateSuperTack:`Cool Plate SuperTack`,engineering:`Engineering Plate`,highTemp:`High Temp Plate`,texturedPEI:`Textured PEI Plate`,smoothPEI:`Smooth PEI Plate`},pipelines:{label:`Pipeline`,applyAria:`Apply pipeline`,applyPrompt:`Apply pipeline…`,empty:`No saved pipelines`,saveButton:`Save as pipeline`,saveTitle:`Save the current four-slot selection as a reusable pipeline`,namePlaceholder:`Pipeline name`,nameAria:`New pipeline name`,toast:{applied:`Applied "{{name}}"`,saved:`Pipeline saved`,saveFailed:`Save failed`}}},spoolman:{title:`Spoolman Integration`,enabled:`Spoolman Enabled`,url:`Spoolman URL`,connected:`Connected`,disconnected:`Not Connected`,testConnection:`Test Connection`,sync:`Sync`,syncing:`Syncing...`,lastSync:`Last Sync`,linkToSpoolman:`Link to Spoolman`,openInSpoolman:`Open in Spoolman`,unlinkSpool:`Unlink Spool`,unlinkConfirmTitle:`Unassign Spool?`,unlinkConfirmMessage:`This will remove the spool from this slot. The spool data itself will remain unchanged.`,selectSpool:`Select Spool`,noUnlinkedSpools:`No unassigned spools available`,linkSuccess:`Spool assigned successfully`,linkFailed:`Failed to assign spool`,unlinkSuccess:`Spool unassigned successfully`,unlinkFailed:`Failed to unassign spool`,linkedSpool:`Assigned spool`,spoolId:`Spool ID`,fillSourceLabel:`(Spoolman)`,weight:`Weight`,remaining:`Remaining`,disableWeightSync:`Disable AMS Estimated Weight Sync`,disableWeightSyncDesc:`Don't update remaining capacity from AMS estimates. Use this if you prefer Spoolman's usage tracking over AMS percentage-based estimates. New spools will still use the AMS estimate as their initial weight.`,reportPartialUsage:`Report Partial Usage for Failed Prints`,reportPartialUsageDesc:`When a print fails or is cancelled, report the estimated filament used up to that point based on layer progress.`},locations:{title:`Storage Locations`,subtitle:`Manage shelves, drawers, and other physical storage spots for your spools`,add:`Add Location`,addShort:`Add`,edit:`Edit Location`,name:`Name`,spools:`Spools`,empty:`No storage locations yet. Create your first shelf or drawer.`,manage:`Locations`,createPlaceholder:`e.g. Shelf A, Drawer 1`,nameRequired:`Location name is required`,created:`Location created`,updated:`Location updated`,deleted:`Location deleted`,saveFailed:`Failed to save location`,deleteFailed:`Failed to delete location`,deleteBlocked:`Remove all spools from this location before deleting`,confirmDelete:`Delete "{{name}}"?`,confirmDeleteMessage:`This location will be removed from the catalog. Spools must be moved first.`},inventory:{title:`Spool Inventory`,subtitle:`Manage your spools`,addToInventory:`Add to Inventory`,addToInventoryPending:`Adding...`,addToInventorySuccess:`Spool added to inventory`,addToInventoryFailed:`Failed to add spool to inventory`,unknownSpoolTitle:`New filament detected`,unknownSpoolMessage:`A spool with an unknown RFID tag was detected at {{location}}. Add it to your inventory now?`,unknownSpoolSlot:`Slot`,bulk:{selectAllVisible:`Select all visible`,selectRow:`Select row`,selectGroup:`Select group`,selectionCount:`{{count}} selected`,edit:`Edit`,printLabels:`Print labels`,resetUsage:`Reset usage`,restore:`Restore`,archive:`Archive`,delete:`Delete`,clearSelection:`Clear selection`,editTitle:`Bulk edit spools`,editSubtitle:`Applies to {{count}} selected spools. Only fields you tick get updated.`,editHint:`Type into a field to mark it for update — only ticked rows are sent. Leaving a field empty leaves the spools unchanged (clearing fields is per-spool only).`,useCustom:`Use "{{value}}"`,toggleField:`Toggle update for this field`,changeCount:`{{count}} fields will be updated.`,applyPending:`Applying...`,applyButton:`Apply to {{count}} spools`,deleteTitle:`Delete selected spools`,archiveTitle:`Archive selected spools`,restoreTitle:`Restore selected spools`,resetUsageTitle:`Reset usage on selected spools`,deleteMessage:`Permanently delete {{count}} spools? This cannot be undone.`,archiveMessage:`Archive {{count}} spools? They can be restored later.`,restoreMessage:`Restore {{count}} archived spools?`,resetUsageMessage:`Reset the "Total Consumed" counter on {{count}} spools? Remaining weight is preserved.`,updateSuccess:`{{count}} spools updated`,updateFailed:`Bulk update failed`,updatePartial:`{{ok}} spools updated, {{failed}} failed`,updateAllFailed:`All {{count}} spool updates failed — selection kept so you can retry`,deleteSuccess:`{{count}} spools deleted`,deleteFailed:`Bulk delete failed`,deletePartial:`{{ok}} spools deleted, {{failed}} failed`,deleteAllFailed:`All {{count}} spool deletions failed — selection kept so you can retry`,archiveSuccess:`{{count}} spools archived`,archiveFailed:`Bulk archive failed`,archivePartial:`{{ok}} spools archived, {{failed}} failed`,archiveAllFailed:`All {{count}} spool archives failed — selection kept so you can retry`,restoreSuccess:`{{count}} spools restored`,restoreFailed:`Bulk restore failed`,restorePartial:`{{ok}} spools restored, {{failed}} failed`,restoreAllFailed:`All {{count}} spool restores failed — selection kept so you can retry`,invalidHex:`Enter 6 hex characters (RRGGBB) or 8 (RRGGBBAA). The field will not be applied otherwise.`},spoolmanMixedContentTitle:`Spoolman can't load over HTTPS — mixed-content blocked by your browser`,spoolmanMixedContentBody:`Bambuddy is served over HTTPS (via your reverse proxy), but your Spoolman URL is still plain HTTP. Browsers block mixed content for security, so the embedded Spoolman UI can't render. Spoolman needs to be reachable over HTTPS for this to work.`,spoolmanMixedContentFixReverseProxy:`Put Spoolman behind the same reverse proxy as Bambuddy (Traefik / Nginx / Caddy) with HTTPS, then update the Spoolman URL in Settings to the new HTTPS address.`,spoolmanMixedContentFixOpenNewTab:`As a workaround, open Spoolman in a new browser tab over HTTP — mixed-content rules only apply to embedded frames, so a standalone tab still works.`,spoolmanOpenInNewTab:`Open Spoolman in a new tab`,labels:{title:`Print spool labels`,selectedCount:`{{count}} selected`,pickSpools:`Pick which spools to print labels for:`,monochrome:`Monochrome (black & white printer)`,monochromeHint:`Drops the colour swatch and widens the text`,searchPlaceholder:`Search name, brand, or #ID`,filterByMaterial:`Material:`,allMaterials:`All`,selectVisible:`Select all visible ({{count}})`,deselectVisible:`Deselect visible`,clearAll:`Clear all`,noSpoolsToShow:`No spools to show. Adjust your filter and try again.`,noMatches:`No spools match the current search or filter.`,printOne:`Print label for this spool`,printLabels:`Print labels…`,bulkTitle:`Pick spools to print labels for from the {{count}} currently shown`,noSpoolsTitle:`No spools to label`,error:`Could not generate labels: {{msg}}`,sortBy:{label:`Sort:`,id:`By ID`,color:`By colour`},templates:{amsHolderSmall:{label:`AMS holder — small (74 × 33 mm)`,hint:`Single label per page; matches the printable label from MakerWorld model 752566 (AMS Filament Label Holder).`},amsHolderLarge:{label:`AMS holder — large (75 × 55 mm)`,hint:`Single label per page; fits the cardstock-insert variant of the AMS Filament Label Holder. Roomy enough for swatch, brand, material, ID, and QR code.`},box40x30:{label:`Box label (40 × 30 mm)`,hint:`Single label per page; common DK/Brother roll size, good for filament-bag and storage-bin labels.`},box:{label:`Box label (62 × 29 mm)`,hint:`Single label per page; sized for Brother PT/QL and Dymo small labels.`},averyL7160:{label:`Avery L7160 — A4 sheet (38.1 × 63.5 mm × 21)`,hint:`EU sheet stock; 21 labels per A4 page.`},avery5160:{label:`Avery 5160 — US Letter sheet (25.4 × 66.7 mm × 30)`,hint:`US sheet stock; 30 labels per Letter page.`}}},csv:{importButton:`Import CSV`,exportButton:`Export CSV`,modalTitle:`Import spools from CSV`,selectFile:`Choose a CSV file or drag it here`,dragHint:`Header: material (required), brand, subtype, color_name, rgba, …`,parsing:`Reading file…`,previewError:`Could not read the CSV file`,validCount:`{{count}} valid`,errorCount:`{{count}} error`,skippedCount:`{{count}} skipped`,colRow:`Row`,colStatus:`Status`,colColor:`Color`,colorResolved:`Color filled from catalog`,colorCrossMaterial:`Color taken from a different material — no exact match in catalog`,duplicateExisting:`A spool with this material, brand and color already exists — it will still be imported as a new spool`,spoolmanHint:`In Spoolman mode, use Spoolman's built-in CSV import/export.`,importValidRows:`Import {{count}} valid rows`,noValidRows:`No valid rows`,importing:`Importing…`,importSuccess:`{{count}} spools imported`,importError:`Import failed`,exportError:`Export failed`},addSpool:`Add Spool`,editSpool:`Edit Spool`,copySpool:`Copy Spool`,material:`Material`,selectMaterial:`Select material...`,subtype:`Subtype`,brand:`Brand`,searchBrand:`Search brand...`,useCustomBrand:`Use "{{brand}}"`,useCustomMaterial:`Use custom material: {{material}}`,colorName:`Color Name`,colorNamePlaceholder:`Jade White, Fire Red...`,color:`Color`,hexColor:`Hex Color`,pickColor:`Pick custom color`,labelWeight:`Label Weight`,coreWeight:`Empty Spool Weight`,searchSpoolWeight:`Search spool weight...`,weightUsed:`Used`,currentWeight:`Remaining Weight`,measuredWeight:`Measured Weight`,spoolName:`Spool`,costPerKg:`Cost per kg`,storageLocation:`Storage Location`,storageLocationPlaceholder:`e.g. Shelf A, Drawer 1`,openInInventory:`Open in Inventory`,measuredWeightError:`Measured weight must be between {{min}}g and {{max}}g.`,slicerFilament:`Slicer Filament`,slicerFilamentName:`Slicer Preset Name`,slicerPreset:`Slicer Preset`,searchPresets:`Search filament presets...`,selectedPreset:`Selected`,noPresetsFound:`No presets found`,tempOverrides:`Temperature Overrides`,note:`Note`,notePlaceholder:`Any additional notes about this spool...`,category:`Category`,categoryPlaceholder:`e.g. Production, Prototype, Client A`,categoryNone:`Uncategorized`,storageLocationNone:`No location set`,lowStockThresholdOverride:`Low-stock threshold (this spool)`,lowStockThresholdOverrideHelp:`Leave blank to use the global threshold ({{global}}%).`,clearRfid:`Clear RFID Tag`,rfidCleared:`RFID tag cleared`,archive:`Archive`,restore:`Restore`,noSpools:`No spools yet. Add your first spool to get started.`,noAvailableSpools:`No spools available. Add a spool to your inventory or unassign one from another slot first.`,kProfiles:`K-Profiles`,addKProfile:`Add K-Profile`,assignSpool:`Assign Spool`,unassignSpool:`Unassign`,assignSuccess:`Spool assigned and AMS slot configured`,assignPendingInsert:`Assigned. Slot will configure when you insert the spool.`,assignFailed:`Failed to assign spool`,selectSpool:`Select a spool to assign to this slot`,assigned:`Assigned`,assigning:`Assigning...`,searchSpools:`Search spools...`,showAllSpools:`Show all spools`,spoolmanSpools:`Spoolman Spools`,allMaterials:`All Materials`,filterByBrand:`Filter by brand...`,showArchived:`Show archived`,quickAdd:`Quick Add (Stock)`,quantity:`Quantity`,stock:`Stock`,configured:`Configured`,spoolsCreated:`{{count}} spools created`,spoolsPartiallyCreated:`{{created}} of {{total}} spools created (some failed)`,spoolCreated:`Spool created`,spoolUpdated:`Spool updated`,spoolDeleted:`Spool deleted`,deepLinkSpoolNotFound:`Spool not found`,deepLinkFetchFailed:`Could not load spool — try again`,spoolArchived:`Spool archived`,spoolRestored:`Spool restored`,kProfileSaveFailed:`K-profile settings could not be saved`,syncWeightSpoolNotFound:`Spool not found — it may have been deleted`,syncWeightSpoolmanUnreachable:`Spoolman is unreachable — try again later`,syncWeightFailed:`Failed to sync weight`,spoolmanUnreachable:`Spoolman is not reachable — please try again later`,deleteSpoolNotFound:`Spool not found — it may have already been deleted`,deleteFailed:`Failed to delete spool`,archiveSpoolNotFound:`Spool not found — it may have already been deleted`,archiveFailed:`Failed to archive spool`,restoreSpoolNotFound:`Spool not found — it may have already been deleted`,restoreFailed:`Failed to restore spool`,saveFailed:`Failed to save changes`,tagClearFailed:`Failed to clear tag`,deleteConfirm:`Are you sure you want to delete this spool? This cannot be undone.`,archiveConfirm:`Are you sure you want to archive this spool?`,advancedSettings:`Advanced Settings`,filamentInfoTab:`Filament Info`,paProfileTab:`PA Profile`,filamentInfo:`Filament`,additional:`Additional`,loadingPresets:`Loading cloud presets...`,cloudConnected:`Cloud connected`,cloudNotConnected:`Cloud not connected (using defaults)`,recentColors:`Recent`,searchColors:`Search colors...`,searchResults:`Search results`,allColors:`All colors`,commonColors:`Common colors`,showLess:`Show less`,showAll:`Show all`,noColorsFound:`No colors match your search`,noResults:`No matches found`,extraColorsLabel:`Extra colors`,extraColorsPlaceholder:`EC984C,#6CD4BC,A66EB9,D87694`,extraColorsHint:`Paste 2 to 8 hex stops, separated by commas. Renders as a gradient.`,extraColorsInvalid:`Ignored invalid hex: {{tokens}}`,colorEffectLabel:`Effect`,colorEffect:{none:`None`,sparkle:`Sparkle`,wood:`Wood`,marble:`Marble`,glow:`Glow`,matte:`Matte`,silk:`Silk`,galaxy:`Galaxy`,rainbow:`Rainbow`,metal:`Metal`,translucent:`Translucent`,gradient:`Gradient`,dualColor:`Dual Color`,triColor:`Tri Color`,multicolor:`Multicolor`},selectMaterialFirst:`Please select a material first in the Filament Info tab.`,noPrintersConfigured:`No printers configured. Add printers to use PA profiles.`,matchingFilter:`Matching`,anyBrand:`Any brand`,anyVariant:`Any variant`,autoSelect:`Auto-select`,matches:`matches`,match:`match`,noMatches:`No matches`,connected:`Connected`,offline:`Offline`,printerOffline:`Printer is offline. Connect to view calibration profiles.`,noKProfilesMatch:`No K-profiles match the selected filament.`,leftNozzle:`Left Nozzle`,rightNozzle:`Right Nozzle`,profilesSelected:`calibration profile(s) selected`,totalInventory:`Total Inventory`,totalConsumed:`Total Consumed`,byMaterial:`By Material`,inPrinter:`In Printer`,lowStock:`Low Stock`,sinceTracking:`Since tracking started`,resetConsumedCounter:`Reset counter`,resetConsumedCounterTooltip:`Zero the consumed-grams counter for this spool. Remaining weight is not changed.`,resetConsumedCounterConfirm:`Reset this spool's consumed-grams counter to 0? Future prints will track from zero again. The spool itself, its remaining weight calculation, and your settings are not changed.`,resetAllConsumedCounters:`Reset all counters`,resetAllConsumedCountersTooltip:`Zero the consumed-grams counter on every spool. Remaining weights are not changed.`,resetAllConsumedCountersConfirm:`Reset the consumed-grams counter to 0 on all {{count}} spools (archived ones included)? This clears the "Total Consumed" stat so future prints track from zero. Spools and remaining weights are not changed.`,consumedCounterReset:`Counter reset`,allConsumedCountersReset:`Counter reset for {{count}} spool(s)`,resetConsumedCounterFailed:`Failed to reset counter`,loadedInAms:`Loaded in AMS/Ext`,remaining:`Remaining`,weightCheck:`Weight Check`,lastWeighed:`Last weighed`,neverWeighed:`Never weighed`,search:`Search spools...`,showing:`Showing`,to:`to`,of:`of`,show:`Show`,spools:`spools`,spool:`spool`,page:`Page`,noSpoolsMatch:`No results found`,noSpoolsMatchDesc:`Try adjusting your search or filters to find what you're looking for.`,active:`Active`,archived:`Archived`,all:`All`,used:`Used`,new:`New`,clearFilters:`Clear filters`,table:`Table`,cards:`Cards`,net:`Net`,groupSimilar:`Group`,groupedSpools:`{{count}} identical spools`,groupedRows:`rows`,columns:`Columns`,configureColumns:`Configure Columns`,configureColumnsDesc:`Drag to reorder columns or use arrows. Toggle visibility with the eye icon.`,visible:`visible`,reset:`Reset`,cancel:`Cancel`,applyChanges:`Apply Changes`,moveUp:`Move up`,moveDown:`Move down`,hideColumn:`Hide column`,showColumn:`Show column`,linkToSpool:`Link to Spool`,tagLinked:`Tag linked to spool`,tagLinkFailed:`Failed to link tag`,tagAlreadyLinked:`Tag already linked to another spool`,unknownTag:`Unknown RFID tag detected`,usageHistory:`Usage History`,noUsageHistory:`No usage recorded yet`,printName:`Print Name`,weightConsumed:`Weight Consumed`,clearHistory:`Clear`,historyCleared:`Usage history cleared`,fillSourceLabel:`(Inv)`,lowStockThresholdError:`Threshold must be between 0.1 and 99.9`,assignMismatchTitle:`Material mismatch`,assignMismatchMessage:`The selected spool material "{{spoolMaterial}}" does not match the tray material "{{trayMaterial}}" for {{location}}. Assign anyway?`,assignMismatchConfirm:`Assign Anyway`,assignPartialMismatchMessage:`The spool material "{{spoolMaterial}}" is similar to but not exactly matching "{{trayMaterial}}" in {{location}}. Do you want to proceed?`,assignProfileMismatchMessage:`The spool profile "{{spoolProfile}}" does not match the tray profile "{{trayProfile}}" in {{location}}. Do you want to proceed?`,assignReconfigureNote:`The AMS slot will be reconfigured to use the spool's profile.`,spoolmanFilamentCatalog:`Spoolman Filament Catalog`,pickFromSpoolmanCatalog:`Pick from Spoolman catalog…`,spoolmanFilamentSelected:`Filament selected from Spoolman catalog`,spoolmanFilamentUnlinked:`Filament catalog link cleared`,noSpoolmanFilaments:`No filaments found in Spoolman catalog`,spoolmanFilamentColorSwatch:`Filament color`,spoolWeightManagedBySpoolman:`Empty spool weight is managed per filament type in Spoolman`,spoolmanCatalogLoadFailed:`Failed to load Spoolman filament catalog`},timelapse:{title:`Timelapse`,create:`Create Timelapse`,download:`Download`,delete:`Delete`,preview:`Preview`,frameRate:`Frame Rate`,quality:`Quality`,processing:`Processing...`,noTimelapses:`No timelapses available`},ams:{title:`AMS`,slot:`Slot`,empty:`Empty`,emptySlot:`Empty slot`,slotEmpty:`Empty`,slotUnconfigured:`?`,emptySlotReset:`No filament assigned`,unknown:`Unknown`,humidity:`Humidity`,temperature:`Temperature`,filamentType:`Filament Type`,filamentColor:`Color`,remaining:`Remaining`,history:`AMS History`,noHistory:`No history available`,configureSlot:`Configure Slot`,externalSpool:`External Spool`,profile:`Profile`,kFactor:`K Factor`,fill:`Fill`,configure:`Configure`,used:`used`,remainingUnit:`remaining`},printModal:{selectPrinter:`Select Printer`,selectPlate:`Select Plate`,filamentMapping:`Filament Mapping`,totalCost:`Total cost:`,slotRemainingShort:` - {{grams}}g left`,printSettings:`Print Settings`,bedLeveling:`Bed Leveling`,flowCalibration:`Flow Calibration`,vibrationCalibration:`Vibration Calibration`,layerInspection:`First Layer Inspection`,timelapse:`Timelapse`,cancel:`Cancel`,noPrintersAvailable:`No printers available`,printerBusy:`Printer is busy`,printerOffline:`Printer is offline`,sameTypeDifferentColor:`Same type, different color`,filamentTypeNotLoaded:`Filament type not loaded`,whenToPrint:`When to print`,asap:`ASAP`,queue:`Queue`,schedule:`Schedule`,dateTime:`Date & Time`,invalidDateTime:`Please enter a valid date and time`,openCalendar:`Open calendar`,requireManualStart:`Require manual start`,requirePreviousSuccess:`Only start if previous print succeeded`,autoOffAfter:`Power off printer when done`,helpAsap:`Print will be added to the top of the queue and start as soon as an eligible printer is idle.`,helpSchedule:`Print will start at the scheduled time if the printer is idle. If busy, it will wait until the printer becomes available.`,helpQueue:`Print will be added to the back of the queue.`,leftNozzle:`L`,rightNozzle:`R`,leftNozzleTooltip:`Left nozzle`,rightNozzleTooltip:`Right nozzle`,filamentOverride:`Filament Override`,filamentOverrideHint:`Optionally override filaments for model-based assignment. The scheduler will match against your selected filaments instead of the original 3MF values.`,originalFilament:`Original`,overrideWith:`Override with`,resetToOriginal:`Reset to original`,insufficientFilamentTitle:`Not enough filament`,insufficientFilamentMessage:`Some assigned spools have less filament remaining than this print needs:`,insufficientFilamentLine:`{{printer}} - {{slot}}: needs {{required}}g, remaining {{remaining}}g`,printAnyway:`Print anyway`,forceColorMatch:`Force color match`,staggerPrinterStarts:`Stagger printer starts`,staggerGroupSize:`Group size`,staggerInterval:`Interval (min)`,staggerPreview:`{{printers}} printers → {{groups}} groups of {{size}}, starting every {{interval}} min`,staggerLastGroup:`last group: {{count}}`,staggerTotal:`total: {{minutes}} min`,staggerToPrinters:`Stagger to {{count}} printers`,gcodeInjection:`Inject auto-print G-code`},backup:{includesEncryptionKey:`Local backups include the MFA encryption key file (DATA_DIR/.mfa_encryption_key) so a backup ZIP is self-contained. Treat the ZIP as sensitive — anyone with the file can decrypt the OIDC client secrets and TOTP secrets stored inside.`,title:`Backup & Restore`,createBackup:`Create Backup`,restoreBackup:`Restore Backup`,restoreDescription:`Replace all data from a backup file`,downloadBackup:`Download Backup`,uploadBackup:`Upload Backup`,lastBackup:`Last Backup`,autoBackup:`Auto Backup`,backupNow:`Backup Now`,restoreWarning:`Warning: Restoring a backup will overwrite all current data.`,includeArchives:`Include Archives`,includeSettings:`Include Settings`,includeProfiles:`Include Profiles`,backupSuccess:`Backup created successfully`,restoreSuccess:`Backup restored successfully`,backupFailed:`Backup failed`,restoreFailed:`Restore failed`,restoreNote:`Virtual Printer will be stopped during restore`,githubBackup:`Git Backup`,enabled:`Enabled`,cloudLoginRequired:`Bambu Cloud login required. Sign in under Profiles → Cloud Profiles to enable GitHub backup.`,cloudLoginRequiredShort:`Cloud login required`,githubDescription:`Automatically sync your profiles to a private GitHub repository for backup and version history.`,repoIsPrivate:`Repository is private — safe to back up to.`,repoIsPublicWarning:`Repository is PUBLIC. Bambuddy backups include MQTT credentials, Home Assistant tokens, Prometheus tokens, your Bambu Cloud email, and printer access codes via K-profiles. Saving is blocked until you make the repository private in your provider's settings.`,repoVisibilityUnknown:`Could not determine repository visibility. Bambuddy refuses to back up to anything not confirmed private; saving will be blocked.`,repositoryUrl:`Repository URL`,repoUrlPlaceholderGitHub:`https://github.com/username/repo-name`,repoUrlPlaceholderGitea:`https://gitea.example.com/username/repo-name`,repoUrlPlaceholderForgejo:`https://forgejo.example.com/username/repo-name`,repoUrlPlaceholderGitLab:`https://gitlab.com/username/repo-name`,allowInsecureHttp:`Allow insecure HTTP`,allowInsecureHttpHint:`Enable for self-hosted instances on private networks without TLS`,personalAccessToken:`Personal Access Token`,tokenSaved:`(saved)`,enterNewToken:`Enter new token to update`,tokenHint:`Fine-grained token with Contents read/write permission`,branch:`Branch`,provider:`Git Provider`,providerGitHub:`GitHub`,providerGitLab:`GitLab`,providerGitea:`Gitea`,providerForgejo:`Forgejo`,manualOnly:`Manual only`,hourly:`Hourly`,daily:`Daily`,weekly:`Weekly`,includeInBackup:`Include in backup`,kProfiles:`K-Profiles`,kProfilesDescription:`Pressure advance calibration from connected printers`,noPrintersConnected:`No printers connected`,printersConnected:`{{connected}}/{{total}} connected`,cloudProfiles:`Cloud Profiles`,cloudProfilesDescription:`Filament, printer, and process presets from Bambu Cloud`,appSettings:`App Settings`,appSettingsDescription:`Bambuddy configuration (complete database)`,spoolInventory:`Spool Inventory`,spoolInventoryDescription:`Filament spools, usage history, and cost tracking`,printArchives:`Print Archives`,printArchivesDescription:`Print history metadata (no gcode/3MF files)`,lastBackupAt:`Last backup:`,noBackupsYet:`No backups yet`,next:`Next:`,startingBackup:`Starting backup...`,test:`Test`,enableBackup:`Enable Backup`,testConnection:`Test Connection`,enterRepoUrl:`Enter repository URL`,enterRepoAndToken:`Enter repository URL and access token`,repoRequired:`Repository URL is required`,tokenRequired:`Access token is required`,githubBackupEnabled:`GitHub backup enabled`,tokenUpdated:`Token updated`,settingsSaved:`Settings saved`,failedToSave:`Failed to save: {{message}}`,backupCompleteFiles:`Backup complete - {{count}} files updated`,backupSkippedNoChanges:`Backup skipped - no changes`,backupFailed2:`Backup failed: {{message}}`,clearedLogs:`Cleared {{count}} logs`,failedToClearLogs:`Failed to clear logs: {{message}}`,history:`History`,clear:`Clear`,date:`Date`,status:`Status`,commit:`Commit`,localBackup:`Local Backup`,localBackupDescription:`Create a complete backup of your Bambuddy data including the database, archives, uploads, and all files.`,downloadBackupLabel:`Download Backup`,completeBackupZip:`Complete backup: database + all files (ZIP)`,download:`Download`,preparingBackup:`Preparing backup...`,creatingArchive:`Creating backup archive... This may take a while for large archives.`,downloadingFile:`Downloading backup file...`,backupDownloaded:`Backup downloaded successfully`,failedToCreateBackup:`Failed to create backup: {{message}}`,restore:`Restore`,restoreReplacesAll:`Restore replaces all data.`,restoreReplacesAllDetail:`Your current database and files will be completely replaced. A restart is required after restore.`,restoreConfirmTitle:`Restore Backup`,restoreConfirmMessage:`Are you sure you want to restore from "{{filename}}"? This will completely replace your current database and all files. The application will need to be restarted after restore.`,restoreConfirmButton:`Restore Backup`,uploadingFile:`Uploading backup file...`,backupRestoredRestart:`Backup restored. Please restart Bambuddy.`,failedToRestore:`Failed to restore backup. Please check the file format.`,reloadNow:`Reload Now`,creatingBackup:`Creating Backup`,restoringBackup:`Restoring Backup`,preparing:`Preparing...`,processing:`Processing...`,doNotClosePage:`Please do not close this page or navigate away. This operation may take several minutes for large backups.`,restoring:`Restoring...`,restoreComplete:`Restore Complete`,restoreFailed2:`Restore Failed`,importSettings:`Import settings from a backup file`,pleaseWaitRestoring:`Please wait while your data is being restored`,selectBackupFile:`Click to select backup file (.json or .zip)`,duplicateHandling:`How duplicate handling works:`,matchPrinters:`Printers`,matchPrintersBy:`matched by serial number`,matchSmartPlugs:`Smart Plugs`,matchSmartPlugsBy:`matched by IP address`,matchNotificationProviders:`Notification Providers`,matchNotificationProvidersBy:`matched by name`,matchFilaments:`Filaments`,matchFilamentsBy:`matched by name + type + brand`,matchArchives:`Archives`,matchArchivesBy:`matched by content hash (always skipped)`,matchPendingUploads:`Pending Uploads`,matchPendingUploadsBy:`matched by filename`,matchSettingsTemplates:`Settings & Templates`,matchSettingsTemplatesBy:`always overwritten`,replaceExisting:`Replace existing data`,keepExisting:`Keep existing data`,overwriteDescription:`Overwrite items that already exist with backup data`,keepDescription:`Only restore items that don't already exist`,overwriteCaution:`Caution:`,overwriteWarning:`Overwriting will replace your current configurations with data from the backup. Printer access codes are never overwritten for security.`,cancel:`Cancel`,processingBackup:`Processing backup file...`,itemsRestored:`Items Restored`,itemsSkipped:`Items Skipped`,restored:`Restored`,skippedAlreadyExist:`Skipped (already exist)`,filesCategory:`Files (3MF, thumbnails, etc.)`,andMore:`...and {{count}} more`,newApiKeysGenerated:`New API Keys Generated`,keysShownOnce:`These keys are only shown once. Copy them now!`,copy:`Copy`,noDataFound:`No data was found to restore in the backup file.`,close:`Close`,scheduledBackup:`Scheduled Backups`,scheduledBackupDescription:`Automatically create backup snapshots on a schedule. Output directory can be mounted to a NAS or external storage.`,frequency:`Frequency`,backupTime:`Time`,retention:`Retention`,retentionDescription:`Number of backups to keep`,outputPath:`Output Path`,outputPathPlaceholder:`Default: {{path}}`,outputPathDescription:`Leave empty for default location`,runNow:`Run Now`,backupFiles:`Backup Files`,noScheduledBackups:`No backups yet`,deleteBackup:`Delete`,deleteBackupConfirm:`Delete this backup file?`,backupRunning:`Backup in progress...`,scheduledBackupComplete:`Backup completed successfully`,scheduledBackupFailed:`Backup failed`,nextBackup:`Next backup`,backupSize:`Size`,localTimeHint:`Local time ({{tz}})`,defaultPathLabel:`Default:`,categories:{settings:`Settings`,notification_providers:`Notification Providers`,notification_templates:`Notification Templates`,smart_plugs:`Smart Plugs`,printers:`Printers`,filaments:`Filaments`,maintenance_types:`Maintenance Types`,archives:`Archives`,projects:`Projects`,pending_uploads:`Pending Uploads`,external_links:`External Links`,api_keys:`API Keys`}},tags:{title:`Tags`,addTag:`Add Tag`,editTag:`Edit Tag`,deleteTag:`Delete Tag`,tagName:`Tag Name`,tagColor:`Tag Color`,noTags:`No tags`,deleteConfirm:`Are you sure you want to delete this tag?`,manageTags:`Manage Tags`},uploadModal:{title:`Upload 3MF Files`,dragDrop:`Drag & drop .3mf files here`,or:`or`,browseFiles:`Browse Files`,extractionInfo:`The printer model will be automatically extracted from the 3MF file metadata.`,uploaded:`uploaded`,failed:`failed`,uploading:`Uploading...`,upload:`Upload`,uploadFailed:`Upload failed`},editArchive:{title:`Edit Archive`,name:`Name`,namePlaceholder:`Print name`,printer:`Printer`,noPrinter:`No printer`,project:`Project`,noProject:`No project`,itemsPrinted:`Items Printed`,itemsPrintedHelp:`Number of items produced in this print job`,notes:`Notes`,notesPlaceholder:`Add notes about this print...`,externalLink:`External Link`,externalLinkPlaceholder:`https://printables.com/model/...`,externalLinkHelp:`Link to Printables, Thingiverse, or other source`,tags:`Tags`,tagsPlaceholder:`Add tags...`,addMoreTags:`Add more tags...`,matchingTags:`Matching "{{query}}"`,existingTags:`Existing tags`,clickToAdd:`(click to add)`,status:`Status`,failureReason:`Failure Reason`,selectReason:`Select reason...`,photos:`Photos of Printed Result`,photosHelp:`Click + to add photos of your printed result`,printResult:`Print result`,saving:`Saving...`,failureReasons:{adhesionFailure:`Adhesion failure`,spaghettiDetached:`Spaghetti / Detached`,layerShift:`Layer shift`,cloggedNozzle:`Clogged nozzle`,filamentRunout:`Filament runout`,warping:`Warping`,stringing:`Stringing`,underExtrusion:`Under-extrusion`,powerFailure:`Power failure`,userCancelled:`User cancelled`,other:`Other`},statuses:{completed:`Completed`,failed:`Failed`,aborted:`Cancelled`,printing:`Printing`}},kProfiles:{title:`K-Profiles`,noPrintersConfigured:`No Printers Configured`,addPrinterInSettings:`Add a printer in Settings to manage K-profiles`,noActivePrinters:`No Active Printers`,enablePrinterConnection:`Enable a printer connection to view its K-profiles`,loadingProfiles:`Loading K-Profiles...`,printerOffline:`Printer Offline`,printerOfflineDesc:`The selected printer is not connected. Power it on to view K-profiles.`,noMatchingProfiles:`No Matching Profiles`,noMatchingProfilesDesc:`No profiles match your search criteria`,noKProfiles:`No K-Profiles`,noKProfilesDesc:`No pressure advance profiles found for {{diameter}}mm nozzle`,createFirstProfile:`Create First Profile`,printer:`Printer`,nozzle:`Nozzle`,refresh:`Refresh`,addProfile:`Add Profile`,export:`Export`,import:`Import`,select:`Select`,selectAll:`Select All`,delete:`Delete`,searchPlaceholder:`Search by name or filament...`,allExtruders:`All Extruders`,leftOnly:`Left Only`,rightOnly:`Right Only`,allFlow:`All Flow`,hfOnly:`HF Only`,sOnly:`S Only`,sortName:`Sort: Name`,sortKValue:`Sort: K-Value`,sortFilament:`Sort: Filament`,leftExtruder:`Left Extruder`,rightExtruder:`Right Extruder`,modal:{addTitle:`Add K-Profile`,editTitle:`Edit K-Profile`,profileName:`Profile Name`,profileNamePlaceholder:`My PLA Profile`,kValue:`K-Value`,kValuePlaceholder:`0.020`,kValueHelp:`Typical range: 0.01 - 0.06 for PLA, 0.02 - 0.10 for PETG`,filament:`Filament`,selectFilament:`Select filament...`,noFilamentsHelp:`No filaments found. Create a K-profile in Bambu Studio first.`,flowType:`Flow Type`,highFlow:`High Flow`,standard:`Standard`,nozzleSize:`Nozzle Size`,extruder:`Extruder`,extruders:`Extruders`,left:`Left`,right:`Right`,notes:`Notes (stored locally)`,notesPlaceholder:`Add notes about this profile...`,notesHelp:`Notes are saved in Bambuddy, not on the printer`,syncing:`Syncing with printer...`,savingExtruder:`Saving to extruder {{current}}/{{total}}...`,pleaseWait:`Please wait`},deleteConfirm:{title:`Delete Profile`,cannotUndo:`This cannot be undone`,message:`Are you sure you want to delete "{{name}}" from the printer?`},bulkDelete:{title:`Delete Profiles`,cannotUndo:`This cannot be undone`,message:`Are you sure you want to delete {{count}} selected profiles from the printer?`},toast:{profileSaved:`K-profile saved`,profilesSaved:`K-profile saved to {{count}} extruders`,selectAtLeastOneExtruder:`Please select at least one extruder`,profileDeleted:`K-profile deleted`,profilesDeleted:`Deleted {{count}} profiles`,exportedProfiles:`Exported {{count}} profiles`,importedProfiles:`Imported {{count}} of {{total}} profiles`,noProfilesToExport:`No profiles to export`,invalidFileFormat:`Invalid file format`,failedToParseImport:`Failed to parse import file`,failedToSaveBatch:`Failed to save K-profiles`,noteSaved:`Note saved`,failedToSaveNote:`Failed to save note`},permission:{noRead:`You do not have permission to refresh profiles`,noCreate:`You do not have permission to add profiles`,noUpdate:`You do not have permission to update K-profiles`,noDelete:`You do not have permission to delete K-profiles`,noExport:`You do not have permission to export profiles`,noImport:`You do not have permission to import profiles`}},virtualPrinter:{title:`Virtual Printer`,running:`Running`,stopped:`Stopped`,description:{default:`Enable a virtual printer that appears in Bambu Studio and OrcaSlicer. Files sent to this printer will be archived directly without printing.`,proxy:`Enable a proxy that relays slicer traffic to a real printer, allowing remote printing over any network.`},enable:{title:`Enable Virtual Printer`,visibleInSlicer:`Visible as "Bambuddy" in slicer discovery`,proxyingTo:`Proxying to {{name}}`,notActive:`Not active`},model:{title:`Printer Model`,description:`Select which printer model to emulate.`,restartWarning:`Changing the model will restart the virtual printer`},accessCode:{title:`Access Code`,isSet:`Access code is set`,notSet:`No access code set - required to enable`,placeholder:`Enter 8-char code`,placeholderChange:`Enter new code to change`,hint:`Must be exactly 8 characters. Used by slicers to authenticate.`,charCount:`({{count}}/8)`,inheritedFromTarget:`Inherited from target`,derivedFromTargetHint:`Uses the target printer's access code. The bridge forwards slicer auth to the real printer, so the codes must match — edit the printer's access code to change this value.`,reveal:`Show access code`,hide:`Hide access code`},targetPrinter:{title:`Target Printer`,configured:`Proxy target configured`,notConfigured:`No target printer selected - required for proxy mode`,placeholder:`Select a printer...`,hint:`Select the printer to proxy slicer traffic to. The printer must be in LAN mode.`,noPrinters:`No printers configured. Add a printer first to use proxy mode.`},remoteInterface:{title:`Network Interface Override`,configured:`Interface override active`,optional:`Optional - use if auto-detected IP is wrong (e.g. multiple NICs, Docker, VPN)`,placeholder:`Auto-detect (default)...`,hint:`Override the IP address advertised via SSDP and used in the TLS certificate. Useful when Bambuddy has multiple network interfaces.`},mode:{title:`Mode`,archive:`Archive`,archiveDesc:`Archive files immediately`,review:`Review`,reviewDesc:`Review before archiving`,queue:`Queue`,queueDesc:`Archive and add to queue`,proxy:`Proxy`,proxyDesc:`Relay to real printer`},autoDispatch:{title:`Auto-dispatch`,description:`Automatically start prints when added to queue. When off, prints wait for manual dispatch.`},queueForceColorMatch:{title:`Force color match`,description:`Refuse to dispatch onto a printer that does not have the exact filament type and color loaded. Off by default — without this, the queue uses model-only matching and may pick a printer with the wrong color loaded.`},gcodeInjection:{title:`G-code injection`,description:`Apply the per-model G-code snippets configured in Settings to jobs from this VP. Off by default.`},tailscaleDisabled:{title:`Tailscale integration`,description:`Enable to mark this VP as exposed over Tailscale. Shows the host's Tailscale address so you know which IP to paste into the slicer. The CA-import step is unchanged — this toggle has no effect on certificates.`},setupRequired:{title:`Setup Required`,description:`The virtual printer feature requires additional system configuration before it will work. This includes port forwarding, firewall rules, and platform-specific settings.`,readGuide:`Read the setup guide before enabling`},archiveNameSource:{title:`Archive name source`,description:`Choose how new archives are named when files arrive via the virtual printer. "Metadata" uses the slicer-embedded Title from the 3MF (default). "Filename" uses the filename Bambu Studio sent over FTP. Note: Bambu Studio overwrites the name you type in the "send to printer" dialog with the 3MF's Title field whenever one is present, so both modes often produce the same string.`,metadata:`Metadata`,filename:`Filename`},caCert:{title:`Slicer certificate`,description:`Virtual printers use a TLS certificate signed by the Bambuddy CA. Import this CA certificate into your slicer's trust store once so it accepts the connection — no need to copy it from the command line.`,copy:`Copy`,copied:`Copied`,download:`Download`,fingerprint:`SHA-256`},howItWorks:{title:`How it works`,step1:`On the same LAN, virtual printers appear in your slicer (Bambu Studio / OrcaSlicer) automatically via discovery. From other networks, add them manually by IP address and access code.`,step2:`In Archive, Review, and Queue modes, use the "Send" button in your slicer to upload 3MF files to Bambuddy. The slicer will show "Print success" — the file is stored, not printed.`,step3:`In Proxy mode, the virtual printer relays all traffic to a real printer — prints start immediately as if connected directly.`},status:{title:`Status Details`,printerName:`Printer Name`,model:`Model`,serialNumber:`Serial Number`,mode:`Mode`,pendingFiles:`Pending Files`,targetPrinter:`Target Printer`,ftpPort:`FTP Port`,mqttPort:`MQTT Port`,ftpConnections:`FTP Connections`,mqttConnections:`MQTT Connections`},toast:{updated:`Virtual printer settings updated`,failedToUpdate:`Failed to update settings`,copyFailed:`Failed to copy — try selecting the text manually`,accessCodeRequired:`Please set an access code first`,targetPrinterRequired:`Please select a target printer first`,bindIpRequired:`Please set a bind IP first`,accessCodeEmpty:`Access code cannot be empty`,accessCodeLength:`Access code must be exactly 8 characters`,targetCodeChangedRebind:`Access code now matches the new target printer. Re-add this device in your slicer to pick up the new code.`,created:`Virtual printer created`,failedToCreate:`Failed to create virtual printer`,deleted:`Virtual printer deleted`,failedToDelete:`Failed to delete virtual printer`},list:{title:`Virtual Printers`,add:`Add`,addFirst:`Add Virtual Printer`,empty:`No virtual printers configured. Add one to get started.`},bindIp:{title:`Bind Interface`,placeholder:`Select interface...`,hint:`Network interface for this virtual printer to bind to. Must be unique per printer.`},proxy:{accessCodeHint:`In proxy mode, use your target printer's access code in the slicer. The connection is forwarded transparently to the real printer.`},addDialog:{title:`Add Virtual Printer`,name:`Name`,hint:`You can configure access code, target printer, and other settings after creating.`,create:`Create`},deleteConfirm:{title:`Delete Virtual Printer`,message:`Are you sure you want to delete "{{name}}"? This will stop all services for this printer.`}},modelViewer:{openInSlicer:`Open in Slicer`,tabs:{model:`3D Model`,gcode:`G-code Preview`},notAvailable:`not available`,notSliced:`not sliced`,plates:`Plates`,allPlates:`All Plates`,plateNumber:`Plate {{number}}`,plateCount:`{{count}} plate`,plateCount_other:`{{count}} plates`,objectCount:`{{count}} object`,objectCount_other:`{{count}} objects`,filamentCount:`{{count}} filament`,filamentCount_other:`{{count}} filaments`,eta:`ETA {{minutes}} min`,noPreview:`No preview available for this file`,pagination:{pageOf:`Page {{current}} of {{total}}`,prev:`Prev`,next:`Next`},errors:{failedToLoad:`Failed to load file`,noMeshes:`No meshes found in 3MF file`,unsupportedFormat:`Unsupported file format`}},maintenanceDescriptions:{lubricateCarbonRods:`Apply lubricant to carbon rods for smooth motion`,lubricateRails:`Apply lubricant to linear rails for smooth motion`,cleanNozzle:`Clean hotend and nozzle to prevent clogs`,checkBelts:`Verify belt tension for accurate prints`,cleanBuildPlate:`Clean build plate for better adhesion`,checkExtruder:`Inspect extruder gears for wear`,checkCooling:`Ensure cooling fans are working properly`,generalInspection:`General printer inspection`,cleanCarbonRods:`Clean carbon rods to reduce friction`,lubricateSteelRods:`Apply lubricant to steel rods for smooth motion`,cleanSteelRods:`Clean steel rods to reduce friction`,cleanLinearRails:`Wipe linear rails to remove dust and debris`,checkPtfeTube:`Inspect PTFE tube for wear or damage`,replaceHepaFilter:`Replace HEPA filter for air quality`,replaceCarbonFilter:`Replace activated carbon filter`,lubricateLeftNozzleRail:`Lubricate left nozzle rail (H2 series)`},smartPlugs:{offline:`Offline`,admin:`Admin`,openPlugAdminPage:`Open plug admin page`,deleteSmartPlug:`Delete Smart Plug`,turnOnSmartPlug:`Turn On Smart Plug`,turnOffSmartPlug:`Turn Off Smart Plug`,turnOn:`Turn On`,turnOff:`Turn Off`,addSmartPlug:{scanningNetwork:`Scanning network...`,chooseEntity:`Choose an entity...`,connectionFailed:`Connection failed`,searchEntities:`Search entities...`,searchPowerSensors:`Search power sensors...`,searchEnergySensors:`Search energy sensors...`,placeholders:{plugName:`Living Room Plug`,mqttStateOnValue:`ON, true, 1`,mqttSameAsPower:`Same as power topic, or different`}},linkedTo:`Linked to:`,monitorOnly:`Monitor Only`,alerts:`Alerts`,scheduleOn:`On {{time}}`,scheduleOff:`Off {{time}}`,on:`On`,off:`Off`,power:`Power`,kwhToday:`kWh Today`,settings:`Settings`,automationSettings:`Automation Settings`,showInSwitchbar:`Show in Switchbar`,quickAccessSidebar:`Quick access from sidebar`,enabled:`Enabled`,enableAutomation:`Enable automation for this plug`,autoOn:`Auto On`,autoOnDescription:`Turn on when print starts`,autoOff:`Auto Off`,autoOffDescription:`Turn off when print completes (one-shot)`,autoOffPersistent:`Keep Enabled`,autoOffPersistentDescription:`Stay enabled between prints instead of one-shot`,autoOffAfterDrying:`Auto Off After Drying`,autoOffAfterDryingDescription:`Turn off when AMS drying completes`,delayAfterDryingMinutes:`Drying delay (minutes)`,turnOffDelayMode:`Turn Off Delay Mode`,time:`Time`,temp:`Temp`,delayMinutes:`Delay (minutes)`,tempThreshold:`Temperature threshold (°C)`,tempThresholdDescription:`Turns off when nozzle cools below this temperature`,edit:`Edit`,deleteConfirm:`Are you sure you want to delete "{{name}}"? This cannot be undone.`,turnOnConfirm:`Are you sure you want to turn on "{{name}}"?`,turnOffConfirm:`Are you sure you want to turn off "{{name}}"? This will cut power to the connected device.`,failedToTurn:`Failed to turn {{action}} "{{name}}"`,unknown:`Unknown`,addTitle:`Add Smart Plug`,editTitle:`Edit Smart Plug`,stopScanning:`Stop Scanning`,discoverTasmota:`Discover Tasmota Devices`,foundDevices:`Found {{count}} device(s) - click to select:`,noDevicesFound:`No Tasmota devices found on your network`,haNotConfigured:`Home Assistant is not configured. Set it up in`,haSettingsPath:`Settings → Network → Home Assistant`,selectEntity:`Select Entity *`,ipAddress:`IP Address *`,nameLabel:`Name *`,username:`Username`,password:`Password`,authHint:`Leave empty if your Tasmota device doesn't require authentication`,linkToPrinter:`Link to Printer`,noPrinter:`No printer (manual control only)`,linkingDescription:`Linking enables automatic on/off when prints start/complete`,powerAlerts:`Power Alerts`,alertAbove:`Alert if above (W)`,alertBelow:`Alert if below (W)`,alertDescription:`Get notified when power consumption crosses these thresholds. Leave empty to disable that direction.`,dailySchedule:`Daily Schedule`,turnOnAt:`Turn On at`,turnOffAt:`Turn Off at`,scheduleDescription:`Automatically turn the plug on/off at these times daily. Leave empty to skip that action.`,showOnPrinterCard:`Show on Printer Card`,displayOnPrinterCard:`Display button on printer card`,connectedResult:`Connected!`,deviceLabel:`Device: {{name}} - `,stateLabel:`State: {{state}}`,test:`Test`,delete:`Delete`,save:`Save`,add:`Add`,cancel:`Cancel`,failedToStartScan:`Failed to start scan`,nameRequired:`Name is required`,entityRequired:`Entity is required for Home Assistant plugs`,mqttTopicRequired:`At least one MQTT topic must be configured for power, energy, or state monitoring`,loadingEntities:`Loading entities...`,loading:`Loading...`,failedToLoadEntities:`Failed to load entities: {{error}}`,noEntitiesMatching:`No entities found matching "{{search}}"`,noEntitiesAvailable:`No entities available`,searchingEntities:`Searching all entities ({{count}} found)`,showingEntities:`Showing switch, light, input_boolean ({{count}} available)`,energyMonitoringOptional:`Energy Monitoring (Optional)`,energyMonitoringHint:`Search and select sensors that provide power/energy data.`,powerSensorW:`Power Sensor (W)`,energyTodayKwh:`Energy Today (kWh)`,totalEnergyKwh:`Total Energy (kWh)`,noMatchingSensors:`No matching sensors`,none:`None`,mqttNotConfigured:`MQTT broker not configured. Set broker address in`,mqttSettingsPath:`Settings → Network → MQTT Publishing`,mqttNotConfiguredSuffix:`(you don't need to enable publishing, just fill in the broker details).`,mqttMonitorOnlyDescription:`MQTT plugs receive power/energy data via MQTT subscription. On/off control is not available - use your MQTT broker or home automation system.`,powerMonitoring:`Power Monitoring`,energyMonitoring:`Energy Monitoring`,stateMonitoring:`State Monitoring`,optional:`optional`,topic:`Topic`,jsonPath:`JSON Path`,multiplier:`Multiplier`,onValue:`ON Value`,mqttPowerHint:`JSON path extracts value from JSON payload (e.g., "power_l1"). Leave empty if topic publishes raw numeric values. Use multiplier 0.001 for mW→W, 1000 for kW→W.`,mqttEnergyHint:`JSON path extracts value from JSON payload. Leave empty for raw values. Use multiplier 0.001 for Wh→kWh, 1000 for MWh→kWh.`,mqttStateHint:`JSON path extracts value from JSON payload. Leave empty for raw values. ON value: the exact string that means "ON". Leave empty for auto-detect (ON, true, 1).`,restControl:`Control`,restOnUrl:`Turn ON URL`,restOffUrl:`Turn OFF URL`,restOnBody:`ON Request Body`,restOffBody:`OFF Request Body`,restMethod:`HTTP Method`,restHeaders:`Custom Headers (JSON)`,restStatusUrl:`Status URL`,restStatusPath:`State JSON Path`,restStatusOnValue:`ON Value`,restPowerUrl:`Power URL`,restPowerPath:`Power JSON Path`,restPowerMultiplier:`Power Multiplier`,restEnergyUrl:`Energy URL`,restEnergyPath:`Energy JSON Path`,restEnergyMultiplier:`Energy Multiplier`,restUrlRequired:`At least one URL (ON or OFF) is required for REST plugs`,restHeadersHint:`e.g. {"Authorization": "Bearer your-token"}`,restBodyHint:`e.g. ON, {"state": "on"}`,restStatusHint:`URL to poll for current state`,restPathHint:`e.g. state or data.power.status`,restPowerUrlHint:`Separate URL for power data (uses Status URL if empty)`,restEnergyUrlHint:`Separate URL for energy data (uses Status URL if empty)`,restEnergyHint:`Each value can use its own URL or fall back to the Status URL. Use multipliers for unit conversion (e.g. 0.001 to convert Wh to kWh).`,testConnection:`Test Connection`,connectionSuccess:`Connection successful`,noSwitchesInSwitchbar:`No switches in switchbar`,enableSwitchbarHint:`Enable "Show in Switchbar" in Settings > Smart Plugs`},notifications:{providerTypes:{callmebot:`CallMeBot/WhatsApp`,ntfy:`ntfy`,pushover:`Pushover`,telegram:`Telegram`,email:`Email`,discord:`Discord`,webhook:`Webhook`,homeassistant:`Home Assistant`},providerDescriptions:{email:`SMTP email notifications`,telegram:`Notifications via Telegram bot`,discord:`Send to Discord channel via webhook`,ntfy:`Free, self-hostable push notifications`,pushover:`Simple, reliable push notifications`,callmebot:`Free WhatsApp notifications via CallMeBot`,webhook:`Generic HTTP POST to any URL`,homeassistant:`Persistent notifications in Home Assistant dashboard`},lastSuccess:`Last: {{date}}`,error:`Error`,printer:`Printer:`,allPrinters:`All printers`,sendTestNotification:`Send Test Notification`,eventSettings:`Event Settings`,enabled:`Enabled`,sendFromProvider:`Send notifications from this provider`,printEvents:`Print Events`,printerStatus:`Printer Status`,amsAlarms:`AMS Alarms`,amsHtAlarms:`AMS-HT Alarms`,printQueue:`Print Queue`,start:`Start`,plateCheck:`Plate Check`,complete:`Complete`,failed:`Failed`,stopped:`Stopped`,progress:`Progress`,offline:`Offline`,lowFilament:`Low Filament`,maintenance:`Maintenance`,amsHumidity:`AMS Humidity`,amsTemp:`AMS Temp`,amsHtHumidity:`AMS-HT Humidity`,amsHtTemp:`AMS-HT Temp`,bedCooled:`Bed Cooled`,firstLayer:`First Layer`,quiet:`Quiet`,digest:`Digest {{time}}`,printStarted:`Print Started`,plateNotEmpty:`Plate Not Empty`,plateNotEmptyDescription:`Objects detected before print`,printCompleted:`Print Completed`,bedCooledLabel:`Bed Cooled`,bedCooledDescription:`Bed cooled below threshold after print`,firstLayerCompleteLabel:`First Layer Complete`,firstLayerCompleteDescription:`Notify with snapshot when first layer finishes`,missingSpoolAssignmentLabel:`Missing Spool Assignment`,missingSpoolAssignmentDescription:`Notify when print starts and required trays have no assigned spool`,printFailed:`Print Failed`,printStopped:`Print Stopped`,progressMilestones:`Progress Milestones`,progressMilestonesDescription:`Notify at 25%, 50%, 75%`,printerOffline:`Printer Offline`,printerError:`Printer Error`,aiFailureDetection:`AI Failure Detection`,aiFailureDetectionDescription:`Notify when Obico AI detects a possible print failure`,lowFilamentLabel:`Low Filament`,maintenanceDue:`Maintenance Due`,maintenanceDueDescription:`Notify when maintenance is needed`,amsHumidityHigh:`AMS Humidity High`,amsHumidityHighDescription:`Regular AMS humidity exceeds threshold`,amsTemperatureHigh:`AMS Temperature High`,amsTemperatureHighDescription:`Regular AMS temperature exceeds threshold`,amsHtHumidityHigh:`AMS-HT Humidity High`,amsHtHumidityHighDescription:`AMS-HT humidity exceeds threshold`,amsHtTemperatureHigh:`AMS-HT Temperature High`,amsHtTemperatureHighDescription:`AMS-HT temperature exceeds threshold`,inventoryAlerts:`Inventory Alerts`,stockReorderAlert:`Reorder Alert`,stockReorderAlertDescription:`SKU has reached its reorder point`,stockBreakAlert:`Stock Break Alert`,stockBreakAlertDescription:`Stock will run out before replenishment arrives`,jobAdded:`Job Added`,jobAddedDescription:`Job added to queue`,jobAssigned:`Job Assigned`,jobAssignedDescription:`Model-based job assigned to printer`,jobStarted:`Job Started`,jobStartedDescription:`Queue job started printing`,jobWaiting:`Job Waiting`,jobWaitingDescription:`Job waiting for filament or printer`,jobSkipped:`Job Skipped`,jobSkippedDescription:`Job skipped (previous failed)`,jobFailed:`Job Failed`,jobFailedDescription:`Job failed to start`,queueComplete:`Queue Complete`,queueCompleteDescription:`All queue jobs finished`,quietHours:`Quiet Hours`,noNotificationsDuring:`No notifications during these hours`,editProviderToChangeQuietHours:`Edit provider to change quiet hours`,dailyDigest:`Daily Digest`,batchNotifications:`Batch notifications into a single daily summary`,sendAt:`Send at {{time}}`,editProviderToChangeDigestTime:`Edit provider to change digest time`,edit:`Edit`,deleteProvider:`Delete Notification Provider`,deleteConfirm:`Are you sure you want to delete "{{name}}"? This cannot be undone.`,delete:`Delete`,addTitle:`Add Notification Provider`,editTitle:`Edit Notification Provider`,nameLabel:`Name *`,namePlaceholder:`My Notifications`,providerTypeLabel:`Provider Type *`,configuration:`Configuration`,testConfiguration:`Test Configuration`,printerFilter:`Printer Filter`,onlyFromPrinter:`Only send notifications for events from this printer`,quietHoursDnd:`Quiet Hours (Do Not Disturb)`,quietStart:`Start`,quietEnd:`End`,dailyDigestLabel:`Daily Digest`,sendDigestAt:`Send digest at`,digestCollected:`Events will be collected and sent as a single summary at this time`,notificationEvents:`Notification Events`,progressPercent:`(25%, 50%, 75%)`,bedCooledAfterPrint:`(after print completes)`,eventPriority:{sectionTitle:`ntfy Priority`,helpNtfy:`Pick a priority for each enabled event. ntfy uses these to escalate alerts (sound, visibility, push behavior). Levels not set here use the ntfy server default.`,min:`Min`,low:`Low`,default:`Default`,high:`High`,urgent:`Urgent`},cancel:`Cancel`,save:`Save`,add:`Add`,nameRequired:`Name is required`,fieldRequired:`{{field}} is required`,phoneNumber:`Phone Number`,apiKey:`API Key`,serverUrl:`Server URL`,topic:`Topic`,authToken:`Auth Token`,userKey:`User Key`,appToken:`App Token`,priority:`Priority`,botToken:`Bot Token`,chatId:`Chat ID`,smtpServer:`SMTP Server`,smtpPort:`SMTP Port`,security:`Security`,authentication:`Authentication`,username:`Username`,password:`Password`,fromEmail:`From Email`,toEmail:`To Email`,webhookUrl:`Webhook URL`,payloadFormat:`Payload Format`,authorization:`Authorization`,titleFieldName:`Title Field Name`,messageFieldName:`Message Field Name`,editTemplate:`Edit Template: {{name}}`,titleLabel:`Title`,bodyLabel:`Body`,titlePlaceholder:`Notification title...`,bodyPlaceholder:`Notification body...`,availableVariables:`Available Variables`,clickToInsert:`Click to insert at cursor position in body`,livePreview:`Live Preview`,hide:`Hide`,show:`Show`,loadingPreview:`Loading preview...`,enterTemplateContent:`Enter template content to see preview`,titlePreview:`Title:`,bodyPreview:`Body:`,resetToDefault:`Reset to Default`,titleRequired:`Title is required`,bodyRequired:`Body is required`,notificationLog:`Notification Log`,showFailedOnly:`Failed only`,last24Hours:`Last 24 hours`,last7Days:`Last 7 days`,last30Days:`Last 30 days`,last90Days:`Last 90 days`,justNow:`Just now`,noFailedNotifications:`No failed notifications`,noNotificationsLogged:`No notifications logged`,unknownProvider:`Unknown Provider`,logTitle:`Title`,logMessage:`Message`,logError:`Error`,logProvider:`Provider: {{type}}`,logTime:`Time: {{time}}`,refresh:`Refresh`,clearOld:`Clear Old`,statsSummary:`Last {{days}} days:`,statsNotifications:`notifications`,statsSent:`{{count}} sent`,statsFailed:`{{count}} failed`,eventTypes:{print_start:`Print Started`,print_complete:`Print Complete`,print_failed:`Print Failed`,print_stopped:`Print Stopped`,print_progress:`Progress`,printer_offline:`Printer Offline`,printer_error:`Printer Error`,filament_low:`Low Filament`,maintenance_due:`Maintenance Due`,test:`Test`},userEmail:{title:`Notifications`,emailNotifications:`Email Notifications`,emailNotificationsDesc:`Receive email notifications for your own print jobs. Emails are sent using the system SMTP settings configured in Advanced Authentication.`,sendingTo:`Notifications will be sent to`,noEmailWarning:`Your account does not have an email address. Contact an administrator to add one.`,printJobNotifications:`Print Job Notifications`,printJobNotificationsDesc:`Choose which events trigger email notifications for print jobs you submit.`,printJobStarts:`Print Job Starts`,printJobStartsDesc:`Get notified when your print job begins.`,printJobFinishes:`Print Job Finishes`,printJobFinishesDesc:`Get notified when your print job completes successfully.`,printErrors:`Print Errors`,printErrorsDesc:`Get notified when your print job fails or encounters an error.`,printJobStops:`Print Job Stops`,printJobStopsDesc:`Get notified when your print job is cancelled or stopped.`,saveSuccess:`Notification preferences saved.`,saveError:`Failed to save notification preferences.`}},richTextEditor:{bold:`Bold`,italic:`Italic`,underline:`Underline`,bulletList:`Bullet List`,numberedList:`Numbered List`,alignLeft:`Align Left`,alignCenter:`Align Center`,alignRight:`Align Right`,addLink:`Add Link`,removeLink:`Remove Link`},externalLinks:{title:`Sidebar Links`,sidebarLayout:`Sidebar`,sidebarLayoutDescription:`Show or hide built-in pages, add external links, and drag items to reorder the sidebar navigation.`,systemPages:`Bambuddy pages`,externalLinks:`External links`,visibleInSidebar:`Visible in sidebar`,hiddenFromSidebar:`Hidden from sidebar`,requiredInSidebar:`Required in sidebar`,hidePage:`Hide page`,showPage:`Show page`,settingsCannotBeHidden:`Settings cannot be hidden`,noLinksConfigured:`No external links configured`,deleteLink:`Delete Link`,removeCustomIcon:`Remove custom icon`,openInNewTab:`Open in new tab`,placeholders:{linkName:`My Link`}},keyboardShortcuts:{title:`Keyboard Shortcuts`,navigation:`Navigation`,archivesSection:`Archives`,kProfilesSection:`K-Profiles`,generalSection:`General`,shortcuts:{goToPrinters:`Go to Printers`,goToArchives:`Go to Archives`,goToQueue:`Go to Queue`,goToStats:`Go to Statistics`,goToProfiles:`Go to Cloud Profiles`,goToSettings:`Go to Settings`,focusSearch:`Focus search`,openUploadModal:`Open upload modal`,clearSelection:`Clear selection / blur input`,contextMenu:`Context menu on cards`,refreshProfiles:`Refresh profiles`,newProfile:`New profile`,exitSelectionMode:`Exit selection mode`,showHelp:`Show this help`},footer:`Press Esc or click outside to close`},notificationLog:{title:`Notification Log`,events:{printStarted:`Print Started`,printComplete:`Print Complete`,printFailed:`Print Failed`,printStopped:`Print Stopped`,progress:`Progress`,printerOffline:`Printer Offline`,printerError:`Printer Error`,lowFilament:`Low Filament`,maintenanceDue:`Maintenance Due`,test:`Test`},timeAgo:{justNow:`Just now`,minutesAgo:`{{minutes}}m ago`,hoursAgo:`{{hours}}h ago`}},restoreBackup:{title:`Restore Backup`,restoring:`Restoring...`,restoreComplete:`Restore Complete`,restoreFailed:`Restore Failed`,importSettings:`Import settings from a backup file`,pleaseWait:`Please wait while your data is being restored`,clickToSelect:`Click to select backup file (.json or .zip)`,howDuplicateHandling:`How duplicate handling works:`,categories:{printers:`Printers`,smartPlugs:`Smart Plugs`,notificationProviders:`Notification Providers`,filaments:`Filaments`,archives:`Archives`,pendingUploads:`Pending Uploads`,settingsTemplates:`Settings & Templates`},matchingInfo:{printers:`matched by serial number`,smartPlugs:`matched by IP address`,notificationProviders:`matched by name`,filaments:`matched by name + type + brand`,archives:`matched by content hash`,pendingUploads:`matched by filename`,settingsTemplates:`always overwritten`},replaceExisting:`Replace existing data`,keepExisting:`Keep existing data`,replaceDescription:`Overwrite items that already exist with backup data`,keepDescription:`Only restore items that don't already exist`,caution:`Caution:`,cautionText:`Overwriting will replace your current configurations with backup data. Printer access codes are never overwritten for security.`,itemsRestored:`Items Restored`,itemsSkipped:`Items Skipped`,restored:`Restored`,skipped:`Skipped (already exist)`,filesLabel:`Files (3MF, thumbnails, etc.)`,newApiKeysGenerated:`New API Keys Generated`,newApiKeysWarning:`These keys are only shown once. Copy them now!`,processingBackup:`Processing backup file...`,noDataFound:`No data was found to restore in the backup file.`,failedToRestore:`Failed to restore backup. Please check the file format.`},backupExport:{title:`Export Backup`,selectData:`Select data to include`,selectAll:`Select All`,selectNone:`Select None`,categoryDescriptions:{settings:`Language, theme, update preferences`,notifications:`ntfy, Pushover, Discord, etc.`,templates:`Custom message templates`,smartPlugs:`Tasmota plug configurations`,externalLinks:`Sidebar links to external services`,printers:`Printer info (access codes excluded)`,plateDetection:`Empty plate reference images`,filaments:`Filament types and costs`,maintenance:`Custom maintenance schedules`,archives:`All print data + files (3MF, thumbnails, photos)`,projects:`Projects, BOM items, and attachments`,pendingUploads:`Virtual printer uploads awaiting review`,apiKeys:`Webhook API keys (new keys generated on import)`},requiresPrinters:`Requires Printers to be selected`,zipFileWarning:`ZIP file will be created.`,zipFileDescription:`Includes all 3MF files, thumbnails, timelapses, and photos. This may take a while and result in a large file.`,includeAccessCodes:`Include Access Codes`,includeAccessCodesDescription:`For transferring to another machine`,includeAccessCodesWarning:`Access codes will be included in plain text. Keep this backup file secure!`,categoriesSelected:`{{selectedCount}} categories selected`},pendingUploads:{placeholders:{notes:`Add notes about this print...`},discardUpload:`Discard Upload`,archiveAllUploads:`Archive All Uploads`,discardAllUploads:`Discard All Uploads`,archive:`Archive`,timeAgo:{justNow:`Just now`,minutesAgo:`{{minutes}}m ago`,hoursAgo:`{{hours}}h ago`,daysAgo:`{{days}}d ago`}},apiBrowser:{placeholders:{requestBody:`JSON request body...`,searchEndpoints:`Search endpoints...`}},configureAmsSlot:{title:`Configure AMS Slot`,slotConfigured:`Slot Configured!`,configuringSlot:`Configuring slot:`,slotLabel:`{{ams}} Slot {{slot}}`,searchPresets:`Search presets...`,colorPlaceholder:`Color name or hex (e.g., brown, FF8800)`,clearCustomColor:`Clear custom color`,noCloudPresets:`No cloud presets. Login to Bambu Cloud to sync.`,noPresetsAvailable:`No presets available. Login to Bambu Cloud or import local profiles.`,noMatchingPresets:`No matching presets found.`,custom:`Custom`,builtin:`Built-in`,orcaCloud:`Orca Cloud`,bambuCloud:`Bambu Cloud`,settingsSentToPrinter:`Settings sent to printer`,filamentProfile:`Filament Profile`,kProfileLabel:`K Profile (Pressure Advance)`,filteringFor:`Filtering for: {{material}}`,noKProfile:`No K profile (use default 0.020)`,noMatchingKProfiles:`No matching K profiles found. Default K=0.020 will be used.`,selectFilamentFirst:`Select a filament profile first`,kFromCalibration:`K={{value}} from printer calibration`,customColorLabel:`Custom Color (optional)`,presetColors:`{{name}} colors:`,showLessColors:`Show less colors`,showMoreColors:`Show more colors`,clear:`Clear`,hexLabel:`Hex: #{{hex}}`,resetting:`Resetting...`,resetSlot:`Reset Slot`,cancel:`Cancel`,configuring:`Configuring...`,configureSlot:`Configure Slot`},githubBackup:{title:`Git Backup`,history:`History`,downloadBackup:`Download Backup`,restoreBackup:`Restore Backup`,noBackupsYet:`No backups yet`},emailSettings:{placeholders:{fromName:`BamBuddy`}},tagManagement:{searchTags:`Search tags...`,renameTag:`Rename tag`,deleteTag:`Delete tag`},notificationTemplates:{placeholders:{title:`Notification title...`,body:`Notification body...`}},batchTag:{placeholders:{newTag:`Enter new tag...`}},photoGallery:{deletePhoto:`Delete Photo`},filamentHoverCard:{copySpoolUuid:`Copy spool UUID`},kProfilesView:{hasNote:`Has note`,copyProfile:`Copy profile`},layout:{openMenu:`Open menu`,noPermissionSystemInfo:`You do not have permission to view system information`},dashboard:{dragToReorder:`Drag to reorder`,hideWidget:`Hide widget`},notificationProviderCard:{deleteNotificationProvider:`Delete Notification Provider`},fileManagerModal:{closeFileManager:`Close file manager`,sortFiles:`Sort files`,goToParentFolder:`Go to parent folder`,threeView:`3D View`},embeddedCameraViewer:{refreshStream:`Refresh stream`,close:`Close`,zoomOut:`Zoom out`,resetZoom:`Reset zoom`,zoomIn:`Zoom in`,dragToResize:`Drag to resize`},timelapseViewer:{skipBack5s:`Skip back 5s`,skipForward5s:`Skip forward 5s`},notificationProviders:{descriptions:{email:`SMTP email notifications`,telegram:`Notifications via Telegram bot`,discord:`Send to Discord channel via webhook`,ntfy:`Free, self-hostable push notifications`,pushover:`Simple, reliable push notifications`,callmebot:`Free WhatsApp notifications via CallMeBot`,webhook:`Generic HTTP POST to any URL`}},logViewer:{searchPlaceholder:`Search message or logger name...`,noLogEntries:`No log entries found`},switchbarPopover:{noSwitchesInSwitchbar:`No switches in switchbar`},projectPageModal:{placeholders:{title:`Title`,designer:`Designer`,license:`License`,description:`Enter description...`,profileTitle:`Profile Title`,profileDescription:`Profile description...`}},spoolmanSettings:{},time:{unknown:`-`,waiting:`Waiting`,justNow:`Just now`,now:`Now`,minsAgo:`{{count}}m ago`,inMins:`in {{count}}m`,hoursAgo:`{{count}}h ago`,inHours:`in {{count}}h`,daysAgo:`{{count}}d ago`,inDays:`in {{count}}d`},spoolbuddy:{nav:{dashboard:`Dashboard`,ams:`AMS`,inventory:`Inventory`,writeTag:`Write`,settings:`Settings`},status:{nfcReady:`NFC Ready`,nfcOff:`NFC Off`,offline:`Offline`,online:`Online`,noPrinters:`No printers`,deviceOffline:`Device Offline`,waitingConnection:`Waiting for device connection...`,systemReady:`System Ready`,status:`Status`},dashboard:{readyToScan:`Ready to scan`,idleMessage:`Place a spool on the scale to identify it`,nfcHint:`NFC tag will be read automatically`,device:`Device`,syncWeight:`Sync Weight`,weightSynced:`Synced!`,unknownTag:`Unknown Tag`,newTag:`New Tag Detected`,onScale:`on scale`,linkSpool:`Link to Spool`,linkTagTitle:`Link Tag to Spool`,linkTag:`Link Tag`,selectSpool:`Select a spool to link this tag to:`,noUntagged:`No spools without tags found`,tagDetected:`Tag detected`,noTag:`No tag`,tagId:`Tag`,grossWeight:`Gross weight`,spoolSize:`Spool size`,close:`Close`,currentSpool:`Current Spool`,plateReady:`Plate ready: {{name}}`,plateReadyLabel:`Plates ready to clear`,plateClearAction:`Clear`,plateClearedToast:`Plate marked as cleared`,plateClearFailed:`Could not mark plate as cleared`},modal:{spoolDetected:`Spool Detected`,assignToAms:`Assign to AMS`,syncWeight:`Sync Weight`,weightSynced:`Synced!`,syncing:`Syncing...`,newTagDetected:`New Tag Detected`,addToInventory:`Add to Inventory`,assignToAmsTitle:`Assign to AMS`,selectSlot:`Select a slot`,assign:`Assign`,assigning:`Assigning...`,assignSuccess:`Assigned!`,assignPendingInsert:`Assigned. Slot will configure when you insert the spool.`,assignError:`Failed to assign spool. Please try again.`,noPrinterSelected:`Select a printer...`,noAmsDetected:`No AMS detected on this printer`,slot:`Slot`},weight:{noReading:`No reading`,stable:`Stable`,measuring:`Measuring...`,tare:`Tare`,calibrate:`Calibrate`},spool:{remaining:`Remaining`,material:`Material`,brand:`Brand`,color:`Color`,coreWeight:`Core`,labelWeight:`Label`,scaleWeight:`Scale`,netWeight:`Net`,lastUsed:`Last used`},ams:{noData:`No AMS detected`,connectAms:`Connect an AMS to see filament slots`,noPrinter:`No printer selected`,selectPrinter:`Select a printer from the top bar`,printerDisconnected:`Printer disconnected`,humidity:`Humidity`,level:`Level`,active:`Active`,slot:`Slot`,empty:`Empty`},inventory:{search:`Search spools...`,empty:`No spools in inventory`,noResults:`No matching spools`,spools:`spools`,addSpool:`Add Spool`},settings:{tabDevice:`Device`,tabDisplay:`Display`,tabScale:`Scale`,tabUpdates:`Updates`,nfcReader:`NFC Reader`,type:`Type`,connection:`Connection`,notConnected:`N/A`,deviceInfo:`Device Info`,hostname:`Host`,uptime:`Uptime`,systemConfig:`Backend & Auth`,backendUrl:`Bambuddy Backend URL`,apiToken:`API Token`,apiTokenPlaceholder:`Enter API token`,saveConfig:`Save Config`,systemQueued:`Config queued.`,nfcDiagnostic:`NFC Diagnostic`,scaleDiagnostic:`Scale Diagnostic`,readTagDiagnostic:`Read Tag Diagnostic`,testNfc:`Test reader`,testScale:`Test accuracy`,testReadTag:`Read tag`,systemFieldsRequired:`Backend URL is required.`,brightness:`Brightness`,saved:`Saved`,noBacklight:`No DSI backlight detected. Brightness control requires a DSI display.`,screenBlank:`Screen Blank Timeout`,screenBlankDesc:`Screen turns off after inactivity. Touch to wake.`,displayNote:`Brightness is applied as a software filter.`,scaleCalibration:`Scale Calibration`,currentWeight:`Current weight`,tareOffset:`Tare`,calFactor:`Factor`,knownWeight:`Known weight`,calStep1:`Remove all items from the scale and press Set Zero.`,calStep2:`Place known weight on scale.`,setZero:`Set Zero`,calibrateNow:`Calibrate`,calibrated:`Calibrated`,tareSet:`Tare command sent. Waiting for device...`,tareComplete:`Tare complete!`,tareTimedOut:`Tare timed out — is the SpoolBuddy daemon running?`,tareFailed:`Failed to send tare command`,zeroSet:`Zero point set. Place known weight on scale.`,calibrationDone:`Calibration complete!`,calibrationFailed:`Calibration failed`,lastCalibrated:`Last calibrated`,stable:`Stable`,settling:`Settling...`,firmware:`Firmware`,scale:`Scale`,noDevice:`No SpoolBuddy device found`,daemonVersion:`Daemon Version`,currentVersion:`Current`,versionPending:`Waiting for daemon...`,checking:`Checking...`,checkUpdates:`Check for Updates`,updateAvailable:`Update available`,updateInstructions:`Update via SSH: run the SpoolBuddy install script to upgrade.`,upToDate:`Up to date`,includeBeta:`Include beta versions`},writeTag:{tabExisting:`Existing Spool`,tabNew:`New Spool`,tabReplace:`Replace Tag`,searchPlaceholder:`Search by material, color, brand...`,noUntaggedSpools:`No spools without tags`,noTaggedSpools:`No spools with tags`,selectSpool:`Select a spool, then place a blank NTAG on the reader`,placeTag:`Place an NTAG on the reader`,tagReady:`Tag detected — ready to write`,writeTag:`Write Tag`,replaceTag:`Replace Tag`,writing:`Writing tag...`,waiting:`Waiting for SpoolBuddy...`,writeSuccess:`Tag written successfully!`,writeFailed:`Write failed`,queueFailed:`Failed to queue write command`,tryAgain:`Try Again`,cancel:`Cancel`,replaceWarning:`Old tag will be unlinked. New tag will replace it.`,deviceOffline:`SpoolBuddy is offline`,material:`Material`,colorName:`Color Name`,color:`Color`,brand:`Brand`,weight:`Weight (g)`,createSpool:`Create Spool`,creating:`Creating...`,spoolCreated:`Spool created! Ready to write.`,createFailed:`Failed to create spool`,incompleteDataWarning:`Tag written with incomplete Spoolman data`},quickMenu:{printerPower:`Printer Power`,systemControls:`System`,restartDaemon:`Restart Daemon`,restartBrowser:`Restart Browser`,reboot:`Reboot`,shutdown:`Shutdown`,swipeToClose:`Swipe down to close`,confirmTitle:`Confirm`,confirmShutdown:`Are you sure you want to shut down the SpoolBuddy? You will need physical access to turn it back on.`,confirmReboot:`Are you sure you want to reboot the SpoolBuddy?`,confirmRestartDaemon:`Restart the SpoolBuddy daemon? NFC and scale will be temporarily unavailable.`,confirmRestartBrowser:`Restart the kiosk browser? The display will briefly go blank.`,confirm:`Confirm`,confirmPlugOn:`Turn on {{name}}?`,confirmPlugOff:`Turn off {{name}}?`,turnOn:`Turn On`,turnOff:`Turn Off`}},diagnostic:{modalTitle:`Connection diagnostic — {{name}}`,running:`Running diagnostic...`,runningElapsed:`Running diagnostic... ({{elapsed}}s)`,waitingForReportHint:`Listening for the printer to publish a status report — this can take up to {{max}} seconds.`,runFailed:`Diagnostic could not run: {{error}}`,retry:`Run again`,runButton:`Run diagnostic`,sectionTitle:`Connection Diagnostic`,sectionDescription:`Check why a printer won't connect or won't print — port reachability, LAN developer mode, Docker network mode, and credentials.`,noPrinters:`No printers configured.`,overall:{ok:`No problems found — the printer connection looks healthy.`,warnings:`The printer should work, but some things need attention.`,problems:`Found problems that explain why the printer won't connect or print.`},check:{port_mqtt:{title:`Control port (MQTT 8883)`,pass:`Reachable — the printer is accepting control connections.`,fail:`Port 8883 is unreachable. The printer is powered off, on a different IP address, or a firewall is blocking it. Verify the printer IP and that nothing blocks port 8883.`},port_ftps:{title:`File transfer port (FTPS 990)`,pass:`Reachable — sending print files will work.`,warn:`Port 990 is unreachable. Monitoring may still work, but sending prints to the printer will fail. Make sure port 990 is not blocked.`},external_storage:{title:`Store sent files on external storage (install step 4)`,pass:`The printer reports this option is on — sent files will be stored on the SD card and archives will have thumbnails and slicer metadata.`,fail:`The printer reports this option is off. Enable "Store sent files on external storage" — on newer firmware (P2S 01.02 / Bambu Studio 2.6+) the toggle lives on the printer's Print Settings; on older versions it's in Bambu Studio / OrcaSlicer's Device tab. Without it, every archived print is missing its thumbnail and slicer metadata.`,skip:`Not checked — needs a live MQTT connection. On older slicers where this setting lives only in the slicer the printer never reports it, so this check will pass even when the option is off — verify install step 4 manually.`},port_rtsps:{title:`Camera port ({{protocol}} {{port}})`,pass:`Reachable — the camera stream will work.`,warn:`Port {{port}} is unreachable. The live camera view will not work. This does not affect printing.`},network_mode:{title:`Docker network mode`,pass:`Running in host network mode.`,warn:`Bambuddy is running in Docker bridge networking. Printer discovery and the Virtual Printer need host network mode — recreate the container with "network_mode: host".`,skip:`Not running in Docker — not applicable.`},subnet:{title:`Network subnet`,pass:`The printer and Bambuddy are on the same subnet.`,warn:`The printer ({{printer_ip}}) and Bambuddy ({{host_ip}}) are on different subnets. They may not reach each other unless routing between the subnets is configured.`,skip:`Subnet could not be determined — skipped.`},mqtt_auth:{title:`Printer credentials`,pass:`The printer accepted the connection.`,fail:`The printer is reachable but rejected the connection. The access code or serial number is most likely wrong. The access code changes every time Developer Mode is toggled — re-copy it from the printer screen.`,skip:`Not checked — the printer could not be reached.`},developer_mode:{title:`LAN Developer Mode`,pass:`Developer Mode is enabled.`,fail:`Developer Mode is OFF on the printer. Enable it in the printer's LAN settings — and confirm with OK. Without it, prints will not start.`,skip:`Could not be checked — requires a live connection to the printer.`},printer_publishing:{title:`Printer is publishing status`,pass:`The printer is publishing status updates — AMS, filaments, and K-profiles will mirror correctly to the slicer.`,fail:`The MQTT broker accepted the connection but the printer has not published any status reports. This is almost always a wrong or mis-cased serial number — the device//report topic is case-sensitive. Re-check the serial in printer settings against the screen on the printer.`,skip:`Could not be checked — requires a live connection to the printer.`}}},systemHealth:{sectionTitle:`System Health`,sectionDescription:`Scans recent logs for known issues you can usually fix yourself, before they turn into a support ticket.`,rescan:`Re-scan`,clean:`No known issues found in the last {{times}} log entries.`,logUnavailable:`File logging is disabled, so logs cannot be scanned. Enable file logging to use this check.`,learnMore:`How to fix`,fixLabel:`Fix:`,occurrences:`Seen {{times}}× — last at {{lastSeen}}`,category:{layer8:`You can fix this`,environment:`Environment`,bug:`Please report this`},signature:{"ftp-auth-rejected":{name:`Printer rejected the access code`,cause:`The printer refused the file-transfer login. The access code is wrong, or it changed after Developer Mode was toggled.`,fix:`Re-copy the access code from the printer screen (LAN settings) and update it in the printer's settings in Bambuddy.`},"ftp-connection-timeout":{name:`File-transfer connection timed out`,cause:`Bambuddy could not reach the printer's file-transfer port (FTPS 990). The port is blocked, or the printer is off or on another subnet.`,fix:`Make sure nothing blocks port 990 between Bambuddy and the printer, and that both are on the same network.`},"ftp-ssl-error":{name:`Secure file-transfer handshake failed`,cause:`The TLS handshake with the printer's file-transfer server failed. This is often a firewall or outdated printer firmware.`,fix:`Update the printer firmware and check that no firewall or proxy intercepts the connection on port 990.`},"mqtt-connection-flapping":{name:`Printer connection keeps dropping`,cause:`The control connection (MQTT 8883) repeatedly disconnects and reconnects — usually a weak network path or a partially blocked port.`,fix:`Check the Wi-Fi signal at the printer, prefer a wired connection, and make sure port 8883 is reliably reachable.`},"camera-connection-refused":{name:`Camera stream unreachable`,cause:`The live camera could not be reached on port RTSPS 322. The port is blocked, or the camera or LAN liveview is off on the printer.`,fix:`Enable the camera and LAN liveview on the printer, and make sure port 322 is not blocked. This does not affect printing.`},"database-locked":{name:`Database write contention`,cause:`The SQLite database is hitting "database is locked" errors under load — common when running several printers at once.`,fix:`Switch Bambuddy to an external PostgreSQL database. See the PostgreSQL guide in the documentation.`}}},vpDiagnostic:{title:`Setup check — {{name}}`,runButton:`Run setup check`,running:`Running setup check...`,runFailed:`Could not run the setup check: {{error}}`,retry:`Run again`,overall:{ok:`All checks passed — this virtual printer is set up correctly.`,warnings:`The virtual printer should work, but some things need attention.`,problems:`Found problems that explain why the slicer can't see or use this virtual printer.`},check:{enabled:{title:`Virtual printer enabled`,fail:`This virtual printer is switched off. Toggle it on to make it discoverable.`},running:{title:`Services running`,fail:`The virtual printer is enabled but its services are not running. Check the Bambuddy log — a bind IP conflict or a permission error usually stops them.`},bind_interface:{title:`Bind network interface`,fail:`The bind interface is not set, or no longer exists on this host. Pick a current interface in the Bind Interface dropdown.`},access_code:{title:`Access code set`,fail:`No access code is set. The slicer must be given the same 8-character access code you set here.`},target_printer:{title:`Target printer`,fail:`No target printer is selected. Proxy mode needs a real printer to forward to.`,warn:`The target printer is offline right now — proxying will resume once it reconnects.`},port_ftps:{title:`File-upload service (port {{port}})`,fail:`Nothing is listening on port {{port}} of the bind IP, so the slicer cannot upload files. A port conflict on this interface is the usual cause.`},port_mqtt:{title:`Control service (port {{port}})`,fail:`Nothing is listening on port {{port}} of the bind IP, so the slicer cannot connect or show status.`},port_bind:{title:`Discovery service (port {{port}})`,fail:`Nothing is listening on port {{port}} of the bind IP, so the slicer's discovery handshake fails.`},certificate:{title:`TLS certificate`,pass:`Certificate ready. Make sure the Bambuddy CA certificate (above) is imported into your slicer's trust store.`,fail:`The TLS certificate for this virtual printer is missing. Check that the Bambuddy data directory is writable.`}}},bugReport:{title:`Report a Bug`,description:`Description`,descriptionPlaceholder:`What went wrong? Please describe the issue...`,email:`Email (optional)`,emailPlaceholder:`your@email.com`,emailPrivacy:`If provided, your email will be included in a collapsed section of the GitHub issue so the maintainer can follow up.`,screenshot:`Screenshot`,uploadOrPaste:`Upload, paste, or drag an image`,dataCollectedSummary:`What data is included in the report?`,dataIncluded:`Included:`,dataIncludedList:`App version, OS, architecture, Python version, database stats (counts only), printer models, nozzle counts, firmware versions, connectivity status, integration status (Spoolman, MQTT, HA), non-sensitive settings, network interface count, Docker details, dependency versions.`,dataNeverIncluded:`Never included:`,dataNeverIncludedList:`Printer names, serial numbers, access codes, passwords, IP addresses, email addresses, API keys, tokens, webhook URLs, hostnames, or usernames.`,submit:`Submit`,startLogging:`Start Debug Logging`,stepEnableLogging:`Debug logging enabled`,stepReproduce:`Reproduce the issue now`,stepStopLogging:`Stop & submit report`,stopAndSubmit:`Stop & Submit`,maxDuration:`Auto-stops after {{minutes}} min`,stoppingLogs:`Collecting logs & submitting...`,submitting:`Submitting bug report...`,submittingStepConnection:`Running printer connectivity checks`,submittingStepVirtualPrinters:`Running virtual-printer setup checks`,submittingStepLogScan:`Scanning recent logs for known issues`,submittingStepSubmit:`Submitting report to GitHub`,submitSuccess:`Bug report submitted successfully!`,submitFailed:`Failed to submit bug report`,diagnosticChecking:`Checking printer connections...`,diagnosticHealthy:`Connection check passed — no problems found on your printers.`,diagnosticSummary:`{{problems}} of {{total}} printers have connection issues`,diagnosticIntro:`One or more printers have a connection problem that may be causing your issue. Expand a printer below to see the fix — resolving it could solve the problem without a bug report. You can still submit a report below.`,logHealthSummary:`Known issues found in your logs`,logHealthIntro:`Recent logs match known problems. Check the fixes below — resolving them could solve your issue without a bug report. You can still submit a report below.`,thankYou:`Thank you!`,submitted:`Your bug report has been submitted.`,viewIssue:`View Issue`,unexpectedError:`An unexpected error occurred`},failureDetection:{title:`AI Failure Detection`,description:`Monitor prints with a self-hosted Obico ML API and act on detected failures automatically.`,mlUrl:`Obico ML API URL`,mlUrlHint:`Base URL of your self-hosted Obico ml_api container (e.g. http://192.168.1.10:3333).`,test:`Test`,testSuccess:`ML API reachable and healthy.`,testFailed:`Could not reach the ML API.`,sensitivity:`Sensitivity`,sensitivityLow:`Low (fewer false positives)`,sensitivityMedium:`Medium (balanced)`,sensitivityHigh:`High (detect early, more false positives)`,sensitivityHint:`Adjusts the confidence thresholds that trigger warnings and failures.`,action:`Action on detected failure`,actionNotify:`Notify only`,actionPause:`Pause print`,actionPauseOff:`Pause and cut power`,pollInterval:`Poll interval (seconds)`,pollIntervalHint:`How often to check each printer while it is printing. Minimum 5s, maximum 120s.`,externalUrlMissing:`External URL is not set.`,externalUrlHint:`The ML API fetches the camera snapshot by URL. Set the External URL in General settings so the ML API container can reach Bambuddy.`,perPrinterTitle:`Monitored Printers`,perPrinterHint:`Choose which printers the detection service watches.`,monitorAll:`Monitor all connected printers`,statusTitle:`Status`,serviceRunning:`Service running`,thresholds:`Low / High thresholds`,activePrinters:`Active prints`,noActivePrints:`No prints currently running.`,historyTitle:`Recent Detections`,noHistory:`No detections yet.`},makerworld:{title:`MakerWorld`,description:`Paste a MakerWorld model URL to import and print it directly from Bambuddy — without leaving for the Bambu Handy app.`,pasteUrlHeader:`Import from MakerWorld`,pasteUrlPlaceholder:`https://makerworld.com/en/models/… or paste any MakerWorld link`,resolveButton:`Resolve`,signInRequiredTitle:`Bambu Cloud sign-in required to download`,signInRequiredBody:`You can browse model details anonymously, but MakerWorld requires a Bambu Cloud account to download 3MF files.`,openCloudSettings:`Open Cloud settings`,untitledModel:`Untitled model`,byCreator:`by {{name}}`,downloadsCount:`{{count}} downloads`,licensePrefix:`License`,alreadyImported:`Already in library`,openOnMakerworld:`Open on MakerWorld`,alreadyInLibrary:`This model is already in your library — find it in File Manager → MakerWorld`,importSuccess:`Imported {{filename}} — saved to File Manager → MakerWorld`,platesHeader:`Plates ({{count}})`,plateDefaultName:`Plate {{n}}`,materialCount:`{{count}} filaments`,amsRequired:`AMS required`,slicedFor:`Sliced for {{printer}}`,alsoCompatible:`Also marked compatible: {{printers}}`,importToLibrary:`Save`,sliceIn:`Save & Slice in {{slicer}}`,disclaimer:`MakerWorld integration uses community-documented API endpoints. Bambuddy is not affiliated with or endorsed by MakerWorld or Bambu Lab.`,lastImportSuccess:`Imported to your library`,lastImportAlreadyInLibrary:`Already in your library`,viewInLibrary:`View in File Manager`,openInBambuStudio:`Open in Bambu Studio`,openInOrcaSlicer:`Open in OrcaSlicer`,importTo:`Import to file manager`,recentImportsHeader:`Recent imports`,phaseResolving:`Resolving`,phaseDownloading:`Downloading`,folderAuto:`MakerWorld (default)`,importAll:`Import all`,importAllProgress:`Importing {{current}}/{{total}}`,openGallery:`Open image gallery`,galleryPrev:`Previous image`,galleryNext:`Next image`,deleteImport:`Remove from library`,importDeleting:`Removing…`,importDeleted:`Removed from library`,confirmDelete:`Remove {{filename}} from the library? This deletes the local file but the plate can be re-imported from MakerWorld.`,errors:{resolveFailed:`Could not resolve that MakerWorld URL.`,downloadFailed:`Download failed. Please try again.`,deleteFailed:`Could not remove the file from the library.`}},gcodeViewer:{back:`Back`,backToArchives:`Back to Print Archives`,backToFiles:`Back to File Manager`},libraryTrash:{title:`Trash`,headerButton:`Trash`,headerTooltip:`View files moved to the trash`,backToFiles:`Back to File Manager`,subtitleAdmin:`Deleted files stay here for {{days}} days, then auto-delete. This view shows trashed files for all users.`,subtitleUser:`Deleted files stay here for {{days}} days, then auto-delete.`,loading:`Loading trash…`,loadError:`Could not load the trash.`,empty:`The trash is empty.`,summary:`{{count}} files · {{size}}`,emptyTrash:`Empty trash`,restore:`Restore`,purgeNow:`Delete now`,autoPurgeIn:`Auto-deletes in {{when}}`,days:`days`,retentionLabel:`Auto-delete after`,selectAll:`Select all`,selectOne:`Select {{filename}}`,selectionCount:`{{count}} selected`,bulkRestore:`Restore selected`,bulkPurge:`Delete selected`,col:{filename:`File`,folder:`Folder`,size:`Size`,deleted:`Moved to trash`,autoPurge:`Auto-deletes`,owner:`Owner`,actions:`Actions`},confirm:{purgeTitle:`Delete permanently?`,purgeBody:`{{filename}} will be deleted from disk and cannot be restored.`,emptyTitle:`Empty the trash?`,emptyBody:`All {{count}} files will be deleted from disk. This cannot be undone.`,bulkPurgeTitle:`Delete selected files permanently?`,bulkPurgeBody:`The {{count}} selected files will be deleted from disk and cannot be restored.`,cta:`Delete permanently`},toast:{restored:`File restored.`,restoreFailed:`Could not restore the file.`,purged:`File deleted permanently.`,purgeFailed:`Could not delete the file.`,emptied:`Deleted {{count}} file(s) from trash.`,emptyFailed:`Could not empty the trash.`,retentionSaved:`Auto-delete set to {{days}} days.`,retentionFailed:`Could not save retention setting.`,bulkRestored:`Restored {{count}} file(s).`,bulkPurged:`Deleted {{count}} file(s).`}},libraryPurge:{title:`Purge old files`,headerButton:`Purge old`,headerTooltip:`Bulk-move old files to trash`,description:`Sweep old files out of your library in one shot. Files with a print history are aged by their last-printed date; files that were never printed are aged by their upload date.`,ageLabel:`Move files older than`,days:`days`,includeNeverPrinted:`Include files that have never been printed`,effectsTitle:`What happens when you click Purge`,effect1:`Matching files are moved to Trash — they are not deleted from disk yet.`,effect2:`You can restore them from Trash at any time until the retention window expires.`,effect3:`After retention, the trash sweeper permanently removes them from disk.`,effect4:`Files in external (linked) folders are skipped — Bambuddy never deletes bytes it does not own.`,previewLoading:`Checking how many files match…`,previewFailed:`Could not preview the purge.`,previewSummary:`{{count}} files · {{size}} would move to trash`,andMore:`…and {{count}} more`,warning:`Trashed files still count against storage until the retention window expires. Empty the Trash afterwards to free disk immediately.`,confirmCta:`Move {{count}} to trash`,purging:`Moving to trash…`,toast:{success:`Moved {{count}} file(s) to trash.`,failed:`Could not purge files.`}},libraryAutoPurge:{enableLabel:`Auto-purge old files`,enableDescription:`Runs the admin purge once per day. Files go to Trash first — they are not deleted immediately.`,ageLabel:`Auto-purge files older than`,ageDescription:`Minimum 7 days, maximum 10 years. Uses the same age rule as the manual Purge button.`,days:`days`,includeNeverPrinted:`Include files that have never been printed`,saveFailed:`Could not save auto-purge settings.`},archivePurge:{headerButton:`Purge old`,headerTooltip:`Bulk-delete old archives`,title:`Purge old archives`,description:`Clear out old print history. Each archive is aged by its most recent print completion — reprinting an archive refreshes its age, so active work is never purged.`,ageLabel:`Delete archives not printed in the last`,days:`days`,effectsTitle:`What happens when you click Purge`,effect1:`Each matching archive is hidden from the listings and its files are removed from disk (3MF, thumbnail, timelapse, source 3MF, F3D design file, photos).`,effect2:`The archive row stays in the database so Quick Stats keeps the filament, time, cost, and energy contribution — same as the single-archive delete default.`,effect3:`Tick "Also remove from statistics" below to drop the Quick Stats contribution too (matches the single-archive delete option). That path is irreversible.`,effect4:`Reprinting an archive refreshes its age clock, so archives you still use are safe.`,purgeStatsLabel:`Also remove from statistics`,purgeStatsHint:`Drops the matching archives from Quick Stats (filament, time, cost, energy). Without this, Quick Stats keeps every contribution and only the files leave disk.`,previewLoading:`Checking how many archives match…`,previewFailed:`Could not preview the purge.`,previewSummary:`{{count}} archives · {{size}} would be removed`,andMore:`…and {{count}} more`,warning:`Files are removed from disk and cannot be restored. Download or favourite anything you want to keep before continuing.`,confirmCta:`Remove {{count}} archive(s)`,purging:`Removing…`,toast:{success:`Removed {{count}} archive(s).`,failed:`Could not purge archives.`}},archiveAutoPurge:{enableLabel:`Auto-purge old archives`,enableDescription:`Once per day, hides archives from the listings and removes their files from disk when they have not been printed within the threshold. Reprinting an archive resets the clock.`,ageLabel:`Auto-delete archives not printed in the last`,ageDescription:`Minimum 7 days, maximum 10 years. Based on the most recent print completion — reprinting an archive refreshes its age. Removes the 3MF, thumbnail, timelapse, source 3MF, F3D, and photos.`,days:`days`,purgeStatsLabel:`Also remove from statistics`,purgeStatsDescription:`When enabled, the daily sweeper also drops each purged archive from Quick Stats (filament, time, cost, energy). Default off — Quick Stats keeps the contribution, only the files leave disk.`,runNow:`Purge archives now`,saveFailed:`Could not save auto-purge settings.`},cameraTokens:{title:`Camera API Tokens`,navTitle:`Camera API tokens`,description:`Long-lived tokens for embedding the camera stream into Home Assistant, Frigate, kiosks, or any other tool that needs a stable URL. Each token is camera-stream-only and can be revoked at any time.`,loading:`Loading…`,confirmRevoke:{title:`Revoke this token?`,body:`Any device using "{{name}}" will lose access immediately. This cannot be undone.`,cancel:`Cancel`,confirm:`Revoke`},create:{title:`Create new token`,nameLabel:`Token name`,namePlaceholder:`e.g. Home Assistant`,daysLabel:`Days until expiry`,submit:`Create`,hint:`Maximum lifetime is 365 days. The token value is shown only once on creation — copy it now.`},created:{title:`Token created — copy it now`,warning:`This is the only time this token will be visible. After you close this dialog you can never view it again.`,copy:`Copy`,dismiss:`I've saved it`},list:{myTitle:`My tokens`,allTitle:`All users (admin view)`,empty:`No tokens yet.`,name:`Name`,owner:`Owner`,prefix:`Prefix`,created:`Created`,expires:`Expires`,lastUsed:`Last used`,revoke:`Revoke`,expired:`Expired`},toast:{created:`Token created`,createFailed:`Failed to create token`,revoked:`Token revoked`,revokeFailed:`Failed to revoke token`,loadFailed:`Failed to load tokens`,copied:`Copied to clipboard`,copyFailed:`Copy failed — select and copy manually`}},forecast:{title:`Forecast`,noSpools:`No active spools found. Add spools to your inventory to see forecast data.`,noUsageData:`No usage data available — cannot project stock timeline.`,sku:`SKU`,material:`Material`,stock:`Stock`,dailyRate:`Rate`,daysLeft:`Days Left`,emptyBy:`Empty By`,reorderBy:`Reorder By`,actions:`Actions`,trend:`Trend`,estimated:`Est.`,noData:`No data`,timeframe:`Timeframe`,chartTitle:`Projected Stock — Top 5 Materials`,dashedLinesROP:`Dashed lines = reorder points`,stockLevel:`Stock Level`,reorderPoint:`Reorder Point`,safetyMargin:`Safety Margin`,trendLegend:`Trend (history-based, 95% service level)`,estimatedLegend:`Estimated (weight delta)`,noDataLegend:`No data`,ropLabel:`ROP`,ssLabel:`SS`,safetyStockLegend:`Safety stock`,stockArrivalLegend:`Stock arrival`,stockoutLegend:`Stockout`,alertCount_one:`{{count}} alert`,alertCount_other:`{{count}} alerts`,order:`Order`,save:`Save`,cancel:`Cancel`,settingsSaved:`Settings saved`,failedSaveSettings:`Failed to save settings`,globalLeadTimeSaved:`Global lead time saved`,globalLeadTime:`Global lead time`,globalLeadTimeHint:`Global lead time floor — used in reorder point calculation for all SKUs`,skuLeadTimeOverride:`Lead Time Override`,skuLeadTimeHint:`0 = use global lead time. Set >0 to override for this SKU.`,safetyMarginLabel:`Safety Margin`,effectiveLeadTime:`Effective Lead Time`,effectiveLeadTimeHint:`max(global {{global}}d, SKU {{sku}}d)`,reorderPointHint:`d̄ × LT + safety margin — order when stock hits this level`,safetyMarginHint:`Statistical safety stock (z=1.65 × σ × √LT) + user-defined buffer`,safetyMarginHintDays:`Buffer added on top of statistical safety stock.{{approx}}`,safetyMarginHintDaysApprox:` ≈ {{g}}g at current rate.`,safetyMarginHintG:`Fixed weight buffer added on top of statistical safety stock.{{approx}}`,safetyMarginHintGApprox:` ≈ {{days}}d at current rate.`,individualSpools:`Individual spools`,labelWeight:`Label`,spoolCount_one:`{{count}} spool`,spoolCount_other:`{{count}} spools`,stockBreakRisk:`Stock break risk`,stockBreakDetail:`{{days}}d remaining, lead time {{lt}}d.`,stockBreakBefore:`Stock break before replenishment`,reorderNow:`Reorder now`,reorderTriggerPassed:`Trigger date {{date}} has passed.`,shoppingList:`Shopping List`,shoppingListItems_one:`({{count}} item)`,shoppingListItems_other:`({{count}} items)`,shoppingListEmpty:`Shopping list is empty. Click the cart icon on any row to add items.`,addToCart:`Add to shopping list`,alertsSnoozed:`Mute alerts for this SKU`,alertsEnabled:`Unmute alerts for this SKU`,addedToCart:`Added to shopping list`,failedAddItem:`Failed to add item`,listView:`List`,logisticsView:`Logistics`,qty:`Qty`,weight:`Weight`,leadTime:`Lead Time`,expectedRestock:`Expected Restock`,status:`Status`,note:`Note`,pending:`Pending`,purchased:`Purchased`,received:`Received`,markPurchased:`Mark as purchased`,markReceived:`Mark as received — adds spools to Stock inventory`,resetToPending:`Reset to pending`,remove:`Remove`,clearAll:`Clear all`,downloadCsv:`CSV`,addToCartTitle:`Add to Shopping List`,byQuantity:`By Quantity`,byDuration:`By Duration`,numberOfSpools:`Number of spools`,lastHowManyDays:`Should last how many days?`,noUsageQty:`No usage data — quantity set to 1.`,noteOptional:`Note (optional)`,notePlaceholder:`e.g. for project X, urgent…`,addNSpools_one:`Add {{count}} spool`,addNSpools_other:`Add {{count}} spools`,onArrival:`On Arrival`,stockBreakIn:`Stock break in {{days}}d.`,stockRunsOutBefore:`Stock runs out before the {{lt}}d lead time elapses.`,atRate:`At {{rate}}g/day you need`,moreSpools_one:`{{count}} more spool`,moreSpools_other:`{{count}} more spools`,bridgeGap:`to bridge the gap.`,noReadAccess:`You do not have permission to view inventory forecasts.`,noWriteAccess:`You do not have permission to modify forecast settings.`}}},de:{translation:{nav:{printers:`Drucker`,archives:`Archiv`,queue:`Druckwarteschlange`,stats:`Statistiken`,profiles:`Profile`,maintenance:`Wartung`,projects:`Projekte`,inventory:`Filament`,files:`Dateimanager`,makerworld:`MakerWorld`,notifications:`Benachrichtigungen`,settings:`Einstellungen`,system:`System`,collapseSidebar:`Seitenleiste einklappen`,expandSidebar:`Seitenleiste ausklappen`,update:`Aktualisieren`,updateAvailable:`Update verfügbar: v{{version}}`,updateAvailableBanner:`Version {{version}} ist verfügbar!`,viewUpdate:`Update anzeigen`,viewOnGithub:`Auf GitHub ansehen`,keyboardShortcuts:`Tastaturkürzel (?)`,switchToLight:`Zum hellen Modus wechseln`,switchToDark:`Zum dunklen Modus wechseln`,switchToSystem:`Zum Systemmodus wechseln`,smartSwitches:`Smart Switches`,logout:`Abmelden`,installApp:`App installieren`,installAppSuccess:`Bambuddy wurde installiert`},common:{save:`Speichern`,saving:`Speichern...`,cancel:`Abbrechen`,delete:`Löschen`,edit:`Bearbeiten`,add:`Hinzufügen`,close:`Schließen`,confirm:`Bestätigen`,loading:`Lädt...`,error:`Fehler`,errorLoading:`Fehler beim Laden`,retry:`Erneut versuchen`,success:`Erfolg`,warning:`Warnung`,enabled:`Aktiviert`,disabled:`Deaktiviert`,yes:`Ja`,no:`Nein`,on:`An`,off:`Aus`,all:`Alle`,none:`Keine`,search:`Suchen`,filter:`Filtern`,sort:`Sortieren`,refresh:`Aktualisieren`,download:`Herunterladen`,upload:`Hochladen`,uploading:`Hochladen...`,uploadFailed:`Hochladen fehlgeschlagen`,actions:`Aktionen`,status:`Status`,name:`Name`,description:`Beschreibung`,date:`Datum`,time:`Zeit`,hours:`Stunden`,minutes:`Minuten`,seconds:`Sekunden`,days:`Tage`,enable:`Aktivieren`,disable:`Deaktivieren`,permissions:`Berechtigungen`,noPrinters:`Keine Drucker konfiguriert`,noData:`Keine Daten verfügbar`,linkNotFound:`Link nicht gefunden`,required:`Erforderlich`,optional:`Optional`,dismiss:`Schließen`,apply:`Anwenden`,reset:`Zurücksetzen`,export:`Exportieren`,import:`Importieren`,clear:`Leeren`,selectAll:`Alle auswählen`,deselectAll:`Auswahl aufheben`,noChange:`— Keine Änderung —`,unchanged:`Unverändert`,unassigned:`Nicht zugewiesen`,unknown:`Unbekannt`,unknownError:`Unbekannter Fehler`,today:`Heute`,tomorrow:`Morgen`,asap:`Sofort`,overdue:`Überfällig`,now:`Jetzt`,collapse:`Einklappen`,expand:`Ausklappen`,previous:`Zurück`,next:`Weiter`,viewArchive:`Archiv anzeigen`,viewInFileManager:`Im Dateimanager anzeigen`,addedBy:`Hinzugefügt von {{username}}`,prints:`Drucke`,more:`+{{count}} weitere`,ascending:`Aufsteigend`,descending:`Absteigend`,back:`Zurück`,copy:`Kopieren`,copied:`Kopiert!`,printer:`Drucker`,remove:`Entfernen`,type:`Typ`,print:`Drucken`,rename:`Umbenennen`,move:`Verschieben`,create:`Erstellen`,duplicate:`Duplizieren`,left:`Links`,right:`Rechts`},printers:{addPreflight:{checking:`Verbindung wird geprüft...`,warning:`Einige Verbindungsprüfungen sind fehlgeschlagen. Dieser Drucker wird möglicherweise als offline angezeigt. Prüfe die Punkte unten, behebe was möglich ist, oder speichere trotzdem.`,back:`Zurück`,saveAnyway:`Trotzdem speichern`},title:`Drucker`,addPrinter:`Drucker hinzufügen`,editPrinter:`Drucker bearbeiten`,deletePrinter:`Drucker löschen`,printerName:`Druckername`,serialNumber:`Seriennummer`,ipAddress:`IP-Adresse / Hostname`,accessCode:`Zugangscode`,model:`Modell`,nozzleCount:`Düsenanzahl`,autoArchive:`Automatische Archivierung`,status:{available:`Verfügbar`,idle:`Bereit`,printing:`Druckt`,paused:`Pausiert`,offline:`Offline`,problem:`Problem`,error:`Fehler`,finished:`Fertig`,unknown:`Unbekannt`},temperatures:{nozzle:`Düse`,bed:`Druckbett`,chamber:`Kammer`},heaterHistory:{title:`Heizungsverlauf`,openLabel:`Heizungsverlauf anzeigen`,nozzle:`Düse`,nozzle2:`Düse 2`,bed:`Druckbett`,chamber:`Kammer`,error:`Verlauf konnte nicht geladen werden`,empty:`Noch keine Daten aufgezeichnet`},progress:`{{percent}}% abgeschlossen`,timeRemaining:`Noch {{time}}`,deleteConfirm:`Möchten Sie "{{name}}" wirklich löschen?`,maintenanceOk:`Wartung OK`,maintenanceWarning:`{{count}} Warnung`,maintenanceWarning_plural:`{{count}} Warnungen`,maintenanceDue:`{{count}} fällig`,maintenanceDue_plural:`{{count}} fällig`,sort:{name:`Name`,status:`Status`,model:`Modell`,location:`Standort`,eta:`Restzeit`,ascending:`Aufsteigend sortieren`,descending:`Absteigend sortieren`},cardSize:{small:`Kleine Karten`,medium:`Mittlere Karten`,large:`Große Karten`,extraLarge:`Extra große Karten`},pageView:{cards:`Karten`,camWall:`Kamera-Wand`},camWall:{noPrinters:`Keine Drucker anzuzeigen`,noSignal:`Kein Signal`,live:`Live`,snap:`Foto`,off:`Aus`,summary:`{{live}} live, {{snap}} Schnappschüsse, {{total}} insgesamt`,layer:`Schicht {{cur}}/{{total}}`,timeLeft:`noch {{time}}`,statusMode:{off:`Aus`,compact:`Kompakt`,full:`Voll`},settings:{title:`Kamera-Wand-Einstellungen`,maxLive:`Max. Live-Streams`,maxLiveHint:`Wie viele Kacheln gleichzeitig live streamen. Andere aktualisieren als Schnappschüsse.`,snapshotInterval:`Schnappschuss-Intervall (Sekunden)`,snapshotIntervalHint:`Wie oft Nicht-Live-Kacheln einen neuen Schnappschuss abrufen.`,statusOverlay:`Status-Overlay`,statusOverlayHint:`Kompakt: nur Status-Plakette. Voll: + Fortschritt, Schicht, Restzeit.`}},hideOffline:`Offline ausblenden`,nextAvailable:`Nächster verfügbar`,powerOn:`Einschalten`,offlinePrintersWithPlugs:`Offline-Drucker mit Smart-Plugs`,noPrintersConfigured:`Noch keine Drucker konfiguriert`,search:`Drucker suchen...`,noSearchResults:`Keine Drucker entsprechen deiner Suche oder deinen Filtern`,filter:{allStatuses:`Alle Status`,allLocations:`Alle Standorte`},toolbar:{filters:`Filter`,view:`Ansicht`,actions:`Aktionen`},readyToPrint:`Druckbereit`,external:`Extern`,extL:`Ext-L`,extR:`Ext-R`,deleteArchives:`Druckarchive löschen`,noLabel:`Keine Bezeichnung`,printPreview:`Druckvorschau`,width:`Breite`,height:`Höhe`,noObjectsFound:`Keine Objekte gefunden`,objectsLoadedOnPrintStart:`Objekte werden beim Druckstart geladen`,willBeSkipped:`Wird übersprungen`,name:`Name`,serialCannotBeChanged:`Seriennummer kann nicht geändert werden`,locationHelp:`Dient zur Gruppierung von Druckern und zum Filtern von Warteschlangenaufträgen`,wifiSignal:{veryWeak:`Sehr schwach`,weak:`Schwach`,fair:`Ausreichend`,good:`Gut`,excellent:`Ausgezeichnet`},maintenanceUpToDate:`Alle Wartungen aktuell - Klicken zum Anzeigen`,maintenance:{title:`In Wartung`,subtitle:`Dieser Drucker ist pausiert — keine Verbindung, nicht für die Warteschlange verfügbar, keine Benachrichtigungen.`,pillLabel:`Wartung`,exitButton:`Wartung beenden`,menuEnter:`In den Wartungsmodus wechseln`,menuExit:`Wartungsmodus beenden`,toastEntered:`{{name}} ist jetzt im Wartungsmodus`,toastExited:`{{name}} ist wieder online`,confirmMidPrintTitle:`Wartungsmodus während des Drucks aktivieren?`,confirmMidPrintMessage:`{{name}} druckt gerade. Der Wartungsmodus trennt die MQTT-Verbindung und beendet das Fortschritts-Tracking sowie Abschlussbenachrichtigungen für diesen Auftrag. Fortfahren?`,editFieldLabel:`Wartungsmodus`,editFieldHelp:`Wenn aktiviert, ist dieser Drucker von MQTT, Warteschlangenversand und Benachrichtigungen pausiert — nützlich für Reparaturen, parallele Bambuddy-Installationen oder temporäre Außerbetriebnahme.`},chamberLightOn:`Kammerbeleuchtung einschalten`,chamberLightOff:`Kammerbeleuchtung ausschalten`,files:`Dateien`,browseFiles:`Druckerdateien durchsuchen`,autoOffAfterPrint:`Automatisches Ausschalten nach Druck`,autoOffExecuted:`Auto-off wurde ausgeführt - Drucker einschalten zum Zurücksetzen`,hmsErrors:`HMS-Fehler`,viewHmsErrors:`{{count}} HMS-Fehler anzeigen`,resume:`Fortsetzen`,pause:`Pausieren`,stop:`Stoppen`,camera:`Kamera`,skipObject:`Objekt überspringen`,reconnect:`Neu verbinden`,forceRefresh:`Aktualisierung erzwingen`,forceRefreshSuccess:`Aktualisierung angefordert`,mqttDebug:`MQTT-Debug`,printerInformation:`Druckerinformationen`,copyToClipboard:`Kopieren`,copied:`Kopiert!`,state:`Zustand`,wifiSignalLabel:`WLAN-Signal`,developerMode:`Entwicklermodus`,enabled:`Aktiviert`,disabled:`Deaktiviert`,addedOn:`Hinzugefügt`,sdCard:`SD-Karte`,inserted:`Eingelegt`,notInserted:`Nicht eingelegt`,totalPrintHours:`Druckstunden`,activeNozzle:`Aktiv: {{nozzle}} Düse`,nozzleRack:`Düsenhalter`,nozzleDocked:`Angedockt`,nozzleMounted:`Montiert`,nozzleActive:`Aktiv`,nozzleIdle:`Inaktiv`,nozzleDiameter:`Durchmesser`,nozzleType:`Typ`,nozzleStatus:`Status`,nozzleFilament:`Filament`,nozzleWear:`Verschleiß`,nozzleMaxTemp:`Max. Temp`,nozzleSerial:`Seriennr.`,nozzleHardenedSteel:`Gehärteter Stahl`,nozzleStainlessSteel:`Edelstahl`,nozzleTungstenCarbide:`Wolframkarbid`,nozzleFlow:`Durchfluss`,nozzleHighFlow:`Hoher Durchfluss`,nozzleStandardFlow:`Standard`,firmwareUpdate:`Firmware-Update`,firmwareInstructions:`Gehen Sie auf dem Touchscreen des Druckers zu`,firmwareNav:`Navigieren Sie zu`,settings:`Einstellungen`,firmware:`Firmware`,discoverPrinters:`Drucker entdecken`,searching:`Suche...`,manualEntry:`Manuelle Eingabe`,addFromCloud:`Aus Cloud hinzufügen`,toast:{printerDeleted:`Drucker gelöscht`,missingSpoolAssignment:`Druck gestartet auf {{printer}}. Fehlende Spulenzuordnung für: {{slots}}`,printerAdded:`Drucker hinzugefügt`,printerUpdated:`Drucker aktualisiert`,failedToDelete:`Drucker konnte nicht gelöscht werden`,failedToAdd:`Drucker konnte nicht hinzugefügt werden`,connectionFailedNotAdded:`Keine Verbindung zum Drucker möglich. Prüfen Sie IP-Adresse, Seriennummer und Zugangscode und stellen Sie sicher, dass der Nur-LAN-Modus aktiv ist. Der Drucker wurde nicht hinzugefügt.`,failedToUpdate:`Drucker konnte nicht aktualisiert werden`,commandSent:`Befehl gesendet`,failedToSendCommand:`Befehl konnte nicht gesendet werden`,turnedOn:`{{name}} eingeschaltet`,failedToPowerOn:`{{name}} konnte nicht eingeschaltet werden`,scriptTriggered:`Skript ausgelöst`,printStopped:`Druck gestoppt`,printPaused:`Druck pausiert`,printResumed:`Druck fortgesetzt`,referenceDeleted:`Referenz gelöscht`,detectionAreaSaved:`Erkennungsbereich gespeichert`,failedToRunScript:`Skript konnte nicht ausgeführt werden`,failedToStopPrint:`Druck konnte nicht gestoppt werden`,failedToPausePrint:`Druck konnte nicht pausiert werden`,failedToResumePrint:`Druck konnte nicht fortgesetzt werden`,failedToControlChamberLight:`Kammerbeleuchtung konnte nicht gesteuert werden`,failedToSetSpeed:`Druckgeschwindigkeit konnte nicht eingestellt werden`,failedToUpdateSetting:`Einstellung konnte nicht aktualisiert werden`,failedToSkipObjects:`Objekte konnten nicht übersprungen werden`,failedToRereadRfid:`RFID konnte nicht erneut gelesen werden`,failedToCheckPlate:`Platte konnte nicht überprüft werden`,failedToUpdateLabel:`Bezeichnung konnte nicht aktualisiert werden`,failedToDeleteReference:`Referenz konnte nicht gelöscht werden`,failedToSaveDetectionArea:`Erkennungsbereich konnte nicht gespeichert werden`,plateCheckEnabled:`Plattenprüfung aktiviert`,plateCheckDisabled:`Plattenprüfung deaktiviert`,calibrationSaved:`Kalibrierung gespeichert!`,calibrationFailed:`Kalibrierung fehlgeschlagen`,rfidRereadInitiated:`RFID-Neueinlesen gestartet`,loadInitiated:`Filament wird geladen…`,unloadInitiated:`Filament wird entladen…`,failedToLoad:`Filament konnte nicht geladen werden`,failedToUnload:`Filament konnte nicht entladen werden`},connection:{connected:`Verbunden`,offline:`Offline`},plateStatus:{markCleared:`Platte als freigegeben markieren`,cleared:`Platte freigegeben`,notCleared:`Platte nicht freigegeben`,inUse:`Platte in Benutzung`},queue:{inQueue:`{{count}} Druck in Warteschlange`,inQueue_plural:`{{count}} Drucke in Warteschlange`},controls:`Steuerung`,rfid:{reread:`RFID neu lesen`},ams:{load:`Laden`,unload:`Entladen`},bedJog:{title:`Jog-Steuerung`,bed:`Bett`,step:`Schritt (mm)`,up:`Platte hoch`,down:`Platte runter`,disabledWhilePrinting:`Während des Drucks deaktiviert`,notHomedTitle:`Drucker ist nicht referenziert`,notHomedMessage:`Der Drucker wurde seit dem letzten Druck nicht referenziert. Führen Sie zuerst die automatische Referenzfahrt aus (parkt den Werkzeugkopf und referenziert dann X, Y und Z) oder bewegen Sie trotzdem — die Software-Endschalter werden dabei umgangen.`,homeZ:`Automatische Referenzfahrt`,moveAnyway:`Trotzdem bewegen`,homingStarted:`Drucker wird automatisch referenziert…`},permission:{noAdd:`Sie haben keine Berechtigung, Drucker hinzuzufügen`,noEdit:`Sie haben keine Berechtigung, Drucker zu bearbeiten`,noDelete:`Sie haben keine Berechtigung, Drucker zu löschen`,noControl:`Sie haben keine Berechtigung, Drucker zu steuern`,noFiles:`Sie haben keine Berechtigung, auf Druckerdateien zuzugreifen`,noAmsRfid:`Sie haben keine Berechtigung, AMS-RFID erneut zu lesen`,noSmartPlugControl:`Sie haben keine Berechtigung, Smart Plugs zu steuern`,noCamera:`Sie haben keine Berechtigung, Kameras anzuzeigen`},modal:{addTitle:`Drucker hinzufügen`,editTitle:`Drucker bearbeiten`,myPrinter:`Mein Drucker`,selectModel:`Modell auswählen...`,locationGroup:`Standort / Gruppe (optional)`,locationPlaceholder:`z.B. Werkstatt, Büro, Keller`,autoArchiveLabel:`Abgeschlossene Drucke automatisch archivieren`,fromPrinterSettings:`Aus Druckereinstellungen`,modelOptional:`Modell (optional)`,saveChanges:`Änderungen speichern`},skipObjects:{tooltip:`Objekte überspringen`,onlyWhilePrinting:`Objekte überspringen (nur während des Drucks)`,requiresMultiple:`Objekte überspringen (erfordert 2+ Objekte)`,title:`Objekte überspringen`,matchIdsInfo:`IDs mit Drucker-Display abgleichen`,printerShowsIds:`Der Druckerbildschirm zeigt Objekt-IDs auf der Bauplatte`,skipSelected:`Ausgewählte überspringen`,skipping:`Überspringe...`,noObjectsSelected:`Keine Objekte ausgewählt`,selectObjectsToSkip:`Wählen Sie Objekte aus, die Sie vom aktuellen Druck überspringen möchten`,skipped:`übersprungen`,objectsSkipped:`Objekte übersprungen`,activeCount:`{{count}} aktiv`,waitForLayer:`Warten Sie auf Schicht 2+ zum Überspringen von Objekten (aktuell Schicht {{layer}})`,skip:`Überspringen`,confirmTitle:`Objekt überspringen?`,confirmMessage:`Möchten Sie "{{name}}" wirklich überspringen? Dies kann nicht rückgängig gemacht werden.`},confirm:{deleteTitle:`Drucker löschen`,deleteMessage:`Möchten Sie "{{name}}" wirklich löschen? Alle Verbindungseinstellungen werden entfernt.`,deleteArchivesNote:`Der gesamte Druckverlauf für diesen Drucker wird dauerhaft gelöscht.`,keepArchivesNote:`Der Druckverlauf wird beibehalten, aber nicht mehr mit diesem Drucker verknüpft.`,stopTitle:`Druck stoppen`,stopMessage:`Möchten Sie den aktuellen Druck auf "{{name}}" wirklich stoppen? Der Druckauftrag wird abgebrochen.`,stopButton:`Druck stoppen`,pauseTitle:`Druck pausieren`,pauseMessage:`Möchten Sie den aktuellen Druck auf "{{name}}" wirklich pausieren?`,pauseButton:`Druck pausieren`,resumeTitle:`Druck fortsetzen`,resumeMessage:`Möchten Sie den Druck auf "{{name}}" fortsetzen?`,resumeButton:`Druck fortsetzen`,powerOnTitle:`Drucker einschalten`,powerOnMessage:`Möchten Sie die Stromversorgung für "{{name}}" wirklich EINSCHALTEN?`,powerOnButton:`Einschalten`,powerOffTitle:`Drucker ausschalten`,powerOffMessage:`Möchten Sie die Stromversorgung für "{{name}}" wirklich AUSSCHALTEN?`,powerOffWarning:`WARNUNG: "{{name}}" druckt gerade! Möchten Sie die Stromversorgung wirklich AUSSCHALTEN? Dies unterbricht den Druck und kann den Drucker beschädigen.`,powerOffButton:`Ausschalten`,haToggleTitle:`"{{name}}" umschalten`,haToggleMessage:`Home-Assistant-Entität {{entity}} umschalten? Das kann die Stromversorgung ausschalten, falls sie gerade an ist.`,haToggleWarning:`WARNUNG: "{{name}}" druckt gerade! Umschalten von {{entity}} kann die Stromversorgung trennen und den Druck abbrechen. Fortfahren?`,haToggleButton:`Umschalten`},bulk:{select:`Auswählen`,selectAll:`Alle auswählen`,selectByLocation:`Nach Standort auswählen`,selected:`{{count}} ausgewählt`,actions:{stop:`Stoppen`,pause:`Pausieren`,resume:`Fortsetzen`,clearPlate:`Druckbett leeren`,clearHMS:`Benachrichtigungen löschen`},confirm:{stopTitle:`{{count}} Drucke stoppen`,stopMessage:`Dies wird aktive Drucke auf {{count}} Drucker(n) abbrechen. Diese Aktion kann nicht rückgängig gemacht werden.`,stopButton:`Alle stoppen`,pauseTitle:`{{count}} Drucke pausieren`,pauseMessage:`Dies wird aktive Drucke auf {{count}} Drucker(n) pausieren.`,pauseButton:`Alle pausieren`,clearPlateTitle:`{{count}} Druckbetten leeren`,clearPlateMessage:`Dies wird das Druckbett auf {{count}} Drucker(n) leeren und kann wartende Aufträge starten.`,clearPlateButton:`Alle leeren`},success:`{{action}} auf {{count}} Drucker(n) abgeschlossen`,partial:`{{succeeded}} erfolgreich, {{failed}} fehlgeschlagen`,noneApplicable:`Keine ausgewählten Drucker sind im richtigen Zustand für diese Aktion`,selectByState:`Nach Status auswählen`},discovery:{title:`Drucker entdecken`,searching:`Suche...`,scanning:`Scanne...`,scanProgress:`Scanne... {{scanned}}/{{total}}`,foundPrinters:`{{count}} Drucker gefunden`,noPrintersFound:`Keine Drucker gefunden`,noPrintersFoundSubnet:`Keine Drucker im angegebenen Subnetz gefunden.`,noPrintersFoundNetwork:`Keine Drucker im Netzwerk gefunden.`,allConfigured:`Alle erkannten Drucker sind bereits konfiguriert.`,alreadyAdded:`Bereits hinzugefügt`,select:`Auswählen`,manualEntry:`Manuelle Eingabe`,addFromCloud:`Aus Cloud hinzufügen`,subnetToScan:`Zu scannendes Subnetz`,dockerNote:`Docker erkannt. Geben Sie das Subnetz Ihres Druckers in CIDR-Notation ein. Erfordert network_mode: host in docker-compose.yml.`,scanSubnet:`Subnetz nach Druckern scannen`,discoverNetwork:`Drucker im Netzwerk suchen`,scanningSubnet:`Subnetz wird nach Bambu-Druckern gescannt...`,scanningNetwork:`Netzwerk wird gescannt...`,serialRequired:`Seriennummer erforderlich`,unknown:`Unbekannt`,failedToStart:`Erkennung konnte nicht gestartet werden`,customSubnetOption:`Eigenes Subnetz...`,customSubnetLabel:`Eigenes Subnetz (CIDR)`,customSubnetNote:`Wähle ein eigenes Subnetz, wenn dein Drucker in einem anderen Netzwerk als dieser Server steht. Die Ports FTP (990) und MQTT (8883) müssen über die Routinggrenze erreichbar sein.`},drying:{start:`Trocknung starten`,stop:`Trocknung stoppen`,temperature:`Temperatur`,duration:`Dauer`,hours:`Stunden`,timeRemaining:`{{time}} verbleibend`,active:`Trocknung`,targetSummary:`{{filament}} @ {{temp}}°C`,notSupported:`Trocknung nicht unterstützt`,powerRequired:`AMS-Netzteil anschließen, um Trocknung zu aktivieren`,startingDrying:`Trocknung wird gestartet...`,stoppingDrying:`Trocknung wird gestoppt...`,rotateTray:`Spule während der Trocknung drehen`,rotateUnavailableReason:`Nicht verfügbar — in diesem AMS ist ein Slot zum Druckkopf hin geladen. Die Spule ist durch den Zuführschlauch blockiert und kann nicht rotieren. Filament zuerst zurückziehen.`},amsBackup:{titleOn:`AMS Filament Backup ist EIN. Zum Deaktivieren klicken.`,titleOff:`AMS Filament Backup ist AUS. Zum Aktivieren klicken.`,titleUnknown:`AMS-Filament-Backup-Status auf diesem Drucker nicht verfügbar.`,toastEnabled:`AMS Filament Backup aktiviert`,toastDisabled:`AMS Filament Backup deaktiviert`,modalTitle:`AMS Filament Backup`,modalHelp:`Wenn der aktive Slot leer wird, wechselt der Drucker in dieser Reihenfolge zu Slots mit demselben Preset und derselben Farbe.`,modalNoSlots:`Kein Filament geladen.`,modalNoPairs:`Keine Backup-Paare — keine zwei Slots teilen sich Filament-Preset und Farbe.`,extruderRightShort:`R`,extruderLeftShort:`L`,stateOn:`Aktiviert`,stateOff:`Deaktiviert`,stateUnknown:`Auf diesem Drucker nicht unterstützt`},activeJobSlot:{title:`Dieser Slot ist Filament {{n}} im aktiven Druck`,ariaLabel:`Aktiver Druck-Slot {{n}}`},filaments:`Filamente`,openCameraOverlay:`Kamera-Overlay öffnen`,openCameraWindow:`Kamera in neuem Fenster öffnen`,firmwareUpdateAvailable:`Firmware-Update verfügbar: {{current}} → {{latest}}`,firmwareUpToDate:`Firmware {{version}} — Aktuell`,firmwareUpdateButton:`Aktualisieren`,plateDetection:{noPermission:`Sie haben keine Berechtigung, Drucker zu aktualisieren`,enabledClick:`Plattenprüfung aktiviert - Klicken zum Deaktivieren`,disabledClick:`Plattenprüfung deaktiviert - Klicken zum Aktivieren`,manageCalibration:`Platten-Erkennungskalibrierung verwalten`,calibrationRequired:`Kalibrierung erforderlich`,calibrationInstructions:`Bitte stellen Sie sicher, dass die Druckplatte vollständig leer ist, und klicken Sie dann auf Kalibrieren.`,calibrationDescription:`Die Kalibrierung erfasst ein Referenzbild der leeren Platte. Zukünftige Prüfungen vergleichen mit dieser Referenz, um Objekte zu erkennen.`,calibrationTip:`Tipp: Sie können bis zu 5 Kalibrierungen für verschiedene Platten speichern. Das System verwendet automatisch die beste Übereinstimmung bei der Prüfung.`,plateEmpty:`Platte erscheint leer`,objectsDetected:`Objekte auf Platte erkannt`,confidence:`Konfidenz`,difference:`Differenz`,analysisPreview:`Analysevorschau:`,analysisLegend:`Grüner Rahmen = Erkennungsbereich, Rote Überlagerung = Unterschiede zur Kalibrierung`,savedReferences:`Gespeicherte Referenzen ({{count}}/{{max}})`,deleteReference:`Referenz löschen`,labelPlaceholder:`Bezeichnung...`,clickToEdit:`{{label}} - Zum Bearbeiten klicken`,clickToAddLabel:`Zum Hinzufügen einer Bezeichnung klicken`},speed:{title:`Druckgeschwindigkeit`,silent:`Leise (50%)`,standard:`Standard (100%)`,sport:`Sport (124%)`,ludicrous:`Ludicrous (166%)`},airduct:{title:`Luftkanal-Modus`,cooling:`Kühlen`,heating:`Heizen`},noSdCard:`Keine SD`,door:{open:`Offen`,closed:`Zu`},fans:{partCooling:`Bauteilkühlung`,auxiliary:`Hilfsventilator`,chamber:`Kammerventilator`},clickToViewHmsErrors:`Klicken, um HMS-Fehler anzuzeigen`,estimatedCompletion:`Geschätzte Fertigstellungszeit`,plateNumber:`Platte {{number}}`,slotOptions:`Slot-Optionen`,amsPopup:{friendlyName:`AMS-Name`,friendlyNamePlaceholder:`z. B. AMS-Anzeigename`,serialNumber:`Seriennummer`,firmwareVersion:`Firmware`,save:`Speichern`,clear:`Löschen`,noEditPermission:`Sie haben keine Berechtigung, AMS-Einheiten umzubenennen`},firmwareModal:{title:`Firmware-Update`,titleUpToDate:`Firmware-Info`,currentVersion:`Aktuell:`,latestVersion:`Neueste:`,releaseNotes:`Versionshinweise`,checkingPrereqs:`Prüfe Voraussetzungen...`,sdCardReady:`SD-Karte bereit. Klicken Sie unten, um die Firmware hochzuladen.`,uploadedSuccess:`Firmware auf SD-Karte hochgeladen!`,applyInstructions:`So wenden Sie das Update auf Ihrem Drucker an:`,step1:`Gehen Sie auf dem Touchscreen des Druckers zu Einstellungen`,step2:`Navigieren Sie zu Firmware`,step3:`Wählen Sie Update von SD-Karte`,step4:`Das Update dauert 10-20 Minuten`,done:`Fertig`,starting:`Starte...`,uploadFirmware:`Firmware hochladen`,uploadFailed:`Upload fehlgeschlagen: {{error}}`,uploadedToast:`Firmware hochgeladen! Starten Sie das Update vom Druckerbildschirm.`,availableVersions:`Verfügbare Versionen`,usable:`Installierbar`,unavailable:`Nicht verfügbar`,installed:`Installiert`,newerBadge:`neuer`,olderBadge:`älter`,currentBadge:`aktuell`},accessCodePlaceholder:`Leer lassen, um den aktuellen zu behalten`,roi:{title:`Erkennungsbereich (ROI)`,xStart:`X-Start`,yStart:`Y-Start`,width:`Breite`,height:`Höhe`,instruction:`Passen Sie den Erkennungsbereich an, um sich auf die Druckplatte zu konzentrieren. Der grüne Rahmen in der Vorschau zeigt den aktuellen Bereich.`},developerModeWarning:`Der Entwickler-LAN-Modus ist nicht aktiviert auf: {{names}}. Einige Funktionen funktionieren möglicherweise nicht.`,howToEnable:`Aktivieren`,incompatibleFile:`Diese Datei wurde für {{slicedFor}} geslicet, aber dieser Drucker ist ein {{printerModel}}`,dropNotPrintable:`Nur .gcode- und .gcode.3mf-Dateien können gedruckt werden`,dropToPrint:`Zum Drucken ablegen`,cannotPrint:`Drucker beschäftigt`},archives:{title:`Druckarchiv`,no3mfBanner:{title:`Einige kürzliche Drucke konnten nicht mit Vorschaubild archiviert werden`,body:`Der Slicer hat die .gcode.3mf-Datei nicht auf der SD-Karte des Druckers hinterlegt, daher konnte Bambuddy weder Vorschaubild noch Slicer-Metadaten abrufen. Üblicherweise liegt das daran, dass "Gesendete Dateien auf externem Speicher speichern" im Slicer (Geräte-Tab in Bambu Studio / OrcaSlicer) deaktiviert ist.`,docsLink:`Installationsschritt 4 anzeigen`,dismissLabel:`Hinweis schließen`},searchPlaceholder:`Archiv durchsuchen...`,filterByPrinter:`Nach Drucker filtern`,filterByStatus:`Nach Status filtern`,sortBy:`Sortieren nach`,sortNewest:`Neueste zuerst`,sortOldest:`Älteste zuerst`,sortName:`Name`,sortDuration:`Dauer`,sortLargest:`Größte zuerst`,sortSmallest:`Kleinste zuerst`,sortSize:`Größe`,noArchives:`Keine Archive gefunden`,noArchivesSearch:`Keine Archive entsprechen Ihrer Suche`,originalPrintNotVisible:`Ursprünglicher Druck nicht sichtbar - versuchen Sie, die Filter zu löschen`,noArchivesYet:`Noch keine Archive`,prints:`Drucke`,pagination:{showing:`Zeige`,to:`bis`,of:`von`,show:`Zeige`,page:`Seite`,all:`Alle`},loadingArchives:`Lade Archive...`,releaseToUpload:`Loslassen zum Hochladen`,showAll:`Alle anzeigen`,showFavoritesOnly:`Nur Favoriten anzeigen`,gridView:`Rasteransicht`,listView:`Listenansicht`,calendarView:`Kalenderansicht`,logView:`Druckprotokoll`,manageTags:`Tags verwalten`,showFailedPrints:`Fehlgeschlagene Drucke anzeigen`,hideFailedPrints:`Fehlgeschlagene Drucke ausblenden`,hideDuplicates:`Duplikate ausblenden`,viewOriginalPrint:`Klicken, um den ursprünglichen Druck anzuzeigen (#{{id}})`,printTime:`Druckzeit`,filamentUsed:`Verbrauchtes Filament`,cost:`Kosten`,preview:`Vorschau`,deleteArchive:`Archiv löschen`,deleteConfirm:`Möchten Sie dieses Archiv wirklich löschen?`,favorite:`Favorit`,unfavorite:`Aus Favoriten entfernen`,viewDetails:`Details anzeigen`,status:{completed:`Abgeschlossen`,failed:`Fehlgeschlagen`,stopped:`Gestoppt`},toast:{source3mfAttached:`Quell-3MF angehängt: {{filename}}`,failedUploadSource3mf:`Fehler beim Hochladen der Quell-3MF`,source3mfRemoved:`Quell-3MF entfernt`,failedRemoveSource3mf:`Fehler beim Entfernen der Quell-3MF`,f3dAttached:`F3D angehängt: {{filename}}`,failedUploadF3d:`Fehler beim Hochladen der F3D`,f3dRemoved:`F3D entfernt`,failedRemoveF3d:`Fehler beim Entfernen der F3D`,timelapseAttached:`Zeitraffer angehängt: {{filename}}`,timelapseAlreadyAttached:`Zeitraffer bereits angehängt`,noMatchingTimelapse:`Kein passender Zeitraffer gefunden`,failedScanTimelapse:`Fehler beim Suchen nach Zeitraffer`,failedAttachTimelapse:`Fehler beim Anhängen des Zeitraffers`,timelapseRemoved:`Zeitraffer entfernt`,failedRemoveTimelapse:`Fehler beim Entfernen des Zeitraffers`,timelapseUploaded:`Zeitraffer hochgeladen: {{filename}}`,failedUploadTimelapse:`Fehler beim Hochladen des Zeitraffers`,archiveDeleted:`Archiv gelöscht`,failedDeleteArchive:`Fehler beim Löschen des Archivs`,addedToFavorites:`Zu Favoriten hinzugefügt`,removedFromFavorites:`Aus Favoriten entfernt`,projectUpdated:`Projekt aktualisiert`,failedUpdateProject:`Fehler beim Aktualisieren des Projekts`,linkCopied:`Link in die Zwischenablage kopiert`,failedCopyLink:`Fehler beim Kopieren des Links`,photoDeleted:`Foto gelöscht`,failedDeletePhoto:`Fehler beim Löschen des Fotos`,failedDeleteArchives:`Fehler beim Löschen der Archive`,failedUpdateFavorites:`Fehler beim Aktualisieren der Favoriten`,exportDownloaded:`Export heruntergeladen`,exportFailed:`Export fehlgeschlagen`},menu:{print:`Drucken`,openInBambuStudio:`Im Slicer öffnen`,slice:`Slicen`,externalLink:`Externer Link`,viewOnMakerWorld:`Auf MakerWorld ansehen`,preview3d:`3D-Vorschau`,viewTimelapse:`Zeitraffer ansehen`,scanForTimelapse:`Nach Zeitraffer suchen`,uploadTimelapse:`Zeitraffer hochladen`,removeTimelapse:`Zeitraffer entfernen`,downloadSource3mf:`Quell-3MF herunterladen`,uploadSource3mf:`Quell-3MF hochladen`,replaceSource3mf:`Quell-3MF ersetzen`,removeSource3mf:`Quell-3MF entfernen`,uploadF3d:`F3D hochladen`,replaceF3d:`F3D ersetzen`,downloadF3d:`F3D herunterladen`,removeF3d:`F3D entfernen`,download:`Herunterladen`,copyDownloadLink:`Download-Link kopieren`,qrCode:`QR-Code`,viewPhotos:`Fotos ansehen`,viewPhotosCount:`Fotos ansehen ({{count}})`,projectPage:`Projektseite`,addToFavorites:`Zu Favoriten hinzufügen`,removeFromFavorites:`Aus Favoriten entfernen`,edit:`Bearbeiten`,printLog:`Druckprotokoll`,goToProject:`Zum Projekt: {{name}}`,addToProject:`Zu Projekt hinzufügen`,removeFromProject:`Aus Projekt entfernen`,loading:`Laden...`,noProjectsAvailable:`Keine Projekte verfügbar`,searchProjects:`Projekte suchen…`,select:`Auswählen`,deselect:`Abwählen`,delete:`Löschen`},permission:{noReprint:`Sie haben keine Berechtigung, dieses Archiv erneut zu drucken`,noAddToQueue:`Sie haben keine Berechtigung, zur Warteschlange hinzuzufügen`,noUpdateArchives:`Sie haben keine Berechtigung, Archive zu aktualisieren`,noUploadFiles:`Sie haben keine Berechtigung, Dateien hochzuladen`,noDownload:`Sie haben keine Berechtigung, Archive herunterzuladen`,noCopyLink:`Sie haben keine Berechtigung, Download-Links zu kopieren`,noDelete:`Sie haben keine Berechtigung, dieses Archiv zu löschen`,noEdit:`Sie haben keine Berechtigung, diesen Eintrag zu bearbeiten`,noCreate:`Sie haben keine Berechtigung, Archive zu erstellen`},platePicker:{title:`Platte zur Vorschau auswählen`,hint:`Dieses Archiv enthält mehrere Platten. Wähle eine, um sie im GCode-Viewer zu öffnen.`,plateLabel:`Platte {{index}}`,objectCount:`{{count}} Objekt`,objectCount_plural:`{{count}} Objekte`,noGcode:`Dieses Archiv enthält keinen geschnittenen G-Code zur Vorschau. Öffne es zuerst in Bambu Studio zum Slicen.`},card:{previousPlate:`Vorherige Platte`,nextPlate:`Nächste Platte`,plateNumber:`Platte {{index}}`,moreOptions:`Rechtsklick für mehr Optionen`,addToFavorites:`Zu Favoriten hinzufügen`,removeFromFavorites:`Aus Favoriten entfernen`,cancelled:`abgebrochen`,failed:`fehlgeschlagen`,duplicate:`Duplikat`,duplicateTitle:`Dieses Modell wurde bereits zuvor gedruckt`,openSource3mf:`Quell-3MF in Bambu Studio öffnen (Rechtsklick für mehr Optionen)`,downloadF3d:`Fusion 360 Designdatei herunterladen`,viewTimelapse:`Zeitraffer ansehen`,viewPhoto:`1 Foto ansehen`,viewPhotos:`{{count}} Fotos ansehen`,openFolder:`Ordner öffnen: {{name}}`,slicedFile:`Geslicte Datei - druckbereit`,sourceFile:`Nur Quelldatei - keine AMS-Zuordnung verfügbar`,gcode:`GCODE`,source:`QUELLE`,project:`Projekt: {{name}}`,runsBadge:`{{count}} Drucke`,runsBadgeTitle:`Insgesamt {{count}} Drucke — {{successful}} erfolgreich, {{failed}} fehlgeschlagen. Klicken, um das vollständige Druckprotokoll zu öffnen.`,estimated:`Geschätzt: {{time}}`,actual:`Tatsächlich: {{time}}`,accuracy:`Genauigkeit: {{percent}}%`,filament:`{{weight}} g`,layer:`{{count}} Schicht`,layers:`{{count}} Schichten`,object:`{{count}} Objekt`,objects:`{{count}} Objekte`,slicedFor:`Geslict für {{model}}`,uploadedBy:`Hochgeladen von`,noPermissionReprint:`Sie haben keine Berechtigung, erneut zu drucken`,noFileForReprint:`Keine 3MF-Datei verfügbar — die Datei konnte beim Aufzeichnen des Drucks nicht vom Drucker heruntergeladen werden`,noPermissionEdit:`Sie haben keine Berechtigung, Archive zu bearbeiten`,noPermissionDelete:`Sie haben keine Berechtigung, Archive zu löschen`,openInBambuStudio:`Im Slicer öffnen`,openInBambuStudioToSlice:`Im Slicer öffnen zum Slicen`,slice:`Slicen`,externalLink:`Externer Link`,makerWorld:`MakerWorld – {{designer}}`,viewProject:`Projekt ansehen`,noExternalLink:`Kein externer Link`,preview3d:`3D-Vorschau`,download:`Herunterladen`,edit:`Bearbeiten`,delete:`Löschen`},runLog:{title:`Druckprotokoll`,modalTitle:`Druckprotokoll — {{name}}`,modalTitleFallback:`dieses Archiv`,empty:`Für dieses Archiv wurden noch keine Druckereignisse aufgezeichnet.`,col:{date:`Datum`,status:`Status`,duration:`Dauer`,filament:`Filament`,cost:`Kosten`},status:{completed:`Abgeschlossen`,failed:`Fehlgeschlagen`,cancelled:`Abgebrochen`,stopped:`Gestoppt`,skipped:`Übersprungen`,printing:`Druckt`}},modal:{deleteArchive:`Archiv löschen`,deleteConfirm:`Möchten Sie "{{name}}" wirklich löschen? Diese Aktion kann nicht rückgängig gemacht werden.`,deleteButton:`Löschen`,deletePurgeStats:`Diesen Druck auch aus den Quick Stats entfernen (Filament, Zeit, Kosten, Energie)`,deleteQueueItemsWarning:`{{count}} mit diesem Archiv verknüpfte Warteschlangeneinträge werden ebenfalls entfernt.`,deleteBlockedByPrinting:`Löschen nicht möglich — {{count}} Warteschlangeneinträge werden derzeit gedruckt. Druck zuerst stoppen und erneut versuchen.`,removeSource3mf:`Quell-3MF entfernen`,removeSource3mfConfirm:`Möchten Sie die Quell-3MF-Datei wirklich von "{{name}}" entfernen? Die ursprüngliche Slicer-Projektdatei wird gelöscht.`,removeButton:`Entfernen`,removeF3d:`F3D entfernen`,removeF3dConfirm:`Möchten Sie die Fusion 360 Designdatei wirklich von "{{name}}" entfernen?`,removeTimelapse:`Zeitraffer entfernen`,removeTimelapseConfirm:`Möchten Sie das Zeitraffervideo wirklich von "{{name}}" entfernen?`,timelapse:`{{name}} - Zeitraffer`,selectTimelapse:`Zeitraffer auswählen`,selectTimelapseDesc:`Keine automatische Übereinstimmung gefunden. Wählen Sie den Zeitraffer für diesen Druck:`,deleteArchives:`Archive löschen`,deleteArchivesConfirm:`Möchten Sie wirklich {{count}} Archiv(e) löschen? Diese Aktion kann nicht rückgängig gemacht werden.`,deleteCount:`{{count}} löschen`},page:{title:`Archive`,printsCount:`{{filtered}} von {{total}} Drucken`,dropFilesHere:`.3mf-Dateien hier ablegen`,releaseToUpload:`Loslassen zum Hochladen`,only3mfSupported:`Nur .3mf-Dateien werden unterstützt`,close:`Schließen`,selected:`{{count}} ausgewählt`,selectAll:`Alle auswählen`,tags:`Tags`,project:`Projekt`,favorite:`Favorit`,delete:`Löschen`,toggledFavorites:`Favoriten für {{count}} Archiv(e) umgeschaltet`,failedUpdateFavorites:`Fehler beim Aktualisieren der Favoriten`,archivesDeleted:`{{count}} Archiv(e) gelöscht`,failedDeleteArchives:`Fehler beim Löschen der Archive`,photoDeleted:`Foto gelöscht`,failedDeletePhoto:`Fehler beim Löschen des Fotos`},list:{name:`Name`,printer:`Drucker`,date:`Datum`,size:`Größe`,actions:`Aktionen`,hasTimelapse:`Hat Zeitraffer`},log:{date:`Datum`,printName:`Druckname`,printer:`Drucker`,user:`Benutzer`,status:`Status`,duration:`Dauer`,filament:`Filament`,allPrinters:`Alle Drucker`,allUsers:`Alle Benutzer`,allStatuses:`Alle Status`,cancelled:`Abgebrochen`,skipped:`Übersprungen`,dateFrom:`Von`,dateTo:`Bis`,noEntries:`Keine Druckprotokolleinträge gefunden`,showing:`{{count}} von {{total}} Einträgen`,rowsPerPage:`Zeilen`,page:`Seite`,prev:`Zurück`,next:`Weiter`,clearLog:`Protokoll löschen`,clearLogTitle:`Druckprotokoll löschen`,clearLogConfirm:`Alle Druckprotokolleinträge werden dauerhaft gelöscht. Archive und Warteschlangeneinträge sind nicht betroffen. Diese Aktion kann nicht rückgängig gemacht werden. Sind Sie sicher?`,clearLogButton:`Alle löschen`,cleared:`{{count}} Protokolleinträge gelöscht`,clearFailed:`Druckprotokoll konnte nicht gelöscht werden`,deleteEntryTitle:`Druckprotokoll-Eintrag löschen`,deleteEntryConfirm:`Dieser Eintrag wird aus dem Protokoll entfernt und sein Filament-, Zeit- und Kostenbeitrag verschwindet aus den Schnellstatistiken. Das zugehörige Archiv (falls vorhanden) ist nicht betroffen. Diese Aktion kann nicht rückgängig gemacht werden.`,entryDeleted:`Druckprotokoll-Eintrag gelöscht`,entryDeleteFailed:`Druckprotokoll-Eintrag konnte nicht gelöscht werden`,editEntryTitle:`Druckprotokoll-Eintrag bearbeiten`,editEntryDescription:`Diesen Druckdurchlauf klassifizieren. Das Fehleranalyse-Widget gruppiert nach diesen Werten, sodass Aktualisierungen sofort in die Statistik einfließen.`,entryUpdated:`Druckprotokoll-Eintrag aktualisiert`,entryUpdateFailed:`Druckprotokoll-Eintrag konnte nicht aktualisiert werden`,statuses:{completed:`Abgeschlossen`,failed:`Fehlgeschlagen`,stopped:`Gestoppt`,cancelled:`Abgebrochen`,skipped:`Übersprungen`}}},dispatchToast:{untitled:`Druckjob`,startingPrints:`Drucke starten`,progressSummary:`{{complete}}/{{total}} fertig • Verarbeitung: {{processing}}`,expandDetails:`Versanddetails ausklappen`,collapseDetails:`Versanddetails einklappen`,awaitingPrinter:`Warte auf Drucker…`,status:{processing:`Verarbeitung`,completed:`Fertig`,failed:`Fehlgeschlagen`},failed:{generic:`Versand fehlgeschlagen`,upload_failed:`Upload zum Drucker fehlgeschlagen`,start_command_failed:`Drucker hat Startbefehl abgelehnt`},dismiss:`Schließen`},pipelineRuns:{title:`Pipeline-Läufe`,loading:`Wird geladen…`,empty:`Noch keine Pipeline-Läufe.`,filter:{pipeline:`Pipeline`,status:`Status`,target:`Ziel`,all:`Alle`,allPipelines:`Alle Pipelines`,allStatus:`Alle Status`,allTargets:`Alle Ziele`,clear:`Filter zurücksetzen`,noMatches:`Keine Läufe entsprechen den aktuellen Filtern.`},totalCount_one:`{{n}} Lauf`,totalCount_other:`{{n}} Läufe`,copies:`{{n}} Kopien`,failedCount:`{{n}} fehlgeschlagen`,copyN:`Kopie {{n}}`,retryFailed:`Fehlgeschlagene wiederholen`,retryOf:`Wiederholung von #{{n}}`,pagination:`{{start}}–{{end}} von {{total}}`,toast:{cancelled:`Lauf abgebrochen`,cancelFailed:`Abbruch fehlgeschlagen`,retryStarted:`Wiederholung gestartet`,retryFailed:`Wiederholung fehlgeschlagen`,cleared:`{{n}} Läufe gelöscht`,clearFailed:`Löschen fehlgeschlagen`},clearLog:`Verlauf löschen`,clearConfirmTitle:`Verlauf löschen?`,clearConfirmBody:`Jeden abgeschlossenen, fehlgeschlagenen, abgebrochenen und teilweise fehlgeschlagenen Pipeline-Lauf löschen? Laufende Läufe bleiben erhalten. Dies kann nicht rückgängig gemacht werden.`,clearConfirmAction:`Löschen`,jobStatus:{pending:`ausstehend`,awaiting_printer:`wartet auf Drucker`,queued:`in Warteschlange`,printing:`druckt`,completed:`abgeschlossen`,failed:`fehlgeschlagen`,cancelled:`abgebrochen`},cancelledByUser:`Vom Benutzer abgebrochen`},queue:{filamentShort:{rowBadge:`Filament fuer die zugewiesene Spule reicht nicht`,rowTooltip:`Der Dispatcher hat diese Position markiert. Klicke auf Play, um den Pro-Slot-Fehlbestand zu sehen und zu entscheiden, ob trotzdem gedruckt werden soll.`,confirmTitle:`Filament reicht nicht`,confirmIntro:`Die zugewiesene Spule kann mindestens einen Slot nicht versorgen. Trotzdem drucken?`,lineItem:`Slot {{slot}}: benoetigt {{required}} g, {{remaining}} g verbleibend`,unknown:`unbekannt`,printAnyway:`Trotzdem drucken`},title:`Druckwarteschlange`,subtitle:`Planen und verwalten Sie Ihre Druckaufträge`,editQueueItem:`Warteschlangeneintrag bearbeiten`,selectAllPlates:`Alle {{count}} Platten auswählen`,deselectAll:`Alle abwählen`,printQueued:`Druck in Warteschlange`,printQueuedWillStartWhenIdle:`Startet, sobald der Drucker im Leerlauf ist`,itemsQueued:`{{count}} Einträge in Warteschlange`,sending:`Wird gesendet...`,sendingProgress:`Sende {{current}}/{{total}}...`,adding:`Wird hinzugefügt...`,addingProgress:`Füge hinzu {{current}}/{{total}}...`,savingProgress:`Speichere {{current}}/{{total}}...`,clearQueue:`Warteschlange leeren`,clearHistory:`Verlauf löschen`,emptyQueue:`Warteschlange ist leer`,position:`Position`,scheduledTime:`Geplante Zeit`,moveUp:`Nach oben`,moveDown:`Nach unten`,startNow:`Jetzt starten`,printingInProgress:`Druck läuft...`,viewArchive:`Archiv anzeigen`,viewInFileManager:`Im Dateimanager anzeigen`,itemCount:`{{count}} Element`,itemCount_plural:`{{count}} Elemente`,dragToReorder:`Ziehen zum Neuordnen (nur Sofort)`,reorderHint:`Position betrifft nur Sofort-Elemente. Geplante Elemente werden zur festgelegten Zeit ausgeführt.`,sjf:{label:`SJF`,tooltip:`Kürzester Auftrag zuerst — Scheduler bevorzugt kürzere Drucke`},addedBy:`Hinzugefügt von {{name}}`,nextInQueue:`Nächster in der Warteschlange`,clearPlateSuccess:`Druckplatte freigegeben — bereit für nächsten Druck`,plateNumber:`Platte {{index}}`,quantity:`Menge`,quantityHint:`Erstellt {{count}} Warteschlangeneinträge`,activeBatches:`Aktive Stapel`,batchProgress:`{{completed}} von {{total}} abgeschlossen`,cancelBatch:`Verbleibende abbrechen`,batchCancelled:`Verbleibende Stapeleinträge abgebrochen`,cancelBatchConfirmTitle:`Stapel abbrechen`,cancelBatchConfirmMessage:`Alle verbleibenden ausstehenden Einträge in diesem Stapel abbrechen?`,batch:{defaultName:`Stapel`,label:`{{count}} Eintrag`,label_plural:`{{count}} Einträge`,pendingCount:`{{count}} ausstehend`,pendingCount_plural:`{{count}} ausstehend`,expand:`Stapel ausklappen`,collapse:`Stapel einklappen`,groupAsBatch:`Als Stapel gruppieren…`,groupAsBatchDescription:`Fasse die {{count}} ausgewählten Einträge zu einem einklappbaren Stapel zusammen.`,nameLabel:`Stapelname`,namePlaceholder:`z. B. Freitagsgeschenke`,create:`Stapel erstellen`,ungroup:`Gruppierung aufheben`,ungroupConfirmTitle:`Stapel auflösen?`,ungroupConfirmMessage:`Die Einträge bleiben in der Warteschlange, sind aber nicht mehr gruppiert.`,dragGroup:`Gruppe ziehen`},tabs:{queue:`Warteschlange`,history:`Verlauf`,timeline:`Zeitachse`,pipelines:`Druckabläufe`},layout:{flatList:`Liste`,byPrinter:`Nach Drucker`,groupByPrinter:`Nach Drucker gruppieren`},history:{emptyTitle:`Noch kein Verlauf`,emptyDescription:`Abgeschlossene, abgebrochene und fehlgeschlagene Drucke erscheinen hier.`},dragGhost:{multiCount:`{{count}} Einträge`,batch:`{{name}} ({{count}} Kopie)`,batch_plural:`{{name}} ({{count}} Kopien)`},sections:{currentlyPrinting:`Aktuell druckend`,queued:`In Warteschlange`,history:`Verlauf`},status:{pending:`Ausstehend`,waiting:`Wartend`,printing:`Druckt`,paused:`Pausiert`,completed:`Abgeschlossen`,failed:`Fehlgeschlagen`,skipped:`Übersprungen`,cancelled:`Abgebrochen`},summary:{printing:`Druckt`,queued:`In Warteschlange`,totalTime:`Gesamte Wartezeit`,totalWeight:`Gesamtgewicht der Warteschlange`,history:`Verlauf`},filter:{allPrinters:`Alle Drucker`,unassigned:`Nicht zugewiesen`,allStatus:`Alle Status`,allLocations:`Alle Standorte`,any:`Beliebig`},sort:{byPosition:`Nach Position sortieren`,byName:`Nach Name sortieren`,byPrinter:`Nach Drucker sortieren`,bySchedule:`Nach Zeitplan sortieren`,byDate:`Nach Datum sortieren`,ascendingOldest:`Aufsteigend (älteste zuerst)`,descendingNewest:`Absteigend (neueste zuerst)`},badges:{staged:`Bereitgestellt`,requiresPrevious:`Erfordert vorherigen Erfolg`,autoPowerOff:`Automatisch ausschalten`,gcodeInjection:`G-Code`},empty:{title:`Keine Drucke geplant`,description:`Planen Sie einen Druck von der Archivseite über die Option "Planen" im Kontextmenü oder ziehen Sie Dateien hierher.`},time:{asap:`Sofort`,overdue:`Überfällig`,now:`Jetzt`,lessThanMinute:`In weniger als einer Minute`,inMinutes:`In {{count}} Min`,inHours:`In {{count}} Stunden`},actions:{startPrint:`Druck starten`,stopPrint:`Druck stoppen`,requeue:`Erneut einreihen`},bulkEdit:{title:`{{count}} Element bearbeiten`,title_plural:`{{count}} Elemente bearbeiten`,description:`Nur geänderte Einstellungen werden auf ausgewählte Elemente angewendet.`,printer:`Drucker`,noChange:`— Keine Änderung —`,queueOptions:`Warteschlangenoptionen`,staged:`Bereitgestellt (manueller Start)`,autoPowerOff:`Nach Druck automatisch ausschalten`,requirePrevious:`Vorherigen Erfolg erfordern`,printOptions:`Druckoptionen`,bedLevelling:`Bett-Nivellierung`,flowCalibration:`Fluss-Kalibrierung`,vibrationCalibration:`Vibrations-Kalibrierung`,layerInspection:`Erste-Schicht-Prüfung`,timelapse:`Zeitraffer`,useAms:`AMS verwenden`,nozzleOffsetCali:`Düsenversatz-Kalibrierung`,applyChanges:`Änderungen übernehmen`,selectAll:`Alle auswählen`,deselectAll:`Auswahl aufheben`,selected:`{{count}} ausgewählt`,editSelected:`Ausgewählte bearbeiten`,cancelSelected:`Ausgewählte abbrechen`},confirm:{cancelTitle:`Geplanten Druck abbrechen`,cancelMessage:`Möchten Sie "{{name}}" wirklich abbrechen?`,stopTitle:`Druck stoppen`,stopMessage:`Möchten Sie den aktuellen Druck "{{name}}" wirklich stoppen? Der Druckauftrag wird am Drucker abgebrochen.`,removeTitle:`Aus Verlauf entfernen`,removeMessage:`Möchten Sie "{{name}}" wirklich aus dem Warteschlangenverlauf entfernen?`,clearHistoryTitle:`Verlauf löschen`,clearHistoryMessage:`Möchten Sie alle {{count}} Element(e) aus dem Verlauf entfernen?`,cancelButton:`Druck abbrechen`,stopButton:`Druck stoppen`,thisPrint:`diesen Druck`,thisItem:`dieses Element`},toast:{cancelled:`Warteschlangenelement abgebrochen`,cancelFailed:`Element konnte nicht abgebrochen werden`,removed:`Warteschlangenelement entfernt`,removeFailed:`Element konnte nicht entfernt werden`,stopped:`Druck gestoppt`,stopFailed:`Druck konnte nicht gestoppt werden`,released:`Druck in Warteschlange freigegeben`,startFailed:`Druck konnte nicht gestartet werden`,reorderFailed:`Warteschlange konnte nicht neu geordnet werden`,historyCleared:`{{count}} Verlaufselement(e) gelöscht`,clearHistoryFailed:`Verlauf konnte nicht gelöscht werden`,updateFailed:`Elemente konnten nicht aktualisiert werden`,bulkCancelled:`{{count}} Element(e) abgebrochen`,bulkCancelFailed:`Elemente konnten nicht abgebrochen werden`,batchCreated:`Stapel „{{name}}“ erstellt`,batchCreateFailed:`Stapel konnte nicht erstellt werden`,batchUngrouped:`{{count}} Eintrag/Einträge aus Stapel gelöst`,batchUngroupFailed:`Stapel konnte nicht aufgelöst werden`,resumedAfterFailure:`Warteschlange fortgesetzt — {{restored}} Auftrag/Aufträge wieder eingereiht`,resumeAfterFailureFailed:`Warteschlange konnte nicht fortgesetzt werden`},resumeAfterFailure:{banner:`{{printer}} ist durch einen vorherigen Druckfehler blockiert — {{count}} Auftrag/Aufträge übersprungen`,bannerHint:`Behebe das Druckerproblem und setze die Warteschlange dann fort, um die übersprungenen Aufträge wiederherzustellen und die Sperre aufzuheben.`,button:`Nach Fehler fortsetzen`,confirmTitle:`Warteschlange nach Fehler fortsetzen?`,confirmMessage:`Setze {{count}} übersprungenen Auftrag/Aufträge auf {{printer}} wieder auf „Ausstehend“ und hebe die Vorgängersperre auf. Stelle vorher sicher, dass der Drucker bereit ist.`},timeline:{listView:`Liste`,timelineView:`Zeitstrahl`,unassigned:`Nicht zugewiesen`,noData:`Keine geplanten Drucke für diesen Tag`,nothingCommitted:`Keine festgelegten Pläne in diesem Zeitfenster. Vorgemerkte Einträge, wartende Einträge und ASAP-Aufträge auf inaktiven Druckern werden nicht angezeigt — leg eine geplante Zeit fest oder gib einen vorgemerkten Eintrag frei, damit er hier erscheint.`,allDoneBy:`Alle Drucke voraussichtlich fertig um {{time}}`,staged:`Bereitgestellt`,filterAll:`Alle anzeigen`,filterPrinting:`Druckend`,filterQueued:`Warteschlange`,time:{anyMoment:`jeden Moment`,minutesLeft:`{{minutes}}m übrig`,hoursLeft:`{{hours}}h übrig`,hoursMinutesLeft:`{{hours}}h {{minutes}}m übrig`},day:{previous:`Vorheriger Tag`,next:`Nächster Tag`,today:`Heute`},window:{back12h:`12 Stunden zurück`,forward12h:`12 Stunden vor`,now:`Jetzt`},printerColumnHeader:`Drucker`},permissions:{noStopPrint:`Sie haben keine Berechtigung, Drucke zu stoppen`,noStartPrint:`Sie haben keine Berechtigung, Drucke zu starten`,noEdit:`Sie haben keine Berechtigung, dieses Warteschlangenelement zu bearbeiten`,noCancel:`Sie haben keine Berechtigung, dieses Warteschlangenelement abzubrechen`,noRequeue:`Sie haben keine Berechtigung, Elemente erneut einzureihen`,noRemove:`Sie haben keine Berechtigung, dieses Warteschlangenelement zu entfernen`,noClearHistory:`Sie haben keine Berechtigung, den gesamten Verlauf zu löschen`,noEditItems:`Sie haben keine Berechtigung, Warteschlangenelemente zu bearbeiten`,noCancelItems:`Sie haben keine Berechtigung, Warteschlangenelemente abzubrechen`}},stats:{title:`Statistiken`,subtitle:`Widgets zum Neuanordnen ziehen. Auf das Augensymbol klicken zum Ausblenden.`,overview:`Übersicht`,totalPrints:`Gesamtdrucke`,successRate:`Erfolgsrate`,totalPrintTime:`Gesamtdruckzeit`,printTime:`Druckzeit`,totalFilament:`Gesamtverbrauch Filament`,filamentUsed:`Filamentverbrauch`,filamentCost:`Filamentkosten`,totalCost:`Gesamtkosten`,energyUsed:`Energieverbrauch`,energyCost:`Energiekosten`,energyWarmingUpTooltip:`Die Energieerfassung sammelt noch stündliche Snapshots. Zeitraumwerte werden genau, sobald vor dem gewählten Bereich mindestens ein Snapshot vorliegt. Frühe Werte können zu niedrig sein.`,averagePrintTime:`Durchschnittliche Druckzeit`,printsPerDay:`Drucke pro Tag`,byPrinter:`Nach Drucker`,printsByPrinter:`Drucke nach Drucker`,byMaterial:`Nach Material`,byMonth:`Nach Monat`,last7Days:`Letzte 7 Tage`,last30Days:`Letzte 30 Tage`,last90Days:`Letzte 90 Tage`,allTime:`Gesamt`,quickStats:`Schnellstatistiken`,printActivity:`Druckaktivität`,filamentTypes:`Filamenttypen`,filamentTrends:`Filamenttrends`,failureAnalysis:`Fehleranalyse`,timeAccuracy:`Zeitgenauigkeit`,successful:`Erfolgreich:`,failed:`Fehlgeschlagen:`,cancelled:`Abgebrochen:`,perfectEstimate:`100% = perfekte Schätzung`,noTimeAccuracyData:`Noch keine Zeitgenauigkeitsdaten`,noFilamentData:`Keine Filamentdaten verfügbar`,noPrinterData:`Keine Druckerdaten verfügbar`,noPrintData:`Keine Druckdaten verfügbar`,noPrintDataLast30Days:`Keine Druckdaten in den letzten 30 Tagen`,failureReasons:`Fehlerursachen`,topFailureReasons:`Häufigste Fehlerursachen`,failedPrintsCount:`{{failed}} / {{total}} Drucke fehlgeschlagen`,lastWeekRate:`Letzte Woche: {{rate}}%`,resetLayout:`Layout zurücksetzen`,recalculateCosts:`Kosten neu berechnen`,recalculateCostsHint:`Alle Archivkosten mit aktuellen Filamentpreisen neu berechnen`,exportStats:`Statistiken exportieren`,exportAsCsv:`Als CSV exportieren`,exportAsExcel:`Als Excel exportieren`,hiddenCount:`{{count}} ausgeblendet`,exportDownloaded:`Export heruntergeladen`,exportFailed:`Export fehlgeschlagen`,layoutReset:`Layout zurückgesetzt`,recalculatedCosts:`Kosten für {{count}} Archive neu berechnet`,recalculateFailed:`Kosten konnten nicht neu berechnet werden`,loadingStats:`Statistiken werden geladen...`,noPermissionResetLayout:`Sie haben keine Berechtigung, das Layout zurückzusetzen`,noPermissionRecalculate:`Sie haben keine Berechtigung, Kosten neu zu berechnen`,noPrintDataInRange:`Keine Druckdaten im ausgewählten Zeitraum`,periodFilament:`Filamentverbrauch`,periodCost:`Kosten`,avgPerPrint:`Durchschnitt pro Druck`,usageOverTime:`Verbrauch im Zeitverlauf`,filamentByWeight:`Gewicht`,printDuration:`Druckdauer`,printerUtilization:`Druckerauslastung`,filamentSuccess:`Erfolg nach Material`,printHabits:`Druckgewohnheiten`,printTimeOfDay:`Druck-Tageszeit`,colorDistribution:`Farbverteilung`,noColorData:`Keine Farbdaten verfügbar`,records:`Rekorde`,longestPrint:`Längster Druck`,heaviestPrint:`Schwerster Druck`,mostExpensivePrint:`Teuerster Druck`,busiestDay:`Aktivster Tag`,successStreak:`Erfolgsserie`,streakPrint:`aufeinanderfolgender Druck`,streakPrints:`{{count}} aufeinanderfolgende Drucke`,printerStats:`Druckerstatistiken`,hours:`Stunden`,avgPrints:`Ø Drucke`,noArchiveData:`Keine Druckdaten verfügbar`,filamentByTime:`Zeitverlauf`,avgWeight:`Ø Gewicht`,avgTime:`Ø Zeit`,filamentByPrints:`Drucke`,timeframe:{today:`Heute`,"this-week":`Diese Woche`,"this-month":`Dieser Monat`,"last-7":`Letzte 7 Tage`,"last-30":`Letzte 30 Tage`,"last-90":`Letzte 90 Tage`,"this-year":`Dieses Jahr`,"all-time":`Gesamt`,custom:`Benutzerdefiniert`,from:`Von`,to:`Bis`},allUsers:`Alle Benutzer`,noUser:`Kein Benutzer (System)`,filterByUser:`Nach Benutzer filtern`},maintenance:{title:`Wartung`,overview:`Übersicht`,allOk:`Alle Wartungen aktuell`,dueCount:`{{count}} Aufgabe fällig`,dueCount_plural:`{{count}} Aufgaben fällig`,warningCount:`{{count}} Warnung`,warningCount_plural:`{{count}} Warnungen`,totalPrintTime:`Gesamtdruckzeit`,nextMaintenance:`Nächste Wartung`,nothingDue:`Nichts fällig`,tasks:`Aufgaben`,lastPerformed:`Zuletzt durchgeführt`,interval:`Intervall`,hoursRemaining:`{{hours}}h verbleibend`,hoursOverdue:`{{hours}}h überfällig`,markDone:`Als erledigt markieren`,performMaintenance:`Wartung durchführen`,history:`Verlauf`,noHistory:`Kein Wartungsverlauf`,editPrintHours:`Druckstunden bearbeiten`,currentHours:`Aktuelle Stunden`,statusTab:`Status`,settingsTab:`Einstellungen`,overdueCount:`{{count}} überfällig`,dueSoonCount:`{{count}} bald fällig`,dueSoon:`Bald fällig`,allGood:`Alles in Ordnung`,overdueBy:`Überfällig um {{duration}}`,dueIn:`Fällig in {{duration}}`,timeLeft:`{{duration}} verbleibend`,day:`1 Tag`,days:`{{count}} Tage`,week:`1 Woche`,weeks:`{{count}} Wochen`,month:`1 Monat`,months:`{{count}} Monate`,year:`1 Jahr`,maintenanceTypes:`Wartungstypen`,maintenanceTypesDescription:`Systemtypen und Ihre benutzerdefinierten Wartungsaufgaben`,addCustomType:`Benutzerdefinierten Typ hinzufügen`,restoreDefaults:`Standardaufgaben wiederherstellen`,intervalType:`Intervalltyp`,intervalValue:`Intervall ({{type}})`,icon:`Symbol`,documentationLink:`Dokumentationslink (optional)`,assignToPrinters:`Druckern zuweisen`,selectAtLeastOnePrinter:`Wählen Sie mindestens einen Drucker`,addType:`Typ hinzufügen`,custom:`Benutzerdefiniert`,printHours:`Druckstunden`,calendarDays:`Kalendertage`,exampleName:`z.B. HEPA-Filter ersetzen`,viewDocumentation:`Dokumentation anzeigen`,timeBasedInterval:`Zeitbasiertes Intervall`,intervalOverrides:`Intervall-Überschreibungen`,intervalOverridesDescription:`Intervalle für bestimmte Drucker anpassen`,assignedToPrinters:`Druckern zugewiesen:`,noPrintersAssigned:`Keine Drucker zugewiesen`,addPrinterShort:`Hinzufügen:`,printersAssignedClick:`{{count}} Drucker zugewiesen - klicken zum Verwalten`,removeFromPrinter:`Von diesem Drucker entfernen`,types:{lubricateCarbonRods:`Karbonstäbe schmieren`,lubricateRails:`Linearschienen schmieren`,cleanNozzle:`Düse/Hotend reinigen`,checkBelts:`Riemenspannung prüfen`,cleanBuildPlate:`Druckbett reinigen`,checkExtruder:`Extruderzahnräder prüfen`,checkCooling:`Kühlungslüfter prüfen`,generalInspection:`Allgemeine Inspektion`,cleanCarbonRods:`Kohlenstoffstangen reinigen`,lubricateSteelRods:`Stahlstangen schmieren`,cleanSteelRods:`Stahlstangen reinigen`,cleanLinearRails:`Linearschienen reinigen`,checkPtfeTube:`PTFE-Schlauch prüfen`,replaceHepaFilter:`HEPA-Filter ersetzen`,replaceCarbonFilter:`Aktivkohlefilter ersetzen`,lubricateLeftNozzleRail:`Linke Düsenschiene schmieren`},maintenanceComplete:`Wartung als abgeschlossen markiert`,typeUpdated:`Wartungstyp aktualisiert`,typeDeleted:`Wartungstyp gelöscht`,defaultsRestored:`{{count}} Standardaufgabe(n) wiederhergestellt`,printHoursUpdated:`Druckstunden aktualisiert`,printerAssigned:`Drucker zugewiesen`,printerRemoved:`Drucker entfernt`,deleteTypeConfirm:`"{{name}}" löschen?`,deleteSystemTypeTitle:`Standard-Wartungsaufgabe löschen?`,deleteSystemTypeMessage:`Möchten Sie die Standard-Wartungsaufgabe "{{name}}" wirklich löschen?`,noPermissionUpdate:`Sie haben keine Berechtigung, Wartungselemente zu aktualisieren`,noPermissionPerform:`Sie haben keine Berechtigung, Wartungen durchzuführen`,noPermissionEditTypes:`Sie haben keine Berechtigung, Wartungstypen zu bearbeiten`,noPermissionDeleteTypes:`Sie haben keine Berechtigung, Wartungstypen zu löschen`,noPermissionEditHours:`Sie haben keine Berechtigung, Druckstunden zu bearbeiten`,noPermissionRemovePrinter:`Sie haben keine Berechtigung, Druckerzuweisungen zu entfernen`,noPermissionAssignPrinter:`Sie haben keine Berechtigung, Drucker zuzuweisen`,noPermissionEditIntervals:`Sie haben keine Berechtigung, Intervalle zu bearbeiten`,configureSettings:`Wartungstypen und Intervalle konfigurieren`},settings:{title:`Einstellungen`,general:`Allgemein`,tabs:{general:`Allgemein`,smartPlugs:`Smart Plugs`,notifications:`Benachrichtigungen`,queue:`Workflow`,queueDispatch:`Warteschlange & Dispatch`,queuePipelines:`Pipelines`,filament:`Filament`,network:`Netzwerk`,apiKeys:`API-Schlüssel`,virtualPrinter:`Virtueller Drucker`,spoolbuddy:`SpoolBuddy`,failureDetection:`Fehlererkennung`,users:`Authentifizierung`,backup:`Sicherung`,emailAuth:`E-Mail-Authentifizierung`,ldap:`LDAP`,twoFa:`Zwei-Faktor-Auth`,oidc:`SSO / OIDC`,security:`Sicherheit`},spoolbuddy:{infoTitle:`SpoolBuddy-Geräte`,infoBody:`SpoolBuddy-Kioske registrieren sich automatisch per Heartbeat. Ein Gerät hier abmelden, wenn es nicht mehr verwendet wird oder wenn ein veralteter Eintrag nach einem Daemon-Absturz übrig geblieben ist.`,duplicatesTitle:`{{count}} Geräte registriert`,duplicatesBody:`Die Kiosk-Oberfläche verwendet nur das zuerst registrierte Gerät. Falls eines davon ein veralteter Doppeleintrag nach einem Absturz ist, kann es hier entfernt werden — ein laufendes Gerät registriert sich beim nächsten Heartbeat automatisch neu.`,empty:`Noch keine SpoolBuddy-Geräte registriert.`,online:`Online`,offline:`Offline`,unregister:`Abmelden`,unregisterSuccess:`Gerät abgemeldet`,unregisterError:`Gerät konnte nicht abgemeldet werden`,confirmTitle:`SpoolBuddy-Gerät abmelden?`,confirmBody:`Dies entfernt „{{hostname}}" ({{deviceId}}) aus der Datenbank. Ein laufendes Gerät registriert sich beim nächsten Heartbeat automatisch neu.`,ipAddress:`IP-Adresse`,firmware:`Firmware`,lastSeen:`Zuletzt gesehen`,daemonUptime:`Daemon-Laufzeit`,systemUptime:`System-Laufzeit`,never:`nie`,nfc:`NFC`,scale:`Waage`,cpuTemp:`CPU-Temp.`,cpuLoad:`CPU-Last`,memory:`Speicher`,disk:`Festplatte`,update:`Aktualisieren`,updateConfirmTitle:`Spoolbuddy-Daemon aktualisieren?`,updateConfirmBody:`Software-Update auf „{{hostname}}" auslösen? Der Daemon startet nach dem Update neu.`,restartBrowser:`Browser neu starten`,restartBrowserConfirmTitle:`Kiosk-Browser neu starten?`,restartBrowserConfirmBody:`Kiosk-Browser auf „{{hostname}}" neu starten? Die Anzeige wird kurz schwarz.`,restartDaemon:`Daemon neu starten`,restartDaemonConfirmTitle:`Spoolbuddy-Daemon neu starten?`,restartDaemonConfirmBody:`Spoolbuddy-Daemon auf „{{hostname}}" neu starten? Das Gerät ist für einige Sekunden offline.`,reboot:`Neustart`,rebootConfirmTitle:`Gerät neu starten?`,rebootConfirmBody:`„{{hostname}}" neu starten? Das Gerät ist für etwa eine Minute offline.`,shutdown:`Herunterfahren`,shutdownConfirmTitle:`Gerät herunterfahren?`,shutdownConfirmBody:`„{{hostname}}" herunterfahren? Physischer Zugriff ist nötig, um es wieder einzuschalten.`,commandConfirm:`Bestätigen`,commandQueued:`Befehl eingereiht`,commandError:`Befehl konnte nicht gesendet werden`},ldap:{title:`LDAP-Authentifizierung`,enabledDesc:`LDAP-Authentifizierung ist aktiviert`,disabledDesc:`LDAP-Authentifizierung ist deaktiviert`,disabledHint:`LDAP-Einstellungen unten konfigurieren und speichern, dann aktivieren.`,enabled:`LDAP-Authentifizierung aktiviert`,disabled:`LDAP-Authentifizierung deaktiviert`,feature1:`Benutzer können sich mit LDAP-Anmeldedaten anmelden`,feature2:`Lokales Admin-Konto bleibt als Fallback erhalten`,feature3:`LDAP-Gruppen werden bei der Anmeldung BamBuddy-Gruppen zugeordnet`,serverConfig:`LDAP-Server-Konfiguration`,serverUrl:`Server-URL`,serverUrlHint:`Verwenden Sie ldap:// für Standard oder ldaps:// für SSL-Verbindungen`,security:`Sicherheit`,securityHint:`StartTLS aktualisiert eine einfache Verbindung auf TLS. LDAPS verwendet TLS von Anfang an.`,bindDn:`Bind-DN (Dienstkonto)`,bindPassword:`Bind-Passwort`,searchBase:`Such-Basis-DN`,userFilter:`Benutzer-Suchfilter`,userFilterHint:`{username} wird durch den Anmeldenamen ersetzt. Verwenden Sie (uid={username}) für OpenLDAP.`,advanced:`Erweitert`,autoProvision:`Benutzer automatisch anlegen`,autoProvisionHint:`Automatisch ein BamBuddy-Konto bei der ersten LDAP-Anmeldung erstellen`,defaultGroup:`Standardgruppe`,defaultGroupNone:`— Keine (kein Fallback) —`,defaultGroupHint:`Fallback-Gruppe, die zugewiesen wird, wenn sich ein LDAP-Benutzer authentifiziert, aber in keiner zugeordneten LDAP-Gruppe enthalten ist. Leer lassen, um nicht zugeordnete Benutzer ohne Berechtigungen zu belassen.`,groupMapping:`Gruppenzuordnung (JSON)`,groupMappingHint:`LDAP-Gruppen-DNs BamBuddy-Gruppen zuordnen. Verfügbare Gruppen: `,testConnection:`Verbindung testen`,settingsSaved:`LDAP-Einstellungen gespeichert`,errors:{serverRequired:`LDAP-Server-URL ist erforderlich`,searchBaseRequired:`Such-Basis-DN ist erforderlich`,enableAuthFirst:`Authentifizierung zuerst aktivieren`,configureLdapFirst:`LDAP-Einstellungen zuerst speichern`}},email:{smtpSettings:`SMTP-Konfiguration`,smtpHost:`SMTP-Server`,smtpPort:`SMTP-Port`,security:`Sicherheit`,authentication:`Authentifizierung`,username:`Benutzername`,password:`Passwort`,fromEmail:`Absender-E-Mail`,fromName:`Absendername`,testConnection:`SMTP-Verbindung testen`,testRecipient:`Test-Empfänger-E-Mail`,sendTest:`Test-E-Mail senden`,sending:`Wird gesendet...`,save:`Einstellungen speichern`,saving:`Wird gespeichert...`,advancedAuth:`Erweiterte Authentifizierung`,advancedAuthEnabled:`Erweiterte Authentifizierung ist aktiviert`,advancedAuthEnabledDesc:`E-Mail-basierte Benutzerverwaltungsfunktionen sind aktiv. Neue Benutzer erhalten automatisch generierte Passwörter per E-Mail und können ihr Passwort über die Passwort vergessen Funktion zurücksetzen.`,advancedAuthDisabled:`Erweiterte Authentifizierung ist deaktiviert`,advancedAuthDisabledDesc:`Aktivieren Sie die erweiterte Authentifizierung, um E-Mail-basierte Funktionen für die Benutzerverwaltung zu aktivieren.`,enable:`Aktivieren`,disable:`Deaktivieren`,feature1:`Passwörter werden automatisch generiert und an neue Benutzer gesendet`,feature2:`Benutzer können sich mit Benutzername oder E-Mail anmelden`,feature3:`Passwort vergessen Funktion ist verfügbar`,feature4:`Administratoren können Benutzerpasswörter per E-Mail zurücksetzen`,errors:{requiredFields:`Bitte füllen Sie alle Pflichtfelder aus`,usernameRequired:`Benutzername ist erforderlich, wenn Authentifizierung aktiviert ist`,enterTestEmail:`Bitte geben Sie eine Test-E-Mail-Adresse ein`,smtpServerAndEmail:`Bitte füllen Sie SMTP-Server und Absender-E-Mail aus, bevor Sie testen`,usernamePasswordRequired:`Benutzername und Passwort sind erforderlich, wenn Authentifizierung aktiviert ist`,configureSmtpFirst:`Bitte konfigurieren und testen Sie zuerst die SMTP-Einstellungen`,enableAuthFirst:`Bitte aktivieren Sie zuerst die Authentifizierung, um E-Mail-basierte Funktionen nutzen zu können.`},success:{settingsSaved:`SMTP-Einstellungen erfolgreich gespeichert`},securityOptions:{starttls:`STARTTLS (Port 587)`,ssl:`SSL/TLS (Port 465)`,none:`Keine (Port 25)`},authOptions:{enabled:`Aktiviert`,disabled:`Deaktiviert`}},appearance:`Erscheinungsbild`,notifications:`Benachrichtigungen`,smartPlugs:`Smart Plugs`,spoolman:`Spoolman`,updates:`Aktualisierungen`,language:`Sprache`,languageDescription:`Wählen Sie Ihre bevorzugte Sprache`,theme:`Design`,themeLight:`Hell`,themeDark:`Dunkel`,themeSystem:`System`,defaultView:`Standardansicht`,defaultViewDescription:`Seite, die beim Öffnen der App angezeigt wird`,checkForUpdates:`Nach Updates suchen`,autoUpdate:`Automatische Updates`,currentVersion:`Aktuelle Version`,latestVersion:`Neueste Version`,upToDate:`Sie sind auf dem neuesten Stand`,updateAvailable:`Update verfügbar`,notificationLanguage:`Benachrichtigungssprache`,notificationLanguageDescription:`Sprache für Push-Benachrichtigungen`,bedCooledThreshold:`Bett-Abkühlung Schwellenwert`,bedCooledThresholdDescription:`Temperatur, unter der das Bett nach einem Druck als abgekühlt gilt`,userNotificationsEnabled:`Benutzerbenachrichtigungen`,userNotificationsEnabledDescription:`Aktiviert das Benutzerbenachrichtigungsmenü und E-Mail-Benachrichtigungen für Druckereignisse. Erfordert Erweiterte Authentifizierung.`,userNotificationsDisabledHint:`Erweiterte Authentifizierung aktivieren, um Benutzerbenachrichtigungen zu verwenden.`,notificationProviders:`Benachrichtigungsanbieter`,addProvider:`Anbieter hinzufügen`,editProvider:`Anbieter bearbeiten`,providerType:`Anbietertyp`,testNotification:`Testbenachrichtigung`,testSuccess:`Testbenachrichtigung erfolgreich gesendet`,testFailed:`Testbenachrichtigung konnte nicht gesendet werden`,quietHours:`Ruhezeiten`,quietHoursDescription:`Keine Störungen während dieser Zeiten`,quietHoursStart:`Beginn`,quietHoursEnd:`Ende`,events:{title:`Benachrichtigungsereignisse`,printStart:`Druck gestartet`,printComplete:`Druck abgeschlossen`,printFailed:`Druck fehlgeschlagen`,printStopped:`Druck gestoppt`,printProgress:`Fortschrittsmeldungen`,printProgressDescription:`Bei 25%, 50%, 75% benachrichtigen`,printerOffline:`Drucker offline`,printerError:`Druckerfehler`,filamentLow:`Filament niedrig`,maintenanceDue:`Wartung fällig`,maintenanceDueDescription:`Benachrichtigen, wenn Wartung erforderlich`},smartPlug:{title:`Smart Plugs`,add:`Smart Plug hinzufügen`,edit:`Smart Plug bearbeiten`,name:`Name`,ipAddress:`IP-Adresse`,linkedPrinter:`Verknüpfter Drucker`,autoOn:`Automatisch einschalten`,autoOnDescription:`Einschalten beim Druckstart`,autoOff:`Automatisch ausschalten`,autoOffDescription:`Ausschalten nach Druckende`,offDelay:`Ausschaltverzögerung`,offDelayMinutes:`Minuten nach Druck`,offDelayTemp:`Wenn Düse unter Temperatur`,currentState:`Aktueller Status`,turnOn:`Einschalten`,turnOff:`Ausschalten`},filamentTracking:`Filament-Verfolgung`,filamentTrackingDesc:`Wählen Sie, wie Sie Ihre Filamentspulen verfolgen möchten. Sie können das integrierte Inventar oder einen externen Spoolman-Server verwenden.`,autoAddUnknownRfid:`Unbekannte RFID-Spulen automatisch hinzufügen`,autoAddUnknownRfidDesc:`Erstellt automatisch einen Inventareintrag, wenn eine Spule mit unbekanntem RFID-Tag erkannt wird. Deaktivieren, wenn Sie neue Spulen vorab manuell anlegen, um Duplikate zu vermeiden.`,filamentChecks:`Filament-Prüfungen`,disableFilamentWarnings:`Filament-Warnungen deaktivieren`,disableFilamentWarningsDesc:`Keine Warnungen über unzureichendes Filament beim Drucken oder Einreihen anzeigen`,preferLowestFilament:`Niedrigsten Filamentrest bevorzugen`,preferLowestFilamentDesc:`Bei mehreren passenden Spulen die mit dem geringsten Restfilament verwenden`,preferLowestFilamentBackupNote:`Wirkt nur, wenn AMS Filament Backup am Drucker aktiviert ist — sonst kann der Drucker beim Aufbrauchen der ersten Spule nicht auf eine zweite Spule wechseln.`,trackingModeBuiltIn:`Integriertes Inventar`,trackingModeBuiltInDesc:`RFID-Erkennung und Verbrauchserfassung inklusive`,trackingModeSpoolmanDesc:`Externer Filament-Management-Server`,builtInFeatureRfid:`Erkennt automatisch Bambu Lab RFID-Spulen im AMS`,builtInFeatureUsage:`Erfasst den Filamentverbrauch pro Druck`,builtInFeatureCatalog:`Spulen, Farben und K-Faktor-Profile verwalten`,builtInFeatureThirdParty:`Drittanbieter-Spulen können Inventarspulen zugewiesen werden`,amsSyncButton:`Gewichte vom AMS synchronisieren`,amsSyncTitle:`Spulengewichte vom AMS synchronisieren`,amsSyncMessage:`Alle Inventar-Spulengewichte werden mit den aktuellen AMS-Restwerten der verbundenen Drucker überschrieben. Verwenden Sie dies zur Wiederherstellung beschädigter Gewichtsdaten. Drucker müssen online sein.`,amsSyncing:`Synchronisiere...`,amsSyncSuccess:`{{synced}} Spule(n) synchronisiert, {{skipped}} übersprungen`,amsSyncError:`Synchronisierung der Gewichte vom AMS fehlgeschlagen`,spoolmanAmsSyncButton:`Spoolman-Gewichte vom AMS synchronisieren`,spoolmanAmsSyncTitle:`Spoolman-Spulengewichte vom AMS synchronisieren`,spoolmanAmsSyncMessage:`Dabei werden alle Spoolman-Spulengewichte anhand der aktuellen AMS-Füllstandswerte der verbundenen Drucker aktualisiert. Die Drucker müssen online sein.`,spoolmanAmsSyncing:`Synchronisiere...`,spoolmanAmsSyncSuccess:`{{synced}} Spule(n) synchronisiert, {{skipped}} übersprungen`,spoolmanAmsSyncError:`Synchronisierung der Spoolman-Gewichte vom AMS fehlgeschlagen`,spoolmanAmsSyncErrorUnreachable:`Synchronisierung fehlgeschlagen (Spoolman nicht erreichbar)`,spoolmanAmsSyncErrorNotConfigured:`Synchronisierung fehlgeschlagen (Spoolman nicht konfiguriert)`,spoolmanNotConfigured:`Spoolman nicht konfiguriert`,spoolmanFilamentCatalogTitle:`Spoolman-Filamentkatalog`,spoolmanFilamentCatalogDesc:`Filamentnamen und Leergewichte aus deiner Spoolman-Instanz. Name und Spulengewicht sind hier editierbar; alle anderen Eigenschaften werden direkt in Spoolman verwaltet.`,spoolmanUrl:`Spoolman URL`,spoolmanUrlHint:`URL Ihres Spoolman-Servers (z.B. http://localhost:7912)`,spoolmanConnected:`Verbunden`,spoolmanDisconnected:`Nicht verbunden`,status:`Status`,connect:`Verbinden`,disconnect:`Trennen`,howSyncWorks:`So funktioniert die Synchronisierung`,syncInfoRfidOnly:`Nur offizielle Bambu Lab Spulen mit RFID werden synchronisiert`,syncInfoAutoCreate:`Neue Spulen werden bei der ersten Synchronisierung automatisch in Spoolman erstellt`,syncInfoThirdPartySkipped:`Nicht-Bambu-Lab-Spulen (Drittanbieter, nachgefüllt) werden übersprungen`,linkingExistingSpools:`Vorhandene Spulen verknüpfen`,linkingExistingSpoolsDesc:`Um vorhandene Spoolman-Spulen mit Ihrem AMS zu verknüpfen, fahren Sie über einen AMS-Slot und klicken Sie auf "Mit Spoolman verknüpfen".`,syncMode:`Synchronisierungsmodus`,syncModeAuto:`Automatisch`,syncModeManual:`Nur manuell`,syncModeAutoDesc:`AMS-Daten werden automatisch synchronisiert, wenn Änderungen erkannt werden`,syncModeManualDesc:`Nur bei manueller Auslösung synchronisieren`,syncAmsData:`AMS-Daten synchronisieren`,syncAmsDataDesc:`AMS-Daten des Druckers manuell mit Spoolman synchronisieren`,allPrinters:`Alle Drucker`,noDefaultPrinter:`Kein Standard (jedes Mal fragen)`,sidebarOrder:`Seitenleisten-Reihenfolge`,saveThumbnails:`Vorschaubilder speichern`,captureFinishPhoto:`Abschlussfoto aufnehmen`,noPrintersConfigured:`Keine Drucker konfiguriert`,archiveMode:{always:`Immer Archiveintrag erstellen`,never:`Nie Archiveintrag erstellen`,ask:`Jedes Mal fragen`},checkForUpdatesLabel:`Nach Updates suchen`,checkPrinterFirmware:`Drucker-Firmware prüfen`,includeBetaUpdates:`Beta-Versionen einschließen`,includeBetaUpdatesDesc:`Über Beta- und Vorabversionen bei der Updateprüfung benachrichtigen`,localLogin:{disable:`Lokale Benutzername-/Passwort-Anmeldung deaktivieren`,disableHint:`Wenn aktiviert, ist nur die Anmeldung über SSO möglich. LDAP ist davon nicht betroffen. Setzen Sie BAMBUDDY_LOCAL_LOGIN=true auf dem Server, um einen Wiederherstellungsweg offen zu halten.`},enableRetry:`Wiederholung aktivieren`,homeAssistantDescription:`Smart Plugs über Home Assistant steuern`,environmentManagedLabel:`(Umgebungsvariable)`,autoEnabledViaEnv:`Automatisch über Umgebungsvariablen aktiviert`,urlFromEnvReadOnly:`Wert wird über HA_URL Umgebungsvariable gesetzt (schreibgeschützt)`,tokenFromEnvReadOnly:`Wert wird über HA_TOKEN Umgebungsvariable gesetzt (schreibgeschützt)`,mqttConnectedTo:`Verbunden mit`,prometheusDescription:`Druckerdaten im Prometheus-Format bereitstellen`,noSmartPlugsTitle:`Keine Smart Plugs konfiguriert`,noSmartPlugsDescription:`Fügen Sie einen Tasmota-basierten Smart Plug hinzu, um den Energieverbrauch zu verfolgen und die Stromsteuerung zu automatisieren.`,noProvidersTitle:`Keine Anbieter konfiguriert`,noProvidersDescription:`Fügen Sie einen Anbieter hinzu, um Benachrichtigungen zu erhalten.`,noTemplatesAvailable:`Keine Vorlagen verfügbar. Starten Sie das Backend neu, um Standardvorlagen zu laden.`,apiPermissionView:`Druckerstatus und Warteschlange anzeigen`,apiPermissionEdit:`Elemente zur Druckwarteschlange hinzufügen und entfernen`,apiKeysEmptyTitle:`Keine API-Schlüssel`,apiKeysEmptyDescription:`Erstellen Sie einen API-Schlüssel zur Integration mit externen Diensten.`,noUsersFound:`Keine Benutzer gefunden`,noGroupsFound:`Keine Gruppen gefunden`,noGroupsAvailable:`Keine Gruppen verfügbar`,passwordsDoNotMatch:`Passwörter stimmen nicht überein`,systemGroupWarning:`System-Gruppennamen können nicht geändert werden`,authDisabledTitle:`Authentifizierung ist deaktiviert`,authDisabledFeature1:`Anmeldung zum Zugriff auf das System erforderlich`,authDisabledFeature2:`Mehrere Benutzer mit gruppenbasierten Berechtigungen erstellen`,authDisabledFeature3:`Zugriff mit über 50 granularen Berechtigungen steuern`,userHasCreated:`Dieser Benutzer hat erstellt:`,userItemsQuestion:`Was möchten Sie mit diesen Elementen tun?`,deleteUserConfirm:`Möchten Sie diesen Benutzer wirklich löschen?`,actionCannotBeUndone:`Diese Aktion kann nicht rückgängig gemacht werden.`,addFirstSmartPlug:`Ersten Smart Plug hinzufügen`,providers:`Anbieter`,log:`Protokoll`,testAll:`Alle testen`,testResults:`Testergebnisse`,testPassedCount:`{{count}} bestanden`,testFailedCount:`{{count}} fehlgeschlagen`,messageTemplates:`Nachrichtenvorlagen`,messageTemplatesDescription:`Passen Sie Benachrichtigungen für jedes Ereignis an.`,apiKeys:`API-Schlüssel`,apiKeysDescription:`Erstellen Sie API-Schlüssel für externe Integrationen und Webhooks.`,createKey:`Schlüssel erstellen`,apiKeyCreated:`API-Schlüssel erfolgreich erstellt`,apiKeyCopyWarning:`Kopieren Sie diesen Schlüssel jetzt - er wird nicht mehr angezeigt!`,useInApiBrowser:`Im API-Browser verwenden`,apiKeyQrButton:`QR-Code`,apiKeyQrTitle:`Zum Einrichten scannen`,apiKeyQrCaption:`Mit deiner mobilen App scannen, um diesen Server und API-Schlüssel hinzuzufügen.`,apiKeyQrWarning:`Enthält deinen geheimen API-Schlüssel – nicht teilen oder dort abfotografieren, wo andere ihn sehen können.`,createNewApiKey:`Neuen API-Schlüssel erstellen`,keyName:`Schlüsselname`,keyNamePlaceholder:`z.B. Home Assistant, OctoPrint`,readStatus:`Status lesen`,readStatusDescription:`Druckerstatus und Warteschlange anzeigen`,manageQueue:`Warteschlange verwalten`,manageQueueDescription:`Elemente zur Druckwarteschlange hinzufügen und entfernen`,controlPrinter:`Drucker steuern`,controlPrinterDescription:`Drucke pausieren, fortsetzen und stoppen`,manageLibrary:`Bibliothek verwalten`,manageLibraryDescription:`Bibliotheksdateien hochladen, umbenennen und löschen; Modelle aus MakerWorld importieren`,manageInventory:`Bestand verwalten`,manageInventoryDescription:`Spulen und Bestandseinträge anlegen, ändern und löschen. Erforderlich für SpoolBuddy-Kioske (NFC-Scan, Waagenmessungen, Kiosk-Systembefehle).`,manageMaintenance:`Wartung verwalten`,manageMaintenanceDescription:`Abgeschlossene Wartungen protokollieren, Zähler zurücksetzen, Intervalle bearbeiten und den Wartungstyp-Katalog verwalten. Geeignet für Home-Assistant-Automatisierungen, die „Düse gereinigt" protokollieren, ohne umfassendere Druckersteuerung zu gewähren.`,manageArchives:`Archive verwalten`,manageArchivesDescription:`Druckarchive bearbeiten und löschen, einschließlich des Entfernens alter Drucke. Umfasst nicht das Bereinigen ihres Statistikbeitrags. Geeignet für Automatisierungen, die den Druckverlauf ausdünnen.`,manageProjects:`Projekte verwalten`,manageProjectsDescription:`Projekte erstellen, aktualisieren und löschen sowie Archive zu ihnen hinzufügen. Geeignet für Automatisierungen, die Drucke in Projekten organisieren.`,maintenanceBadge:`Wartung`,archivesBadge:`Archive`,projectsBadge:`Projekte`,libraryBadge:`Bibliothek`,inventoryBadge:`Bestand`,cloudAccess:`Cloud-Zugriff erlauben`,cloudAccessDescription:`Liest Bambu-Cloud-Presets und -Filamente in Ihrem Namen. Erfordert eine Anmeldung in Bambu Cloud.`,cloudBadge:`Cloud`,updateEnergyCost:`Strompreis aktualisieren`,updateEnergyCostDescription:`Erlaubt diesem Schlüssel, einen neuen Strompreis pro kWh an /settings/electricity-price zu senden. Nützlich für Home-Assistant-Automatisierungen mit dynamischen Tarifen (Tibber, Octopus usw.). Dies ist das einzige Einstellungsfeld, das per API-Schlüssel schreibbar ist.`,energyCostBadge:`Energie`,legacyKey:`Alt`,legacyKeyTooltip:`Wurde vor der nutzerbezogenen Eigentümerschaft erstellt; neu erstellen, um Cloud-Zugriff zu nutzen`,unnamedKey:`Unbenannter Schlüssel`,lastUsed:`Zuletzt verwendet`,read:`Lesen`,control:`Steuern`,createFirstKey:`Ersten Schlüssel erstellen`,webhookEndpoints:`Webhook-Endpunkte`,webhookApiKeyHint:`Verwenden Sie Ihren API-Schlüssel im X-API-Key-Header.`,webhook:{getAllStatus:`Alle Druckerstatus abrufen`,getSpecificStatus:`Spezifischen Druckerstatus abrufen`,addToQueue:`Zur Druckwarteschlange hinzufügen`,pausePrint:`Druck pausieren`,resumePrint:`Druck fortsetzen`,stopPrint:`Druck stoppen`},apiBrowser:`API-Browser`,apiBrowserDescription:`Erkunden und testen Sie alle verfügbaren API-Endpunkte.`,apiKeyForTesting:`API-Schlüssel zum Testen`,apiKeyPlaceholder:`Fügen Sie hier Ihren API-Schlüssel ein, um authentifizierte Endpunkte zu testen...`,apiKeyHint:`Dieser Schlüssel wird als X-API-Key-Header mit Anfragen gesendet.`,deleteApiKeyTitle:`API-Schlüssel löschen`,deleteApiKeyMessage:`Möchten Sie diesen API-Schlüssel wirklich löschen? Alle Integrationen, die diesen Schlüssel verwenden, funktionieren nicht mehr.`,deleteKey:`Schlüssel löschen`,amsDisplayThresholds:`AMS-Anzeigeschwellenwerte`,amsThresholdsDescription:`Konfigurieren Sie Farbschwellenwerte für AMS-Feuchtigkeits- und Temperaturanzeigen.`,humidity:`Luftfeuchtigkeit`,goodGreen:`Gut (grün)`,fairOrange:`Mittel (orange)`,aboveFairBad:`Über dem mittleren Schwellenwert wird rot angezeigt (schlecht)`,fairAlsoDryingThreshold:`Dieser Schwellenwert wird auch für die automatische Trocknung verwendet`,temperature:`Temperatur`,goodBlue:`Gut (blau)`,aboveFairHot:`Über dem mittleren Schwellenwert wird rot angezeigt (heiß)`,historyRetention:`Verlaufsaufbewahrung`,keepSensorHistory:`Sensorverlauf behalten für`,historyRetentionDescription:`Ältere Feuchtigkeits- und Temperaturdaten werden automatisch gelöscht`,defaultPrintOptions:`Standard-Druckoptionen`,defaultPrintOptionsDescription:`Standardwerte für Druckoptionen bei neuen Drucken festlegen. Diese können im Druckdialog pro Druck überschrieben werden.`,defaultBedLevelling:`Bett-Nivellierung`,defaultBedLevellingDesc:`Bett vor dem Druck automatisch nivellieren`,defaultFlowCali:`Fluss-Kalibrierung`,defaultFlowCaliDesc:`Extrusionsfluss kalibrieren`,defaultVibrationCali:`Vibrationskalibrierung`,defaultVibrationCaliDesc:`Ringing-Artefakte reduzieren`,defaultLayerInspect:`Erste-Schicht-Inspektion`,defaultLayerInspectDesc:`KI-Inspektion der ersten Schicht`,defaultTimelapse:`Zeitraffer`,defaultTimelapseDesc:`Zeitraffervideo aufnehmen`,defaultNozzleOffsetCali:`Düsenversatz-Kalibrierung`,defaultNozzleOffsetCaliDesc:`Düsenversatz zwischen Extrudern kalibrieren`,tempFanPresetsTitle:`Temperatur- und Lüfter-Vorgaben`,tempFanPresetsDescription:`Passen Sie die Schnellwahlwerte in den Temperatur- und Lüfter-Popovers der Druckerkarte an. Die Aus-Schaltfläche wird immer angezeigt.`,tempFanPresetsNozzle:`Düsentemperatur`,tempFanPresetsBed:`Betttemperatur`,tempFanPresetsChamber:`Kammertemperatur`,tempFanPresetsFan:`Lüftergeschwindigkeit`,tempFanPresetsReset:`Auf Standardwerte zurücksetzen`,staggeredStart:`Versetzter Start`,staggeredStartDescription:`Standard-Gruppengröße und -Intervall beim Staffeln von Mehrdrucker-Batchstarts. Pro Batch im Druck-Dialog überschreibbar.`,preheatTitle:`Vorheizen & Heat Soak`,preheatDescription:`Heizt das Bett (und die Kammer, sofern unterstützt) auf und hält die Temperatur, bevor jeder Druck aus der Warteschlange startet. Hilfreich für technische Filamente (PA, ABS) auf Druckern ohne aktive Kammerheizung — das Bett wärmt die Kammer per Abstrahlung, während der Soak-Timer läuft. Die Bett-Zieltemperatur wird aus der Druckdatei gelesen; das Kammerverhalten hängt vom Druckermodell ab.`,preheatEnabled:`Vorheizen & Soak aktivieren`,preheatEnabledDesc:`Wenn aus, starten Drucke aus der Warteschlange sofort. Jeder Warteschlangeneintrag kann das pro Druck überschreiben.`,preheatFilamentTargetsLabel:`Kammer-Ziel je Filament (°C)`,preheatFilamentTargetsHint:`Bambuddy wählt das höchste Ziel über die geladenen AMS-Slots; reine PLA-Drucke ergeben 0 und überspringen die Kammerphase automatisch.`,preheatFilamentTargetsReset:`Auf Standardwerte zurücksetzen`,preheatFilamentTargetsDefaultRow:`Sonstige / nicht zugeordnet`,preheatMaxWait:`Max. Wartezeit (Sekunden)`,preheatMaxWaitHelp:`Obergrenze für die Aufwärmphase, bevor in den Soak gewechselt wird.`,preheatSoak:`Soak (Sekunden)`,preheatSoakHelp:`Haltezeit nach Erreichen des Ziels oder nach Ablauf der Max-Wartezeit.`,preheatHardwareTitle:`Verhalten je Drucker:`,preheatHardwareDetail:`H2C/H2D/H2D Pro/H2S/X2D/X1E heizen die Kammer aktiv per M141. X1C/P2S lesen die Kammertemperatur, heizen sie aber nur per Bett-Abstrahlung. P1S/P1P/A1/A1 Mini haben keinen Kammersensor — nur der Soak-Timer greift.`,preheatPerItemDesc:`Bett und Kammer vor diesem Druck aufheizen. Standardmäßig wird der globale Umschalter aus Einstellungen → Workflow verwendet.`,preheatOverride_inherit:`Übernehmen`,preheatOverride_on:`An`,preheatOverride_off:`Aus`,preheatTargetOverride:`Kammer-Ziel überschreiben (°C, leer = Filament-Standard)`,plateClear:`Druckplatte-Bestätigung`,requirePlateClear:`Druckplatte-Bestätigung erforderlich`,requirePlateClearDescription:`Wenn aktiviert, wartet der Scheduler auf eine Druckplatten-Bestätigung pro Drucker, bevor geplante Drucke auf Druckern mit abgeschlossenen Aufträgen gestartet werden. Wenn dies deaktiviert ist, werden auch das Druckplatten-Status-Badge und die Schaltfläche "Druckplatte als freigegeben markieren" auf den Druckerkarten ausgeblendet.`,gcodeInjection:`G-Code-Injektion`,gcodeInjectionDescription:`Konfigurieren Sie benutzerdefinierten G-code, der am Anfang und/oder Ende von Drucken für Auto-Print-Systeme wie Farmloop, SwapMod, AutoClear und Printflow 3D eingefügt wird. Snippets werden pro Druckermodell konfiguriert und angewendet, wenn "G-code einfügen" bei einem Warteschlangen-Element aktiviert ist.`,gcodeInjectionNoPrinters:`Keine Drucker gefunden. Fügen Sie Drucker hinzu, um G-code-Snippets zu konfigurieren.`,gcodeStartLabel:`Start-G-Code`,gcodeEndLabel:`End-G-Code`,gcodeStartPlaceholder:`G-code, der vor dem Druckstart eingefügt wird...`,gcodeEndPlaceholder:`G-code, der nach dem Druckende angefügt wird...`,staggerGroupSize:`Gruppengröße`,staggerGroupSizeHelp:`Anzahl gleichzeitig zu startender Drucker pro Gruppe`,staggerInterval:`Intervall (Minuten)`,staggerIntervalHelp:`Verzögerung zwischen Gruppenstart`,queueDrying:`Automatische Trocknung`,queueDryingDescription:`AMS-Filament automatisch trocknen, wenn der Drucker zwischen Warteschlangen-Drucken im Leerlauf ist. Verwendet den Feuchtigkeitsschwellenwert oben.`,queueDryingEnabled:`Automatische Trocknung aktivieren`,queueDryingEnabledDescription:`AMS-Trocknung automatisch starten, wenn der Drucker im Leerlauf ist und die Feuchtigkeit über dem Schwellenwert liegt`,queueDryingBlock:`Auf Trocknung warten`,queueDryingBlockDescription:`Druckwarteschlange blockieren, bis die Trocknung abgeschlossen ist. Wenn aus, haben Drucke Vorrang.`,ambientDryingEnabled:`Umgebungstrocknung`,ambientDryingEnabledDescription:`Filament auf inaktiven Druckern automatisch trocknen, wenn die Luftfeuchtigkeit den Schwellenwert überschreitet — auch ohne Warteschlange.`,printDryingEnabled:`Trocknen während des Drucks`,printDryingEnabledDescription:`Automatische Trocknung auch während eines laufenden Drucks auf unterstützter Hardware (H2D, H2C, H2S, P2S, H2D Pro, X2D, X1C, A2L mit aktueller Firmware). Die Trocknungstemperatur wird zum Schutz der Spulen automatisch um 5°C unter dem Leerlaufwert begrenzt.`,dryingPresets:`Trocknungsvoreinstellungen`,dryingPresetsDescription:`Temperatur und Dauer pro Filamenttyp. AMS 2 Pro verwendet niedrigere Temperaturen, AMS-HT unterstützt höhere.`,dryingFilament:`Filament`,humidityThresholds:`Feuchtigkeitsschwellen`,humidityThresholdsDescription:`Feuchtigkeitsauslöser pro Filamenttyp für Auto-Trocknung und Alarme. Bei gemischter Bestückung gilt der niedrigste Wert.`,humidityThresholdCol:`Schwellenwert`,humidityThresholdDefault:`Standard (unbekannte Typen)`,printModal:`Druckdialog`,expandCustomMapping:`Benutzerdefinierte Zuordnung standardmäßig erweitern`,expandCustomMappingDescription:`Bei Druck auf mehrere Drucker die AMS-Zuordnung pro Drucker erweitert anzeigen`,authentication:`Authentifizierung`,authEnabledDescription:`Ihre Instanz ist mit Benutzerauthentifizierung gesichert`,authDisabledDescription:`Aktivieren Sie die Anmeldepflicht und verwalten Sie den Benutzerzugriff`,authDisabledMessage:`Aktivieren Sie die Authentifizierung, um Benutzerkonten zu erstellen, Berechtigungen zu verwalten und Ihre Bambuddy-Instanz zu sichern.`,enableAuthentication:`Authentifizierung aktivieren`,currentUser:`Aktueller Benutzer`,changePassword:`Passwort ändern`,admin:`Admin`,users:`Benutzer`,addUser:`Benutzer hinzufügen`,groups:`Gruppen`,addGroup:`Gruppe hinzufügen`,system:`System`,noDescription:`Keine Beschreibung`,userCount:`{{count}} Benutzer`,permissionCount:`{{count}} Berechtigungen`,createUser:`Benutzer erstellen`,username:`Benutzername`,enterUsername:`Benutzername eingeben`,password:`Passwort`,enterPassword:`Passwort eingeben`,passwordRequirements:`Mindestens 8 Zeichen, davon ein Großbuchstabe, ein Kleinbuchstabe, eine Ziffer und ein Sonderzeichen.`,confirmPassword:`Passwort bestätigen`,confirmPasswordPlaceholder:`Passwort bestätigen`,viewReleaseOnGitHub:`Release auf GitHub anzeigen`,turnAllPlugsOn:`Alle Stecker einschalten`,turnAllPlugsOff:`Alle Stecker ausschalten`,clearNotificationLogs:`Benachrichtigungsprotokolle löschen`,clearLogsMessage:`Dadurch werden alle Benachrichtigungsprotokolle, die älter als 30 Tage sind, dauerhaft gelöscht. Diese Aktion kann nicht rückgängig gemacht werden.`,clearLogs:`Protokolle löschen`,resetUiPreferences:`UI-Einstellungen zurücksetzen`,resetUiPreferencesMessage:`Dadurch werden alle UI-Einstellungen auf Standardwerte zurückgesetzt: Seitenleisten-Reihenfolge, Theme, Dashboard-Layout, Ansichtsmodi und Sortiereinstellungen. Ihre Drucker, Archive und Servereinstellungen werden NICHT beeinträchtigt. Die Seite wird nach dem Löschen neu geladen.`,resetPreferences:`Einstellungen zurücksetzen`,deleteGroupTitle:`Gruppe löschen`,deleteGroupMessage:`Möchten Sie diese Gruppe wirklich löschen? Benutzer in dieser Gruppe verlieren diese Berechtigungen.`,deleteGroup:`Gruppe löschen`,disableAuthenticationTitle:`Authentifizierung deaktivieren`,disableAuthenticationMessage:`Möchten Sie die Authentifizierung wirklich deaktivieren? Dadurch wird Ihre Bambuddy-Instanz ohne Anmeldung zugänglich. Alle Benutzer bleiben in der Datenbank, aber die Authentifizierung wird deaktiviert.`,disableAuthentication:`Authentifizierung deaktivieren`,configureBambuddy:`Bambuddy konfigurieren`,systemDefault:`Systemstandard`,archiveSettings:`Archiv-Einstellungen`,newWindow:`Neues Fenster`,embeddedOverlay:`Eingebettetes Overlay`,preferredSlicer:`Bevorzugter Slicer`,preferredSlicerDescription:`Slicer für das In-App-Slicen über das API-Sidecar`,openInSlicerLabel:`Im Slicer öffnen`,openInSlicerInherit:`Wie API-Slicer`,openInSlicerDescription:`Desktop-Slicer, der vom „Im Slicer öffnen"-Button verwendet wird. Auf „Wie API-Slicer" belassen, um zu erben, oder einen anderen Slicer für die lokale Nutzung wählen.`,orcaslicerKnownIssuesWarning:`OrcaSlicer 2.3.2 / 2.4.0-dev haben bekannte CLI-Bugs, die das Slicen vieler von BambuStudio erstellter 3MF-Dateien blockieren — siehe Upstream-Issues #12426 (Segfault bei bemalten Multi-Extruder-Dateien) und #13386 (zu strikte Parameter-Range-Validierung). Bis die Upstream-Fixes verfügbar sind, wird Bambu Studio empfohlen.`,useSlicerApi:`Slicer-API verwenden`,useSlicerApiDescription:`Wenn aktiv, öffnen "Slice"-Aktionen das in-App Slicer-Modal und rufen den Slicer-API-Sidecar. Aus (Standard): Übergabe an den Desktop-Slicer per URI-Schema.`,slicerCard:`Slicer`,orcaslicerApiUrl:`OrcaSlicer Sidecar-URL`,bambuStudioApiUrl:`Bambu Studio Sidecar-URL`,slicerApiUrlDescription:`URL des Slicer-API-Sidecar-Containers. Leer lassen, um die SLICER_API_URL- bzw. BAMBU_STUDIO_API_URL-Umgebungsvariablen zu nutzen.`,slicerBundlesRemoved:{title:`Slicer-Bundles (entfernt)`,description:`Der Import von Drucker-Voreinstellungs-Bundles (.bbscfg) wurde entfernt. Der Bundle-Export von BambuStudio enthält nur benutzerdefinierte Voreinstellungen, daher lieferte der Import nie die Standard-Prozesse / -Filamente, und das Slicen fiel auf eingebettete Einstellungen zurück.`,alternatives:`Verwende Einzel-Voreinstellungs-Import für individuelle Anpassungen oder synchronisiere via Bambu Cloud / Orca Cloud. Standard-Voreinstellungen kommen automatisch vom Slicer-Sidecar.`,lookupOrder:`Reihenfolge der Voreinstellungssuche beim Slicen: 1) Importiert (lokal), 2) Orca Cloud, 3) Bambu Cloud, 4) Standard (Sidecar-Fallback).`},externalCameras:`Externe Kameras`,costTracking:`Kostenverfolgung`,printsOnly:`Nur Drucke`,totalConsumption:`Gesamtverbrauch`,dataManagement:`Datenverwaltung`,storageUsage:`Speichernutzung`,storageUsageDescription:`Aufschlüsselung der Datennutzung nach Kategorie`,storageUsageTotal:`Gesamt`,storageUsageErrors:`Fehler`,storageUsageOtherBreakdown:`Sonstiges (enthält statische Assets, Skripte und Konfigurationsdateien)`,storageUsageSystem:`System`,storageUsageData:`Daten`,storageUsageUnavailable:`Speichernutzungsinformationen nicht verfügbar`,clearNotificationLogsDescription:`Benachrichtigungsprotokolle älter als 30 Tage löschen`,resetUiPreferencesDescription:`Seitenleisten-Reihenfolge, Theme, Ansichtsmodi und Layout-Einstellungen zurücksetzen. Drucker, Archive und Einstellungen werden nicht beeinflusst.`,enableHomeAssistant:`Home Assistant aktivieren`,enableMqtt:`MQTT aktivieren`,useTls:`TLS verwenden`,enableMetricsEndpoint:`Metrik-Endpunkt aktivieren`,availableMetrics:`Verfügbare Metriken`,editUser:`Benutzer bearbeiten`,deleteUserTitle:`Benutzer löschen`,groupName:`Gruppenname`,leaveEmptyForAnonymous:`Leer lassen für anonym`,leaveEmptyForNoAuth:`Leer lassen für keine Authentifizierung`,enterNewPassword:`Neues Passwort eingeben`,confirmNewPassword:`Neues Passwort bestätigen`,enterGroupName:`Gruppenname eingeben`,enterDescriptionOptional:`Beschreibung eingeben (optional)`,enterCurrentPassword:`Aktuelles Passwort eingeben`,enterNewPasswordMin6:`Neues Passwort eingeben (min. 6 Zeichen)`,toast:{keyCopied:`Schlüssel in Zwischenablage kopiert`,copyFailed:`Schlüssel konnte nicht kopiert werden`,keyAddedToBrowser:`Schlüssel zum API-Browser hinzugefügt`,clearLogsFailed:`Protokolle konnten nicht gelöscht werden`,uiPreferencesReset:`UI-Einstellungen zurückgesetzt. Wird neu geladen...`,authDisabled:`Authentifizierung erfolgreich deaktiviert`,authDisableFailed:`Authentifizierung konnte nicht deaktiviert werden`,apiKeyCreated:`API-Schlüssel erstellt`,apiKeyDeleted:`API-Schlüssel gelöscht`,userCreated:`Benutzer erfolgreich erstellt`,userUpdated:`Benutzer erfolgreich aktualisiert`,userDeleted:`Benutzer erfolgreich gelöscht`,groupCreated:`Gruppe erfolgreich erstellt`,groupUpdated:`Gruppe erfolgreich aktualisiert`,groupDeleted:`Gruppe erfolgreich gelöscht`,fillRequiredFields:`Bitte füllen Sie alle erforderlichen Felder aus`,passwordsDoNotMatch:`Passwörter stimmen nicht überein`,passwordTooShort:`Passwort muss mindestens 8 Zeichen lang sein`,passwordNeedsUppercase:`Passwort muss mindestens einen Großbuchstaben enthalten`,passwordNeedsLowercase:`Passwort muss mindestens einen Kleinbuchstaben enthalten`,passwordNeedsDigit:`Passwort muss mindestens eine Ziffer enthalten`,passwordNeedsSpecial:`Passwort muss mindestens ein Sonderzeichen enthalten`,enterGroupName:`Bitte geben Sie einen Gruppennamen ein`,settingsSaved:`Einstellungen gespeichert`,noPermissionUpdate:`Sie haben keine Berechtigung, Einstellungen zu ändern`,cameraSettingsSaved:`Kamera-Einstellungen gespeichert`,enterCameraUrl:`Bitte geben Sie eine Kamera-URL ein`,passwordChanged:`Passwort erfolgreich geändert`,connectionFailed:`Verbindung fehlgeschlagen`,testFailed:`Test fehlgeschlagen`,cameraConnected:`Kamera verbunden{{resolution}}`},testConnection:`Verbindung testen`,catalog:{spoolCatalog:`Spulenkatalog`,spoolCatalogDescription:`Leerspulengewichte nach Marke/Typ. Wird für die automatische Gewichtssuche beim Hinzufügen von Spulen verwendet.`,searchCatalog:`Katalog durchsuchen...`,addNewEntry:`Neuen Eintrag hinzufügen`,namePlaceholder:`Name (z.B. Bambu Lab - Plastik)`,weight:`Gewicht`,type:`Typ`,default:`Standard`,custom:`Benutzerdefiniert`,noMatch:`Keine Einträge entsprechen Ihrer Suche`,empty:`Keine Einträge im Katalog`,deleteEntry:`Eintrag löschen`,deleteConfirm:`Möchten Sie "{{name}}" wirklich löschen?`,resetCatalog:`Katalog zurücksetzen`,resetConfirm:`Katalog auf Standardwerte zurücksetzen? Alle benutzerdefinierten Einträge werden entfernt.`,loadFailed:`Spulenkatalog konnte nicht geladen werden`,nameWeightRequired:`Name und Gewicht sind erforderlich`,entryAdded:`Eintrag hinzugefügt`,addFailed:`Eintrag konnte nicht hinzugefügt werden`,entryUpdated:`Eintrag aktualisiert`,updateFailed:`Eintrag konnte nicht aktualisiert werden`,entryDeleted:`Eintrag gelöscht`,deleteFailed:`Eintrag konnte nicht gelöscht werden`,resetSuccess:`Katalog auf Standardwerte zurückgesetzt`,resetFailed:`Katalog konnte nicht zurückgesetzt werden`,exported:`{{count}} Einträge exportiert`,imported:`{{added}} Einträge importiert ({{skipped}} übersprungen)`,importFailed:`Import fehlgeschlagen: ungültiges JSON-Format`,exportTooltip:`Katalog als JSON exportieren`,importTooltip:`Katalog aus JSON importieren`,resetTooltip:`Auf Standardwerte zurücksetzen`,selectedCount:`{{count}} ausgewählt`,deleteSelected:`Ausgewählte löschen`,bulkDeleteConfirm:`Möchten Sie {{count}} Einträge wirklich löschen?`,bulkDeleted:`{{count}} Einträge gelöscht`,bulkDeleteFailed:`Fehler beim Löschen der Einträge`,material:`Material`,spoolWeight:`Spulengewicht`,color:`Farbe`,updateSpoolWeight:`Spulengewicht aktualisieren`,filamentUpdated:`Filament aktualisiert`,filamentUpdateFailed:`Filament konnte nicht aktualisiert werden`,filamentUpdateInvalid:`Ungültige Filamentdaten`,keepExistingSpoolWeight:`Altes Gewicht für bestehende Spulen behalten`,keepExistingSpoolWeightDesc:`Bereits erstellte Spulen dieses Filamenttyps behalten das alte Leergewicht. Neue Spulen nutzen den neuen Wert.`,applyToAllSpools:`Auf alle Spulen anwenden`,applyToAllSpoolsDesc:`Alle Gewichtsberechnungen für diesen Filamenttyp nutzen sofort das neue Leergewicht.`},colorCatalog:{title:`Farbkatalog`,description:`Filamentfarben nach Hersteller/Material. Wird für die automatische Farbsuche beim Hinzufügen von Spulen verwendet.`,searchColors:`Farben durchsuchen...`,allManufacturers:`Alle Hersteller`,addNewColor:`Neue Farbe hinzufügen`,manufacturer:`Hersteller`,colorName:`Farbname`,hex:`Hex`,materialOptional:`Material (optional)`,showing:`{{filtered}} von {{total}} Farben angezeigt`,noMatch:`Keine Farben entsprechen Ihrer Suche`,empty:`Keine Farben im Katalog`,deleteColor:`Farbe löschen`,deleteConfirm:`Möchten Sie "{{name}}" wirklich löschen?`,resetCatalog:`Farbkatalog zurücksetzen`,resetConfirm:`Katalog auf Standardwerte zurücksetzen? Alle benutzerdefinierten Farben werden entfernt.`,sync:`Synchron.`,starting:`Starten...`,syncTooltip:`Von FilamentColors.xyz synchronisieren (2000+ Farben)`,loadFailed:`Farbkatalog konnte nicht geladen werden`,fieldsRequired:`Hersteller, Farbname und Hex-Farbe sind erforderlich`,colorAdded:`Farbe hinzugefügt`,addFailed:`Farbe konnte nicht hinzugefügt werden`,colorUpdated:`Farbe aktualisiert`,updateFailed:`Farbe konnte nicht aktualisiert werden`,colorDeleted:`Farbe gelöscht`,deleteFailed:`Farbe konnte nicht gelöscht werden`,resetSuccess:`Farbkatalog auf Standardwerte zurückgesetzt`,resetFailed:`Katalog konnte nicht zurückgesetzt werden`,syncUpToDate:`Bereits aktuell ({{count}} Farben geprüft)`,syncComplete:`{{added}} neue Farben hinzugefügt ({{skipped}} bereits vorhanden)`,syncError:`Sync-Fehler`,syncFailed:`Synchronisierung von FilamentColors.xyz fehlgeschlagen`,exported:`{{count}} Farben exportiert`,imported:`{{added}} Farben importiert ({{skipped}} übersprungen)`,importFailed:`Import fehlgeschlagen: ungültiges JSON-Format`,selectedCount:`{{count}} ausgewählt`,deleteSelected:`Ausgewählte löschen`,bulkDeleteConfirm:`Möchten Sie {{count}} Farben wirklich löschen?`,bulkDeleted:`{{count}} Farben gelöscht`,bulkDeleteFailed:`Fehler beim Löschen der Farben`},dateFormat:`Datumsformat`,dateFormatUs:`US (MM/TT/JJJJ)`,dateFormatEu:`EU (TT/MM/JJJJ)`,dateFormatIso:`ISO (JJJJ-MM-TT)`,timeFormat:`Zeitformat`,timeFormat12:`12-Stunden (3:30 PM)`,timeFormat24:`24-Stunden (15:30)`,defaultPrinter:`Standarddrucker`,defaultPrinterDescription:`Diesen Drucker für Uploads, Nachdrucke und andere Vorgänge vorauswählen.`,slicerBambuStudio:`Bambu Studio`,slicerOrcaSlicer:`OrcaSlicer`,sidebarOrderDescription:`Nutze das Seitenleisten-Layout, um Elemente neu anzuordnen, Sichtbarkeit zurückzusetzen und benutzerdefinierte Links zu verwalten.`,setDefault:`Standard setzen`,sidebarOrderSetDefaultHint:`Standard setzen übernimmt die aktuelle Menüreihenfolge für Benutzer, die ihre noch nicht angepasst haben.`,sidebarDefaultSet:`Standard-Menüreihenfolge wurde festgelegt.`,sidebarDefaultCleared:`Standard-Menüreihenfolge gelöscht.`,sidebarDefaultFailed:`Festlegen der Standard-Menüreihenfolge fehlgeschlagen.`,reset:`Zurücksetzen`,darkMode:`Dunkelmodus`,lightMode:`Hellmodus`,active:`(aktiv)`,background:`Hintergrund`,accent:`Akzent`,style:`Stil`,bgNeutral:`Neutral`,bgWarm:`Warm`,bgCool:`Kühl`,bgOled:`OLED Schwarz`,bgSlate:`Schieferblau`,bgForest:`Waldgrün`,accentGreen:`Grün`,accentTeal:`Türkis`,accentBlue:`Blau`,accentOrange:`Orange`,accentPurple:`Lila`,accentRed:`Rot`,styleClassic:`Klassisch`,styleGlow:`Leuchtend`,styleVibrant:`Lebendig`,themeToggleHint:`Zwischen Dunkel-, Hell- und Systemmodus mit dem Symbol in der Seitenleiste wechseln.`,autoArchivePrints:`Drucke automatisch archivieren`,autoArchiveDescription:`3MF-Dateien automatisch speichern, wenn Drucke abgeschlossen sind`,saveThumbnailsDescription:`Vorschaubilder aus 3MF-Dateien extrahieren und speichern`,captureFinishPhotoDescription:`Foto von der Druckerkamera aufnehmen, wenn der Druck abgeschlossen ist. Bambuddy zeichnet während des Drucks einen kurzen Zeitraffer auf, damit das Foto aus dem Moment vor dem Absenken der Druckplatte stammen kann. Die Zeitraffer-Datei bleibt erhalten, wenn du den Zeitraffer für diesen Druck aktiviert hast, andernfalls wird sie nach Aufnahme des Fotos automatisch gelöscht.`,ffmpegNotInstalled:`ffmpeg nicht installiert`,ffmpegRequired:`Kameraaufnahme benötigt ffmpeg. Installieren über brew install ffmpeg (macOS) oder apt install ffmpeg (Linux).`,camera:`Kamera`,cameraViewMode:`Kamera-Ansichtsmodus`,cameraOverlayDescription:`Kamera öffnet sich als größenveränderbares Overlay auf dem Hauptbildschirm`,cameraWindowDescription:`Kamera öffnet sich in einem separaten Browserfenster`,externalCamerasDescription:`Externe Kameras konfigurieren, um die eingebaute Druckerkamera zu ersetzen. Unterstützt MJPEG-Streams, RTSP, HTTP-Snapshots und USB-Kameras (V4L2). Wenn aktiviert, wird die externe Kamera für Live-Ansicht und Abschlussfotos verwendet.`,cameraPlaceholderUsb:`Gerätepfad (/dev/video0)`,cameraPlaceholderUrl:`Kamera-URL (rtsp://... oder http://...)`,cameraTypeMjpeg:`MJPEG-Stream`,cameraTypeRtsp:`RTSP-Stream`,cameraTypeSnapshot:`HTTP-Snapshot`,cameraTypeUsb:`USB-Kamera (V4L2)`,cameraSnapshotUrl:`Snapshot-URL (optional)`,cameraSnapshotUrlPlaceholder:`http://192.168.1.61:1984/api/frame.jpeg?src=printer`,cameraSnapshotUrlHelp:`URL für Einzelbildaufnahmen — wird für Benachrichtigungs-Vorschaubilder, Abschlussfotos, Schicht-Zeitraffer und Plattenerkennung verwendet. Zeitraffer und Plattenerkennung benötigen jeweils eigene drucker-spezifische Schalter — diese URL ist nur die Bildquelle, die sie verwenden, wenn sie aktiv sind. Leer lassen, um Bilder aus dem oben konfigurierten Live-Stream zu verwenden. Nützlich für go2rtc (/api/frame.jpeg) und IP-Kameras mit dediziertem Snapshot-Endpunkt.`,cameraRotation:`Drehung`,test:`Testen`,connected:`Verbunden`,disconnected:`Getrennt`,currency:`Währung`,defaultFilamentCost:`Standard-Filamentkosten (pro kg)`,electricityCost:`Stromkosten pro kWh`,energyDisplayMode:`Energieanzeige-Modus`,energyModePrintDescription:`Dashboard zeigt Summe der während Drucken verbrauchten Energie`,energyModeTotalDescription:`Dashboard zeigt Gesamtenergie der Smart Plugs`,fileManager:`Dateimanager`,createArchiveEntry:`Archiveintrag beim Drucken erstellen`,createArchiveEntryDescription:`Beim Drucken aus dem Dateimanager optional einen Archiveintrag erstellen`,lowDiskSpaceWarning:`Warnung bei wenig Speicherplatz`,lowDiskSpaceDescription:`Warnung anzeigen, wenn freier Speicherplatz unter diesen Schwellenwert fällt`,printerFirmware:`Drucker-Firmware`,checkFirmwareDescription:`Nach Firmware-Updates von Bambu Lab suchen`,bambuddySoftware:`Bambuddy-Software`,autoCheckDescription:`Automatisch beim Start nach neuen Versionen suchen`,checkNow:`Jetzt prüfen`,updateAvailableVersion:`Update verfügbar: v{{version}}`,releaseNotes:`Versionshinweise`,updateViaDocker:`Update über Docker Compose:`,updateViaHomeAssistant:`Updates werden vom Home Assistant Supervisor verwaltet. Öffne Einstellungen → Add-ons → Bambuddy in Home Assistant, um die neue Version zu installieren.`,updateViaWindowsInstaller:`Windows-Installationen werden durch erneutes Ausführen des Installers aktualisiert. Lade die neue Version unten herunter — deine Daten, Einstellungen und Drucker bleiben erhalten.`,downloadWindowsInstaller:`Installer für v{{version}} herunterladen`,installUpdate:`Update installieren`,latestVersionRunning:`Sie verwenden die neueste Version`,failedToCheckUpdates:`Update-Prüfung fehlgeschlagen: {{error}}`,backupRestore:`Sicherung & Wiederherstellung`,backupRestoreDescription:`Einstellungen exportieren/importieren und GitHub-Backup konfigurieren`,goToBackup:`Zur Sicherung`,externalUrl:`Externe URL`,externalUrlDescription:`Die externe URL, unter der Bambuddy erreichbar ist. Wird für Benachrichtigungsbilder und externe Integrationen verwendet.`,bambuddyUrl:`Bambuddy-URL`,externalUrlHint:`Protokoll und Port angeben (z.B. http://192.168.1.100:8000)`,ftpRetry:`FTP-Wiederholung`,ftpRetryDescription:`FTP-Operationen bei unzuverlässigem Drucker-WLAN wiederholen. Gilt für 3MF-Downloads, Druck-Uploads, Zeitraffer-Downloads und Firmware-Updates.`,autoRetryDescription:`Fehlgeschlagene FTP-Operationen automatisch wiederholen`,retryAttempts:`Wiederholungsversuche`,retryDelay:`Wiederholungsverzögerung`,connectionTimeout:`Verbindungs-Timeout`,time_one:`{{count}} Mal`,time_other:`{{count}} Mal`,second_one:`{{count}} Sekunde`,second_other:`{{count}} Sekunden`,nSeconds:`{{count}} Sekunden`,increaseForWeakWifi:`Erhöhen für Drucker mit schwachem WLAN`,homeAssistant:`Home Assistant`,homeAssistantFullDescription:`Mit Home Assistant verbinden, um Smart Plugs über die HA REST-API zu steuern. Unterstützt Switch-, Light-, Input_Boolean- und Script-Entitäten.`,homeAssistantUrl:`Home Assistant URL`,longLivedAccessToken:`Langlebiges Zugriffstoken`,haTokenHint:`Token in HA erstellen: Profil → Langlebige Zugriffstoken → Token erstellen`,connectionSuccessful:`Verbindung erfolgreich`,connectionFailed:`Verbindung fehlgeschlagen`,haConnectionSuccess:`Erfolgreich mit Home Assistant verbunden.`,haConnectionFailed:`Verbindung zu Home Assistant fehlgeschlagen.`,mqttPublishing:`MQTT-Veröffentlichung`,mqttDescription:`BamBuddy-Ereignisse an einen externen MQTT-Broker zur Integration mit Node-RED, Home Assistant und anderen Automatisierungssystemen veröffentlichen.`,mqttEnableDescription:`Ereignisse an externen MQTT-Broker veröffentlichen`,brokerHostname:`Broker-Hostname`,port:`Port`,usernameOptional:`Benutzername (optional)`,passwordOptional:`Passwort (optional)`,topicPrefix:`Topic-Präfix`,topicPrefixHint:`Topics werden sein: {{prefix}}/printers//status, etc.`,prometheusMetrics:`Prometheus-Metriken`,prometheusEndpointDescription:`Druckermetriken unter /api/v1/metrics für Prometheus/Grafana-Überwachung bereitstellen.`,bearerTokenOptional:`Bearer-Token (optional)`,bearerTokenHint:`Wenn gesetzt, müssen Anfragen Authorization: Bearer enthalten`,metricsConnectionStatus:`Verbindungsstatus`,metricsPrinterState:`Druckerstatus (idle/printing/etc)`,metricsPrintProgress:`Druckfortschritt 0-100%`,metricsBedTemp:`Betttemperatur`,metricsNozzleTemp:`Düsentemperatur`,metricsPrintsTotal:`Gesamtdrucke nach Ergebnis`,metricsMore:`...und mehr (Schichten, Lüfter, Warteschlange, Filamentverbrauch)`,smartPlugsDescription:`Smart Plugs (Tasmota oder Home Assistant) verbinden, um Stromsteuerung zu automatisieren und Energieverbrauch für Ihre Drucker zu verfolgen.`,allOn:`Alle Ein`,allOff:`Alle Aus`,addSmartPlug:`Smart Plug hinzufügen`,energySummary:`Energieübersicht`,currentPower:`Aktuelle Leistung`,plugsOnline:`{{reachable}}/{{total}} Plugs online`,today:`Heute`,yesterday:`Gestern`,total:`Gesamt`,enablePlugsForSummary:`Plugs aktivieren, um Energieübersicht zu sehen`,addNotificationProvider:`Hinzufügen`,systemBadge:`(System)`,creating:`Erstellen...`,changing:`Ändern...`,deleteUserAndItems:`Benutzer UND dessen Elemente löschen`,deleteUserKeepItems:`Benutzer löschen, Elemente behalten (werden herrenlos)`,ok:`OK`,twoFa:{totpTitle:`Authenticator-App (TOTP)`,totpDesc:`Verwende eine Authenticator-App wie Google Authenticator, Aegis oder Authy.`,emailOtpTitle:`E-Mail OTP`,emailOtpDesc:`Sende einen Einmalcode an {{email}} beim Einloggen.`,emailOtpNoEmail:`Füge eine E-Mail-Adresse zu deinem Konto hinzu, um diese Methode zu aktivieren.`,addEmailFirst:`Dein Konto hat keine E-Mail-Adresse. Bitte einen Administrator, eine hinzuzufügen.`,setupTotp:`Authenticator-App einrichten`,setupAuthApp:`Authenticator-App einrichten`,setupInstructions:`Scanne den QR-Code mit deiner Authenticator-App und bestätige mit einem Code.`,manualEntry:`Kein Scanner? Gib dieses Secret manuell ein:`,scannedContinue:`Code gescannt — weiter`,enterCodeToConfirm:`Gib den 6-stelligen Code aus deiner Authenticator-App ein, um die Einrichtung zu bestätigen.`,activate:`Aktivieren`,disableTotp:`Authenticator deaktivieren`,disableConfirmHint:`Gib einen gültigen TOTP-Code oder einen Backup-Code ein, um den Authenticator zu deaktivieren.`,totpDisabled:`Authenticator-App deaktiviert.`,emailOtpEnabled:`E-Mail OTP aktiviert.`,emailOtpDisabled:`E-Mail OTP deaktiviert.`,smtpRequired:`Bitte konfigurieren und testen Sie zuerst die SMTP-Einstellungen.`,invalidCode:`Ungültiger Code. Bitte erneut versuchen.`,enableEmailOtp:`E-Mail OTP aktivieren`,disableEmailOtp:`E-Mail OTP deaktivieren`,emailSetupEnterCode:`Ein Bestätigungscode wurde an Ihre E-Mail-Adresse gesendet. Geben Sie ihn unten ein, um zu bestätigen, dass Ihnen dieses Postfach gehört.`,verifyAndEnable:`Verifizieren & Aktivieren`,emailDisablePasswordHint:`Geben Sie Ihr Kontopasswort ein, um die Deaktivierung des E-Mail OTP zu bestätigen.`,passwordPlaceholder:`Passwort eingeben`,backupCodesTitle:`Backup-Codes sichern`,backupCodesWarning:`Speichere diese Codes sicher. Jeder Code kann nur einmal verwendet werden und wird nicht erneut angezeigt.`,backupCodesRemaining:`{{count}} Backup-Codes verbleibend`,savedCodes:`Codes gespeichert`,regenBackup:`Backup-Codes neu generieren`,regenBackupHint:`Gib deinen aktuellen TOTP-Code ein, um 10 neue Backup-Codes zu generieren. Alle bestehenden Codes werden ungültig.`,newBackupCodes:`Neue Backup-Codes`,linkedAccounts:`Verknüpfte SSO-Konten`,linkedAccountsDesc:`Diese externen Identitätsanbieter sind mit deinem Konto verknüpft.`,oidcUnlinked:`Konto getrennt.`},sessionPolicy:{title:`Sitzungsrichtlinie`,description:`Maximale Sitzungsdauer für neue Benutzeranmeldungen. Bereits ausgegebene Token behalten ihren ursprünglichen Ablauf.`,preset24h:`24 Stunden`,preset7d:`7 Tage`,preset30d:`30 Tage`,customHoursLabel:`Individuelle Sitzungsdauer in Stunden`,hoursSuffix:`Stunden`,warning:`Längere Sitzungen reduzieren den automatischen Abmeldeschutz. Nur für vertrauenswürdige Einzelnutzer-Installationen empfohlen.`},oidc:{title:`SSO / OIDC-Anbieter`,desc:`Konfiguriere OpenID Connect-Anbieter für Single Sign-On.`,addProvider:`Anbieter hinzufügen`,newProvider:`Neuer Anbieter`,empty:`Noch keine OIDC-Anbieter konfiguriert.`,created:`Anbieter erstellt.`,updated:`Anbieter aktualisiert.`,deleted:`Anbieter gelöscht.`,refreshIcon:`Icon neu laden`,removeIcon:`Icon entfernen`,iconRefreshed:`Icon aktualisiert.`,iconRemoved:`Icon entfernt.`,iconFetchFailed:`Icon konnte von der Anbieter-URL nicht geladen werden.`,deleteTitle:`Anbieter löschen`,deleteMessage:`"{{name}}" löschen? Alle verknüpften Benutzerkonten werden getrennt.`,form:{name:`Anzeigename`,issuerUrl:`Aussteller-URL`,clientId:`Client-ID`,clientSecret:`Client-Secret`,scopes:`Bereiche`,iconUrl:`Symbol-URL (optional)`,enabled:`Aktiviert`,autoCreate:`Benutzer automatisch anlegen`,autoCreateDesc:`Erstellt beim ersten Login automatisch ein lokales Konto.`,autoLink:`Bestehende Konten automatisch verknüpfen`,autoLinkDesc:`Verknüpft beim ersten Login vorhandene lokale Konten anhand der E-Mail-Adresse.`,secretHint:`leer lassen zum Beibehalten`,secretPlaceholder:`neues Secret`,emailClaim:`E-Mail-Claim`,emailClaimDesc:`JWT-Claim für die E-Mail-Identität. Für Azure Entra ID 'preferred_username' oder 'upn' verwenden (sendet kein email_verified). Nur vertrauenswürdige Claim-Namen verwenden.`,emailClaimPlaceholder:`E-Mail`,emailClaimCustomClaimAutoLinkWarning:`Benutzerdefinierte Claims sind für die Auto-Verknüpfung nur sicher, wenn der Wert vom Mandanten verwaltet wird (z. B. Azure Entra ID upn / preferred_username). Aktiviere Auto-Verknüpfung nicht, wenn dein IdP Benutzern erlaubt, diesen Claim selbst zu setzen.`,requireEmailVerified:`E-Mail-Verifizierung erforderlich`,requireEmailVerifiedDesc:`E-Mail-Claim nur akzeptieren, wenn der Provider ihn als verifiziert markiert.`,requireEmailVerifiedWarning:`Warnung: E-Mail wird auch ohne Verifizierung akzeptiert. Nur bei vertrauenswürdigen Providern verwenden.`,requireEmailVerifiedAutoLink:`Auto-Verknüpfung zuerst deaktivieren, um diese Einstellung zu ändern.`,defaultGroup:`Standardgruppe`,defaultGroupDesc:`Gruppe, der automatisch erstellte Benutzer zugewiesen werden. Fallback auf Viewers, wenn nicht gesetzt.`,defaultGroupViewersFallback:`Viewers (Standard)`,autologin:`Automatische Anmeldung`,autologinDesc:`Nicht angemeldete Besucher direkt zu diesem Anbieter weiterleiten. Diese Option kann nur für einen Anbieter aktiv sein.`}},encryption:{title:`MFA-Verschlüsselungsstatus`,enabledFromEnv:`At-Rest-Verschlüsselung aktiv (Schlüssel aus Umgebungsvariable MFA_ENCRYPTION_KEY)`,enabledFromFile:`At-Rest-Verschlüsselung aktiv (Schlüssel aus dem Datenverzeichnis geladen)`,enabledGenerated:`At-Rest-Verschlüsselung aktiv mit automatisch generiertem Schlüssel`,notConfigured:`At-Rest-Verschlüsselung nicht konfiguriert`,notConfiguredDesc:`TOTP-Geheimnisse und OIDC-Client-Secrets werden im Klartext gespeichert. Setze MFA_ENCRYPTION_KEY oder starte Bambuddy mit beschreibbarem Datenverzeichnis neu, damit ein Schlüssel automatisch erzeugt wird.`,allEncrypted:`Alle MFA-Geheimnisse sind verschlüsselt gespeichert.`,legacyRowsLabel:`Klartext-Zeilen (Altbestand)`,encryptedRowsLabel:`Verschlüsselte Zeilen`,legacyRowsWarning:`{{count}} Klartext-Zeile(n) erkannt. Den OIDC-Provider neu speichern oder den Authenticator des Benutzers neu einrichten, um die Daten verschlüsselt abzulegen.`,backupHint:`Der automatisch erzeugte Schlüssel liegt unter DATA_DIR/.mfa_encryption_key und wird in lokalen Backup-ZIPs mitgesichert. Backups sicher aufbewahren oder MFA_ENCRYPTION_KEY explizit setzen.`,decryptionBrokenTitle:`Verschlüsselungsschlüssel fehlt`,decryptionBrokenError:`{{count}} verschlüsselte Datensätze können nicht entschlüsselt werden, weil der Schlüssel nicht mehr verfügbar ist. Den vorherigen MFA_ENCRYPTION_KEY oder DATA_DIR/.mfa_encryption_key wiederherstellen.`,migrationErrorWarning:`{{count}} Legacy-Eintrag/Einträge konnten beim Start nicht verschlüsselt werden. Prüfen Sie die Server-Logs und starten Sie Bambuddy neu.`},pipelineLimits:{title:`Slicer-Pipeline-Limits`,maxCopiesLabel:`Max. Kopien pro Lauf`,maxCopiesDesc:`Obergrenze für die Anzahl an Kopien, die Operatoren beim Ausführen einer Pipeline anfordern können. Serverseitige Obergrenze ist 1000.`},pipelines:{title:`Slicer-Pipelines`,subtitle:`Wiederverwendbare Preset-Bundles (Drucker + Prozess + Filamente + Druckplatte). Speichere eines aus dem Slice-Dialog und wende es beim nächsten Datei-Slice mit einem Klick an.`,loading:`Pipelines werden geladen…`,loadError:`Pipelines konnten nicht geladen werden.`,confirmDelete:`Diese Pipeline löschen? Das kann nicht rückgängig gemacht werden.`,staleWarning:`Eines oder mehrere referenzierte Presets existieren nicht mehr. Speichere diese Pipeline erneut aus dem Slice-Dialog, um sie zu reparieren.`,empty:{title:`Noch keine Pipelines.`,howto:`Öffne den Slice-Dialog für eine beliebige Datei, wähle Drucker / Prozess / Filamente / Druckplatte und klicke „Als Pipeline speichern“. Deine gespeicherten Pipelines erscheinen hier.`},field:{name:`Pipeline-Name`,description:`Beschreibung`,targetPrinter:`Zieldrucker`,noTarget:`— Kein Ziel —`,targetKind:`Zielart`,targetKindSpecific:`Spezifischer Drucker`,targetKindClass:`Druckerklasse`,targetModelClass:`Druckermodell`,fanoutStrategy:`Verteilungsstrategie`,fanout:{max_parallel:`Max parallel — auf alle verfügbaren passenden Drucker verteilen`,round_robin:`Reihum — durch geeignete Drucker rotieren`,fill_one_first:`Erst einen füllen — alle Kopien an einen Drucker binden`},fanoutShort:{max_parallel:`parallel`,round_robin:`Reihum`,fill_one_first:`einer zuerst`}},action:{save:`Speichern`,cancel:`Abbrechen`,rename:`Umbenennen`,delete:`Löschen`},slot:{printer:`Drucker`,process:`Prozess`,filament:`Filament`,filamentN:`Filament {{n}}`,filamentAll:`Alle {{n}} Slots`,bed:`Druckplatte`},group:{profiles:`Profile`,filaments:`Filamente`},searchPlaceholder:`Pipelines durchsuchen…`,filterTargetType:`Nach Zielart filtern`,filterTarget:`Nach Ziel filtern`,filter:{all:`Alle Ziele`,noTarget:`Kein Ziel festgelegt`,count:`{{shown}} / {{total}}`,noMatches:`Keine Pipelines entsprechen den aktuellen Filtern.`},toast:{saved:`Pipeline gespeichert`,saveFailed:`Speichern fehlgeschlagen`,deleted:`Pipeline gelöscht`,deleteFailed:`Löschen fehlgeschlagen`},noTargetHint:`Lege einen Zieldrucker fest, um diese auszuführen`,noTargetWarning:`Lege einen Zieldrucker fest, bevor du diese Pipeline ausführst.`,runs:{lastRun:`Letzter Lauf`,status:{queued:`in Warteschlange`,slicing:`wird geschnitten`,dispatching:`wird gesendet`,in_progress:`druckt`,completed:`abgeschlossen`,failed:`fehlgeschlagen`,partial_failure:`teilweise fehlgeschlagen`,cancelled:`abgebrochen`}}}},notification:{printStarted:{title:`Druck gestartet`,body:`{{printer}}: {{filename}} wird gedruckt`},printCompleted:{title:`Druck abgeschlossen`,body:`{{printer}}: {{filename}} erfolgreich abgeschlossen`},printFailed:{title:`Druck fehlgeschlagen`,body:`{{printer}}: {{filename}} ist fehlgeschlagen`},printStopped:{title:`Druck gestoppt`,body:`{{printer}}: {{filename}} wurde gestoppt`},printProgress:{title:`Druckfortschritt`,body:`{{printer}}: {{filename}} ist zu {{percent}}% abgeschlossen`},printerOffline:{title:`Drucker offline`,body:`{{printer}} ist offline`},printerError:{title:`Druckerfehler`,body:`{{printer}} – {{error}}`},filamentLow:{title:`Filament niedrig`,body:`{{printer}}: Filament geht zur Neige`},maintenanceDue:{title:`Wartung fällig`,body:`{{printer}}: {{items}} benötigen Aufmerksamkeit`}},errors:{generic:`Etwas ist schiefgelaufen`,networkError:`Netzwerkfehler. Bitte überprüfen Sie Ihre Verbindung.`,notFound:`Nicht gefunden`,unauthorized:`Nicht autorisiert`,serverError:`Serverfehler`,validationError:`Bitte überprüfen Sie Ihre Eingabe`,printerConnectionFailed:`Verbindung zum Drucker fehlgeschlagen`,saveFailed:`Speichern fehlgeschlagen`,deleteFailed:`Löschen fehlgeschlagen`,loadFailed:`Laden der Daten fehlgeschlagen`},hmsErrors:{title:`Fehler - {{name}}`,noErrors:`Keine Fehler`,viewOnWiki:`Im Bambu Lab Wiki ansehen`,unknownCode:`Unbekannter HMS-Code — Details siehe Bambu Lab Wiki.`,clearInstructions:`Löschen Sie die Fehler am Drucker, um sie hier zu entfernen.`,clearErrors:`Fehler löschen`,clearSuccess:`HMS-Fehler gelöscht`,clearFailed:`HMS-Fehler konnten nicht gelöscht werden`,actionSuccess:`Aktion an Drucker gesendet`,actionFailed:`Aktion konnte nicht gesendet werden`,actions:{RESUME_PRINTING:`Druck fortsetzen`,RESUME_PRINTING_DEFECTS:`Fortsetzen (Mängel akzeptabel)`,RESUME_PRINTING_PROBELM_SOLVED:`Fortsetzen (Problem gelöst)`,STOP_PRINTING:`Druck stoppen`,CHECK_ASSISTANT:`Assistent öffnen`,FILAMENT_EXTRUDED:`Filament extrudiert, weiter`,RETRY_FILAMENT_EXTRUDED:`Noch nicht extrudiert, erneut`,CONTINUE:`Fertig, weiter`,LOAD_VIRTUAL_TRAY:`Filament laden`,OK_BUTTON:`OK`,FILAMENT_LOAD_RESUME:`Filament geladen, fortsetzen`,JUMP_TO_LIVEVIEW:`Live-Ansicht öffnen`,NO_REMINDER_NEXT_TIME:`Nicht mehr erinnern`,REFRESH_NOZZLE:`Erneut prüfen`,IGNORE_NO_REMINDER_NEXT_TIME:`Ignorieren und nicht mehr erinnern`,IGNORE_RESUME:`Ignorieren und fortsetzen`,PROBLEM_SOLVED_RESUME:`Problem gelöst, fortsetzen`,TURN_OFF_FIRE_ALARM:`Verstanden, Brandalarm ausschalten`,RETRY_PROBLEM_SOLVED:`Erneut versuchen (Problem gelöst)`,CANCLE:`Abbrechen`,STOP_DRYING:`Trocknen stoppen`,PROCEED:`Fortfahren`,OK_JUMP_RACK:`OK`,ABORT:`Abbrechen`,DISABLE_PURIFICATION:`Luftreinigung für diesen Druck deaktivieren`,DONT_REMIND_NEXT_TIME:`Nicht mehr erinnern`,DBL_CHECK_CANCEL:`Abbrechen`,DBL_CHECK_DONE:`Fertig`,DBL_CHECK_RETRY:`Erneut versuchen`,DBL_CHECK_RESUME:`Fortsetzen`,DBL_CHECK_OK:`Bestätigen`,REMOVE_CLOSE_BTN:`Schließen`}},mqttDebug:{title:`MQTT-Debug-Protokoll`,searchPlaceholder:`Topic oder Payload suchen...`,noMessages:`Noch keine Nachrichten protokolliert`,startLoggingHint:`Klicken Sie auf "Protokollierung starten", um MQTT-Nachrichten aufzuzeichnen`,noMessagesMatch:`Keine Nachrichten entsprechen Ihrem Filter`,adjustFilterHint:`Versuchen Sie, Ihre Such- oder Filterkriterien anzupassen`,incoming:`Eingehend`,outgoing:`Ausgehend`,loggingStopped:`Protokollierung gestoppt`,loggingActive:`Protokollierung aktiv - Nachrichten werden automatisch aktualisiert`,startLogging:`Protokollierung starten`,stopLogging:`Protokollierung stoppen`,clearLog:`Protokoll löschen`,topic:`Thema`,timestamp:`Zeitstempel`,direction:`Richtung`,all:`Alle`},printerFiles:{title:`Dateimanager`,storageUsed:`Belegt:`,storageFree:`Frei:`,filterPlaceholder:`Dateien filtern...`,deleteButton:`Löschen`,deleteFiles:`{{count}} Dateien löschen`,deleteFileConfirm:`"{{name}}" löschen? Dies kann nicht rückgängig gemacht werden.`,deleteFilesConfirm:`{{count}} ausgewählte Dateien löschen? Dies kann nicht rückgängig gemacht werden.`,noFiles:`Keine Dateien auf dem Drucker`,loadingFiles:`Dateien werden geladen...`,failedToLoad:`Dateien konnten nicht geladen werden`,toast:{filesDeleted:`{{count}} Datei(en) gelöscht`,deleteFailed:`Löschen fehlgeschlagen: {{error}}`}},confirm:{delete:`Möchten Sie dies wirklich löschen?`,unsavedChanges:`Sie haben ungespeicherte Änderungen. Möchten Sie wirklich verlassen?`,clearQueue:`Möchten Sie die Warteschlange wirklich leeren?`},login:{title:`Bambuddy Anmeldung`,subtitle:`Melden Sie sich bei Ihrem Konto an`,username:`Benutzername`,usernamePlaceholder:`Benutzername eingeben`,usernameOrEmail:`Benutzername oder E-Mail`,usernameOrEmailPlaceholder:`Benutzername oder @ E-Mail`,password:`Passwort`,passwordPlaceholder:`Passwort eingeben`,signIn:`Anmelden`,signingIn:`Anmeldung läuft...`,rememberMe:`Angemeldet bleiben`,forgotPassword:`Passwort vergessen?`,autologinFailed:`Automatische SSO-Anmeldung fehlgeschlagen. Bitte wählen Sie unten einen Anbieter.`,localDisabledNotice:`Lokale Anmeldung ist deaktiviert. Bitte verwenden Sie einen der SSO-Anbieter unten.`,loginSuccess:`Erfolgreich angemeldet`,loginFailed:`Anmeldung fehlgeschlagen`,enterCredentials:`Bitte Benutzername und Passwort eingeben`,enterEmail:`Bitte geben Sie Ihre E-Mail-Adresse ein`,oidcLoginFailed:`OIDC-Anmeldung fehlgeschlagen`,oidcErrors:{providerError:`Der Identity-Provider hat einen Fehler zurückgegeben`,missingParameters:`Dem OIDC-Callback fehlen erforderliche Parameter`,invalidState:`OIDC-State ist ungültig oder wurde bereits verwendet`,stateExpired:`OIDC-Sitzung abgelaufen — bitte erneut versuchen`,providerNotFound:`OIDC-Provider nicht gefunden`,discoveryFailed:`OIDC-Discovery-Dokument konnte nicht abgerufen werden`,invalidDiscovery:`OIDC-Discovery-Dokument ist ungültig`,networkError:`Netzwerkfehler beim OIDC-Token-Austausch`,badResponse:`Unerwartete Antwort beim OIDC-Token-Austausch`,noIdToken:`OIDC-Provider hat kein ID-Token zurückgegeben`,validationFailed:`OIDC-Token-Validierung fehlgeschlagen`,nonceMismatch:`OIDC-Nonce stimmt nicht überein — möglicher Replay-Angriff`,missingSubClaim:`OIDC-Token enthält keinen Sub-Claim`,noLinkedAccount:`Kein lokales Konto mit dieser OIDC-Identität verknüpft`,accountInactive:`Ihr Konto ist inaktiv`,userResolutionFailed:`Ihr Konto konnte nicht aufgelöst werden`,internalError:`Interner Fehler beim OIDC-Login`,tokenExchangeFailed:`OIDC-Token-Austausch fehlgeschlagen`},forgotPasswordTitle:`Passwort vergessen`,forgotPasswordMessage:`Wenn Sie Ihr Passwort vergessen haben, wenden Sie sich bitte an Ihren Systemadministrator.`,forgotPasswordEmailMessage:`Geben Sie Ihre E-Mail-Adresse ein und wir senden Ihnen ein neues Passwort.`,emailAddress:`E-Mail-Adresse`,emailPlaceholder:`ihre.email@beispiel.de`,cancel:`Abbrechen`,sending:`Wird gesendet...`,sendResetEmail:`Zurücksetzungs-E-Mail senden`,howToReset:`So setzen Sie Ihr Passwort zurück:`,resetStep1:`Kontaktieren Sie Ihren Bambuddy-Administrator`,resetStep2:`Bitten Sie ihn, Ihr Passwort in der Benutzerverwaltung zurückzusetzen`,resetStep3:`Er kann ein neues temporäres Passwort für Sie festlegen`,resetStep4:`Melden Sie sich mit dem neuen Passwort an und ändern Sie es in den Einstellungen`,gotIt:`Verstanden`,resetPassword:{title:`Neues Passwort festlegen`,subtitle:`Geben Sie unten Ihr neues Passwort ein und bestätigen Sie es.`,newPassword:`Neues Passwort`,newPasswordPlaceholder:`Mindestens 8 Zeichen`,confirmPassword:`Passwort bestätigen`,confirmPasswordPlaceholder:`Neues Passwort wiederholen`,saving:`Wird gespeichert…`,submit:`Neues Passwort festlegen`,backToLogin:`Zurück zur Anmeldung`,passwordsDoNotMatch:`Passwörter stimmen nicht überein`,passwordTooShort:`Passwort muss mindestens 8 Zeichen lang sein`,resetFailed:`Passwort zurücksetzen fehlgeschlagen. Der Link ist möglicherweise abgelaufen.`},twoFA:{title:`Zwei-Faktor-Authentifizierung`,subtitle:`Ihr Konto ist mit 2FA geschützt. Geben Sie unten den Bestätigungscode ein.`,methodAuthenticator:`Authenticator-App`,methodEmail:`E-Mail-Code`,methodBackup:`Wiederherstellungscode`,instructionsTotp:`Öffnen Sie Ihre Authenticator-App und geben Sie den 6-stelligen Code für Bambuddy ein.`,instructionsEmail:`Ein 6-stelliger Code wurde an Ihre E-Mail-Adresse gesendet. Er ist 10 Minuten gültig.`,instructionsEmailNotSent:`Klicken Sie unten, um einen Bestätigungscode per E-Mail zu erhalten.`,instructionsBackup:`Geben Sie einen Ihrer 8-stelligen Wiederherstellungscodes ein. Jeder Code kann nur einmal verwendet werden.`,sendCodeButton:`Code per E-Mail senden`,sendingCode:`Wird gesendet...`,resendCode:`Code erneut senden`,codeLabel:`Bestätigungscode`,backupCodeLabel:`Wiederherstellungscode`,codePlaceholder:`000000`,backupCodePlaceholder:`XXXXXXXX`,verifyButton:`Bestätigen`,verifyingButton:`Wird überprüft...`,backToLogin:`← Zurück zur Anmeldung`,orContinueWith:`oder anmelden mit`,signInWith:`Anmelden mit {{provider}}`,enterCode:`Bitte geben Sie den Bestätigungscode ein`,sendCodeFailed:`Bestätigungscode konnte nicht gesendet werden`,invalidCode:`Ungültiger Code. Bitte erneut versuchen.`}},setup:{title:`Bambuddy Einrichtung`,subtitle:`Konfigurieren Sie die Authentifizierung für Ihre Bambuddy-Instanz`,enableAuth:`Authentifizierung aktivieren`,adminAccount:`Admin-Konto`,adminAccountDesc:`Wenn bereits Admin-Benutzer existieren, wird die Authentifizierung mit den vorhandenen Admin-Konten aktiviert. Lassen Sie die Felder unten leer, um vorhandene Admins zu verwenden, oder geben Sie neue Anmeldedaten ein, um einen neuen Admin-Benutzer zu erstellen.`,adminUsername:`Admin-Benutzername`,adminPassword:`Admin-Passwort`,optionalIfAdminExists:`(optional, wenn Admin-Benutzer existieren)`,adminUsernamePlaceholder:`Admin-Benutzernamen eingeben (optional)`,adminPasswordPlaceholder:`Admin-Passwort eingeben (optional)`,confirmPassword:`Passwort bestätigen`,confirmPasswordPlaceholder:`Admin-Passwort bestätigen`,settingUp:`Einrichtung läuft...`,completeSetup:`Einrichtung abschließen`,toast:{authEnabledAdminCreated:`Authentifizierung aktiviert und Admin-Benutzer erstellt`,authEnabledExistingAdmins:`Authentifizierung mit vorhandenen Admin-Benutzern aktiviert`,setupCompleted:`Einrichtung abgeschlossen`,enterBothCredentials:`Bitte geben Sie sowohl Admin-Benutzernamen als auch Passwort ein, oder lassen Sie beide leer, um vorhandene Admin-Benutzer zu verwenden`,passwordsDoNotMatch:`Passwörter stimmen nicht überein`,passwordTooShort:`Passwort muss mindestens 6 Zeichen lang sein`}},changePassword:{title:`Passwort ändern`,currentPassword:`Aktuelles Passwort`,currentPasswordPlaceholder:`Aktuelles Passwort eingeben`,newPassword:`Neues Passwort`,newPasswordPlaceholder:`Neues Passwort eingeben (min. 6 Zeichen)`,confirmPassword:`Neues Passwort bestätigen`,confirmPasswordPlaceholder:`Neues Passwort bestätigen`,passwordsDoNotMatch:`Passwörter stimmen nicht überein`,passwordTooShort:`Passwort muss mindestens 6 Zeichen lang sein`,changing:`Wird geändert...`,success:`Passwort erfolgreich geändert`,failed:`Passwortänderung fehlgeschlagen`},plateAlert:{title:`Druck pausiert!`,message:`Objekte auf dem Druckbett erkannt. Der Druck wurde automatisch pausiert. Bitte räumen Sie das Druckbett und setzen Sie den Druck fort.`,understand:`Verstanden`},camera:{title:`Kameraansicht`,invalidPrinterId:`Ungültige Drucker-ID`,live:`Live`,snapshot:`Schnappschuss`,restartStream:`Stream neu starten`,refreshSnapshot:`Schnappschuss aktualisieren`,fullscreen:`Vollbild`,exitFullscreen:`Vollbild beenden`,connectingToCamera:`Verbinde mit Kamera...`,capturingSnapshot:`Schnappschuss wird aufgenommen...`,connectionLost:`Verbindung verloren`,connectionFailed:`Kameraverbindung fehlgeschlagen`,reconnecting:`Neuverbindung in {{countdown}}s... (Versuch {{attempt}}/{{max}})`,reconnectNow:`Jetzt verbinden`,cameraUnavailable:`Kamera nicht verfügbar`,cameraUnavailableDesc:`Stellen Sie sicher, dass der Drucker eingeschaltet und verbunden ist.`,noCamera:`Keine Kamera verfügbar`,retry:`Erneut versuchen`,cameraStream:`Kamera-Stream`,zoomOut:`Verkleinern`,zoomIn:`Vergrößern`,resetZoom:`Zoom zurücksetzen`,recording:`Aufnahme`,startRecording:`Aufnahme starten`,stopRecording:`Aufnahme stoppen`,chamberLight:`Kammerbeleuchtung umschalten`,unavailable:`Kamera nicht verfügbar`,diagnose:{button:`Diagnose`,modalTitle:`Kamera-Diagnose`,running:`Diagnose läuft...`,runFailed:`Diagnose konnte nicht ausgeführt werden: {{error}}`,retry:`Erneut ausführen`,stage:{tcp_reachable:`Netzwerk-Erreichbarkeit`,first_frame:`Bilderfassung`,live_stream_active:`Live-Stream aktiv`},summary:{all_ok:`Kamera funktioniert. Die Diagnose hat alle Phasen erfolgreich abgeschlossen.`,live_stream_active_healthy:`Kamera streamt gerade mit aktuellen Bildern — kein Test nötig.`,printer_unreachable:`Drucker ist nicht erreichbar. Prüfe IP-Adresse, Netzwerkverbindung und ob der Drucker eingeschaltet ist.`,camera_port_closed:`Drucker ist erreichbar, aber der Kamera-Port ist geschlossen. Stelle sicher, dass LAN-Modus und Entwicklermodus in den Druckereinstellungen aktiviert sind.`,no_frame:`Verbindung zur Kamera hergestellt, aber keine Bilder empfangen. Versuche es erneut oder prüfe, ob die Kamera in den Druckereinstellungen aktiviert ist.`,unknown_failure:`Kamera-Diagnose aus unbekanntem Grund fehlgeschlagen. Prüfe das Support-Log für Details.`},meta:{protocol:`Protokoll`,port:`Port`,profile:`Profil`}}},groups:{title:`Gruppenverwaltung`,subtitle:`Berechtigungsgruppen für Zugriffskontrolle verwalten`,backToSettings:`Zurück zu Einstellungen`,createGroup:`Gruppe erstellen`,noPermission:`Sie haben keine Berechtigung, auf diese Seite zuzugreifen.`,system:`System`,noDescription:`Keine Beschreibung`,usersCount:`{{count}} Benutzer`,permissionsCount:`{{count}} Berechtigungen`,edit:`Bearbeiten`,delete:`Löschen`,toast:{created:`Gruppe erfolgreich erstellt`,updated:`Gruppe erfolgreich aktualisiert`,deleted:`Gruppe erfolgreich gelöscht`,enterGroupName:`Bitte geben Sie einen Gruppennamen ein`},modal:{editGroup:`Gruppe bearbeiten`,createGroup:`Gruppe erstellen`,cancel:`Abbrechen`,saving:`Speichern...`,creating:`Erstellen...`,saveChanges:`Änderungen speichern`},form:{groupName:`Gruppenname`,groupNamePlaceholder:`Gruppennamen eingeben`,systemGroupWarning:`Systemgruppennamen können nicht geändert werden`,description:`Beschreibung`,descriptionPlaceholder:`Beschreibung eingeben (optional)`,permissions:`Berechtigungen ({{count}} ausgewählt)`},deleteModal:{title:`Gruppe löschen`,message:`Sind Sie sicher, dass Sie diese Gruppe löschen möchten? Benutzer in dieser Gruppe verlieren diese Berechtigungen.`,confirm:`Gruppe löschen`},editor:{title:`Gruppe bearbeiten`,createTitle:`Gruppe erstellen`,search:`Berechtigungen suchen...`,selectAll:`Alle auswählen`,clearAll:`Alle abwählen`,permissionsSelected:`{{count}} ausgewählt`,noResults:`Keine Berechtigungen entsprechen Ihrer Suche`,websocketHint:`Erforderlich für Live-Aktualisierungen. Ohne diese Berechtigung greift die Oberfläche auf regelmäßiges Abrufen zurück.`}},users:{title:`Benutzerverwaltung`,subtitle:`Benutzer und deren Zugriff auf Ihre Bambuddy-Instanz verwalten`,backToSettings:`Zurück zu Einstellungen`,createUser:`Benutzer erstellen`,noPermission:`Sie haben keine Berechtigung, auf diese Seite zuzugreifen.`,admin:`Admin`,noGroups:`Keine Gruppen`,active:`Aktiv`,inactive:`Inaktiv`,edit:`Bearbeiten`,delete:`Löschen`,system:`System`,noGroupsAvailable:`Keine Gruppen verfügbar`,table:{username:`Benutzername`,groups:`Gruppen`,status:`Status`,actions:`Aktionen`},toast:{created:`Benutzer erfolgreich erstellt`,updated:`Benutzer erfolgreich aktualisiert`,deleted:`Benutzer erfolgreich gelöscht`,fillRequired:`Bitte füllen Sie alle Pflichtfelder aus`,passwordsDoNotMatch:`Passwörter stimmen nicht überein`,passwordTooShort:`Passwort muss mindestens 6 Zeichen lang sein`,ldapProvisioned:`LDAP-Benutzer „{{username}}" bereitgestellt`},modal:{createUser:`Benutzer erstellen`,editUser:`Benutzer bearbeiten`,cancel:`Abbrechen`,creating:`Erstellen...`,saving:`Speichern...`,saveChanges:`Änderungen speichern`,advancedAuthSubtitle:`mit erweiterter Authentifizierung`,tabsAriaLabel:`Benutzerquelle`,localTab:`Lokal`,ldapTab:`LDAP`,ldapSearchLabel:`Verzeichnis durchsuchen`,ldapSearchPlaceholder:`Benutzername, Name oder E-Mail eingeben...`,ldapMinChars:`Mindestens 2 Zeichen für die Suche eingeben`,ldapTypeToSearch:`Tippen, um das LDAP-Verzeichnis zu durchsuchen`,ldapSearching:`Verzeichnis wird durchsucht...`,ldapNoResults:`Keine passenden Benutzer im Verzeichnis`,ldapSearchError:`Verzeichnissuche fehlgeschlagen. Bitte LDAP-Server-Status prüfen.`,ldapAlreadyProvisioned:`Bereits bereitgestellt`,ldapSelectedLabel:`Ausgewählt`,ldapProvision:`Benutzer bereitstellen`,ldapProvisioning:`Wird bereitgestellt...`,ldapErrorProvision:`Bereitstellung fehlgeschlagen. Bitte LDAP-Server-Status prüfen und erneut versuchen.`},form:{username:`Benutzername`,usernamePlaceholder:`Benutzernamen eingeben`,email:`E-Mail`,emailPlaceholder:`benutzer@beispiel.de`,password:`Passwort`,passwordPlaceholder:`Passwort eingeben`,confirmPassword:`Passwort bestätigen`,confirmPasswordPlaceholder:`Passwort bestätigen`,newPasswordPlaceholder:`Neues Passwort eingeben`,confirmNewPasswordPlaceholder:`Neues Passwort bestätigen`,leaveBlankToKeep:`leer lassen, um das aktuelle zu behalten`,groups:`Gruppen`,optional:`optional`,autoGeneratedPassword:`Ein sicheres Passwort wird automatisch generiert und per E-Mail an den Benutzer gesendet.`,passwordManagedByAdvancedAuth:`Das Passwort wird durch erweiterte Authentifizierung verwaltet. Verwenden Sie "Passwort zurücksetzen", um ein neues Passwort per E-Mail an den Benutzer zu senden.`,resetPassword:`Passwort zurücksetzen`,resettingPassword:`Passwort wird zurückgesetzt...`},deleteModal:{title:`Benutzer löschen`,message:`Sind Sie sicher, dass Sie diesen Benutzer löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.`,confirm:`Benutzer löschen`}},streamOverlay:{title:`Stream-Overlay`,invalidPrinterId:`Ungültige Drucker-ID`,cameraStream:`Kamera-Stream`,progress:`Fortschritt`,eta:`ETA`,printerIdle:`Drucker ist inaktiv`,printerOffline:`Drucker offline`,status:{printing:`Druckt`,paused:`Pausiert`,finished:`Fertig`,failed:`Fehlgeschlagen`,idle:`Inaktiv`,unknown:`Unbekannt`}},profiles:{title:`Profile`,subtitle:`Verwalten Sie Ihre Slicer-Voreinstellungen und Druckvorschub-Kalibrierungen`,tabs:{bambuCloud:`Bambu Cloud`,orcaCloud:`Orca Cloud`,local:`Lokale Profile`,kprofiles:`K-Profile`},orcaCloud:{connectedAs:`Verbunden als`,logout:`Trennen`,noLogoutPermission:`Sie haben keine Berechtigung zum Trennen`,noConnectPermission:`Sie haben keine Berechtigung, sich mit Orca Cloud zu verbinden`,retry:`Erneut versuchen`,back:`Andere Anmeldemethode verwenden`,connect:{title:`Mit Orca Cloud verbinden`,description:`Melden Sie sich bei Ihrem Orca Cloud-Konto an, um Ihre Slicer-Profile in Bambuddy zu synchronisieren.`},providers:{google:`Mit Google anmelden`,apple:`Mit Apple anmelden`,github:`Mit GitHub anmelden`,email:`Mit E-Mail und Passwort anmelden`},password:{title:`Mit E-Mail und Passwort anmelden`,email:`E-Mail`,emailPlaceholder:`sie@beispiel.de`,password:`Passwort`,submit:`Anmelden`},paste:{title:`Anmeldung abschließen`,step1:`Ein neuer Tab wurde mit der Orca Cloud-Anmeldeseite geöffnet. Melden Sie sich mit Ihrem Orca-Konto an.`,step2:`Ihr Browser wird zu einer "localhost"-URL umgeleitet, die nicht geladen werden kann. Das ist normal — die URL ist es, was wir brauchen.`,step3:`Kopieren Sie die gesamte URL aus der Adressleiste Ihres Browsers und fügen Sie sie unten ein.`,signInUrl:`Falls sich der Anmelde-Tab nicht geöffnet hat, klicken Sie auf diese URL:`,label:`Callback-URL hier einfügen`,placeholder:`http://localhost:41172/callback?code=...&state=...`,submit:`Verbindung abschließen`},profiles:{title:`Ihre Orca Cloud-Profile ({{count}})`,refresh:`Aktualisieren`,empty:`Noch keine Profile in Ihrem Orca Cloud-Konto gefunden.`},toast:{connected:`Mit Orca Cloud verbunden als {{email}}`,disconnected:`Verbindung zu Orca Cloud getrennt`},errors:{startFailed:`Anmeldevorgang für Orca Cloud konnte nicht gestartet werden.`,finishFailed:`Orca Cloud-Anmeldung konnte nicht abgeschlossen werden.`,passwordFailed:`Anmeldung mit dieser E-Mail und diesem Passwort fehlgeschlagen.`,passwordEmpty:`Bitte geben Sie sowohl E-Mail als auch Passwort ein.`,emptyPaste:`Bitte fügen Sie die Callback-URL aus Ihrem Browser ein.`,noCode:`Diese URL sieht nicht wie ein Orca Cloud-Callback aus (kein code-Parameter). Kopieren Sie die vollständige URL aus der Adressleiste.`}},localProfiles:{title:`Lokale Profile`,subtitle:`Slicer-Voreinstellungen aus OrcaSlicer importieren und verwalten`,import:`Profile importieren`,importDesc:`.bbscfg-, .bbsflmt-, .orca_filament-, .zip- oder .json-Dateien hier ablegen`,importing:`Importiere...`,search:`Lokale Voreinstellungen durchsuchen...`,noPresets:`Noch keine lokalen Voreinstellungen`,noSearchResults:`Keine Voreinstellungen entsprechen deiner Suche`,badge:`Lokal`,edit:`Bearbeiten`,delete:`Löschen`,cancel:`Abbrechen`,deleteConfirmTitle:`Voreinstellung löschen`,deleteConfirm:`Möchten Sie diese Voreinstellung wirklich löschen? Dies kann nicht rückgängig gemacht werden.`,source:`Quelle`,inheritsFrom:`Erbt von`,filamentType:`Typ`,vendor:`Hersteller`,compatiblePrinters:`Drucker`,nozzleTemp:`Düsentemperatur`,cost:`Kosten`,density:`Dichte`,pressureAdvance:`Druckvorschub`,filament:`Filament`,process:`Prozess`,printer:`Drucker`,toast:{importSuccess:`{{count}} Voreinstellung(en) importiert`,importSkipped:`{{count}} Voreinstellung(en) übersprungen (Duplikate)`,importError:`{{count}} Fehler beim Import`,deleted:`Voreinstellung gelöscht`,updated:`Voreinstellung aktualisiert`}},connectedAs:`Verbunden als`,logout:`Abmelden`,noLogoutPermission:`Sie haben keine Berechtigung zum Abmelden`,failedToLoad:`Profile konnten nicht geladen werden`,retry:`Erneut versuchen`,time:{justNow:`Gerade eben`,minsAgo:`vor {{count}}m`,hoursAgo:`vor {{count}}h`,daysAgo:`vor {{count}}d`},toast:{loggedOut:`Abgemeldet`},login:{title:`Mit Bambu Cloud verbinden`,subtitle:`Synchronisieren Sie Ihre Slicer-Voreinstellungen geräteübergreifend`,email:`E-Mail`,password:`Passwort`,region:`Region`,regionGlobal:`Global`,regionChina:`China`,verificationCode:`Bestätigungscode`,totpCode:`Authenticator-Code`,checkEmail:`Prüfen Sie Ihre E-Mail ({{email}}) für einen 6-stelligen Code`,enterTotpHint:`Geben Sie den 6-stelligen Code aus Ihrer Authenticator-App ein`,accessToken:`Zugriffstoken`,accessTokenHint:`Fügen Sie Ihr Bambu-Cloud-Zugriffstoken ein. Konten der Region China müssen diesen Weg nutzen (telefonnummerngebunden — kein E-Mail-Login). Im Wiki steht, wie Sie das Token aus den MakerWorld-Cookies auslesen.`,back:`Zurück`,loginButton:`Anmelden`,verifyButton:`Bestätigen`,setTokenButton:`Token setzen`,useToken:`Stattdessen Zugriffstoken verwenden`,useEmail:`Stattdessen mit E-Mail anmelden`,toast:{loggedIn:`Erfolgreich angemeldet`,codeSent:`Bestätigungscode an Ihre E-Mail gesendet`,enterTotp:`Geben Sie den Code aus Ihrer Authenticator-App ein`,tokenSet:`Token erfolgreich gesetzt`}},presets:{myPreset:`Mein Profil (bearbeitbar)`,duplicate:`Duplizieren`,editable:`Bearbeitbar`,failedToLoadDetails:`Profil-Details konnten nicht geladen werden`,deleteConfirm:`Dieses Profil löschen?`,deleteWarning:`"{{name}}" wird dauerhaft aus Bambu Cloud gelöscht. Dies kann nicht rückgängig gemacht werden.`,noDuplicatePermission:`Sie haben keine Berechtigung zum Duplizieren von Profilen`,noEditPermission:`Sie haben keine Berechtigung zum Bearbeiten von Profilen`,noDeletePermission:`Sie haben keine Berechtigung zum Löschen von Profilen`,types:{filament:`Filament-Profil`,printer:`Drucker-Profil`,process:`Prozess-Profil`},toast:{deleted:`Profil gelöscht`,created:`Profil erstellt`,updated:`Profil aktualisiert`,duplicated:`Profil dupliziert`,fieldAdded:`Feld "{{key}}" hinzugefügt`,exported:`Profil exportiert`},baseLabel:`Basis: {{name}}`,currentLabel:`Aktuell: {{name}}`,newPreset:`Neues Profil`,editPreset:`Profil bearbeiten`,duplicatePreset:`Profil duplizieren`,createNewPreset:`Neues Profil erstellen`,customizeSettings:`Passen Sie die Einstellungen für Ihr neues Profil an`,compareWithBase:`Mit Basis-Profil vergleichen`,compare:`Vergleichen`,basePreset:`Basis-Profil`,selectBasePreset:`Basis-Profil auswählen...`,presetName:`Profilname`,myCustomPreset:`Mein eigenes Profil`,inheritsFrom:`Erbt von`,dropJsonToImport:`JSON zum Importieren ablegen`,tabs:{common:`Allgemein`,allFields:`Alle Felder`},availableFields:`Verfügbare Felder`,searchFieldsPlaceholder:`Felder suchen...`,noMatchingFields:`Keine passenden Felder`,allFieldsAdded:`Alle Felder hinzugefügt`,addCustomField:`Eigenes Feld hinzufügen`,yourOverrides:`Ihre Überschreibungen`,noOverridesYet:`Noch keine Überschreibungen`,clickFieldsToAdd:`Klicken Sie links auf Felder, um sie hinzuzufügen`,saveAsTemplate:`Als Vorlage speichern`,jsonTip:`Tipp: Ziehen Sie eine .json-Datei auf dieses Fenster, um Einstellungen zu importieren`},cloudView:{searchPlaceholder:`Profile suchen...`,templates:`Vorlagen`,refresh:`Aktualisieren`,newPreset:`Neues Profil`,clearFilters:`Filter zurücksetzen`,compareMode:`Vergleichsmodus`,selectAnotherPreset:`Wählen Sie ein weiteres {{type}}-Profil`,clickTwoPresets:`Klicken Sie auf zwei Profile des gleichen Typs zum Vergleichen`,selectFirst:`1. Erstes auswählen`,selectSecond:`2. Zweites auswählen`,compareNow:`Jetzt vergleichen`,lastSynced:`Zuletzt synchronisiert:`,showingCount:`{{showing}} von {{total}} Profilen`,noPresetsFound:`Keine Profile gefunden`,columns:{filament:`Filament`,process:`Prozess`,printer:`Drucker`},noFilamentPresets:`Keine Filament-Profile`,noProcessPresets:`Keine Prozess-Profile`,noPrinterPresets:`Keine Drucker-Profile`,filters:{type:`Typ`,owner:`Besitzer`,printer:`Drucker`,nozzle:`Düse`,filament:`Filament`,layer:`Schicht`,all:`Alle`,myPresets:`Meine Profile`,builtIn:`Voreingestellt`,process:`Prozess`},noTemplatesPermission:`Sie haben keine Berechtigung, Vorlagen zu verwalten`,noRefreshPermission:`Sie haben keine Berechtigung, Profile zu aktualisieren`,noCreatePermission:`Sie haben keine Berechtigung, Profile zu erstellen`},templates:{title:`Schnellvorlagen`,noTemplates:`Noch keine Vorlagen`,createFirst:`Erstellen Sie Vorlagen aus dem Preset-Editor`,typeFilter:`Typ:`,deleteTitle:`Vorlage löschen`,deleteWarning:`Diese Aktion kann nicht rückgängig gemacht werden`,deleteConfirm:`Möchten Sie "{{name}}" wirklich löschen?`,namePlaceholder:`Vorlagenname`,descriptionPlaceholder:`Beschreibung`,settingsJson:`Einstellungen (JSON)`,fieldsCount:`{{count}} Felder`,shownInModals:`In Dialogen angezeigt`,hiddenInModals:`In Dialogen ausgeblendet`,apply:`Anwenden`,toast:{deleted:`Vorlage gelöscht`,updated:`Vorlage aktualisiert`,created:`Vorlage erstellt`,applied:`Vorlage angewendet`}}},support:{debugLoggingActive:`Debug-Protokollierung ist aktiv`,manageLogs:`Verwalten`,collectItem7:`Drucker-Verbindungsstatus und Firmware-Versionen`,collectItem8:`Integrationsstatus (Spoolman, MQTT, HA)`,collectItem9:`Netzwerkschnittstellen (nur Subnetze)`,collectItem10:`Python-Paketversionen`,collectItem11:`Datenbankzustandsprüfungen`,collectItem12:`Docker-Umgebungsdetails`,bundleGenerating:`Bundle wird erstellt...`,bundleStepConnection:`Drucker-Verbindungsprüfungen werden ausgeführt`,bundleStepVirtualPrinters:`Setup-Prüfungen für virtuelle Drucker werden ausgeführt`,bundleStepLogScan:`Aktuelle Protokolle werden auf bekannte Probleme überprüft`,bundleStepBuild:`Support-Bundle-ZIP wird erstellt`},fileManager:{title:`Dateimanager`,subtitle:`Organisieren und verwalten Sie Ihre Druckdateien`,uploadFiles:`Dateien hochladen`,newFolder:`Neuer Ordner`,folderName:`Ordnername`,folderNamePlaceholder:`z.B. Funktionsteile`,renameFile:`Datei umbenennen`,renameFolder:`Ordner umbenennen`,invalidFilenameChar:`Das Zeichen "{{char}}" ist in Druck-Dateinamen nicht erlaubt. Die SD-Karte des Druckers lehnt folgende Zeichen ab: < > : " / \\ | ? *`,moveFiles:`{{count}} Datei(en) verschieben`,rootNoFolder:`Stammverzeichnis (Kein Ordner)`,current:`aktuell`,linkFolder:`Ordner verknüpfen`,linkFolderDescription:`"{{name}}" mit einem Projekt oder Archiv verknüpfen für schnellen Zugriff.`,project:`Projekt`,archive:`Archiv`,noProjectsFound:`Keine Projekte gefunden`,noArchivesFound:`Keine Archive gefunden`,unlink:`Verknüpfung aufheben`,link:`Verknüpfen`,dragDropFiles:`Dateien hierher ziehen`,dropFilesHere:`Dateien hier ablegen`,releaseToUpload:`Loslassen zum Hochladen`,orClickToBrowse:`oder klicken zum Durchsuchen`,allFileTypesSupported:`Alle Dateitypen werden unterstützt. ZIP-Dateien werden extrahiert.`,zipFilesDetected:`ZIP-Dateien erkannt`,zipExtractOptions:`ZIP-Dateien werden extrahiert. Wählen Sie, wie die Ordnerstruktur behandelt werden soll:`,preserveZipStructure:`Ordnerstruktur aus ZIP beibehalten`,createFolderFromZip:`Ordner aus ZIP-Dateiname erstellen`,stlThumbnailGeneration:`STL-Vorschaubildgenerierung`,zipMayContainStl:`ZIP-Dateien können STL-Dateien enthalten. Vorschaubilder können während der Extraktion generiert werden.`,thumbnailsCanBeGenerated:`Vorschaubilder können für STL-Dateien generiert werden. Große Modelle benötigen möglicherweise mehr Zeit.`,generateThumbnailsForStl:`Vorschaubilder für STL-Dateien generieren`,threemfDetected:`3MF-Dateien erkannt`,threemfExtractionInfo:`Druckermodell, Material, Farbe und Druckeinstellungen werden automatisch aus 3MF-Dateien extrahiert.`,willBeExtracted:`Wird extrahiert`,filesExtracted:`{{count}} Dateien extrahiert`,uploadComplete:`Upload abgeschlossen: {{succeeded}} erfolgreich`,uploadFailed:`Hochladen fehlgeschlagen`,zipFilesFailed:`{{count}} Dateien fehlgeschlagen`,uploading:`Hochladen...`,changeLink:`Verknüpfung ändern...`,linkTo:`Verknüpfen mit...`,linkToProjectOrArchive:`Mit Projekt oder Archiv verknüpfen`,generateThumbnail:`Vorschaubild generieren`,generateThumbnails:`Vorschaubilder generieren`,generateThumbnailsForMissing:`Vorschaubilder für STL-Dateien ohne Vorschau generieren`,gridView:`Rasteransicht`,listView:`Listenansicht`,lowDiskSpaceWarning:`Warnung: Wenig Speicherplatz`,lowDiskSpaceDetails:`Nur {{free}} frei von {{total}} gesamt. Schwellenwert ist auf {{threshold}} GB eingestellt.`,files:`Dateien`,folders:`Ordner`,size:`Größe`,free:`Frei`,allFiles:`Alle Dateien`,allExternal:`Extern`,externalIsEmpty:`Keine externen Dateien`,externalEmptyDescription:`Dateien aus deinen verknüpften externen Ordnern erscheinen hier.`,wrap:`Umbrechen`,enableTextWrapping:`Textumbruch aktivieren`,disableTextWrapping:`Textumbruch deaktivieren`,collapse:`Einklappen`,collapseFoldersByDefault:`Ordner standardmäßig einklappen`,expandFoldersByDefault:`Ordner standardmäßig ausklappen`,folderSort:`Ordner sortieren`,folderSortByName:`Nach Name`,folderSortByActivity:`Nach letzter Aktivität`,dragToResizeTooltip:`Ziehen zum Ändern der Größe, Doppelklick zum Zurücksetzen`,searchFiles:`Dateien suchen...`,searchSubfoldersHint:`Inklusive Unterordner`,readme:{truncated:`Gekürzt`},tags:{title:`Tags`,subtitle:`Dateien mit Labels versehen — Spielzeug, kindersicher, nur PETG, was immer du willst.`,manage:`Tags`,manageTitle:`Tag-Katalog verwalten`,add:`Neuer Tag`,edit:`Tag umbenennen`,name:`Name`,fileCount:`Dateien`,empty:`Noch keine Tags. Erstelle einen, um Dateien zu kennzeichnen.`,noMatches:`Keine passenden Tags.`,createPlaceholder:`z. B. Spielzeug, kindersicher, petg`,createButton:`Erstellen`,nameRequired:`Name ist erforderlich.`,searchPlaceholder:`Tags filtern...`,created:`Tag erstellt.`,updated:`Tag umbenannt.`,deleted:`Tag entfernt.`,saveFailed:`Tag konnte nicht gespeichert werden.`,deleteFailed:`Tag konnte nicht entfernt werden.`,applyFailed:`Tags konnten nicht angewendet werden.`,applyAdd:`Tags hinzufügen`,applyRemove:`Tags entfernen`,applyAddSuccess:`{{count}} Tag(s) zu {{files}} Datei(en) hinzugefügt.`,applyRemoveSuccess:`{{count}} Tag(s) von {{files}} Datei(en) entfernt.`,actionAdd:`Zu ausgewählten Dateien hinzufügen`,actionRemove:`Von ausgewählten Dateien entfernen`,tagAction:`Tag`,bulkTitle:`{{count}} ausgewählte Datei(en) taggen`,bulkTooltip:`Tags für alle ausgewählten Dateien hinzufügen oder entfernen.`,noPermission:`Du hast keine Berechtigung, Dateien zu taggen.`,filterLabel:`Filtern nach:`,clearAll:`Alle entfernen`,confirmDelete:`Tag "{{name}}" löschen?`,confirmDeleteMessage:`Entfernt den Tag aus dem Katalog. Dateien behalten ihre übrigen Tags.`,confirmDeleteInUseMessage:`Dieser Tag ist auf {{count}} Datei(en). Beim Löschen verschwindet er von allen; die Dateien selbst bleiben unverändert.`,editAria:`{{name}} bearbeiten`,deleteAria:`{{name}} löschen`},allTypes:`Alle Typen`,prints:`Drucke`,ascending:`Aufsteigend`,descending:`Absteigend`,resultsCount:`{{showing}} von {{total}} Dateien`,selectAll:`Alle auswählen`,deselectAll:`Auswahl aufheben`,selected:`{{count}} ausgewählt`,adding:`Hinzufügen...`,loadingFiles:`Dateien werden geladen...`,folderIsEmpty:`Ordner ist leer`,noFilesYet:`Noch keine Dateien`,folderEmptyDescription:`Laden Sie Dateien hoch oder verschieben Sie Dateien in diesen Ordner.`,noFilesDescription:`Laden Sie Dateien hoch, um Ihre Druckdateien zu organisieren.`,noMatchingFiles:`Keine passenden Dateien`,noMatchingFilesDescription:`Keine Dateien entsprechen Ihren aktuellen Such- oder Filterkriterien.`,clearFilters:`Filter zurücksetzen`,printedCount:`{{count}}x gedruckt`,uploadedBy:`Hochgeladen von`,deleteFolder:`Ordner löschen`,deleteFile:`Datei löschen`,deleteFilesCount:`{{count}} Dateien löschen`,deleteFolderConfirm:`Möchten Sie diesen Ordner wirklich löschen? Alle Dateien darin werden ebenfalls gelöscht.`,deleteFileConfirm:`Möchten Sie diese Datei wirklich löschen?`,deleteFilesConfirm:`Möchten Sie {{count}} ausgewählte Dateien wirklich löschen? Diese Aktion kann nicht rückgängig gemacht werden.`,deleting:`Wird gelöscht...`,noPermissionRenameFolder:`Sie haben keine Berechtigung, Ordner umzubenennen`,noPermissionLinkFolder:`Sie haben keine Berechtigung, Ordner zu verknüpfen`,noPermissionDeleteFolder:`Sie haben keine Berechtigung, Ordner zu löschen`,noPermissionPrint:`Sie haben keine Berechtigung zum Drucken`,noPermissionSlice:`Sie haben keine Berechtigung, Dateien zu slicen`,noPermissionAddToQueue:`Sie haben keine Berechtigung, zur Warteschlange hinzuzufügen`,noPermissionDownload:`Sie haben keine Berechtigung, Dateien herunterzuladen`,noPermissionRenameFile:`Sie haben keine Berechtigung, diese Datei umzubenennen`,noPermissionGenerateThumbnail:`Sie haben keine Berechtigung, Vorschaubilder zu generieren`,noPermissionDeleteFile:`Sie haben keine Berechtigung, diese Datei zu löschen`,noPermissionCreateFolder:`Sie haben keine Berechtigung, Ordner zu erstellen`,noPermissionUpload:`Sie haben keine Berechtigung, Dateien hochzuladen`,noPermissionMoveFiles:`Sie haben keine Berechtigung, Dateien zu verschieben`,noPermissionDeleteFiles:`Sie haben keine Berechtigung, Dateien zu löschen`,linkExternal:`Extern verknüpfen`,linkExternalFolder:`Externen Ordner verknüpfen`,linkExternalFolderDescription:`Ein Host-Verzeichnis (NAS, USB, Netzlaufwerk) in den Dateimanager einbinden. Dateien werden nicht kopiert — sie werden direkt vom Originalpfad gelesen.`,externalFolderNamePlaceholder:`z.B. NAS-Drucke`,externalPath:`Host-Pfad`,externalPathHelp:`Absoluter Pfad zum Verzeichnis auf dem Docker-Host. Muss als Bind-Mount in den Container eingebunden sein.`,readOnly:`Nur Lesen`,readOnlyHelp:`verhindert Uploads und Löschungen`,showHiddenFiles:`Versteckte Dateien anzeigen (Punkt-Dateien)`,externalFolder:`Externer Ordner`,scanFolder:`Scannen`,toast:{folderCreated:`Ordner erstellt`,folderDeleted:`Ordner gelöscht`,fileDeleted:`Datei gelöscht`,filesDeleted:`{{count}} Dateien gelöscht`,filesMoved:`Dateien verschoben`,folderLinked:`Ordner verknüpft`,folderUnlinked:`Ordnerverknüpfung aufgehoben`,externalFolderLinked:`Externer Ordner verknüpft und gescannt`,folderScanned:`Scan abgeschlossen: {{added}} hinzugefügt, {{removed}} entfernt`,addedToQueue:`{{count}} Datei(en) zur Warteschlange hinzugefügt`,addedToQueuePartial:`{{added}} Datei(en) hinzugefügt, {{failed}} fehlgeschlagen`,failedToAddToQueue:`Fehler beim Hinzufügen: {{error}}`,fileRenamed:`Datei umbenannt`,folderRenamed:`Ordner umbenannt`,thumbnailsGenerated:`{{count}} Vorschaubild(er) generiert`,thumbnailsGeneratedPartial:`{{succeeded}} Vorschaubild(er) generiert, {{failed}} fehlgeschlagen`,noStlMissingThumbnails:`Keine STL-Dateien ohne Vorschaubild`,failedToGenerateThumbnails:`Fehler beim Generieren der Vorschaubilder: {{error}}`,thumbnailGenerated:`Vorschaubild generiert`,failedToGenerateThumbnail:`Fehler beim Generieren des Vorschaubildes: {{error}}`}},projects:{title:`Projekte`,subtitle:`Organisieren und verfolgen Sie Ihre 3D-Druckprojekte`,newProject:`Neues Projekt`,editProject:`Projekt bearbeiten`,deleteProject:`Projekt löschen`,projectName:`Projektname`,description:`Beschreibung`,noProjects:`Noch keine Projekte`,noProjectsFiltered:`Keine {{status}} Projekte`,noProjectsFilteredHelp:`Sie haben keine {{status}} Projekte. Projekte werden hier angezeigt, wenn sich ihr Status ändert.`,createFirst:`Erstellen Sie Ihr erstes Projekt, um verwandte Drucke zu organisieren, den Fortschritt zu verfolgen und Ihre Builds zu verwalten.`,createFirstButton:`Erstes Projekt erstellen`,create:`Erstellen`,files:`Dateien`,prints:`Drucke`,plates:`Platten`,parts:`Teile`,lastModified:`Zuletzt geändert`,deleteConfirm:`Möchten Sie dieses Projekt wirklich löschen? Archive und Warteschlangenelemente werden getrennt, aber nicht gelöscht.`,addFiles:`Dateien hinzufügen`,removeFile:`Datei entfernen`,viewDetails:`Details anzeigen`,namePlaceholder:`z.B. Voron 2.4 Build`,descriptionPlaceholder:`Optionale Beschreibung...`,urlLabel:`URL`,urlPlaceholder:`https://makerworld.com/...`,urlInvalid:`URL muss mit http:// oder https:// beginnen`,openExternalUrl:`Projekt-URL öffnen`,coverImageLabel:`Titelbild`,coverImageAlt:`Projekt-Titelbild`,coverImageUpload:`Hochladen`,coverImageReplace:`Ersetzen`,coverImageRemove:`Entfernen`,color:`Farbe`,targetPlates:`Ziel-Platten`,targetPlatesPlaceholder:`z.B. 25`,targetPlatesHelp:`Anzahl der Druckaufträge`,targetParts:`Ziel-Teile`,targetPartsPlaceholder:`z.B. 150`,targetPartsHelp:`Benötigte Objekte insgesamt`,tagsLabel:`Tags (kommagetrennt)`,tagsPlaceholder:`z.B. voron, funktional, geschenk`,dueDate:`Fälligkeitsdatum`,priority:`Priorität`,priorityLow:`Niedrig`,priorityNormal:`Normal`,priorityHigh:`Hoch`,priorityUrgent:`Dringend`,statusActive:`Aktiv`,statusCompleted:`Abgeschlossen`,statusArchived:`Archiviert`,done:`Fertig`,completed:`abgeschlossen`,failed:`fehlgeschlagen`,inQueue:`in Warteschlange`,noPrintsYet:`Noch keine Drucke`,printJobs:`Druckaufträge (Platten)`,partsPrinted:`Gedruckte Teile`,failedParts:`Fehlgeschlagene Teile`,import:`Importieren`,export:`Exportieren`,importProject:`Projekt importieren`,exportAll:`Alle Projekte exportieren`,loading:`Projekte werden geladen...`,noEditPermission:`Sie haben keine Berechtigung, Projekte zu bearbeiten`,noDeletePermission:`Sie haben keine Berechtigung, Projekte zu löschen`,noCreatePermission:`Sie haben keine Berechtigung, Projekte zu erstellen`,noImportPermission:`Sie haben keine Berechtigung, Projekte zu importieren`,noExportPermission:`Sie haben keine Berechtigung, Projekte zu exportieren`,toast:{created:`Projekt erstellt`,updated:`Projekt aktualisiert`,deleted:`Projekt gelöscht`,imported:`Projekt importiert`,multipleImported:`{{count}} Projekte importiert`,importFailed:`Import fehlgeschlagen`,exported:`Projekte exportiert (nur Metadaten)`}},projectDetail:{notFound:`Projekt nicht gefunden`,backToProjects:`Zurück zu Projekten`,export:`Exportieren`,exportProject:`Projekt exportieren`,noExportPermission:`Sie haben keine Berechtigung, Projekte zu exportieren`,noEditPermission:`Sie haben keine Berechtigung, Projekte zu bearbeiten`,partOf:`Teil von:`,priorityLabel:`Priorität:`,noPrints:`Noch keine Drucke in diesem Projekt`,status:{active:`Aktiv`,completed:`Abgeschlossen`,archived:`Archiviert`},priority:{low:`Niedrig`,normal:`Normal`,high:`Hoch`,urgent:`Dringend`},dueDate:{overdue:`Überfällig`,today:`Heute fällig`,daysLeft:`{{count}} Tage übrig`},progress:{platesProgress:`Platten-Fortschritt`,partsProgress:`Teile-Fortschritt`,printJobs:`Druckaufträge`,parts:`Teile`,percentComplete:`{{percent}}% abgeschlossen`,remaining:`{{count}} verbleibend`},stats:{printJobs:`Druckaufträge`,total:`gesamt`,failed:`{{count}} fehlgeschlagen`,partsPrinted:`{{count}} Teile gedruckt`,printTime:`Druckzeit`,filamentUsed:`Filament verbraucht`},cost:{title:`Kostenverfolgung`,filamentCost:`Filamentkosten`,energy:`Energie`,totalCost:`Gesamtkosten`,total:`Gesamt`,includesBom:`inkl. Stückliste`,budget:`Budget`,remaining:`Verbleibend`},subProjects:{title:`Unterprojekte ({{count}})`},notes:{title:`Notizen`,noEditPermission:`Sie haben keine Berechtigung, Notizen zu bearbeiten`,placeholder:`Notizen zu diesem Projekt hinzufügen...`,empty:`Noch keine Notizen. Klicken Sie auf Bearbeiten, um Notizen hinzuzufügen.`},files:{title:`Dateien`,linkFolders:`Ordner aus dem Dateimanager verknüpfen`,forQuickAccess:`für schnellen Zugriff auf dieses Projekt.`,fileCount:`{{count}} Datei(en)`,empty:`Keine Ordner verknüpft. Gehen Sie zum Dateimanager und verknüpfen Sie einen Ordner mit diesem Projekt.`,noFiles:`Keine Dateien in diesem Ordner.`},bom:{title:`Stückliste`,acquired:`{{completed}}/{{total}} beschafft`,showAll:`Alle anzeigen`,hideDone:`Erledigte ausblenden`,addPart:`Teil hinzufügen`,noAddPermission:`Sie haben keine Berechtigung, Teile hinzuzufügen`,partNamePlaceholder:`Teilename (z.B. M3x8 Schrauben)`,partName:`Teilename`,qty:`Menge`,price:`Preis ({{currency}})`,sourcingUrlPlaceholder:`Bezugsquelle-URL (optional)`,remarksPlaceholder:`Bemerkungen (optional)`,deletePart:`Teil löschen`,deleteConfirm:`Möchten Sie "{{name}}" wirklich löschen?`,noUpdatePermission:`Sie haben keine Berechtigung, Teile zu aktualisieren`,noEditPermission:`Sie haben keine Berechtigung, Teile zu bearbeiten`,noDeletePermission:`Sie haben keine Berechtigung, Teile zu löschen`,totalCost:`Gesamtkosten:`,empty:`Keine Teile in der Stückliste. Fügen Sie Hardware, Elektronik oder andere Komponenten hinzu, um zu verfolgen, was beschafft werden muss.`},timeline:{title:`Aktivitätsverlauf`,empty:`Noch keine Aktivität.`},template:{saveAsTemplate:`Als Vorlage speichern`,noCreatePermission:`Sie haben keine Berechtigung, Vorlagen zu erstellen`},queue:{title:`Warteschlange`,viewAll:`Alle anzeigen`,printing:`{{count}} druckend`,queued:`{{count}} in Warteschlange`},prints:{title:`Drucke ({{count}})`},toast:{projectUpdated:`Projekt aktualisiert`,partAdded:`Teil hinzugefügt`,partRemoved:`Teil entfernt`,exportFailed:`Export fehlgeschlagen`,projectExported:`Projekt exportiert`,templateCreated:`Vorlage erstellt`}},system:{title:`Systeminformationen`,version:`Version`,uptime:`Laufzeit`,cpuUsage:`CPU-Auslastung`,memoryUsage:`Speicherauslastung`,diskUsage:`Festplattenauslastung`,networkInfo:`Netzwerkinformationen`,logs:`Protokolle`,debugMode:`Debug-Modus`,enableDebug:`Debug-Protokollierung aktivieren`,disableDebug:`Debug-Protokollierung deaktivieren`,downloadLogs:`Protokolle herunterladen`,clearLogs:`Protokolle löschen`,dockerInfo:`Docker-Info`,containerName:`Container-Name`,imageName:`Image-Name`,platform:`Plattform`,architecture:`Architektur`},sponsors:{sectionTitle:`Unabhängig & von der Community finanziert`,tagline:`Bambuddy ist kostenlos und bleibt es, weil Menschen es freiwillig unterstützen. Kein VC, kein Cloud-Zwang.`,viewSupporters:`Unterstützer ansehen`,toastPrints:`Du hast {{count}} Drucke mit Bambuddy abgeschlossen. Bambuddy bleibt kostenlos dank seiner Unterstützer.`,toastCost:`Du hast {{total}} an Filament mit Bambuddy verfolgt. Sieh dir an, wer das Projekt unabhängig hält.`,toastArchives:`{{count}} Drucke mit Bambuddy archiviert. Sieh dir an, wer es unabhängig hält.`,toastAnniversary:`Ein Jahr mit Bambuddy! Sieh dir an, wer das Projekt unabhängig hält.`,toastVersionUpdate:`Aktualisiert auf v{{version}}. Bambuddy bleibt kostenlos dank seiner Unterstützer.`},library:{title:`Filament-Bibliothek`,addFilament:`Filament hinzufügen`,editFilament:`Filament bearbeiten`,deleteFilament:`Filament löschen`,vendor:`Hersteller`,material:`Material`,color:`Farbe`,kFactor:`K-Faktor`,temperature:`Temperatur`,noFilaments:`Keine Filamente in der Bibliothek`,deleteConfirm:`Möchten Sie dieses Filament wirklich löschen?`,importFromPrinter:`Vom Drucker importieren`,exportToFile:`In Datei exportieren`,runWithPipeline:{actionLabel:`Mit Pipeline ausführen`,noPermission:`Du hast keine Berechtigung, Pipelines auszuführen`,modalTitle:`Mit Pipeline ausführen`,confirmTitle:`Lauf bestätigen`,confirmIntro:`Pre-Flight hat Probleme mit diesem Lauf gefunden`,sourceHint:`Quelle`,pipelineHint:`Pipeline`,targetHint:`Ziel`,pipelineListAria:`Verfügbare Pipelines`,runAnyway:`Trotzdem ausführen`,loading:`Wird geladen…`,empty:`Noch keine Pipelines gespeichert. Öffne den Slice-Dialog und klicke „Als Pipeline speichern“, um eine zu erstellen.`,noTarget:`Kein Zieldrucker festgelegt`,noTargetMessage:`Diese Pipeline hat keinen Zieldrucker. Öffne sie in den Einstellungen, um einen festzulegen.`,copies:`Kopien`,copiesHint:`max. {{n}}`,classTarget:`Beliebiger {{model}}`,toast:{started:`Pipeline-Lauf gestartet`,failed:`Lauf konnte nicht gestartet werden`},issue:{printerNotSet:`Kein Zieldrucker für diese Pipeline festgelegt.`,printerNotFound:`Zieldrucker existiert nicht mehr.`,printerDisabled:`Zieldrucker ist deaktiviert.`,printerOffline:`Zieldrucker ist offline.`,filamentType:`Filament-Slot {{slot}}: erwartet {{expected}}, AMS hat {{actual}}`,filamentColor:`Filament-Slot {{slot}}: Farbe weicht ab (erwartet {{expected}}, AMS hat {{actual}})`,amsSlotMissing:`AMS-Slot {{slot}} ist auf diesem Drucker nicht verfügbar`,filamentUnverified:`Filament-Slot {{slot}} stammt aus einem Cloud-/Standard-Preset und konnte nicht statisch verifiziert werden.`,noClassMatches:`Keine Drucker in dieser Installation entsprechen der Zielmodellklasse der Pipeline ({{expected}}).`,classNotSet:`Pipeline-Ziel ist auf eine Druckerklasse gesetzt, aber kein Modell wurde gewählt.`}}},slice:{title:`Modell slicen`,action:`Slicen`,actionAll:`Alle {{count}} Plates slicen`,actionAllTitle:`Alle Plates in eine einzelne Multi-Plate-Ausgabe slicen (ein Archiv). Die Filamentauswahl gilt für jeden Slot des Projekts.`,allPlatesToggle:`Alle {{count}} Plates slicen`,slicing:`Slicen…`,printer:`Drucker-Profil`,process:`Prozess-Profil`,filament:`Filament-Profil`,filamentSlot:`Filament {{index}} – {{type}}`,selectPreset:`— Profil auswählen —`,loadingPresets:`Profile werden geladen…`,analyzingPlateFilaments:`Plattenfilamente werden analysiert…`,analyzingPlateFilamentsHint:`Es wird ein Probeschnitt ausgeführt, um die belegten AMS-Slots dieser Platte zu ermitteln. Wird zwischengespeichert — erneutes Öffnen ist sofort.`,previewToast:`{{name}} wird analysiert — {{elapsed}}`,previewWithProgress:`{{name}} wird analysiert — {{stage}} ({{percent}}%) — {{elapsed}}`,notUsedByPlate:`— wird von dieser Platte nicht verwendet`,noPresetsForSlot:`Keine Profile verfügbar`,otherPrinters:`Andere Drucker`,presetsLoadFailed:`Profile konnten nicht geladen werden. Importiere sie zuerst unter Einstellungen → Profile.`,refreshPresets:`Aktualisieren`,refreshPresetsTitle:`Profile neu laden — die aktuellen Cloud- und Bundle-Listen abrufen (nach dem Löschen eines Profils in Bambu Studio oder Bambu Handy verwenden)`,allPresetsRequired:`Alle Profile müssen ausgewählt sein`,enqueuing:`Slice-Auftrag wird übermittelt…`,queued:`In Warteschlange…`,failed:`Slicen fehlgeschlagen. Logs des Slicer-Sidecars prüfen.`,startedToast:`{{name}} wird im Hintergrund gesliced…`,queuedToast:`Warteschlange: {{name}} — {{elapsed}}`,runningToast:`{{name}} wird gesliced — {{elapsed}}`,runningWithProgress:`{{name}} – {{stage}} ({{percent}} %) – {{elapsed}}`,runningWithProgressMultiPlate:`Plate {{plateIndex}} von {{plateCount}} • {{name}} – {{stage}} ({{percent}} %) – {{elapsed}}`,completedToast:`{{name}} wurde gesliced`,failedTitle:`Slicen fehlgeschlagen`,failedToast:`Slicen von {{name}} fehlgeschlagen: {{detail}}`,tier:{local:`Importiert`,cloud:`Bambu Cloud`,orcaCloud:`Orca Cloud`,standard:`Standard`},cloud:{notAuthenticated:`In Bambu Cloud anmelden (Einstellungen → Profile → Bambu Cloud), um deine Cloud-Profile zu sehen.`,expired:`Bambu-Cloud-Sitzung abgelaufen — erneut anmelden, um die Cloud-Profile zu aktualisieren.`,unreachable:`Bambu Cloud ist gerade nicht erreichbar. Lokale und Standard-Profile funktionieren weiterhin.`},orcaCloud:{notAuthenticated:`Bei Orca Cloud anmelden (Profile → Orca Cloud), um Ihre Orca-Profile zu sehen.`,expired:`Orca Cloud-Sitzung abgelaufen — erneut anmelden, um die Orca-Profile zu aktualisieren.`,unreachable:`Orca Cloud ist derzeit nicht erreichbar. Andere Profile funktionieren weiterhin.`},bedType:{label:`Druckbett`,auto:`Auto (aus Prozess-Profil)`,coolPlate:`Cool Plate`,coolPlateSuperTack:`Cool Plate SuperTack`,engineering:`Engineering Plate`,highTemp:`High Temp Plate`,texturedPEI:`Textured PEI Plate`,smoothPEI:`Smooth PEI Plate`},pipelines:{label:`Pipeline`,applyAria:`Pipeline anwenden`,applyPrompt:`Pipeline anwenden…`,empty:`Keine gespeicherten Pipelines`,saveButton:`Als Pipeline speichern`,saveTitle:`Aktuelle Auswahl aller vier Slots als wiederverwendbare Pipeline speichern`,namePlaceholder:`Pipeline-Name`,nameAria:`Neuer Pipeline-Name`,toast:{applied:`„{{name}}“ angewendet`,saved:`Pipeline gespeichert`,saveFailed:`Speichern fehlgeschlagen`}}},spoolman:{title:`Spoolman-Integration`,enabled:`Spoolman aktiviert`,url:`Spoolman URL`,connected:`Verbunden`,disconnected:`Nicht verbunden`,testConnection:`Verbindung testen`,sync:`Synchronisieren`,syncing:`Synchronisiert...`,lastSync:`Letzte Synchronisierung`,linkToSpoolman:`Mit Spoolman verknüpfen`,openInSpoolman:`In Spoolman öffnen`,unlinkSpool:`Spule trennen`,unlinkConfirmTitle:`Spule entfernen?`,unlinkConfirmMessage:`Die Spule wird vom Slot entfernt. Die Spulendaten selbst bleiben unverändert.`,selectSpool:`Spule auswählen`,noUnlinkedSpools:`Keine nicht zugewiesenen Spulen verfügbar`,linkSuccess:`Spule erfolgreich zugewiesen`,linkFailed:`Spule konnte nicht zugewiesen werden`,unlinkSuccess:`Spule erfolgreich entfernt`,unlinkFailed:`Spule konnte nicht entfernt werden`,linkedSpool:`Zugewiesene Spule`,spoolId:`Spulen-ID`,fillSourceLabel:`(Spoolman)`,weight:`Gewicht`,remaining:`Verbleibend`,disableWeightSync:`AMS-Gewichtsschätzung deaktivieren`,disableWeightSyncDesc:`Verbleibende Kapazität nicht aus AMS-Schätzungen aktualisieren. Verwenden Sie dies, wenn Sie die Verbrauchserfassung von Spoolman gegenüber den prozentualen AMS-Schätzungen bevorzugen. Neue Spulen verwenden weiterhin die AMS-Schätzung als Anfangsgewicht.`,reportPartialUsage:`Teilverbrauch bei fehlgeschlagenen Drucken melden`,reportPartialUsageDesc:`Wenn ein Druck fehlschlägt oder abgebrochen wird, den geschätzten Filamentverbrauch bis zu diesem Zeitpunkt basierend auf dem Schichtfortschritt melden.`},locations:{title:`Lagerorte`,subtitle:`Regale, Schubladen und andere physische Lagerplätze für Spulen verwalten`,add:`Lagerort hinzufügen`,addShort:`Hinzufügen`,edit:`Lagerort bearbeiten`,name:`Name`,spools:`Spulen`,empty:`Noch keine Lagerorte. Erstellen Sie Ihr erstes Regal oder Ihre erste Schublade.`,manage:`Lagerorte`,createPlaceholder:`z. B. Regal A, Schublade 1`,nameRequired:`Name des Lagerorts ist erforderlich`,created:`Lagerort erstellt`,updated:`Lagerort aktualisiert`,deleted:`Lagerort gelöscht`,saveFailed:`Lagerort konnte nicht gespeichert werden`,deleteFailed:`Lagerort konnte nicht gelöscht werden`,deleteBlocked:`Entfernen Sie zuerst alle Spulen von diesem Lagerort`,confirmDelete:`„{{name}}“ löschen?`,confirmDeleteMessage:`Dieser Lagerort wird aus dem Katalog entfernt. Spulen müssen zuerst verschoben werden.`},inventory:{title:`Spulen-Inventar`,subtitle:`Verwalten Sie Ihre Spulen`,addToInventory:`Zum Inventar hinzufügen`,addToInventoryPending:`Wird hinzugefügt...`,addToInventorySuccess:`Spule zum Inventar hinzugefügt`,addToInventoryFailed:`Spule konnte nicht zum Inventar hinzugefügt werden`,unknownSpoolTitle:`Neues Filament erkannt`,unknownSpoolMessage:`An {{location}} wurde eine Spule mit unbekanntem RFID-Tag erkannt. Jetzt zum Inventar hinzufügen?`,unknownSpoolSlot:`Slot`,bulk:{selectAllVisible:`Alle sichtbaren auswählen`,selectRow:`Zeile auswählen`,selectGroup:`Gruppe auswählen`,selectionCount:`{{count}} ausgewählt`,edit:`Bearbeiten`,printLabels:`Etiketten drucken`,resetUsage:`Verbrauch zurücksetzen`,restore:`Wiederherstellen`,archive:`Archivieren`,delete:`Löschen`,clearSelection:`Auswahl aufheben`,editTitle:`Spulen sammelbearbeiten`,editSubtitle:`Wird auf {{count}} ausgewählte Spulen angewendet. Nur angekreuzte Felder werden aktualisiert.`,editHint:`In ein Feld tippen markiert es für die Aktualisierung — nur angekreuzte Zeilen werden gesendet. Leere Felder bleiben unverändert (Felder leeren geht nur pro Spule).`,useCustom:`„{{value}}" verwenden`,toggleField:`Aktualisierung für dieses Feld umschalten`,changeCount:`{{count}} Felder werden aktualisiert.`,applyPending:`Wird angewendet...`,applyButton:`Auf {{count}} Spulen anwenden`,deleteTitle:`Ausgewählte Spulen löschen`,archiveTitle:`Ausgewählte Spulen archivieren`,restoreTitle:`Ausgewählte Spulen wiederherstellen`,resetUsageTitle:`Verbrauch ausgewählter Spulen zurücksetzen`,deleteMessage:`{{count}} Spulen dauerhaft löschen? Dies kann nicht rückgängig gemacht werden.`,archiveMessage:`{{count}} Spulen archivieren? Sie können später wiederhergestellt werden.`,restoreMessage:`{{count}} archivierte Spulen wiederherstellen?`,resetUsageMessage:`Den "Gesamtverbrauch"-Zähler auf {{count}} Spulen zurücksetzen? Die verbleibende Menge bleibt erhalten.`,updateSuccess:`{{count}} Spulen aktualisiert`,updateFailed:`Sammelaktualisierung fehlgeschlagen`,updatePartial:`{{ok}} Spulen aktualisiert, {{failed}} fehlgeschlagen`,updateAllFailed:`Alle {{count}} Aktualisierungen fehlgeschlagen — Auswahl bleibt erhalten zum erneuten Versuch`,deleteSuccess:`{{count}} Spulen gelöscht`,deleteFailed:`Sammellöschung fehlgeschlagen`,deletePartial:`{{ok}} Spulen gelöscht, {{failed}} fehlgeschlagen`,deleteAllFailed:`Alle {{count}} Löschungen fehlgeschlagen — Auswahl bleibt erhalten zum erneuten Versuch`,archiveSuccess:`{{count}} Spulen archiviert`,archiveFailed:`Sammelarchivierung fehlgeschlagen`,archivePartial:`{{ok}} Spulen archiviert, {{failed}} fehlgeschlagen`,archiveAllFailed:`Alle {{count}} Archivierungen fehlgeschlagen — Auswahl bleibt erhalten zum erneuten Versuch`,restoreSuccess:`{{count}} Spulen wiederhergestellt`,restoreFailed:`Sammelwiederherstellung fehlgeschlagen`,restorePartial:`{{ok}} Spulen wiederhergestellt, {{failed}} fehlgeschlagen`,restoreAllFailed:`Alle {{count}} Wiederherstellungen fehlgeschlagen — Auswahl bleibt erhalten zum erneuten Versuch`,invalidHex:`6 Hex-Zeichen (RRGGBB) oder 8 (RRGGBBAA) eingeben. Anderenfalls wird das Feld nicht übernommen.`},spoolmanMixedContentTitle:`Spoolman lässt sich nicht über HTTPS laden — Browser blockiert gemischte Inhalte`,spoolmanMixedContentBody:`Bambuddy wird über HTTPS ausgeliefert (über deinen Reverse-Proxy), aber deine Spoolman-URL ist nach wie vor HTTP. Browser blockieren gemischte Inhalte aus Sicherheitsgründen, daher kann die eingebettete Spoolman-Oberfläche nicht geladen werden. Spoolman muss ebenfalls über HTTPS erreichbar sein.`,spoolmanMixedContentFixReverseProxy:`Stelle Spoolman hinter denselben Reverse-Proxy wie Bambuddy (Traefik / Nginx / Caddy) mit HTTPS und aktualisiere die Spoolman-URL in den Einstellungen auf die neue HTTPS-Adresse.`,spoolmanMixedContentFixOpenNewTab:`Als Workaround kannst du Spoolman in einem neuen Tab über HTTP öffnen — gemischte Inhalte werden nur innerhalb eingebetteter Frames blockiert, ein eigener Tab funktioniert weiterhin.`,spoolmanOpenInNewTab:`Spoolman in neuem Tab öffnen`,labels:{title:`Spulen-Etiketten drucken`,selectedCount:`{{count}} ausgewählt`,pickSpools:`Wählen Sie, für welche Spulen Etiketten gedruckt werden sollen:`,monochrome:`Monochrom (Schwarz-Weiß-Drucker)`,monochromeHint:`Entfernt das Farbfeld und verbreitert den Text`,searchPlaceholder:`Name, Marke oder #ID suchen`,filterByMaterial:`Material:`,allMaterials:`Alle`,selectVisible:`Alle sichtbaren auswählen ({{count}})`,deselectVisible:`Sichtbare abwählen`,clearAll:`Alle entfernen`,noSpoolsToShow:`Keine Spulen anzuzeigen. Filter anpassen und erneut versuchen.`,noMatches:`Keine Spulen entsprechen der aktuellen Suche oder dem Filter.`,printOne:`Etikett für diese Spule drucken`,printLabels:`Etiketten drucken…`,bulkTitle:`Spulen aus den aktuell angezeigten {{count}} zum Etikettieren auswählen`,noSpoolsTitle:`Keine Spulen zum Etikettieren`,error:`Etiketten konnten nicht erstellt werden: {{msg}}`,sortBy:{label:`Sortieren:`,id:`Nach ID`,color:`Nach Farbe`},templates:{amsHolderSmall:{label:`AMS-Halter — klein (74 × 33 mm)`,hint:`Ein Etikett pro Seite; passt zum druckbaren Etikett aus dem MakerWorld-Modell 752566 (AMS-Filament-Etikettenhalter).`},amsHolderLarge:{label:`AMS-Halter — groß (75 × 55 mm)`,hint:`Ein Etikett pro Seite; passt zur Kartoneinleger-Variante des AMS-Filament-Etikettenhalters. Genug Platz für Farbprobe, Marke, Material, ID und QR-Code.`},box40x30:{label:`Boxetikett (40 × 30 mm)`,hint:`Ein Etikett pro Seite; gängige DK/Brother-Rollengröße, ideal für Filament-Beutel und Lager-Etiketten.`},box:{label:`Box label (62 × 29 mm)`,hint:`Ein Etikett pro Seite; für Brother PT/QL und Dymo-Kleinetiketten dimensioniert.`},averyL7160:{label:`Avery L7160 — A4 sheet (38.1 × 63.5 mm × 21)`,hint:`EU-Bogenformat; 21 Etiketten pro A4-Seite.`},avery5160:{label:`Avery 5160 — US Letter sheet (25.4 × 66.7 mm × 30)`,hint:`US-Bogenformat; 30 Etiketten pro Letter-Seite.`}}},csv:{importButton:`CSV importieren`,exportButton:`CSV exportieren`,modalTitle:`Spulen aus CSV importieren`,selectFile:`CSV-Datei auswählen oder hierher ziehen`,dragHint:`Kopfzeile: material (erforderlich), brand, subtype, color_name, rgba, …`,parsing:`Datei wird gelesen…`,previewError:`CSV-Datei konnte nicht gelesen werden`,validCount:`{{count}} gültig`,errorCount:`{{count}} Fehler`,skippedCount:`{{count}} übersprungen`,colRow:`Zeile`,colStatus:`Status`,colColor:`Farbe`,colorResolved:`Farbe aus Katalog übernommen`,colorCrossMaterial:`Farbe von einem anderen Material übernommen — keine exakte Übereinstimmung im Katalog`,duplicateExisting:`Eine Spule mit diesem Material, dieser Marke und Farbe existiert bereits — sie wird trotzdem als neue Spule importiert`,spoolmanHint:`Im Spoolman-Modus den integrierten CSV-Import/-Export von Spoolman verwenden.`,importValidRows:`{{count}} gültige Zeilen importieren`,noValidRows:`Keine gültigen Zeilen`,importing:`Wird importiert…`,importSuccess:`{{count}} Spulen importiert`,importError:`Import fehlgeschlagen`,exportError:`Export fehlgeschlagen`},addSpool:`Spule hinzufügen`,copySpool:`Spule kopieren`,editSpool:`Spule bearbeiten`,material:`Material`,selectMaterial:`Material auswählen...`,subtype:`Untertyp`,brand:`Marke`,searchBrand:`Marke suchen...`,useCustomBrand:`"{{brand}}" verwenden`,useCustomMaterial:`Benutzerdefiniertes Material verwenden: {{material}}`,colorName:`Farbname`,colorNamePlaceholder:`Jadeweiß, Feuerrot...`,color:`Farbe`,hexColor:`Hex-Farbe`,pickColor:`Benutzerdefinierte Farbe wählen`,labelWeight:`Nenngewicht`,coreWeight:`Leergewicht der Spule`,searchSpoolWeight:`Spulengewicht suchen...`,weightUsed:`Verbraucht`,currentWeight:`Restgewicht`,measuredWeight:`Gemessenes Gewicht`,spoolName:`Spule`,costPerKg:`Kosten pro kg`,storageLocation:`Lagerstandort`,storageLocationPlaceholder:`z.B. Regal A, Schublade 1`,openInInventory:`Im Inventar öffnen`,measuredWeightError:`Das gemessene Gewicht muss zwischen {{min}}g und {{max}}g liegen.`,slicerFilament:`Slicer-Filament`,slicerFilamentName:`Slicer-Preset-Name`,slicerPreset:`Slicer-Preset`,searchPresets:`Filament-Presets suchen...`,selectedPreset:`Ausgewählt`,noPresetsFound:`Keine Presets gefunden`,tempOverrides:`Temperatur-Überschreibungen`,note:`Notiz`,notePlaceholder:`Zusätzliche Notizen zu dieser Spule...`,category:`Kategorie`,categoryPlaceholder:`z. B. Produktion, Prototyp, Kunde A`,categoryNone:`Ohne Kategorie`,storageLocationNone:`Kein Lagerort`,lowStockThresholdOverride:`Niedrigbestandsschwelle (diese Spule)`,lowStockThresholdOverrideHelp:`Leer lassen, um den globalen Schwellenwert ({{global}}%) zu verwenden.`,clearRfid:`RFID-Tag löschen`,rfidCleared:`RFID-Tag gelöscht`,archive:`Archivieren`,restore:`Wiederherstellen`,noSpools:`Noch keine Spulen. Fügen Sie Ihre erste Spule hinzu.`,noAvailableSpools:`Keine Spulen verfügbar. Fügen Sie eine Spule zum Inventar hinzu oder lösen Sie eine aus einem anderen Slot.`,kProfiles:`K-Profile`,addKProfile:`K-Profil hinzufügen`,assignSpool:`Spule zuweisen`,unassignSpool:`Zuweisung aufheben`,assignSuccess:`Spule zugewiesen und AMS-Slot konfiguriert`,assignPendingInsert:`Zugewiesen. Slot wird beim Einsetzen der Spule konfiguriert.`,assignFailed:`Spulenzuweisung fehlgeschlagen`,selectSpool:`Wählen Sie eine Spule für diesen Slot`,assigned:`Zugewiesen`,assigning:`Wird zugewiesen...`,searchSpools:`Spulen suchen...`,showAllSpools:`Alle Spulen anzeigen`,spoolmanSpools:`Spoolman-Spulen`,allMaterials:`Alle Materialien`,filterByBrand:`Nach Marke filtern...`,showArchived:`Archivierte anzeigen`,quickAdd:`Schnellerfassung (Lager)`,quantity:`Menge`,stock:`Lager`,configured:`Konfiguriert`,spoolsCreated:`{{count}} Spulen erstellt`,spoolsPartiallyCreated:`{{created}} von {{total}} Spulen erstellt (einige fehlgeschlagen)`,spoolCreated:`Spule erstellt`,spoolUpdated:`Spule aktualisiert`,spoolDeleted:`Spule gelöscht`,deepLinkSpoolNotFound:`Spule nicht gefunden`,deepLinkFetchFailed:`Spule konnte nicht geladen werden — bitte erneut versuchen`,spoolArchived:`Spule archiviert`,spoolRestored:`Spule wiederhergestellt`,kProfileSaveFailed:`K-Profil-Einstellungen konnten nicht gespeichert werden`,syncWeightSpoolNotFound:`Spule nicht gefunden — sie wurde möglicherweise gelöscht`,syncWeightSpoolmanUnreachable:`Spoolman ist nicht erreichbar — bitte später erneut versuchen`,syncWeightFailed:`Gewicht konnte nicht synchronisiert werden`,spoolmanUnreachable:`Spoolman ist nicht erreichbar — bitte später erneut versuchen`,deleteSpoolNotFound:`Spule nicht gefunden — sie wurde möglicherweise bereits gelöscht`,deleteFailed:`Spule konnte nicht gelöscht werden`,archiveSpoolNotFound:`Spule nicht gefunden — sie wurde möglicherweise bereits gelöscht`,archiveFailed:`Spule konnte nicht archiviert werden`,restoreSpoolNotFound:`Spule nicht gefunden — sie wurde möglicherweise bereits gelöscht`,restoreFailed:`Spule konnte nicht wiederhergestellt werden`,saveFailed:`Änderungen konnten nicht gespeichert werden`,tagClearFailed:`Tag konnte nicht gelöscht werden`,deleteConfirm:`Möchten Sie diese Spule wirklich löschen? Dies kann nicht rückgängig gemacht werden.`,archiveConfirm:`Möchten Sie diese Spule wirklich archivieren?`,advancedSettings:`Erweiterte Einstellungen`,filamentInfoTab:`Filament-Info`,paProfileTab:`PA-Profil`,filamentInfo:`Filament`,additional:`Zusätzlich`,loadingPresets:`Cloud-Presets werden geladen...`,cloudConnected:`Cloud verbunden`,cloudNotConnected:`Cloud nicht verbunden (Standardwerte)`,recentColors:`Zuletzt`,searchColors:`Farben suchen...`,searchResults:`Suchergebnisse`,allColors:`Alle Farben`,commonColors:`Häufige Farben`,showLess:`Weniger`,showAll:`Alle`,noColorsFound:`Keine Farben gefunden`,noResults:`Keine Ergebnisse`,extraColorsLabel:`Zusätzliche Farben`,extraColorsPlaceholder:`EC984C,#6CD4BC,A66EB9,D87694`,extraColorsHint:`2 bis 8 Hex-Stops, durch Kommas getrennt. Wird als Verlauf dargestellt.`,extraColorsInvalid:`Ungültige Hex-Werte ignoriert: {{tokens}}`,colorEffectLabel:`Effekt`,colorEffect:{none:`Keiner`,sparkle:`Glitzer`,wood:`Holz`,marble:`Marmor`,glow:`Leuchtend`,matte:`Matt`,silk:`Seide`,galaxy:`Galaxie`,rainbow:`Regenbogen`,metal:`Metallic`,translucent:`Lichtdurchlässig`,gradient:`Verlauf`,dualColor:`Zweifarbig`,triColor:`Dreifarbig`,multicolor:`Mehrfarbig`},selectMaterialFirst:`Bitte zuerst ein Material im Filament-Info Tab auswählen.`,noPrintersConfigured:`Keine Drucker konfiguriert. Fügen Sie Drucker hinzu.`,matchingFilter:`Filter`,anyBrand:`Jede Marke`,anyVariant:`Jede Variante`,autoSelect:`Auto-Auswahl`,matches:`Treffer`,match:`Treffer`,noMatches:`Keine Treffer`,connected:`Verbunden`,offline:`Offline`,printerOffline:`Drucker ist offline. Verbinden Sie ihn, um Kalibrierungsprofile anzuzeigen.`,noKProfilesMatch:`Keine K-Profile stimmen mit dem gewählten Filament überein.`,leftNozzle:`Linke Düse`,rightNozzle:`Rechte Düse`,profilesSelected:`Kalibrierungsprofil(e) ausgewählt`,totalInventory:`Gesamtbestand`,totalConsumed:`Gesamtverbrauch`,byMaterial:`Nach Material`,inPrinter:`Im Drucker`,lowStock:`Niedriger Bestand`,sinceTracking:`Seit Beginn der Erfassung`,resetConsumedCounter:`Zähler zurücksetzen`,resetConsumedCounterTooltip:`Den verbrauchten Gramm-Zähler dieser Spule auf null setzen. Das Restgewicht bleibt unverändert.`,resetConsumedCounterConfirm:`Verbrauchten Gramm-Zähler dieser Spule auf 0 zurücksetzen? Künftige Drucke zählen wieder ab null. Die Spule selbst, ihre Restgewichtsberechnung und Ihre Einstellungen bleiben unverändert.`,resetAllConsumedCounters:`Alle Zähler zurücksetzen`,resetAllConsumedCountersTooltip:`Den verbrauchten Gramm-Zähler auf jeder Spule auf null setzen. Die Restgewichte bleiben unverändert.`,resetAllConsumedCountersConfirm:`Verbrauchten Gramm-Zähler auf allen {{count}} Spulen (archivierte eingeschlossen) auf 0 zurücksetzen? Das löscht den Wert „Insgesamt verbraucht“, sodass künftige Drucke wieder ab null gezählt werden. Spulen und Restgewichte bleiben unverändert.`,consumedCounterReset:`Zähler zurückgesetzt`,allConsumedCountersReset:`Zähler für {{count}} Spule(n) zurückgesetzt`,resetConsumedCounterFailed:`Zähler konnte nicht zurückgesetzt werden`,loadedInAms:`Im AMS/Ext geladen`,remaining:`Verbleibend`,weightCheck:`Gewichtskontrolle`,lastWeighed:`Zuletzt gewogen`,neverWeighed:`Nie gewogen`,search:`Spulen suchen...`,showing:`Zeige`,to:`bis`,of:`von`,show:`Zeige`,spools:`Spulen`,spool:`Spule`,page:`Seite`,noSpoolsMatch:`Keine Ergebnisse`,noSpoolsMatchDesc:`Versuchen Sie, Ihre Suche oder Filter anzupassen.`,active:`Aktiv`,archived:`Archiviert`,all:`Alle`,used:`Verwendet`,new:`Neu`,clearFilters:`Filter löschen`,table:`Tabelle`,cards:`Karten`,net:`Netto`,groupSimilar:`Gruppieren`,groupedSpools:`{{count}} identische Spulen`,groupedRows:`Zeilen`,columns:`Spalten`,configureColumns:`Spalten konfigurieren`,configureColumnsDesc:`Ziehen zum Neuordnen oder Pfeile verwenden. Sichtbarkeit mit dem Augensymbol umschalten.`,visible:`sichtbar`,reset:`Zurücksetzen`,cancel:`Abbrechen`,applyChanges:`Änderungen anwenden`,moveUp:`Nach oben`,moveDown:`Nach unten`,hideColumn:`Spalte ausblenden`,showColumn:`Spalte einblenden`,linkToSpool:`Mit Spule verknüpfen`,tagLinked:`Tag mit Spule verknüpft`,tagLinkFailed:`Tag-Verknüpfung fehlgeschlagen`,tagAlreadyLinked:`Tag bereits mit anderer Spule verknüpft`,unknownTag:`Unbekannter RFID-Tag erkannt`,usageHistory:`Verbrauchshistorie`,noUsageHistory:`Noch kein Verbrauch erfasst`,printName:`Druckname`,weightConsumed:`Verbrauchtes Gewicht`,clearHistory:`Löschen`,historyCleared:`Verbrauchshistorie gelöscht`,fillSourceLabel:`(Inv)`,lowStockThresholdError:`Der Schwellenwert muss zwischen 0.1 und 99.9 liegen`,assignMismatchTitle:`Material stimmt nicht überein`,assignMismatchMessage:`Das ausgewählte Spulenmaterial "{{spoolMaterial}}" stimmt nicht mit dem Tray-Material "{{trayMaterial}}" für {{location}} überein. Trotzdem zuweisen?`,assignMismatchConfirm:`Trotzdem zuweisen`,assignPartialMismatchMessage:`Das Spulenmaterial "{{spoolMaterial}}" ist ähnlich, stimmt aber nicht genau mit "{{trayMaterial}}" in {{location}} überein. Möchten Sie fortfahren?`,assignProfileMismatchMessage:`Das Spulenprofil "{{spoolProfile}}" stimmt nicht mit dem Fachprofil "{{trayProfile}}" in {{location}} überein. Möchten Sie fortfahren?`,assignReconfigureNote:`Der AMS-Slot wird mit dem Profil der Spule neu konfiguriert.`,spoolmanFilamentCatalog:`Spoolman-Filamentkatalog`,pickFromSpoolmanCatalog:`Aus Spoolman-Katalog wählen…`,spoolmanFilamentSelected:`Filament aus Spoolman-Katalog ausgewählt`,spoolmanFilamentUnlinked:`Verknüpfung mit Filamentkatalog aufgehoben`,noSpoolmanFilaments:`Keine Filamente im Spoolman-Katalog gefunden`,spoolmanFilamentColorSwatch:`Filamentfarbe`,spoolWeightManagedBySpoolman:`Das Leerspulengewicht wird pro Filamenttyp in Spoolman verwaltet`,spoolmanCatalogLoadFailed:`Spoolman-Filamentkatalog konnte nicht geladen werden`},timelapse:{title:`Zeitraffer`,create:`Zeitraffer erstellen`,download:`Herunterladen`,delete:`Löschen`,preview:`Vorschau`,frameRate:`Bildrate`,quality:`Qualität`,processing:`Wird verarbeitet...`,noTimelapses:`Keine Zeitraffer verfügbar`},ams:{title:`AMS`,slot:`Slot`,empty:`Leer`,emptySlot:`Leerer Slot`,slotEmpty:`Leer`,slotUnconfigured:`?`,emptySlotReset:`Keine Spule zugewiesen`,unknown:`Unbekannt`,humidity:`Luftfeuchtigkeit`,temperature:`Temperatur`,filamentType:`Filamenttyp`,filamentColor:`Farbe`,remaining:`Verbleibend`,history:`AMS-Verlauf`,noHistory:`Kein Verlauf verfügbar`,configureSlot:`Slot konfigurieren`,externalSpool:`Externe Spule`,profile:`Profil`,kFactor:`K-Faktor`,fill:`Füllstand`,configure:`Konfigurieren`,used:`verwendet`,remainingUnit:`verbleibend`},printModal:{selectPrinter:`Drucker auswählen`,selectPlate:`Platte auswählen`,filamentMapping:`Filamentzuordnung`,totalCost:`Gesamtkosten:`,slotRemainingShort:` - {{grams}}g übrig`,printSettings:`Druckeinstellungen`,bedLeveling:`Bett-Nivellierung`,flowCalibration:`Fluss-Kalibrierung`,vibrationCalibration:`Vibrations-Kalibrierung`,layerInspection:`Erste-Schicht-Prüfung`,timelapse:`Zeitraffer`,cancel:`Abbrechen`,noPrintersAvailable:`Keine Drucker verfügbar`,printerBusy:`Drucker ist beschäftigt`,printerOffline:`Drucker ist offline`,sameTypeDifferentColor:`Gleicher Typ, andere Farbe`,filamentTypeNotLoaded:`Filamenttyp nicht geladen`,whenToPrint:`Wann drucken`,asap:`Sofort`,queue:`Warteschlange`,schedule:`Planen`,dateTime:`Datum & Uhrzeit`,invalidDateTime:`Bitte ein gültiges Datum und eine gültige Uhrzeit eingeben`,openCalendar:`Kalender öffnen`,requireManualStart:`Manuellen Start erfordern`,requirePreviousSuccess:`Nur starten, wenn der vorherige Druck erfolgreich war`,autoOffAfter:`Drucker nach Abschluss ausschalten`,helpAsap:`Der Druck wird oben in die Warteschlange eingefügt und startet, sobald ein geeigneter Drucker im Leerlauf ist.`,helpSchedule:`Der Druck startet zur geplanten Zeit, wenn der Drucker im Leerlauf ist. Wenn er belegt ist, wartet er, bis der Drucker verfügbar ist.`,helpQueue:`Der Druck wird hinten in die Warteschlange eingefügt.`,leftNozzle:`L`,rightNozzle:`R`,leftNozzleTooltip:`Linke Düse`,rightNozzleTooltip:`Rechte Düse`,filamentOverride:`Filament-Überschreibung`,filamentOverrideHint:`Filamente für modellbasierte Zuweisung optional überschreiben. Der Planer wird gegen die ausgewählten Filamente statt der ursprünglichen 3MF-Werte abgleichen.`,originalFilament:`Original`,overrideWith:`Ersetzen mit`,resetToOriginal:`Auf Original zurücksetzen`,insufficientFilamentTitle:`Nicht genug Filament`,insufficientFilamentMessage:`Einige zugewiesene Spulen haben weniger Filament als dieser Druck benötigt:`,insufficientFilamentLine:`{{printer}} - {{slot}}: benötigt {{required}}g, verbleibend {{remaining}}g`,printAnyway:`Trotzdem drucken`,forceColorMatch:`Farbe erzwingen`,staggerPrinterStarts:`Druckerstarts staffeln`,staggerGroupSize:`Gruppengröße`,staggerInterval:`Intervall (Min.)`,staggerPreview:`{{printers}} Drucker → {{groups}} Gruppen à {{size}}, Start alle {{interval}} Min.`,staggerLastGroup:`letzte Gruppe: {{count}}`,staggerTotal:`insgesamt: {{minutes}} Min.`,staggerToPrinters:`Gestaffelt an {{count}} Drucker senden`,gcodeInjection:`Auto-Print G-code einfügen`},backup:{includesEncryptionKey:`Lokale Sicherungen enthalten die MFA-Schlüsseldatei (DATA_DIR/.mfa_encryption_key), damit ein Backup-ZIP selbstkonsistent ist. Behandle das ZIP als sensibel — wer Zugriff auf die Datei hat, kann die darin enthaltenen OIDC-Client-Secrets und TOTP-Geheimnisse entschlüsseln.`,title:`Sichern & Wiederherstellen`,createBackup:`Sicherung erstellen`,restoreBackup:`Sicherung wiederherstellen`,restoreDescription:`Alle Daten aus einer Sicherungsdatei ersetzen`,downloadBackup:`Sicherung herunterladen`,uploadBackup:`Sicherung hochladen`,lastBackup:`Letzte Sicherung`,autoBackup:`Automatische Sicherung`,backupNow:`Jetzt sichern`,restoreWarning:`Warnung: Das Wiederherstellen einer Sicherung überschreibt alle aktuellen Daten.`,includeArchives:`Archive einschließen`,includeSettings:`Einstellungen einschließen`,includeProfiles:`Profile einschließen`,backupSuccess:`Sicherung erfolgreich erstellt`,restoreSuccess:`Sicherung erfolgreich wiederhergestellt`,backupFailed:`Sicherung fehlgeschlagen`,restoreFailed:`Wiederherstellung fehlgeschlagen`,restoreNote:`Virtueller Drucker wird während der Wiederherstellung gestoppt`,githubBackup:`Git-Backup`,enabled:`Aktiviert`,cloudLoginRequired:`Bambu Cloud Login erforderlich. Melden Sie sich unter Profile → Cloud-Profile an, um GitHub-Backup zu aktivieren.`,cloudLoginRequiredShort:`Cloud-Login erforderlich`,githubDescription:`Synchronisieren Sie Ihre Profile automatisch mit einem privaten GitHub-Repository für Backup und Versionsverlauf.`,repoIsPrivate:`Repository ist privat — Sicherung möglich.`,repoIsPublicWarning:`Das Repository ist ÖFFENTLICH. Bambuddy-Backups enthalten MQTT-Zugangsdaten, Home-Assistant-Tokens, Prometheus-Tokens, Ihre Bambu-Cloud-E-Mail-Adresse und über K-Profile auch Drucker-Zugangscodes. Speichern ist blockiert, bis Sie das Repository in den Einstellungen Ihres Anbieters auf privat stellen.`,repoVisibilityUnknown:`Die Sichtbarkeit des Repositories konnte nicht bestimmt werden. Bambuddy sichert nur in Repositories, die nachweislich privat sind; Speichern wird blockiert.`,repositoryUrl:`Repository-URL`,repoUrlPlaceholderGitHub:`https://github.com/username/repo-name`,repoUrlPlaceholderGitea:`https://gitea.example.com/username/repo-name`,repoUrlPlaceholderForgejo:`https://forgejo.example.com/username/repo-name`,repoUrlPlaceholderGitLab:`https://gitlab.com/username/repo-name`,allowInsecureHttp:`Unsicheres HTTP erlauben`,allowInsecureHttpHint:`Für selbst gehostete Instanzen in privaten Netzwerken ohne TLS aktivieren`,personalAccessToken:`Persönlicher Zugriffstoken`,tokenSaved:`(gespeichert)`,enterNewToken:`Neuen Token eingeben zum Aktualisieren`,tokenHint:`Feingranularer Token mit Lese-/Schreibberechtigung für Inhalte`,branch:`Branch`,provider:`Git-Anbieter`,providerGitHub:`GitHub`,providerGitLab:`GitLab`,providerGitea:`Gitea`,providerForgejo:`Forgejo`,manualOnly:`Nur manuell`,hourly:`Stündlich`,daily:`Täglich`,weekly:`Wöchentlich`,includeInBackup:`In Sicherung einschließen`,kProfiles:`K-Profile`,kProfilesDescription:`Druckvorschub-Kalibrierung von verbundenen Druckern`,noPrintersConnected:`Keine Drucker verbunden`,printersConnected:`{{connected}}/{{total}} verbunden`,cloudProfiles:`Cloud-Profile`,cloudProfilesDescription:`Filament-, Drucker- und Prozessprofile aus der Bambu Cloud`,appSettings:`App-Einstellungen`,appSettingsDescription:`Bambuddy-Konfiguration (komplette Datenbank)`,spoolInventory:`Spulenbestand`,spoolInventoryDescription:`Filamentspulen, Nutzungsverlauf und Kostenverfolgung`,printArchives:`Druckarchive`,printArchivesDescription:`Druckverlauf-Metadaten (keine GCode/3MF-Dateien)`,lastBackupAt:`Letzte Sicherung:`,noBackupsYet:`Noch keine Sicherungen`,next:`Nächste:`,startingBackup:`Sicherung wird gestartet...`,test:`Test`,enableBackup:`Sicherung aktivieren`,testConnection:`Verbindung testen`,enterRepoUrl:`Repository-URL eingeben`,enterRepoAndToken:`Repository-URL und Zugriffstoken eingeben`,repoRequired:`Repository-URL ist erforderlich`,tokenRequired:`Zugriffstoken ist erforderlich`,githubBackupEnabled:`GitHub-Backup aktiviert`,tokenUpdated:`Token aktualisiert`,settingsSaved:`Einstellungen gespeichert`,failedToSave:`Speichern fehlgeschlagen: {{message}}`,backupCompleteFiles:`Sicherung abgeschlossen - {{count}} Dateien aktualisiert`,backupSkippedNoChanges:`Sicherung übersprungen - keine Änderungen`,backupFailed2:`Sicherung fehlgeschlagen: {{message}}`,clearedLogs:`{{count}} Protokolle gelöscht`,failedToClearLogs:`Protokolle löschen fehlgeschlagen: {{message}}`,history:`Verlauf`,clear:`Löschen`,date:`Datum`,status:`Status`,commit:`Commit`,localBackup:`Lokale Sicherung`,localBackupDescription:`Erstellen Sie eine vollständige Sicherung Ihrer Bambuddy-Daten einschließlich Datenbank, Archive, Uploads und aller Dateien.`,downloadBackupLabel:`Sicherung herunterladen`,completeBackupZip:`Vollständige Sicherung: Datenbank + alle Dateien (ZIP)`,download:`Herunterladen`,preparingBackup:`Sicherung wird vorbereitet...`,creatingArchive:`Sicherungsarchiv wird erstellt... Dies kann bei großen Archiven eine Weile dauern.`,downloadingFile:`Sicherungsdatei wird heruntergeladen...`,backupDownloaded:`Sicherung erfolgreich heruntergeladen`,failedToCreateBackup:`Sicherung erstellen fehlgeschlagen: {{message}}`,restore:`Wiederherstellen`,restoreReplacesAll:`Wiederherstellung ersetzt alle Daten.`,restoreReplacesAllDetail:`Ihre aktuelle Datenbank und Dateien werden vollständig ersetzt. Nach der Wiederherstellung ist ein Neustart erforderlich.`,restoreConfirmTitle:`Sicherung wiederherstellen`,restoreConfirmMessage:`Sind Sie sicher, dass Sie von "{{filename}}" wiederherstellen möchten? Dies ersetzt Ihre aktuelle Datenbank und alle Dateien vollständig. Die Anwendung muss nach der Wiederherstellung neu gestartet werden.`,restoreConfirmButton:`Sicherung wiederherstellen`,uploadingFile:`Sicherungsdatei wird hochgeladen...`,backupRestoredRestart:`Sicherung wiederhergestellt. Bitte starten Sie Bambuddy neu.`,failedToRestore:`Sicherung wiederherstellen fehlgeschlagen. Bitte überprüfen Sie das Dateiformat.`,reloadNow:`Jetzt neu laden`,creatingBackup:`Sicherung erstellen`,restoringBackup:`Sicherung wiederherstellen`,preparing:`Vorbereiten...`,processing:`Verarbeiten...`,doNotClosePage:`Bitte schließen Sie diese Seite nicht und navigieren Sie nicht weg. Dieser Vorgang kann bei großen Sicherungen mehrere Minuten dauern.`,restoring:`Wiederherstellen...`,restoreComplete:`Wiederherstellung abgeschlossen`,restoreFailed2:`Wiederherstellung fehlgeschlagen`,importSettings:`Einstellungen aus einer Sicherungsdatei importieren`,pleaseWaitRestoring:`Bitte warten Sie, während Ihre Daten wiederhergestellt werden`,selectBackupFile:`Klicken Sie, um eine Sicherungsdatei auszuwählen (.json oder .zip)`,duplicateHandling:`So funktioniert die Duplikatbehandlung:`,matchPrinters:`Drucker`,matchPrintersBy:`abgeglichen nach Seriennummer`,matchSmartPlugs:`Smart Plugs`,matchSmartPlugsBy:`abgeglichen nach IP-Adresse`,matchNotificationProviders:`Benachrichtigungsanbieter`,matchNotificationProvidersBy:`abgeglichen nach Name`,matchFilaments:`Filamente`,matchFilamentsBy:`abgeglichen nach Name + Typ + Marke`,matchArchives:`Archive`,matchArchivesBy:`abgeglichen nach Inhaltshash (immer übersprungen)`,matchPendingUploads:`Ausstehende Uploads`,matchPendingUploadsBy:`abgeglichen nach Dateiname`,matchSettingsTemplates:`Einstellungen & Vorlagen`,matchSettingsTemplatesBy:`immer überschrieben`,replaceExisting:`Vorhandene Daten ersetzen`,keepExisting:`Vorhandene Daten behalten`,overwriteDescription:`Bereits vorhandene Elemente mit Sicherungsdaten überschreiben`,keepDescription:`Nur Elemente wiederherstellen, die noch nicht vorhanden sind`,overwriteCaution:`Achtung:`,overwriteWarning:`Das Überschreiben ersetzt Ihre aktuellen Konfigurationen durch Daten aus der Sicherung. Drucker-Zugangscodes werden aus Sicherheitsgründen nie überschrieben.`,cancel:`Abbrechen`,processingBackup:`Sicherungsdatei wird verarbeitet...`,itemsRestored:`Wiederhergestellt`,itemsSkipped:`Übersprungen`,restored:`Wiederhergestellt`,skippedAlreadyExist:`Übersprungen (bereits vorhanden)`,filesCategory:`Dateien (3MF, Thumbnails, etc.)`,andMore:`...und {{count}} weitere`,newApiKeysGenerated:`Neue API-Schlüssel generiert`,keysShownOnce:`Diese Schlüssel werden nur einmal angezeigt. Kopieren Sie sie jetzt!`,copy:`Kopieren`,noDataFound:`In der Sicherungsdatei wurden keine Daten zur Wiederherstellung gefunden.`,close:`Schließen`,scheduledBackup:`Geplante Backups`,scheduledBackupDescription:`Backup-Snapshots automatisch nach Zeitplan erstellen. Ausgabeverzeichnis kann auf einen NAS oder externen Speicher gemountet werden.`,frequency:`Frequenz`,backupTime:`Zeit`,retention:`Aufbewahrung`,retentionDescription:`Anzahl der zu behaltenden Backups`,outputPath:`Ausgabepfad`,outputPathPlaceholder:`Standard: {{path}}`,outputPathDescription:`Leer lassen für den Standardort`,runNow:`Jetzt ausführen`,backupFiles:`Backup-Dateien`,noScheduledBackups:`Noch keine Backups`,deleteBackup:`Löschen`,deleteBackupConfirm:`Diese Backup-Datei löschen?`,backupRunning:`Backup läuft...`,scheduledBackupComplete:`Backup erfolgreich abgeschlossen`,scheduledBackupFailed:`Backup fehlgeschlagen`,nextBackup:`Nächstes Backup`,backupSize:`Größe`,localTimeHint:`Ortszeit ({{tz}})`,defaultPathLabel:`Standard:`,categories:{settings:`Einstellungen`,notification_providers:`Benachrichtigungsanbieter`,notification_templates:`Benachrichtigungsvorlagen`,smart_plugs:`Smart Plugs`,printers:`Drucker`,filaments:`Filamente`,maintenance_types:`Wartungstypen`,archives:`Archive`,projects:`Projekte`,pending_uploads:`Ausstehende Uploads`,external_links:`Externe Links`,api_keys:`API-Schlüssel`}},tags:{title:`Tags`,addTag:`Tag hinzufügen`,editTag:`Tag bearbeiten`,deleteTag:`Tag löschen`,tagName:`Tag-Name`,tagColor:`Tag-Farbe`,noTags:`Keine Tags`,deleteConfirm:`Möchten Sie diesen Tag wirklich löschen?`,manageTags:`Tags verwalten`},uploadModal:{title:`3MF-Dateien hochladen`,dragDrop:`3MF-Dateien hierher ziehen`,or:`oder`,browseFiles:`Dateien durchsuchen`,extractionInfo:`Das Druckermodell wird automatisch aus den 3MF-Datei-Metadaten extrahiert.`,uploaded:`hochgeladen`,failed:`fehlgeschlagen`,uploading:`Wird hochgeladen...`,upload:`Hochladen`,uploadFailed:`Hochladen fehlgeschlagen`},editArchive:{title:`Archiv bearbeiten`,name:`Name`,namePlaceholder:`Druckname`,printer:`Drucker`,noPrinter:`Kein Drucker`,project:`Projekt`,noProject:`Kein Projekt`,itemsPrinted:`Gedruckte Teile`,itemsPrintedHelp:`Anzahl der in diesem Druckauftrag produzierten Teile`,notes:`Notizen`,notesPlaceholder:`Notizen zu diesem Druck hinzufügen...`,externalLink:`Externer Link`,externalLinkPlaceholder:`https://printables.com/model/...`,externalLinkHelp:`Link zu Printables, Thingiverse oder anderer Quelle`,tags:`Tags`,tagsPlaceholder:`Tags hinzufügen...`,addMoreTags:`Weitere Tags hinzufügen...`,matchingTags:`Übereinstimmend mit "{{query}}"`,existingTags:`Vorhandene Tags`,clickToAdd:`(zum Hinzufügen klicken)`,status:`Status`,failureReason:`Fehlergrund`,selectReason:`Grund auswählen...`,photos:`Fotos des Druckergebnisses`,photosHelp:`Klicken Sie auf + um Fotos Ihres Druckergebnisses hinzuzufügen`,printResult:`Druckergebnis`,saving:`Wird gespeichert...`,failureReasons:{adhesionFailure:`Haftungsfehler`,spaghettiDetached:`Spaghetti / Abgelöst`,layerShift:`Schichtversatz`,cloggedNozzle:`Verstopfte Düse`,filamentRunout:`Filament aufgebraucht`,warping:`Verformung`,stringing:`Fadenziehen`,underExtrusion:`Unterextrusion`,powerFailure:`Stromausfall`,userCancelled:`Vom Benutzer abgebrochen`,other:`Sonstiges`},statuses:{completed:`Abgeschlossen`,failed:`Fehlgeschlagen`,aborted:`Abgebrochen`,printing:`Druckt`}},kProfiles:{title:`K-Profile`,noPrintersConfigured:`Keine Drucker konfiguriert`,addPrinterInSettings:`Fügen Sie einen Drucker in den Einstellungen hinzu, um K-Profile zu verwalten`,noActivePrinters:`Keine aktiven Drucker`,enablePrinterConnection:`Aktivieren Sie eine Druckerverbindung, um K-Profile anzuzeigen`,loadingProfiles:`Lade K-Profile...`,printerOffline:`Drucker offline`,printerOfflineDesc:`Der ausgewählte Drucker ist nicht verbunden. Schalten Sie ihn ein, um K-Profile anzuzeigen.`,noMatchingProfiles:`Keine passenden Profile`,noMatchingProfilesDesc:`Keine Profile entsprechen Ihren Suchkriterien`,noKProfiles:`Keine K-Profile`,noKProfilesDesc:`Keine Druckvorschub-Profile für {{diameter}}mm Düse gefunden`,createFirstProfile:`Erstes Profil erstellen`,printer:`Drucker`,nozzle:`Düse`,refresh:`Aktualisieren`,addProfile:`Profil hinzufügen`,export:`Exportieren`,import:`Importieren`,select:`Auswählen`,selectAll:`Alle auswählen`,delete:`Löschen`,searchPlaceholder:`Nach Name oder Filament suchen...`,allExtruders:`Alle Extruder`,leftOnly:`Nur links`,rightOnly:`Nur rechts`,allFlow:`Alle Flusstypen`,hfOnly:`Nur HF`,sOnly:`Nur S`,sortName:`Sortieren: Name`,sortKValue:`Sortieren: K-Wert`,sortFilament:`Sortieren: Filament`,leftExtruder:`Linker Extruder`,rightExtruder:`Rechter Extruder`,modal:{addTitle:`K-Profil hinzufügen`,editTitle:`K-Profil bearbeiten`,profileName:`Profilname`,profileNamePlaceholder:`Mein PLA-Profil`,kValue:`K-Wert`,kValuePlaceholder:`0,020`,kValueHelp:`Typischer Bereich: 0,01 - 0,06 für PLA, 0,02 - 0,10 für PETG`,filament:`Filament`,selectFilament:`Filament auswählen...`,noFilamentsHelp:`Keine Filamente gefunden. Erstellen Sie zuerst ein K-Profil in Bambu Studio.`,flowType:`Flusstyp`,highFlow:`Hoher Durchfluss`,standard:`Standard`,nozzleSize:`Düsengröße`,extruder:`Extruder`,extruders:`Extruder`,left:`Links`,right:`Rechts`,notes:`Notizen (lokal gespeichert)`,notesPlaceholder:`Notizen zu diesem Profil hinzufügen...`,notesHelp:`Notizen werden in Bambuddy gespeichert, nicht auf dem Drucker`,syncing:`Synchronisiert mit Drucker...`,savingExtruder:`Speichern auf Extruder {{current}}/{{total}}...`,pleaseWait:`Bitte warten`},deleteConfirm:{title:`Profil löschen`,cannotUndo:`Dies kann nicht rückgängig gemacht werden`,message:`Möchten Sie "{{name}}" wirklich vom Drucker löschen?`},bulkDelete:{title:`Profile löschen`,cannotUndo:`Dies kann nicht rückgängig gemacht werden`,message:`Möchten Sie wirklich {{count}} ausgewählte Profile vom Drucker löschen?`},toast:{profileSaved:`K-Profil gespeichert`,profilesSaved:`K-Profil auf {{count}} Extrudern gespeichert`,selectAtLeastOneExtruder:`Bitte wählen Sie mindestens einen Extruder aus`,profileDeleted:`K-Profil gelöscht`,profilesDeleted:`{{count}} Profile gelöscht`,exportedProfiles:`{{count}} Profile exportiert`,importedProfiles:`{{count}} von {{total}} Profilen importiert`,noProfilesToExport:`Keine Profile zum Exportieren`,invalidFileFormat:`Ungültiges Dateiformat`,failedToParseImport:`Import-Datei konnte nicht gelesen werden`,failedToSaveBatch:`K-Profile konnten nicht gespeichert werden`,noteSaved:`Notiz gespeichert`,failedToSaveNote:`Notiz konnte nicht gespeichert werden`},permission:{noRead:`Sie haben keine Berechtigung, Profile zu aktualisieren`,noCreate:`Sie haben keine Berechtigung, Profile hinzuzufügen`,noUpdate:`Sie haben keine Berechtigung, K-Profile zu aktualisieren`,noDelete:`Sie haben keine Berechtigung, K-Profile zu löschen`,noExport:`Sie haben keine Berechtigung, Profile zu exportieren`,noImport:`Sie haben keine Berechtigung, Profile zu importieren`}},virtualPrinter:{title:`Virtueller Drucker`,running:`Läuft`,stopped:`Gestoppt`,description:{default:`Aktiviere einen virtuellen Drucker, der in Bambu Studio und OrcaSlicer erscheint. Dateien, die an diesen Drucker gesendet werden, werden direkt archiviert ohne zu drucken.`,proxy:`Aktiviere einen Proxy, der Slicer-Datenverkehr an einen echten Drucker weiterleitet, um Ferndruck über jedes Netzwerk zu ermöglichen.`},enable:{title:`Virtuellen Drucker aktivieren`,visibleInSlicer:`Sichtbar als "Bambuddy" in der Slicer-Erkennung`,proxyingTo:`Proxy zu {{name}}`,notActive:`Nicht aktiv`},model:{title:`Druckermodell`,description:`Wähle welches Druckermodell emuliert werden soll.`,restartWarning:`Das Ändern des Modells startet den virtuellen Drucker neu`},accessCode:{title:`Zugangscode`,isSet:`Zugangscode ist gesetzt`,notSet:`Kein Zugangscode gesetzt - erforderlich zum Aktivieren`,placeholder:`8-Zeichen-Code eingeben`,placeholderChange:`Neuen Code eingeben zum Ändern`,hint:`Muss genau 8 Zeichen lang sein. Wird von Slicern zur Authentifizierung verwendet.`,charCount:`({{count}}/8)`,inheritedFromTarget:`Vom Zieldrucker übernommen`,derivedFromTargetHint:`Verwendet den Zugangscode des Zieldruckers. Die Brücke leitet die Slicer-Authentifizierung an den echten Drucker weiter, daher müssen die Codes übereinstimmen — den Druckercode in dessen Einstellungen ändern.`,reveal:`Zugangscode anzeigen`,hide:`Zugangscode verbergen`},targetPrinter:{title:`Zieldrucker`,configured:`Proxy-Ziel konfiguriert`,notConfigured:`Kein Zieldrucker ausgewählt - erforderlich für Proxy-Modus`,placeholder:`Drucker auswählen...`,hint:`Wähle den Drucker aus, an den der Slicer-Datenverkehr weitergeleitet werden soll. Der Drucker muss im LAN-Modus sein.`,noPrinters:`Keine Drucker konfiguriert. Füge zuerst einen Drucker hinzu, um den Proxy-Modus zu verwenden.`},remoteInterface:{title:`Netzwerkschnittstelle überschreiben`,configured:`Schnittstellenüberschreibung aktiv`,optional:`Optional - verwenden wenn die automatisch erkannte IP falsch ist (z.B. mehrere NICs, Docker, VPN)`,placeholder:`Automatisch erkennen (Standard)...`,hint:`Überschreibt die per SSDP beworbene und im TLS-Zertifikat verwendete IP-Adresse. Nützlich wenn Bambuddy mehrere Netzwerkschnittstellen hat.`},mode:{title:`Modus`,archive:`Archivieren`,archiveDesc:`Dateien sofort archivieren`,review:`Überprüfen`,reviewDesc:`Vor dem Archivieren überprüfen`,queue:`Warteschlange`,queueDesc:`Archivieren und zur Warteschlange hinzufügen`,proxy:`Proxy`,proxyDesc:`An echten Drucker weiterleiten`},autoDispatch:{title:`Automatisch starten`,description:`Drucke automatisch starten, wenn sie zur Warteschlange hinzugefügt werden. Wenn deaktiviert, warten Drucke auf manuellen Start.`},queueForceColorMatch:{title:`Farbabgleich erzwingen`,description:`Druckaufträge nur an Drucker senden, bei denen der genaue Filament-Typ und die genaue Farbe geladen sind. Standardmäßig deaktiviert — ohne diese Option verwendet die Warteschlange nur den Drucker-Modell-Abgleich und wählt möglicherweise einen Drucker mit der falschen Farbe.`},gcodeInjection:{title:`G-code-Injektion`,description:`Wendet die in den Einstellungen pro Modell konfigurierten G-code-Snippets auf Jobs dieses VP an. Standardmäßig aus.`},tailscaleDisabled:{title:`Tailscale-Integration`,description:`Aktivieren, um diesen VP als per Tailscale erreichbar zu markieren. Zeigt die Tailscale-Adresse des Hosts an, damit du weißt, welche IP du im Slicer eintragen musst. Der CA-Import bleibt unverändert — diese Option hat keinen Einfluss auf Zertifikate.`},setupRequired:{title:`Einrichtung erforderlich`,description:`Die virtuelle Druckerfunktion erfordert zusätzliche Systemkonfiguration, bevor sie funktioniert. Dies beinhaltet Portweiterleitung, Firewall-Regeln und plattformspezifische Einstellungen.`,readGuide:`Lese die Einrichtungsanleitung vor dem Aktivieren`},archiveNameSource:{title:`Quelle des Archivnamens`,description:`Lege fest, wie neue Archive benannt werden, wenn Dateien über den virtuellen Drucker eintreffen. "Metadaten" verwendet den im 3MF eingebetteten Titel des Slicers (Standard). "Dateiname" nutzt den Dateinamen, den Bambu Studio per FTP gesendet hat. Hinweis: Bambu Studio überschreibt den im Dialog "Zum Drucker senden" eingegebenen Namen mit dem Titelfeld der 3MF, sofern eines vorhanden ist — beide Modi liefern daher oft denselben Wert.`,metadata:`Metadaten`,filename:`Dateiname`},caCert:{title:`Slicer-Zertifikat`,description:`Virtuelle Drucker verwenden ein TLS-Zertifikat, das von der Bambuddy-CA signiert ist. Importieren Sie dieses CA-Zertifikat einmalig in den Vertrauensspeicher Ihres Slicers, damit er die Verbindung akzeptiert — kein Abrufen über die Kommandozeile mehr nötig.`,copy:`Kopieren`,copied:`Kopiert`,download:`Herunterladen`,fingerprint:`SHA-256`},howItWorks:{title:`So funktioniert es`,step1:`Im selben LAN erscheinen virtuelle Drucker automatisch in deinem Slicer (Bambu Studio / OrcaSlicer). Aus anderen Netzwerken füge sie manuell per IP-Adresse und Zugangscode hinzu.`,step2:`Im Archiv-, Überprüfungs- und Warteschlangen-Modus verwende die "Senden"-Funktion im Slicer, um 3MF-Dateien an Bambuddy zu senden. Der Slicer zeigt "Druck erfolgreich" — die Datei wird gespeichert, nicht gedruckt.`,step3:`Im Proxy-Modus leitet der virtuelle Drucker den gesamten Datenverkehr an einen echten Drucker weiter — Drucke starten sofort wie bei einer direkten Verbindung.`},status:{title:`Status-Details`,printerName:`Druckername`,model:`Modell`,serialNumber:`Seriennummer`,mode:`Modus`,pendingFiles:`Ausstehende Dateien`,targetPrinter:`Zieldrucker`,ftpPort:`FTP-Port`,mqttPort:`MQTT-Port`,ftpConnections:`FTP-Verbindungen`,mqttConnections:`MQTT-Verbindungen`},toast:{updated:`Virtuelle Druckereinstellungen aktualisiert`,failedToUpdate:`Einstellungen konnten nicht aktualisiert werden`,copyFailed:`Kopieren fehlgeschlagen — bitte Text manuell markieren`,accessCodeRequired:`Bitte zuerst einen Zugangscode setzen`,targetPrinterRequired:`Bitte zuerst einen Zieldrucker auswählen`,bindIpRequired:`Bitte zuerst eine Bind-IP setzen`,accessCodeEmpty:`Zugangscode darf nicht leer sein`,accessCodeLength:`Zugangscode muss genau 8 Zeichen lang sein`,targetCodeChangedRebind:`Zugangscode wurde an den neuen Zieldrucker angepasst. Bitte dieses Gerät im Slicer neu hinzufügen, damit der neue Code übernommen wird.`,created:`Virtueller Drucker erstellt`,failedToCreate:`Virtueller Drucker konnte nicht erstellt werden`,deleted:`Virtueller Drucker gelöscht`,failedToDelete:`Virtueller Drucker konnte nicht gelöscht werden`},list:{title:`Virtuelle Drucker`,add:`Hinzufügen`,addFirst:`Virtuellen Drucker hinzufügen`,empty:`Keine virtuellen Drucker konfiguriert. Fügen Sie einen hinzu, um zu beginnen.`},bindIp:{title:`Bind-Interface`,placeholder:`Interface auswählen...`,hint:`Netzwerkinterface, an das dieser virtuelle Drucker gebunden wird. Muss pro Drucker eindeutig sein.`},proxy:{accessCodeHint:`Im Proxy-Modus den Zugangscode des Zieldruckers im Slicer verwenden. Die Verbindung wird transparent zum echten Drucker weitergeleitet.`},addDialog:{title:`Virtuellen Drucker hinzufügen`,name:`Name`,hint:`Sie können Zugangscode, Zieldrucker und andere Einstellungen nach dem Erstellen konfigurieren.`,create:`Erstellen`},deleteConfirm:{title:`Virtuellen Drucker löschen`,message:`Möchten Sie "{{name}}" wirklich löschen? Dies stoppt alle Dienste für diesen Drucker.`}},modelViewer:{openInSlicer:`Im Slicer öffnen`,tabs:{model:`3D-Modell`,gcode:`G-Code Vorschau`},notAvailable:`nicht verfügbar`,notSliced:`nicht geslicet`,plates:`Platten`,allPlates:`Alle Platten`,plateNumber:`Platte {{number}}`,plateCount:`{{count}} Platte`,plateCount_other:`{{count}} Platten`,objectCount:`{{count}} Objekt`,objectCount_other:`{{count}} Objekte`,filamentCount:`{{count}} Filament`,filamentCount_other:`{{count}} Filamente`,eta:`ETA {{minutes}} Min`,noPreview:`Keine Vorschau für diese Datei verfügbar`,pagination:{pageOf:`Seite {{current}} von {{total}}`,prev:`Zurück`,next:`Weiter`},errors:{failedToLoad:`Datei konnte nicht geladen werden`,noMeshes:`Keine Meshes in 3MF-Datei gefunden`,unsupportedFormat:`Nicht unterstütztes Dateiformat`}},maintenanceDescriptions:{lubricateCarbonRods:`Schmiermittel auf Karbonstäbe für sanfte Bewegung auftragen`,lubricateRails:`Schmiermittel auf Linearschienen für sanfte Bewegung auftragen`,cleanNozzle:`Hotend und Düse reinigen, um Verstopfungen zu verhindern`,checkBelts:`Riemenspannung für präzise Drucke überprüfen`,cleanBuildPlate:`Druckplatte für bessere Haftung reinigen`,checkExtruder:`Extruderzahnräder auf Verschleiß prüfen`,checkCooling:`Sicherstellen, dass Lüfter ordnungsgemäß funktionieren`,generalInspection:`Allgemeine Druckerinspektion`,cleanCarbonRods:`Karbonstäbe reinigen, um Reibung zu reduzieren`,lubricateSteelRods:`Schmiermittel auf Stahlstangen für sanfte Bewegung auftragen`,cleanSteelRods:`Stahlstangen reinigen, um Reibung zu reduzieren`,cleanLinearRails:`Linearschienen abwischen, um Staub und Schmutz zu entfernen`,checkPtfeTube:`PTFE-Schlauch auf Verschleiß oder Beschädigung prüfen`,replaceHepaFilter:`HEPA-Filter für Luftqualität ersetzen`,replaceCarbonFilter:`Aktivkohlefilter ersetzen`,lubricateLeftNozzleRail:`Linke Düsenschiene schmieren (H2-Serie)`},smartPlugs:{offline:`Offline`,admin:`Admin`,openPlugAdminPage:`Plug-Admin-Seite öffnen`,deleteSmartPlug:`Smart Plug löschen`,turnOnSmartPlug:`Smart Plug einschalten`,turnOffSmartPlug:`Smart Plug ausschalten`,turnOn:`Einschalten`,turnOff:`Ausschalten`,addSmartPlug:{scanningNetwork:`Netzwerk wird durchsucht...`,chooseEntity:`Entität auswählen...`,connectionFailed:`Verbindung fehlgeschlagen`,searchEntities:`Entitäten suchen...`,searchPowerSensors:`Leistungssensoren suchen...`,searchEnergySensors:`Energiesensoren suchen...`,placeholders:{plugName:`Wohnzimmer Steckdose`,mqttStateOnValue:`ON, true, 1`,mqttSameAsPower:`Gleich wie Leistungs-Topic oder anders`}},linkedTo:`Verbunden mit:`,monitorOnly:`Nur Überwachung`,alerts:`Alarme`,scheduleOn:`Ein {{time}}`,scheduleOff:`Aus {{time}}`,on:`Ein`,off:`Aus`,power:`Leistung`,kwhToday:`kWh Heute`,settings:`Einstellungen`,automationSettings:`Automatisierungseinstellungen`,showInSwitchbar:`In Schaltleiste anzeigen`,quickAccessSidebar:`Schnellzugriff über Seitenleiste`,enabled:`Aktiviert`,enableAutomation:`Automatisierung für diesen Stecker aktivieren`,autoOn:`Auto Ein`,autoOnDescription:`Einschalten wenn Druck startet`,autoOff:`Auto Aus`,autoOffDescription:`Ausschalten wenn Druck abgeschlossen (einmalig)`,autoOffPersistent:`Aktiviert lassen`,autoOffPersistentDescription:`Zwischen Drucken aktiviert bleiben statt einmalig`,autoOffAfterDrying:`Automatisch aus nach Trocknung`,autoOffAfterDryingDescription:`Ausschalten, wenn AMS-Trocknung abgeschlossen ist`,delayAfterDryingMinutes:`Verzögerung nach Trocknung (Minuten)`,turnOffDelayMode:`Ausschaltverzögerungsmodus`,time:`Zeit`,temp:`Temp.`,delayMinutes:`Verzögerung (Minuten)`,tempThreshold:`Temperaturschwelle (°C)`,tempThresholdDescription:`Schaltet aus wenn die Düse unter diese Temperatur abkühlt`,edit:`Bearbeiten`,deleteConfirm:`Möchten Sie "{{name}}" wirklich löschen? Dies kann nicht rückgängig gemacht werden.`,turnOnConfirm:`Möchten Sie "{{name}}" wirklich einschalten?`,turnOffConfirm:`Möchten Sie "{{name}}" wirklich ausschalten? Dies unterbricht die Stromversorgung des angeschlossenen Geräts.`,failedToTurn:`{{name}}" konnte nicht {{action}} werden`,unknown:`Unbekannt`,addTitle:`Smart Plug hinzufügen`,editTitle:`Smart Plug bearbeiten`,stopScanning:`Suche beenden`,discoverTasmota:`Tasmota Geräte suchen`,foundDevices:`{{count}} Gerät(e) gefunden - zum Auswählen klicken:`,noDevicesFound:`Keine Tasmota Geräte in Ihrem Netzwerk gefunden`,haNotConfigured:`Home Assistant ist nicht konfiguriert. Einrichtung unter`,haSettingsPath:`Einstellungen → Netzwerk → Home Assistant`,selectEntity:`Entität auswählen *`,ipAddress:`IP-Adresse *`,nameLabel:`Name *`,username:`Benutzername`,password:`Passwort`,authHint:`Leer lassen, wenn Ihr Tasmota-Gerät keine Authentifizierung benötigt`,linkToPrinter:`Mit Drucker verbinden`,noPrinter:`Kein Drucker (nur manuelle Steuerung)`,linkingDescription:`Verknüpfung ermöglicht automatisches Ein-/Ausschalten bei Druckstart/-ende`,powerAlerts:`Leistungsalarme`,alertAbove:`Alarm wenn über (W)`,alertBelow:`Alarm wenn unter (W)`,alertDescription:`Benachrichtigung wenn der Stromverbrauch diese Schwellenwerte überschreitet. Leer lassen um diese Richtung zu deaktivieren.`,dailySchedule:`Tagesplan`,turnOnAt:`Einschalten um`,turnOffAt:`Ausschalten um`,scheduleDescription:`Den Stecker automatisch täglich zu diesen Zeiten ein-/ausschalten. Leer lassen um diese Aktion zu überspringen.`,showOnPrinterCard:`Auf Druckerkarte anzeigen`,displayOnPrinterCard:`Schaltfläche auf Druckerkarte anzeigen`,connectedResult:`Verbunden!`,deviceLabel:`Gerät: {{name}} - `,stateLabel:`Status: {{state}}`,test:`Test`,delete:`Löschen`,save:`Speichern`,add:`Hinzufügen`,cancel:`Abbrechen`,failedToStartScan:`Suche konnte nicht gestartet werden`,nameRequired:`Name ist erforderlich`,entityRequired:`Entität ist für Home Assistant Stecker erforderlich`,mqttTopicRequired:`Mindestens ein MQTT-Topic muss für Leistung, Energie oder Statusüberwachung konfiguriert sein`,loadingEntities:`Entitäten werden geladen...`,loading:`Laden...`,failedToLoadEntities:`Entitäten konnten nicht geladen werden: {{error}}`,noEntitiesMatching:`Keine Entitäten gefunden die "{{search}}" entsprechen`,noEntitiesAvailable:`Keine Entitäten verfügbar`,searchingEntities:`Alle Entitäten durchsuchen ({{count}} gefunden)`,showingEntities:`Zeige switch, light, input_boolean ({{count}} verfügbar)`,energyMonitoringOptional:`Energieüberwachung (Optional)`,energyMonitoringHint:`Sensoren suchen und auswählen, die Leistungs-/Energiedaten liefern.`,powerSensorW:`Leistungssensor (W)`,energyTodayKwh:`Energie Heute (kWh)`,totalEnergyKwh:`Gesamtenergie (kWh)`,noMatchingSensors:`Keine passenden Sensoren`,none:`Keine`,mqttNotConfigured:`MQTT-Broker nicht konfiguriert. Broker-Adresse einstellen unter`,mqttSettingsPath:`Einstellungen → Netzwerk → MQTT-Veröffentlichung`,mqttNotConfiguredSuffix:`(Sie müssen die Veröffentlichung nicht aktivieren, nur die Broker-Details ausfüllen).`,mqttMonitorOnlyDescription:`MQTT-Stecker empfangen Leistungs-/Energiedaten über MQTT-Abonnement. Ein-/Ausschalten ist nicht verfügbar - verwenden Sie Ihren MQTT-Broker oder Ihr Home-Automation-System.`,powerMonitoring:`Leistungsüberwachung`,energyMonitoring:`Energieüberwachung`,stateMonitoring:`Statusüberwachung`,optional:`optional`,topic:`Thema`,jsonPath:`JSON-Pfad`,multiplier:`Multiplikator`,onValue:`EIN-Wert`,mqttPowerHint:`JSON-Pfad extrahiert Wert aus JSON-Payload (z.B. "power_l1"). Leer lassen wenn Topic rohe numerische Werte sendet. @@ -41,11 +41,11 @@ mW→W için 0.001, kW→W için 1000 çarpanı kullanın.`,mqttEnergyHint:`JSON Wh→kWh için 0.001, MWh→kWh için 1000 çarpanı kullanın.`,mqttStateHint:`JSON yolu JSON yükten değer çıkarır. Ham değerler için boş bırakın. ON değeri: "ON" anlamına gelen tam string. Otomatik algılama için boş bırakın (ON, true, 1).`,restControl:`Kontrol`,restOnUrl:`AÇ URL'si`,restOffUrl:`KAPAT URL'si`,restOnBody:`AÇ İstek Gövdesi`,restOffBody:`KAPAT İstek Gövdesi`,restMethod:`HTTP Yöntemi`,restHeaders:`Özel Başlıklar (JSON)`,restStatusUrl:`Durum URL'si`,restStatusPath:`Durum JSON Yolu`,restStatusOnValue:`ON Değeri`,restPowerUrl:`Güç URL'si`,restPowerPath:`Güç JSON Yolu`,restPowerMultiplier:`Güç Çarpanı`,restEnergyUrl:`Enerji URL'si`,restEnergyPath:`Enerji JSON Yolu`,restEnergyMultiplier:`Enerji Çarpanı`,restUrlRequired:`REST prizleri için en az bir URL (ON veya OFF) gerekli`,restHeadersHint:`örn. {"Authorization": "Bearer your-token"}`,restBodyHint:`örn. ON, {"state": "on"}`,restStatusHint:`Mevcut durumu sorgulamak için URL`,restPathHint:`örn. state veya data.power.status`,restPowerUrlHint:`Güç verisi için ayrı URL (boşsa Durum URL'sini kullanır)`,restEnergyUrlHint:`Enerji verisi için ayrı URL (boşsa Durum URL'sini kullanır)`,restEnergyHint:`Her değer kendi URL'sini kullanabilir veya Durum URL'sine geri dönebilir. Birim dönüşümü için çarpanları kullanın (örn. Wh'yi kWh'ye dönüştürmek için 0.001).`,testConnection:`Bağlantıyı Test Et`,connectionSuccess:`Bağlantı başarılı`,noSwitchesInSwitchbar:`Anahtar çubuğunda anahtar yok`,enableSwitchbarHint:`Ayarlar > Akıllı Prizler'de "Anahtar Çubuğunda Göster"i etkinleştirin`},notifications:{providerTypes:{callmebot:`CallMeBot/WhatsApp`,ntfy:`ntfy`,pushover:`Pushover`,telegram:`Telegram`,email:`E-posta`,discord:`Discord`,webhook:`Webhook`,homeassistant:`Home Assistant`},providerDescriptions:{email:`SMTP e-posta bildirimleri`,telegram:`Telegram botu üzerinden bildirimler`,discord:`Webhook üzerinden Discord kanalına gönder`,ntfy:`Ücretsiz, kendi barındırılabilir push bildirimleri`,pushover:`Basit, güvenilir push bildirimleri`,callmebot:`CallMeBot üzerinden ücretsiz WhatsApp bildirimleri`,webhook:`Herhangi bir URL'ye genel HTTP POST`,homeassistant:`Home Assistant gösterge panelinde kalıcı bildirimler`},lastSuccess:`Son: {{date}}`,error:`Hata`,printer:`Yazıcı:`,allPrinters:`Tüm yazıcılar`,sendTestNotification:`Test Bildirimi Gönder`,eventSettings:`Olay Ayarları`,enabled:`Etkin`,sendFromProvider:`Bu sağlayıcıdan bildirim gönder`,printEvents:`Baskı Olayları`,printerStatus:`Yazıcı Durumu`,amsAlarms:`AMS Alarmları`,amsHtAlarms:`AMS-HT Alarmları`,printQueue:`Baskı Kuyruğu`,start:`Başlangıç`,plateCheck:`Plaka Kontrolü`,complete:`Tamamlandı`,failed:`Başarısız`,stopped:`Durduruldu`,progress:`İlerleme`,offline:`Çevrimdışı`,lowFilament:`Az Filament`,maintenance:`Bakım`,amsHumidity:`AMS Nemi`,amsTemp:`AMS Sıcaklığı`,amsHtHumidity:`AMS-HT Nemi`,amsHtTemp:`AMS-HT Sıcaklığı`,bedCooled:`Tabla Soğudu`,firstLayer:`İlk Katman`,quiet:`Sessiz`,digest:`Özet {{time}}`,printStarted:`Baskı Başladı`,plateNotEmpty:`Plaka Boş Değil`,plateNotEmptyDescription:`Baskıdan önce nesneler algılandı`,printCompleted:`Baskı Tamamlandı`,bedCooledLabel:`Tabla Soğudu`,bedCooledDescription:`Baskıdan sonra tabla eşiğin altına soğudu`,firstLayerCompleteLabel:`İlk Katman Tamamlandı`,firstLayerCompleteDescription:`İlk katman bittiğinde anlık görüntüyle bildir`,missingSpoolAssignmentLabel:`Eksik Makara Ataması`,missingSpoolAssignmentDescription:`Baskı başladığında ve gerekli tepsilerin atanmış makarası olmadığında bildir`,printFailed:`Baskı Başarısız`,printStopped:`Baskı Durduruldu`,progressMilestones:`İlerleme Kilometre Taşları`,progressMilestonesDescription:`%25, %50, %75'te bildir`,printerOffline:`Yazıcı Çevrimdışı`,printerError:`Yazıcı Hatası`,aiFailureDetection:`AI Hata Tespiti`,aiFailureDetectionDescription:`Obico AI olası bir baskı hatası tespit ettiğinde bildir`,lowFilamentLabel:`Az Filament`,maintenanceDue:`Bakım Zamanı`,maintenanceDueDescription:`Bakım gerektiğinde bildir`,amsHumidityHigh:`AMS Nemi Yüksek`,amsHumidityHighDescription:`Normal AMS nemi eşiği aşıyor`,amsTemperatureHigh:`AMS Sıcaklığı Yüksek`,amsTemperatureHighDescription:`Normal AMS sıcaklığı eşiği aşıyor`,amsHtHumidityHigh:`AMS-HT Nemi Yüksek`,amsHtHumidityHighDescription:`AMS-HT nemi eşiği aşıyor`,amsHtTemperatureHigh:`AMS-HT Sıcaklığı Yüksek`,amsHtTemperatureHighDescription:`AMS-HT sıcaklığı eşiği aşıyor`,inventoryAlerts:`Envanter Uyarıları`,stockReorderAlert:`Yeniden Sipariş Uyarısı`,stockReorderAlertDescription:`SKU yeniden sipariş noktasına ulaştı`,stockBreakAlert:`Stok Tükenme Uyarısı`,stockBreakAlertDescription:`Yenileme gelmeden stok tükenecek`,jobAdded:`İş Eklendi`,jobAddedDescription:`İş kuyruğa eklendi`,jobAssigned:`İş Atandı`,jobAssignedDescription:`Model tabanlı iş yazıcıya atandı`,jobStarted:`İş Başladı`,jobStartedDescription:`Kuyruk işi yazdırmaya başladı`,jobWaiting:`İş Bekliyor`,jobWaitingDescription:`İş filament veya yazıcı için bekliyor`,jobSkipped:`İş Atlandı`,jobSkippedDescription:`İş atlandı (önceki başarısız oldu)`,jobFailed:`İş Başarısız`,jobFailedDescription:`İş başlatılamadı`,queueComplete:`Kuyruk Tamamlandı`,queueCompleteDescription:`Tüm kuyruk işleri bitti`,quietHours:`Sessiz Saatler`,noNotificationsDuring:`Bu saatler arasında bildirim yok`,editProviderToChangeQuietHours:`Sessiz saatleri değiştirmek için sağlayıcıyı düzenleyin`,dailyDigest:`Günlük Özet`,batchNotifications:`Bildirimleri tek bir günlük özette topla`,sendAt:`{{time}}'de gönder`,editProviderToChangeDigestTime:`Özet saatini değiştirmek için sağlayıcıyı düzenleyin`,edit:`Düzenle`,deleteProvider:`Bildirim Sağlayıcısını Sil`,deleteConfirm:`"{{name}}" silmek istediğinizden emin misiniz? Bu geri alınamaz.`,delete:`Sil`,addTitle:`Bildirim Sağlayıcısı Ekle`,editTitle:`Bildirim Sağlayıcısını Düzenle`,nameLabel:`Ad *`,namePlaceholder:`Bildirimlerim`,providerTypeLabel:`Sağlayıcı Türü *`,configuration:`Yapılandırma`,testConfiguration:`Yapılandırmayı Test Et`,printerFilter:`Yazıcı Filtresi`,onlyFromPrinter:`Yalnızca bu yazıcının olayları için bildirim gönder`,quietHoursDnd:`Sessiz Saatler (Rahatsız Etme)`,quietStart:`Başlangıç`,quietEnd:`Bitiş`,dailyDigestLabel:`Günlük Özet`,sendDigestAt:`Özeti şu saatte gönder`,digestCollected:`Olaylar toplanacak ve bu saatte tek bir özet olarak gönderilecek`,notificationEvents:`Bildirim Olayları`,progressPercent:`(%25, %50, %75)`,bedCooledAfterPrint:`(baskı tamamlandıktan sonra)`,eventPriority:{sectionTitle:`ntfy Önceliği`,helpNtfy:`Her etkin olay için bir öncelik seçin. ntfy uyarıları kademelendirmek için bunları kullanır (ses, görünürlük, push davranışı). Burada ayarlanmamış seviyeler ntfy sunucu varsayılanını kullanır.`,min:`Min`,low:`Düşük`,default:`Varsayılan`,high:`Yüksek`,urgent:`Acil`},cancel:`İptal`,save:`Kaydet`,add:`Ekle`,nameRequired:`Ad gerekli`,fieldRequired:`{{field}} gerekli`,phoneNumber:`Telefon Numarası`,apiKey:`API Anahtarı`,serverUrl:`Sunucu URL`,topic:`Konu`,authToken:`Yetkilendirme Belirteci`,userKey:`Kullanıcı Anahtarı`,appToken:`Uygulama Belirteci`,priority:`Öncelik`,botToken:`Bot Belirteci`,chatId:`Sohbet ID`,smtpServer:`SMTP Sunucusu`,smtpPort:`SMTP Portu`,security:`Güvenlik`,authentication:`Kimlik Doğrulama`,username:`Kullanıcı Adı`,password:`Parola`,fromEmail:`Gönderen E-posta`,toEmail:`Alıcı E-posta`,webhookUrl:`Webhook URL`,payloadFormat:`Yük Formatı`,authorization:`Yetkilendirme`,titleFieldName:`Başlık Alanı Adı`,messageFieldName:`Mesaj Alanı Adı`,editTemplate:`Şablonu Düzenle: {{name}}`,titleLabel:`Başlık`,bodyLabel:`Gövde`,titlePlaceholder:`Bildirim başlığı...`,bodyPlaceholder:`Bildirim gövdesi...`,availableVariables:`Kullanılabilir Değişkenler`,clickToInsert:`Gövdede imleç konumuna eklemek için tıklayın`,livePreview:`Canlı Önizleme`,hide:`Gizle`,show:`Göster`,loadingPreview:`Önizleme yükleniyor...`,enterTemplateContent:`Önizlemeyi görmek için şablon içeriğini girin`,titlePreview:`Başlık:`,bodyPreview:`Gövde:`,resetToDefault:`Varsayılana Sıfırla`,titleRequired:`Başlık gerekli`,bodyRequired:`Gövde gerekli`,notificationLog:`Bildirim Günlüğü`,showFailedOnly:`Yalnızca başarısız`,last24Hours:`Son 24 saat`,last7Days:`Son 7 gün`,last30Days:`Son 30 gün`,last90Days:`Son 90 gün`,justNow:`Az önce`,noFailedNotifications:`Başarısız bildirim yok`,noNotificationsLogged:`Kaydedilen bildirim yok`,unknownProvider:`Bilinmeyen Sağlayıcı`,logTitle:`Başlık`,logMessage:`Mesaj`,logError:`Hata`,logProvider:`Sağlayıcı: {{type}}`,logTime:`Saat: {{time}}`,refresh:`Yenile`,clearOld:`Eskileri Temizle`,statsSummary:`Son {{days}} gün:`,statsNotifications:`bildirim`,statsSent:`{{count}} gönderildi`,statsFailed:`{{count}} başarısız`,eventTypes:{print_start:`Baskı Başladı`,print_complete:`Baskı Tamamlandı`,print_failed:`Baskı Başarısız`,print_stopped:`Baskı Durduruldu`,print_progress:`İlerleme`,printer_offline:`Yazıcı Çevrimdışı`,printer_error:`Yazıcı Hatası`,filament_low:`Az Filament`,maintenance_due:`Bakım Zamanı`,test:`Test`},userEmail:{title:`Bildirimler`,emailNotifications:`E-posta Bildirimleri`,emailNotificationsDesc:`Kendi baskı işleriniz için e-posta bildirimleri alın. E-postalar Gelişmiş Kimlik Doğrulamada yapılandırılan sistem SMTP ayarları kullanılarak gönderilir.`,sendingTo:`Bildirimler şuraya gönderilecek`,noEmailWarning:`Hesabınızın e-posta adresi yok. Eklemek için bir yöneticiyle iletişime geçin.`,printJobNotifications:`Baskı İşi Bildirimleri`,printJobNotificationsDesc:`Gönderdiğiniz baskı işleri için hangi olayların e-posta bildirimlerini tetikleyeceğini seçin.`,printJobStarts:`Baskı İşi Başlar`,printJobStartsDesc:`Baskı işiniz başladığında bildirim alın.`,printJobFinishes:`Baskı İşi Biter`,printJobFinishesDesc:`Baskı işiniz başarıyla tamamlandığında bildirim alın.`,printErrors:`Baskı Hataları`,printErrorsDesc:`Baskı işiniz başarısız olduğunda veya bir hatayla karşılaştığında bildirim alın.`,printJobStops:`Baskı İşi Durur`,printJobStopsDesc:`Baskı işiniz iptal edildiğinde veya durdurulduğunda bildirim alın.`,saveSuccess:`Bildirim tercihleri kaydedildi.`,saveError:`Bildirim tercihleri kaydedilemedi.`}},richTextEditor:{bold:`Kalın`,italic:`İtalik`,underline:`Altı Çizili`,bulletList:`Madde İşaretli Liste`,numberedList:`Numaralı Liste`,alignLeft:`Sola Hizala`,alignCenter:`Ortaya Hizala`,alignRight:`Sağa Hizala`,addLink:`Bağlantı Ekle`,removeLink:`Bağlantıyı Kaldır`},externalLinks:{title:`Kenar çubuğu bağlantıları`,sidebarLayout:`Kenar çubuğu`,sidebarLayoutDescription:`Yerleşik sayfaları gösterin veya gizleyin, harici bağlantılar ekleyin ve kenar çubuğu gezinmesini yeniden sıralamak için öğeleri sürükleyin.`,systemPages:`Bambuddy sayfaları`,externalLinks:`Harici bağlantılar`,visibleInSidebar:`Kenar çubuğunda görünür`,hiddenFromSidebar:`Kenar çubuğunda gizli`,requiredInSidebar:`Kenar çubuğunda gerekli`,hidePage:`Sayfayı gizle`,showPage:`Sayfayı göster`,settingsCannotBeHidden:`Ayarlar gizlenemez`,noLinksConfigured:`Yapılandırılmış harici bağlantı yok`,deleteLink:`Bağlantıyı Sil`,removeCustomIcon:`Özel simgeyi kaldır`,openInNewTab:`Yeni sekmede aç`,placeholders:{linkName:`Bağlantım`}},keyboardShortcuts:{title:`Klavye Kısayolları`,navigation:`Navigasyon`,archivesSection:`Arşivler`,kProfilesSection:`K-Profilleri`,generalSection:`Genel`,shortcuts:{goToPrinters:`Yazıcılara Git`,goToArchives:`Arşivlere Git`,goToQueue:`Kuyruğa Git`,goToStats:`İstatistiklere Git`,goToProfiles:`Bulut Profillerine Git`,goToSettings:`Ayarlara Git`,focusSearch:`Aramaya odaklan`,openUploadModal:`Yükleme modalini aç`,clearSelection:`Seçimi temizle / odağı kaldır`,contextMenu:`Kartlarda bağlam menüsü`,refreshProfiles:`Profilleri yenile`,newProfile:`Yeni profil`,exitSelectionMode:`Seçim modundan çık`,showHelp:`Bu yardımı göster`},footer:`Kapatmak için Esc'ye basın veya dışarı tıklayın`},notificationLog:{title:`Bildirim Günlüğü`,events:{printStarted:`Baskı Başladı`,printComplete:`Baskı Tamamlandı`,printFailed:`Baskı Başarısız`,printStopped:`Baskı Durduruldu`,progress:`İlerleme`,printerOffline:`Yazıcı Çevrimdışı`,printerError:`Yazıcı Hatası`,lowFilament:`Az Filament`,maintenanceDue:`Bakım Zamanı`,test:`Test`},timeAgo:{justNow:`Az önce`,minutesAgo:`{{minutes}}dk önce`,hoursAgo:`{{hours}}sa önce`}},restoreBackup:{title:`Yedeği Geri Yükle`,restoring:`Geri yükleniyor...`,restoreComplete:`Geri Yükleme Tamamlandı`,restoreFailed:`Geri Yükleme Başarısız`,importSettings:`Ayarları bir yedek dosyasından içe aktar`,pleaseWait:`Verileriniz geri yüklenirken lütfen bekleyin`,clickToSelect:`Yedek dosyası seçmek için tıklayın (.json veya .zip)`,howDuplicateHandling:`Yinelenen yönetiminin nasıl çalıştığı:`,categories:{printers:`Yazıcılar`,smartPlugs:`Akıllı Prizler`,notificationProviders:`Bildirim Sağlayıcıları`,filaments:`Filamentler`,archives:`Arşivler`,pendingUploads:`Bekleyen Yüklemeler`,settingsTemplates:`Ayarlar ve Şablonlar`},matchingInfo:{printers:`seri numarasına göre eşleşti`,smartPlugs:`IP adresine göre eşleşti`,notificationProviders:`ada göre eşleşti`,filaments:`ad + tür + markaya göre eşleşti`,archives:`içerik hash'ine göre eşleşti`,pendingUploads:`dosya adına göre eşleşti`,settingsTemplates:`her zaman üzerine yazılır`},replaceExisting:`Mevcut veriyi değiştir`,keepExisting:`Mevcut veriyi koru`,replaceDescription:`Zaten mevcut olan öğeleri yedek verisiyle üzerine yaz`,keepDescription:`Yalnızca zaten mevcut olmayan öğeleri geri yükle`,caution:`Dikkat:`,cautionText:`Üzerine yazma, mevcut yapılandırmalarınızı yedek verisiyle değiştirecek. Güvenlik için yazıcı erişim kodları asla üzerine yazılmaz.`,itemsRestored:`Geri Yüklenen Öğeler`,itemsSkipped:`Atlanan Öğeler`,restored:`Geri yüklendi`,skipped:`Atlandı (zaten mevcut)`,filesLabel:`Dosyalar (3MF, küçük resimler, vb.)`,newApiKeysGenerated:`Yeni API Anahtarları Oluşturuldu`,newApiKeysWarning:`Bu anahtarlar yalnızca bir kez gösterilir. Şimdi kopyalayın!`,processingBackup:`Yedek dosyası işleniyor...`,noDataFound:`Yedek dosyasında geri yüklenecek veri bulunamadı.`,failedToRestore:`Yedek geri yüklenemedi. Lütfen dosya formatını kontrol edin.`},backupExport:{title:`Yedeği Dışa Aktar`,selectData:`Dahil edilecek veriyi seçin`,selectAll:`Tümünü Seç`,selectNone:`Hiçbirini Seçme`,categoryDescriptions:{settings:`Dil, tema, güncelleme tercihleri`,notifications:`ntfy, Pushover, Discord, vb.`,templates:`Özel mesaj şablonları`,smartPlugs:`Tasmota priz yapılandırmaları`,externalLinks:`Harici servislere kenar çubuğu bağlantıları`,printers:`Yazıcı bilgisi (erişim kodları hariç)`,plateDetection:`Boş plaka referans görüntüleri`,filaments:`Filament türleri ve maliyetleri`,maintenance:`Özel bakım programları`,archives:`Tüm baskı verileri + dosyalar (3MF, küçük resimler, fotoğraflar)`,projects:`Projeler, BOM öğeleri ve ekler`,pendingUploads:`İnceleme bekleyen sanal yazıcı yüklemeleri`,apiKeys:`Webhook API anahtarları (içe aktarımda yeni anahtarlar oluşturulur)`},requiresPrinters:`Yazıcıların seçili olması gerekir`,zipFileWarning:`ZIP dosyası oluşturulacak.`,zipFileDescription:`Tüm 3MF dosyalarını, küçük resimleri, zaman atlamalı videoları ve fotoğrafları içerir. Bu biraz zaman alabilir ve büyük bir dosya oluşturabilir.`,includeAccessCodes:`Erişim Kodlarını Dahil Et`,includeAccessCodesDescription:`Başka bir makineye aktarmak için`,includeAccessCodesWarning:`Erişim kodları düz metin olarak dahil edilecek. Bu yedek dosyasını güvende tutun!`,categoriesSelected:`{{selectedCount}} kategori seçildi`},pendingUploads:{placeholders:{notes:`Bu baskı hakkında notlar ekleyin...`},discardUpload:`Yüklemeyi At`,archiveAllUploads:`Tüm Yüklemeleri Arşivle`,discardAllUploads:`Tüm Yüklemeleri At`,archive:`Arşivle`,timeAgo:{justNow:`Az önce`,minutesAgo:`{{minutes}}dk önce`,hoursAgo:`{{hours}}sa önce`,daysAgo:`{{days}}g önce`}},apiBrowser:{placeholders:{requestBody:`JSON istek gövdesi...`,searchEndpoints:`Uç noktalarda ara...`}},configureAmsSlot:{title:`AMS Yuvasını Yapılandır`,slotConfigured:`Yuva Yapılandırıldı!`,configuringSlot:`Yuva yapılandırılıyor:`,slotLabel:`{{ams}} Yuva {{slot}}`,searchPresets:`Ön ayarlarda ara...`,colorPlaceholder:`Renk adı veya hex (örn., kahverengi, FF8800)`,clearCustomColor:`Özel rengi temizle`,noCloudPresets:`Bulut ön ayarı yok. Senkronize etmek için Bambu Cloud'a giriş yapın.`,noPresetsAvailable:`Kullanılabilir ön ayar yok. Bambu Cloud'a giriş yapın veya yerel profilleri içe aktarın.`,noMatchingPresets:`Eşleşen ön ayar bulunamadı.`,custom:`Özel`,builtin:`Yerleşik`,orcaCloud:`Orca Cloud`,bambuCloud:`Bambu Cloud`,settingsSentToPrinter:`Ayarlar yazıcıya gönderildi`,filamentProfile:`Filament Profili`,kProfileLabel:`K Profili (Basınç İlerlemesi)`,filteringFor:`Şu için filtreleniyor: {{material}}`,noKProfile:`K profili yok (varsayılan 0.020 kullan)`,noMatchingKProfiles:`Eşleşen K profili bulunamadı. Varsayılan K=0.020 kullanılacak.`,selectFilamentFirst:`Önce bir filament profili seçin`,kFromCalibration:`Yazıcı kalibrasyonundan K={{value}}`,customColorLabel:`Özel Renk (isteğe bağlı)`,presetColors:`{{name}} renkleri:`,showLessColors:`Daha az renk göster`,showMoreColors:`Daha fazla renk göster`,clear:`Temizle`,hexLabel:`Hex: #{{hex}}`,resetting:`Sıfırlanıyor...`,resetSlot:`Yuvayı Sıfırla`,cancel:`İptal`,configuring:`Yapılandırılıyor...`,configureSlot:`Yuvayı Yapılandır`},githubBackup:{title:`Git Yedekleme`,history:`Geçmiş`,downloadBackup:`Yedeği İndir`,restoreBackup:`Yedeği Geri Yükle`,noBackupsYet:`Henüz yedek yok`},emailSettings:{placeholders:{fromName:`BamBuddy`}},tagManagement:{searchTags:`Etiketlerde ara...`,renameTag:`Etiketi yeniden adlandır`,deleteTag:`Etiketi sil`},notificationTemplates:{placeholders:{title:`Bildirim başlığı...`,body:`Bildirim gövdesi...`}},batchTag:{placeholders:{newTag:`Yeni etiket girin...`}},photoGallery:{deletePhoto:`Fotoğrafı Sil`},filamentHoverCard:{copySpoolUuid:`Makara UUID'sini kopyala`},kProfilesView:{hasNote:`Notu var`,copyProfile:`Profili kopyala`},layout:{openMenu:`Menüyü aç`,noPermissionSystemInfo:`Sistem bilgisini görüntüleme izniniz yok`},dashboard:{dragToReorder:`Yeniden sıralamak için sürükleyin`,hideWidget:`Widget'ı gizle`},notificationProviderCard:{deleteNotificationProvider:`Bildirim Sağlayıcısını Sil`},fileManagerModal:{closeFileManager:`Dosya yöneticisini kapat`,sortFiles:`Dosyaları sırala`,goToParentFolder:`Üst klasöre git`,threeView:`3B Görünüm`},embeddedCameraViewer:{refreshStream:`Akışı yenile`,close:`Kapat`,zoomOut:`Uzaklaştır`,resetZoom:`Yakınlaştırmayı sıfırla`,zoomIn:`Yakınlaştır`,dragToResize:`Yeniden boyutlandırmak için sürükleyin`},timelapseViewer:{skipBack5s:`5 sn geri al`,skipForward5s:`5 sn ileri al`},notificationProviders:{descriptions:{email:`SMTP e-posta bildirimleri`,telegram:`Telegram botu üzerinden bildirimler`,discord:`Webhook üzerinden Discord kanalına gönder`,ntfy:`Ücretsiz, kendi barındırılabilir push bildirimleri`,pushover:`Basit, güvenilir push bildirimleri`,callmebot:`CallMeBot üzerinden ücretsiz WhatsApp bildirimleri`,webhook:`Herhangi bir URL'ye genel HTTP POST`}},logViewer:{searchPlaceholder:`Mesaj veya günlükçü adı ara...`,noLogEntries:`Günlük kaydı bulunamadı`},switchbarPopover:{noSwitchesInSwitchbar:`Anahtar çubuğunda anahtar yok`},projectPageModal:{placeholders:{title:`Başlık`,designer:`Tasarımcı`,license:`Lisans`,description:`Açıklama girin...`,profileTitle:`Profil Başlığı`,profileDescription:`Profil açıklaması...`}},spoolmanSettings:{},time:{unknown:`-`,waiting:`Bekliyor`,justNow:`Az önce`,now:`Şimdi`,minsAgo:`{{count}}dk önce`,inMins:`{{count}}dk sonra`,hoursAgo:`{{count}}sa önce`,inHours:`{{count}}sa sonra`,daysAgo:`{{count}}g önce`,inDays:`{{count}}g sonra`},spoolbuddy:{nav:{dashboard:`Gösterge Paneli`,ams:`AMS`,inventory:`Envanter`,writeTag:`Yaz`,settings:`Ayarlar`},status:{nfcReady:`NFC Hazır`,nfcOff:`NFC Kapalı`,offline:`Çevrimdışı`,online:`Çevrimiçi`,noPrinters:`Yazıcı yok`,deviceOffline:`Cihaz Çevrimdışı`,waitingConnection:`Cihaz bağlantısı bekleniyor...`,systemReady:`Sistem Hazır`,status:`Durum`},dashboard:{readyToScan:`Taramaya hazır`,idleMessage:`Tanımlamak için bir makarayı tartıya yerleştirin`,nfcHint:`NFC etiketi otomatik olarak okunacak`,device:`Cihaz`,syncWeight:`Ağırlığı Senkronize Et`,weightSynced:`Senkronize edildi!`,unknownTag:`Bilinmeyen Etiket`,newTag:`Yeni Etiket Algılandı`,onScale:`tartıda`,linkSpool:`Makaraya Bağla`,linkTagTitle:`Etiketi Makaraya Bağla`,linkTag:`Etiketi Bağla`,selectSpool:`Bu etiketi bağlamak için bir makara seçin:`,noUntagged:`Etiketsiz makara bulunamadı`,tagDetected:`Etiket algılandı`,noTag:`Etiket yok`,tagId:`Etiket`,grossWeight:`Brüt ağırlık`,spoolSize:`Makara boyutu`,close:`Kapat`,currentSpool:`Mevcut Makara`,plateReady:`Plaka hazır: {{name}}`,plateReadyLabel:`Temizlenmeye hazır plakalar`,plateClearAction:`Temizle`,plateClearedToast:`Plaka temizlendi olarak işaretlendi`,plateClearFailed:`Plaka temizlendi olarak işaretlenemedi`},modal:{spoolDetected:`Makara Algılandı`,assignToAms:`AMS'e Ata`,syncWeight:`Ağırlığı Senkronize Et`,weightSynced:`Senkronize edildi!`,syncing:`Senkronize ediliyor...`,newTagDetected:`Yeni Etiket Algılandı`,addToInventory:`Envantere Ekle`,assignToAmsTitle:`AMS'e Ata`,selectSlot:`Bir yuva seçin`,assign:`Ata`,assigning:`Atanıyor...`,assignSuccess:`Atandı!`,assignPendingInsert:`Atandı. Makarayı yerleştirdiğinizde yuva yapılandırılacak.`,assignError:`Makara atanamadı. Lütfen tekrar deneyin.`,noPrinterSelected:`Bir yazıcı seçin...`,noAmsDetected:`Bu yazıcıda AMS algılanmadı`,slot:`Yuva`},weight:{noReading:`Okuma yok`,stable:`Kararlı`,measuring:`Ölçülüyor...`,tare:`Dara`,calibrate:`Kalibre Et`},spool:{remaining:`Kalan`,material:`Malzeme`,brand:`Marka`,color:`Renk`,coreWeight:`Çekirdek`,labelWeight:`Etiket`,scaleWeight:`Tartı`,netWeight:`Net`,lastUsed:`Son kullanım`},ams:{noData:`AMS algılanmadı`,connectAms:`Filament yuvalarını görmek için bir AMS bağlayın`,noPrinter:`Yazıcı seçilmedi`,selectPrinter:`Üst çubuktan bir yazıcı seçin`,printerDisconnected:`Yazıcı bağlantısı kesildi`,humidity:`Nem`,level:`Seviye`,active:`Aktif`,slot:`Yuva`,empty:`Boş`},inventory:{search:`Makaralarda ara...`,empty:`Envanterde makara yok`,noResults:`Eşleşen makara yok`,spools:`makara`,addSpool:`Makara Ekle`},settings:{tabDevice:`Cihaz`,tabDisplay:`Görüntü`,tabScale:`Tartı`,tabUpdates:`Güncellemeler`,nfcReader:`NFC Okuyucu`,type:`Tür`,connection:`Bağlantı`,notConnected:`N/A`,deviceInfo:`Cihaz Bilgisi`,hostname:`Ana Bilgisayar`,uptime:`Çalışma Süresi`,systemConfig:`Arka Uç ve Kimlik Doğrulama`,backendUrl:`Bambuddy Arka Uç URL'si`,apiToken:`API Belirteci`,apiTokenPlaceholder:`API belirtecini girin`,saveConfig:`Yapılandırmayı Kaydet`,systemQueued:`Yapılandırma kuyruğa alındı.`,nfcDiagnostic:`NFC Tanılaması`,scaleDiagnostic:`Tartı Tanılaması`,readTagDiagnostic:`Etiket Okuma Tanılaması`,testNfc:`Okuyucuyu test et`,testScale:`Doğruluğu test et`,testReadTag:`Etiket oku`,systemFieldsRequired:`Arka uç URL'si gerekli.`,brightness:`Parlaklık`,saved:`Kaydedildi`,noBacklight:`DSI arka ışık algılanmadı. Parlaklık kontrolü DSI ekran gerektirir.`,screenBlank:`Ekran Kapanma Zaman Aşımı`,screenBlankDesc:`Hareketsizlik sonrası ekran kapanır. Uyandırmak için dokunun.`,displayNote:`Parlaklık bir yazılım filtresi olarak uygulanır.`,scaleCalibration:`Tartı Kalibrasyonu`,currentWeight:`Mevcut ağırlık`,tareOffset:`Dara`,calFactor:`Faktör`,knownWeight:`Bilinen ağırlık`,calStep1:`Tartıdan tüm öğeleri kaldırın ve Sıfır Ayarla'ya basın.`,calStep2:`Bilinen ağırlığı tartıya yerleştirin.`,setZero:`Sıfır Ayarla`,calibrateNow:`Kalibre Et`,calibrated:`Kalibre edildi`,tareSet:`Dara komutu gönderildi. Cihaz bekleniyor...`,tareComplete:`Dara tamam!`,tareTimedOut:`Dara zaman aşımına uğradı — SpoolBuddy daemon çalışıyor mu?`,tareFailed:`Dara komutu gönderilemedi`,zeroSet:`Sıfır noktası ayarlandı. Bilinen ağırlığı tartıya yerleştirin.`,calibrationDone:`Kalibrasyon tamamlandı!`,calibrationFailed:`Kalibrasyon başarısız`,lastCalibrated:`Son kalibrasyon`,stable:`Kararlı`,settling:`Sabitleniyor...`,firmware:`Firmware`,scale:`Tartı`,noDevice:`SpoolBuddy cihazı bulunamadı`,daemonVersion:`Daemon Sürümü`,currentVersion:`Mevcut`,versionPending:`Daemon bekleniyor...`,checking:`Kontrol ediliyor...`,checkUpdates:`Güncellemeleri Kontrol Et`,updateAvailable:`Güncelleme mevcut`,updateInstructions:`SSH üzerinden güncelle: yükseltmek için SpoolBuddy yükleme betiğini çalıştırın.`,upToDate:`Güncel`,includeBeta:`Beta sürümleri dahil et`},writeTag:{tabExisting:`Mevcut Makara`,tabNew:`Yeni Makara`,tabReplace:`Etiketi Değiştir`,searchPlaceholder:`Malzeme, renk, marka ile ara...`,noUntaggedSpools:`Etiketsiz makara yok`,noTaggedSpools:`Etiketli makara yok`,selectSpool:`Bir makara seçin, ardından okuyucuya boş bir NTAG yerleştirin`,placeTag:`Okuyucuya bir NTAG yerleştirin`,tagReady:`Etiket algılandı — yazmaya hazır`,writeTag:`Etiketi Yaz`,replaceTag:`Etiketi Değiştir`,writing:`Etiket yazılıyor...`,waiting:`SpoolBuddy bekleniyor...`,writeSuccess:`Etiket başarıyla yazıldı!`,writeFailed:`Yazma başarısız`,queueFailed:`Yazma komutu kuyruğa alınamadı`,tryAgain:`Tekrar Dene`,cancel:`İptal`,replaceWarning:`Eski etiket bağlantısı kaldırılacak. Yeni etiket yerini alacak.`,deviceOffline:`SpoolBuddy çevrimdışı`,material:`Malzeme`,colorName:`Renk Adı`,color:`Renk`,brand:`Marka`,weight:`Ağırlık (g)`,createSpool:`Makara Oluştur`,creating:`Oluşturuluyor...`,spoolCreated:`Makara oluşturuldu! Yazmaya hazır.`,createFailed:`Makara oluşturulamadı`,incompleteDataWarning:`Etiket eksik Spoolman verisiyle yazıldı`},quickMenu:{printerPower:`Yazıcı Gücü`,systemControls:`Sistem`,restartDaemon:`Daemon'u Yeniden Başlat`,restartBrowser:`Tarayıcıyı Yeniden Başlat`,reboot:`Yeniden Başlat`,shutdown:`Kapat`,swipeToClose:`Kapatmak için aşağı kaydır`,confirmTitle:`Onayla`,confirmShutdown:`SpoolBuddy'yi kapatmak istediğinizden emin misiniz? Tekrar açmak için fiziksel erişime ihtiyacınız olacak.`,confirmReboot:`SpoolBuddy'yi yeniden başlatmak istediğinizden emin misiniz?`,confirmRestartDaemon:`SpoolBuddy daemon yeniden başlatılsın mı? NFC ve tartı geçici olarak kullanılamayacak.`,confirmRestartBrowser:`Kiosk tarayıcısı yeniden başlatılsın mı? Ekran kısa bir süre kararacak.`,confirm:`Onayla`,confirmPlugOn:`{{name}} açılsın mı?`,confirmPlugOff:`{{name}} kapatılsın mı?`,turnOn:`Aç`,turnOff:`Kapat`}},diagnostic:{modalTitle:`Bağlantı tanılaması — {{name}}`,running:`Tanılama çalışıyor...`,runningElapsed:`Tanılama çalışıyor... ({{elapsed}}s)`,waitingForReportHint:`Yazıcının durum raporu yayınlamasını bekliyor — bu işlem en fazla {{max}} saniye sürebilir.`,runFailed:`Tanılama çalıştırılamadı: {{error}}`,retry:`Tekrar çalıştır`,runButton:`Tanılamayı çalıştır`,sectionTitle:`Bağlantı Tanılaması`,sectionDescription:`Bir yazıcının neden bağlanmadığını veya yazdırmadığını kontrol edin — port erişilebilirliği, LAN geliştirici modu, Docker ağ modu ve kimlik bilgileri.`,noPrinters:`Yapılandırılmış yazıcı yok.`,overall:{ok:`Sorun bulunamadı — yazıcı bağlantısı sağlıklı görünüyor.`,warnings:`Yazıcı çalışmalı, ancak bazı şeyler dikkat gerektiriyor.`,problems:`Yazıcının neden bağlanmadığını veya yazdırmadığını açıklayan sorunlar bulundu.`},check:{port_mqtt:{title:`Kontrol portu (MQTT 8883)`,pass:`Erişilebilir — yazıcı kontrol bağlantılarını kabul ediyor.`,fail:`Port 8883 erişilemez. Yazıcı kapalı, farklı bir IP adresinde veya bir güvenlik duvarı engelliyor. Yazıcı IP'sini ve hiçbir şeyin port 8883'ü engellemediğini doğrulayın.`},port_ftps:{title:`Dosya aktarım portu (FTPS 990)`,pass:`Erişilebilir — baskı dosyaları gönderme çalışacak.`,warn:`Port 990 erişilemez. İzleme yine çalışabilir, ancak yazıcıya baskı gönderme başarısız olacak. Port 990'ın engellenmediğinden emin olun.`},external_storage:{title:`Gönderilen dosyaları harici depolamada sakla (kurulum adımı 4)`,pass:`Yazıcı bu seçeneğin açık olduğunu bildiriyor — gönderilen dosyalar SD kartta saklanacak ve arşivler küçük resim ve dilimleyici meta verileri içerecek.`,fail:`Yazıcı bu seçeneğin kapalı olduğunu bildiriyor. "Gönderilen dosyaları harici depolamada sakla" seçeneğini etkinleştirin — yeni donanım yazılımlarında (P2S 01.02 / Bambu Studio 2.6+) düğme yazıcının Baskı Ayarları'nda; eski sürümlerde Bambu Studio / OrcaSlicer'in Cihaz sekmesindedir. Bu seçenek olmadan, arşivlenen her baskıda küçük resim ve dilimleyici meta verisi olmayacak.`,skip:`Kontrol edilmedi — etkin bir MQTT bağlantısı gerekli. Bu ayarın yalnızca dilimleyicide bulunduğu eski dilimleyicilerde yazıcı bunu bildirmez, bu nedenle seçenek kapalı olsa bile bu kontrol geçer — kurulum adımı 4'ü manuel olarak doğrulayın.`},port_rtsps:{title:`Kamera portu ({{protocol}} {{port}})`,pass:`Erişilebilir — kamera akışı çalışacak.`,warn:`Port {{port}} erişilemez. Canlı kamera görünümü çalışmayacak. Bu, baskıyı etkilemez.`},network_mode:{title:`Docker ağ modu`,pass:`Ana bilgisayar ağ modunda çalışıyor.`,warn:`Bambuddy, Docker köprü ağı kullanılarak çalışıyor. Yazıcı keşfi ve Sanal Yazıcı, ana bilgisayar ağ modu gerektirir — konteyneri "network_mode: host" ile yeniden oluşturun.`,skip:`Docker'da çalışmıyor — uygulanamaz.`},subnet:{title:`Ağ alt ağı`,pass:`Yazıcı ve Bambuddy aynı alt ağda.`,warn:`Yazıcı ({{printer_ip}}) ve Bambuddy ({{host_ip}}) farklı alt ağlarda. Alt ağlar arasında yönlendirme yapılandırılmazsa birbirlerine erişemeyebilirler.`,skip:`Alt ağ belirlenemedi — atlandı.`},mqtt_auth:{title:`Yazıcı kimlik bilgileri`,pass:`Yazıcı bağlantıyı kabul etti.`,fail:`Yazıcı erişilebilir ancak bağlantıyı reddetti. Büyük olasılıkla erişim kodu veya seri numarası yanlış. Erişim kodu, Geliştirici Modu her açılıp kapatıldığında değişir — yazıcı ekranından yeniden kopyalayın.`,skip:`Kontrol edilmedi — yazıcıya erişilemedi.`},developer_mode:{title:`LAN Geliştirici Modu`,pass:`Geliştirici Modu etkin.`,fail:`Yazıcıda Geliştirici Modu KAPALI. Yazıcının LAN ayarlarında etkinleştirin — ve OK ile onaylayın. Bu olmadan baskılar başlamayacak.`,skip:`Kontrol edilemedi — yazıcıya canlı bir bağlantı gerektirir.`},printer_publishing:{title:`Yazıcı durum yayını yapıyor`,pass:`Yazıcı durum güncellemelerini yayınlıyor — AMS, filamentler ve K profilleri dilimleyiciye doğru şekilde yansıtılacak.`,fail:`MQTT aracısı bağlantıyı kabul etti, ancak yazıcı hiç durum raporu yayınlamadı. Bu neredeyse her zaman yanlış ya da büyük/küçük harf hatalı bir seri numarasından kaynaklanır — device//report konusu büyük/küçük harfe duyarlıdır. Yazıcı ayarlarındaki seri numarasını cihazın ekranındaki ile karşılaştırarak doğrulayın.`,skip:`Kontrol edilemedi — yazıcıya canlı bir bağlantı gerektirir.`}}},systemHealth:{sectionTitle:`Sistem Sağlığı`,sectionDescription:`Bir destek talebine dönüşmeden önce genellikle kendi başınıza düzeltebileceğiniz bilinen sorunlar için son günlükleri tarar.`,rescan:`Yeniden tara`,clean:`Son {{times}} günlük kaydında bilinen sorun bulunamadı.`,logUnavailable:`Dosya günlüğü devre dışı, bu nedenle günlükler taranamıyor. Bu kontrolü kullanmak için dosya günlüğünü etkinleştirin.`,learnMore:`Nasıl düzeltilir`,fixLabel:`Düzeltme:`,occurrences:`{{times}}× görüldü — son {{lastSeen}}'de`,category:{layer8:`Bunu düzeltebilirsiniz`,environment:`Ortam`,bug:`Lütfen bunu bildirin`},signature:{"ftp-auth-rejected":{name:`Yazıcı erişim kodunu reddetti`,cause:`Yazıcı dosya aktarım girişini reddetti. Erişim kodu yanlış veya Geliştirici Modu açılıp kapatıldıktan sonra değişti.`,fix:`Erişim kodunu yazıcı ekranından (LAN ayarları) yeniden kopyalayın ve Bambuddy'deki yazıcının ayarlarında güncelleyin.`},"ftp-connection-timeout":{name:`Dosya aktarım bağlantısı zaman aşımına uğradı`,cause:`Bambuddy yazıcının dosya aktarım portuna (FTPS 990) erişemedi. Port engellendi veya yazıcı kapalı ya da başka bir alt ağda.`,fix:`Bambuddy ile yazıcı arasında hiçbir şeyin port 990'ı engellemediğinden ve her ikisinin de aynı ağda olduğundan emin olun.`},"ftp-ssl-error":{name:`Güvenli dosya aktarım el sıkışması başarısız`,cause:`Yazıcının dosya aktarım sunucusuyla TLS el sıkışması başarısız oldu. Bu genellikle bir güvenlik duvarı veya eski yazıcı firmware'idir.`,fix:`Yazıcı firmware'ini güncelleyin ve port 990'daki bağlantıyı hiçbir güvenlik duvarı veya proxy'nin engellemediğini kontrol edin.`},"mqtt-connection-flapping":{name:`Yazıcı bağlantısı sürekli düşüyor`,cause:`Kontrol bağlantısı (MQTT 8883) tekrar tekrar bağlantısı kesiliyor ve yeniden bağlanıyor — genellikle zayıf bir ağ yolu veya kısmen engellenmiş bir port.`,fix:`Yazıcıdaki Wi-Fi sinyalini kontrol edin, kablolu bağlantı tercih edin ve port 8883'ün güvenilir bir şekilde erişilebilir olduğundan emin olun.`},"camera-connection-refused":{name:`Kamera akışına erişilemez`,cause:`Canlı kameraya RTSPS 322 portunda erişilemedi. Port engellendi veya yazıcıda kamera veya LAN canlı görünümü kapalı.`,fix:`Yazıcıda kamerayı ve LAN canlı görünümünü etkinleştirin ve port 322'nin engellenmediğinden emin olun. Bu, baskıyı etkilemez.`},"database-locked":{name:`Veritabanı yazma çekişmesi`,cause:`SQLite veritabanı yük altında "veritabanı kilitli" hatalarıyla karşılaşıyor — aynı anda birkaç yazıcı çalıştırırken yaygındır.`,fix:`Bambuddy'yi harici bir PostgreSQL veritabanına geçirin. Dokümantasyondaki PostgreSQL kılavuzuna bakın.`}}},vpDiagnostic:{title:`Kurulum kontrolü — {{name}}`,runButton:`Kurulum kontrolünü çalıştır`,running:`Kurulum kontrolü çalışıyor...`,runFailed:`Kurulum kontrolü çalıştırılamadı: {{error}}`,retry:`Tekrar çalıştır`,overall:{ok:`Tüm kontroller geçti — bu sanal yazıcı doğru şekilde kurulmuş.`,warnings:`Sanal yazıcı çalışmalı, ancak bazı şeyler dikkat gerektiriyor.`,problems:`Dilimleyicinin bu sanal yazıcıyı neden göremediğini veya kullanamadığını açıklayan sorunlar bulundu.`},check:{enabled:{title:`Sanal yazıcı etkin`,fail:`Bu sanal yazıcı kapatılmış. Keşfedilebilir hale getirmek için açın.`},running:{title:`Servisler çalışıyor`,fail:`Sanal yazıcı etkin ancak servisleri çalışmıyor. Bambuddy günlüğünü kontrol edin — bir bind IP çakışması veya bir izin hatası genellikle onları durdurur.`},bind_interface:{title:`Bind ağ arayüzü`,fail:`Bind arayüzü ayarlanmamış veya artık bu ana bilgisayarda mevcut değil. Bind Arayüzü açılır menüsünde mevcut bir arayüz seçin.`},access_code:{title:`Erişim kodu ayarlandı`,fail:`Erişim kodu ayarlanmamış. Dilimleyiciye burada ayarladığınız aynı 8 karakterli erişim kodunun verilmesi gerekir.`},target_printer:{title:`Hedef yazıcı`,fail:`Hedef yazıcı seçilmemiş. Proxy modu iletmek için gerçek bir yazıcıya ihtiyaç duyar.`,warn:`Hedef yazıcı şu anda çevrimdışı — yeniden bağlandığında proxy devam edecek.`},port_ftps:{title:`Dosya yükleme servisi (port {{port}})`,fail:`Bind IP'sinin {{port}} portunda hiçbir şey dinlemiyor, bu nedenle dilimleyici dosya yükleyemez. Bu arayüzde bir port çakışması genellikle nedendir.`},port_mqtt:{title:`Kontrol servisi (port {{port}})`,fail:`Bind IP'sinin {{port}} portunda hiçbir şey dinlemiyor, bu nedenle dilimleyici bağlanamaz veya durum gösteremez.`},port_bind:{title:`Keşif servisi (port {{port}})`,fail:`Bind IP'sinin {{port}} portunda hiçbir şey dinlemiyor, bu nedenle dilimleyicinin keşif el sıkışması başarısız oluyor.`},certificate:{title:`TLS sertifikası`,pass:`Sertifika hazır. Bambuddy CA sertifikasının (yukarıda) dilimleyicinizin güven deposuna içe aktarıldığından emin olun.`,fail:`Bu sanal yazıcı için TLS sertifikası eksik. Bambuddy veri dizininin yazılabilir olduğunu kontrol edin.`}}},bugReport:{title:`Hata Bildir`,description:`Açıklama`,descriptionPlaceholder:`Ne ters gitti? Lütfen sorunu tanımlayın...`,email:`E-posta (isteğe bağlı)`,emailPlaceholder:`sizin@email.com`,emailPrivacy:`Sağlanırsa, e-postanız GitHub sorunundaki daraltılmış bir bölümde dahil edilecek, böylece bakımcı takip edebilir.`,screenshot:`Ekran Görüntüsü`,uploadOrPaste:`Bir görüntü yükleyin, yapıştırın veya sürükleyin`,dataCollectedSummary:`Rapora hangi veriler dahil edilir?`,dataIncluded:`Dahil:`,dataIncludedList:`Uygulama sürümü, OS, mimari, Python sürümü, veritabanı istatistikleri (yalnızca sayılar), yazıcı modelleri, nozul sayıları, firmware sürümleri, bağlantı durumu, entegrasyon durumu (Spoolman, MQTT, HA), hassas olmayan ayarlar, ağ arayüzü sayısı, Docker ayrıntıları, bağımlılık sürümleri.`,dataNeverIncluded:`Asla dahil edilmez:`,dataNeverIncludedList:`Yazıcı adları, seri numaraları, erişim kodları, parolalar, IP adresleri, e-posta adresleri, API anahtarları, belirteçler, webhook URL'leri, ana bilgisayar adları veya kullanıcı adları.`,submit:`Gönder`,startLogging:`Hata Ayıklama Kaydını Başlat`,stepEnableLogging:`Hata ayıklama kaydı etkin`,stepReproduce:`Sorunu şimdi yeniden oluşturun`,stepStopLogging:`Durdur ve raporu gönder`,stopAndSubmit:`Durdur ve Gönder`,maxDuration:`{{minutes}} dk sonra otomatik durur`,stoppingLogs:`Günlükler toplanıyor ve gönderiliyor...`,submitting:`Hata raporu gönderiliyor...`,submittingStepConnection:`Yazıcı bağlantı kontrolleri çalıştırılıyor`,submittingStepVirtualPrinters:`Sanal yazıcı kurulum kontrolleri çalıştırılıyor`,submittingStepLogScan:`Son günlüklerde bilinen sorunlar taranıyor`,submittingStepSubmit:`Rapor GitHub'a gönderiliyor`,submitSuccess:`Hata raporu başarıyla gönderildi!`,submitFailed:`Hata raporu gönderilemedi`,diagnosticChecking:`Yazıcı bağlantıları kontrol ediliyor...`,diagnosticHealthy:`Bağlantı kontrolü başarılı — yazıcılarınızda sorun bulunamadı.`,diagnosticSummary:`{{total}} yazıcıdan {{problems}} tanesinde bağlantı sorunu var`,diagnosticIntro:`Bir veya daha fazla yazıcının sorununuza neden olabilecek bir bağlantı sorunu var. Düzeltmeyi görmek için aşağıda bir yazıcıyı genişletin — bunu çözmek, hata raporu olmadan sorunu çözebilir. Yine de aşağıda bir rapor gönderebilirsiniz.`,logHealthSummary:`Günlüklerinizde bilinen sorunlar bulundu`,logHealthIntro:`Son günlükler bilinen sorunlarla eşleşiyor. Aşağıdaki düzeltmeleri kontrol edin — bunları çözmek, hata raporu olmadan sorununuzu çözebilir. Yine de aşağıda bir rapor gönderebilirsiniz.`,thankYou:`Teşekkürler!`,submitted:`Hata raporunuz gönderildi.`,viewIssue:`Sorunu Görüntüle`,unexpectedError:`Beklenmedik bir hata oluştu`},failureDetection:{title:`AI Başarısızlık Algılama`,description:`Baskıları kendi barındırılan bir Obico ML API ile izle ve algılanan başarısızlıklara otomatik olarak yanıt ver.`,mlUrl:`Obico ML API URL'si`,mlUrlHint:`Kendi barındırılan Obico ml_api konteynerinizin temel URL'si (örn. http://192.168.1.10:3333).`,test:`Test`,testSuccess:`ML API erişilebilir ve sağlıklı.`,testFailed:`ML API'ye erişilemedi.`,sensitivity:`Hassasiyet`,sensitivityLow:`Düşük (daha az yanlış pozitif)`,sensitivityMedium:`Orta (dengeli)`,sensitivityHigh:`Yüksek (erken algıla, daha fazla yanlış pozitif)`,sensitivityHint:`Uyarıları ve başarısızlıkları tetikleyen güven eşiklerini ayarlar.`,action:`Algılanan başarısızlıkta eylem`,actionNotify:`Yalnızca bildir`,actionPause:`Baskıyı duraklat`,actionPauseOff:`Duraklat ve gücü kes`,pollInterval:`Sorgulama aralığı (saniye)`,pollIntervalHint:`Baskı yaparken her yazıcının ne sıklıkta kontrol edileceği. Minimum 5sn, maksimum 120sn.`,externalUrlMissing:`Harici URL ayarlanmamış.`,externalUrlHint:`ML API, kamera anlık görüntüsünü URL üzerinden alır. ML API konteyneri Bambuddy'ye erişebilsin diye Genel ayarlarda Harici URL'yi ayarlayın.`,perPrinterTitle:`İzlenen Yazıcılar`,perPrinterHint:`Algılama servisinin hangi yazıcıları izleyeceğini seçin.`,monitorAll:`Tüm bağlı yazıcıları izle`,statusTitle:`Durum`,serviceRunning:`Servis çalışıyor`,thresholds:`Düşük / Yüksek eşikler`,activePrinters:`Aktif baskılar`,noActivePrints:`Şu anda çalışan baskı yok.`,historyTitle:`Son Algılamalar`,noHistory:`Henüz algılama yok.`},makerworld:{title:`MakerWorld`,description:`Bambu Handy uygulamasına gitmeden — doğrudan Bambuddy'den içe aktarmak ve yazdırmak için bir MakerWorld model URL'si yapıştırın.`,pasteUrlHeader:`MakerWorld'den İçe Aktar`,pasteUrlPlaceholder:`https://makerworld.com/en/models/… veya herhangi bir MakerWorld bağlantısını yapıştırın`,resolveButton:`Çöz`,signInRequiredTitle:`İndirme için Bambu Cloud girişi gerekli`,signInRequiredBody:`Model ayrıntılarına anonim olarak göz atabilirsiniz, ancak MakerWorld 3MF dosyalarını indirmek için bir Bambu Cloud hesabı gerektirir.`,openCloudSettings:`Bulut ayarlarını aç`,untitledModel:`Adsız model`,byCreator:`{{name}} tarafından`,downloadsCount:`{{count}} indirme`,licensePrefix:`Lisans`,alreadyImported:`Zaten kütüphanede`,openOnMakerworld:`MakerWorld'de aç`,alreadyInLibrary:`Bu model zaten kütüphanenizde — Dosya Yöneticisi → MakerWorld'de bulun`,importSuccess:`{{filename}} içe aktarıldı — Dosya Yöneticisi → MakerWorld'e kaydedildi`,platesHeader:`Plakalar ({{count}})`,plateDefaultName:`Plaka {{n}}`,materialCount:`{{count}} filament`,amsRequired:`AMS gerekli`,slicedFor:`{{printer}} için dilimlendi`,alsoCompatible:`Ayrıca uyumlu olarak işaretlendi: {{printers}}`,importToLibrary:`Kaydet`,sliceIn:`Kaydet ve {{slicer}}'de Dilimle`,disclaimer:`MakerWorld entegrasyonu topluluk tarafından belgelenen API uç noktalarını kullanır. Bambuddy, MakerWorld veya Bambu Lab ile ilişkili veya onaylı değildir.`,lastImportSuccess:`Kütüphanenize içe aktarıldı`,lastImportAlreadyInLibrary:`Zaten kütüphanenizde`,viewInLibrary:`Dosya Yöneticisinde Görüntüle`,openInBambuStudio:`Bambu Studio'da Aç`,openInOrcaSlicer:`OrcaSlicer'da Aç`,importTo:`Dosya yöneticisine içe aktar`,recentImportsHeader:`Son içe aktarımlar`,phaseResolving:`Çözülüyor`,phaseDownloading:`İndiriliyor`,folderAuto:`MakerWorld (varsayılan)`,importAll:`Tümünü içe aktar`,importAllProgress:`{{current}}/{{total}} içe aktarılıyor`,openGallery:`Görüntü galerisini aç`,galleryPrev:`Önceki görüntü`,galleryNext:`Sonraki görüntü`,deleteImport:`Kütüphaneden kaldır`,importDeleting:`Kaldırılıyor…`,importDeleted:`Kütüphaneden kaldırıldı`,confirmDelete:`{{filename}} kütüphaneden kaldırılsın mı? Bu, yerel dosyayı siler ancak plaka MakerWorld'den yeniden içe aktarılabilir.`,errors:{resolveFailed:`O MakerWorld URL'si çözülemedi.`,downloadFailed:`İndirme başarısız. Lütfen tekrar deneyin.`,deleteFailed:`Dosya kütüphaneden kaldırılamadı.`}},gcodeViewer:{back:`Geri`,backToArchives:`Baskı Arşivlerine Dön`,backToFiles:`Dosya Yöneticisine Dön`},libraryTrash:{title:`Çöp Kutusu`,headerButton:`Çöp`,headerTooltip:`Çöpe taşınan dosyaları görüntüle`,backToFiles:`Dosya Yöneticisine Dön`,subtitleAdmin:`Silinen dosyalar burada {{days}} gün kalır, ardından otomatik silinir. Bu görünüm tüm kullanıcılar için çöpteki dosyaları gösterir.`,subtitleUser:`Silinen dosyalar burada {{days}} gün kalır, ardından otomatik silinir.`,loading:`Çöp yükleniyor…`,loadError:`Çöp yüklenemedi.`,empty:`Çöp boş.`,summary:`{{count}} dosya · {{size}}`,emptyTrash:`Çöpü boşalt`,restore:`Geri Yükle`,purgeNow:`Şimdi sil`,autoPurgeIn:`{{when}} içinde otomatik silinir`,days:`gün`,retentionLabel:`Otomatik sil`,selectAll:`Tümünü seç`,selectOne:`{{filename}} seç`,selectionCount:`{{count}} seçildi`,bulkRestore:`Seçilenleri geri yükle`,bulkPurge:`Seçilenleri sil`,col:{filename:`Dosya`,folder:`Klasör`,size:`Boyut`,deleted:`Çöpe taşındı`,autoPurge:`Otomatik silinir`,owner:`Sahip`,actions:`İşlemler`},confirm:{purgeTitle:`Kalıcı olarak silinsin mi?`,purgeBody:`{{filename}} diskten silinecek ve geri yüklenemeyecek.`,emptyTitle:`Çöp boşaltılsın mı?`,emptyBody:`Tüm {{count}} dosya diskten silinecek. Bu geri alınamaz.`,bulkPurgeTitle:`Seçili dosyalar kalıcı olarak silinsin mi?`,bulkPurgeBody:`Seçili {{count}} dosya diskten silinecek ve geri yüklenemeyecek.`,cta:`Kalıcı olarak sil`},toast:{restored:`Dosya geri yüklendi.`,restoreFailed:`Dosya geri yüklenemedi.`,purged:`Dosya kalıcı olarak silindi.`,purgeFailed:`Dosya silinemedi.`,emptied:`{{count}} dosya çöpten silindi.`,emptyFailed:`Çöp boşaltılamadı.`,retentionSaved:`Otomatik silme {{days}} gün olarak ayarlandı.`,retentionFailed:`Saklama ayarı kaydedilemedi.`,bulkRestored:`{{count}} dosya geri yüklendi.`,bulkPurged:`{{count}} dosya silindi.`}},libraryPurge:{title:`Eski dosyaları temizle`,headerButton:`Eskileri temizle`,headerTooltip:`Eski dosyaları toplu olarak çöpe taşı`,description:`Kütüphanenizden eski dosyaları tek seferde temizleyin. Baskı geçmişi olan dosyalar son baskı tarihlerine göre, hiç yazdırılmamış dosyalar yükleme tarihlerine göre yaşlandırılır.`,ageLabel:`Şundan eski dosyaları taşı`,days:`gün`,includeNeverPrinted:`Hiç yazdırılmamış dosyaları dahil et`,effectsTitle:`Temizle'ye tıkladığınızda ne olur`,effect1:`Eşleşen dosyalar Çöp'e taşınır — henüz diskten silinmezler.`,effect2:`Saklama penceresi sona erene kadar Çöp'ten herhangi bir zamanda geri yükleyebilirsiniz.`,effect3:`Saklama sonrası, çöp süpürücü onları kalıcı olarak diskten kaldırır.`,effect4:`Harici (bağlı) klasörlerdeki dosyalar atlanır — Bambuddy asla sahibi olmadığı bayt'ları silmez.`,previewLoading:`Kaç dosyanın eşleştiği kontrol ediliyor…`,previewFailed:`Temizleme önizlenemedi.`,previewSummary:`{{count}} dosya · {{size}} çöpe taşınacak`,andMore:`…ve {{count}} daha`,warning:`Çöpe taşınan dosyalar saklama penceresi sona erene kadar depolama alanını kullanmaya devam eder. Diski hemen boşaltmak için sonradan Çöp'ü boşaltın.`,confirmCta:`{{count}} dosyayı çöpe taşı`,purging:`Çöpe taşınıyor…`,toast:{success:`{{count}} dosya çöpe taşındı.`,failed:`Dosyalar temizlenemedi.`}},libraryAutoPurge:{enableLabel:`Eski dosyaları otomatik temizle`,enableDescription:`Yönetici temizliğini günde bir kez çalıştırır. Dosyalar önce Çöp'e gider — hemen silinmezler.`,ageLabel:`Şundan eski dosyaları otomatik temizle`,ageDescription:`Minimum 7 gün, maksimum 10 yıl. Manuel Temizle düğmesiyle aynı yaş kuralını kullanır.`,days:`gün`,includeNeverPrinted:`Hiç yazdırılmamış dosyaları dahil et`,saveFailed:`Otomatik temizleme ayarları kaydedilemedi.`},archivePurge:{headerButton:`Eskileri temizle`,headerTooltip:`Eski arşivleri toplu olarak sil`,title:`Eski arşivleri temizle`,description:`Eski baskı geçmişini temizleyin. Her arşiv en son baskı tamamlamasına göre yaşlandırılır — bir arşivi yeniden yazdırmak yaşını yeniler, bu nedenle aktif çalışma asla temizlenmez.`,ageLabel:`Son şu kadar günde yazdırılmamış arşivleri sil`,days:`gün`,effectsTitle:`Temizle'ye tıkladığınızda ne olur`,effect1:`Eşleşen her arşiv listelerden gizlenir ve dosyaları diskten kaldırılır (3MF, küçük resim, zaman atlamalı video, kaynak 3MF, F3D tasarım dosyası, fotoğraflar).`,effect2:`Arşiv satırı veritabanında kalır, böylece Hızlı İstatistikler filament, süre, maliyet ve enerji katkısını korur — tek arşiv silme varsayılanı ile aynı.`,effect3:`Hızlı İstatistik katkısını da kaldırmak için aşağıdaki "Ayrıca istatistiklerden kaldır"ı işaretleyin (tek arşiv silme seçeneğiyle eşleşir). O yol geri alınamaz.`,effect4:`Bir arşivi yeniden yazdırmak yaş saatini yeniler, bu nedenle hâlâ kullandığınız arşivler güvendedir.`,purgeStatsLabel:`Ayrıca istatistiklerden kaldır`,purgeStatsHint:`Eşleşen arşivleri Hızlı İstatistiklerden (filament, süre, maliyet, enerji) düşürür. Bu olmadan, Hızlı İstatistikler her katkıyı korur ve yalnızca dosyalar diskten ayrılır.`,previewLoading:`Kaç arşivin eşleştiği kontrol ediliyor…`,previewFailed:`Temizleme önizlenemedi.`,previewSummary:`{{count}} arşiv · {{size}} kaldırılacak`,andMore:`…ve {{count}} daha`,warning:`Dosyalar diskten kaldırılır ve geri yüklenemez. Devam etmeden önce saklamak istediğiniz her şeyi indirin veya favoriye ekleyin.`,confirmCta:`{{count}} arşivi kaldır`,purging:`Kaldırılıyor…`,toast:{success:`{{count}} arşiv kaldırıldı.`,failed:`Arşivler temizlenemedi.`}},archiveAutoPurge:{enableLabel:`Eski arşivleri otomatik temizle`,enableDescription:`Günde bir kez, eşik içinde yazdırılmamışsa arşivleri listelerden gizler ve dosyalarını diskten kaldırır. Bir arşivi yeniden yazdırmak saati sıfırlar.`,ageLabel:`Son şu kadar günde yazdırılmamış arşivleri otomatik sil`,ageDescription:`Minimum 7 gün, maksimum 10 yıl. En son baskı tamamlamasına göre — bir arşivi yeniden yazdırmak yaşını yeniler. 3MF, küçük resim, zaman atlamalı video, kaynak 3MF, F3D ve fotoğrafları kaldırır.`,days:`gün`,purgeStatsLabel:`Ayrıca istatistiklerden kaldır`,purgeStatsDescription:`Etkinleştirildiğinde, günlük süpürücü her temizlenen arşivi de Hızlı İstatistiklerden (filament, süre, maliyet, enerji) düşürür. Varsayılan kapalı — Hızlı İstatistikler katkıyı korur, yalnızca dosyalar diskten ayrılır.`,runNow:`Arşivleri şimdi temizle`,saveFailed:`Otomatik temizleme ayarları kaydedilemedi.`},cameraTokens:{title:`Kamera API Belirteçleri`,navTitle:`Kamera API belirteçleri`,description:`Kamera akışını Home Assistant, Frigate, kiosklar veya kararlı bir URL'ye ihtiyaç duyan başka herhangi bir araca gömmek için uzun ömürlü belirteçler. Her belirteç yalnızca kamera akışı içindir ve herhangi bir zamanda iptal edilebilir.`,loading:`Yükleniyor…`,confirmRevoke:{title:`Bu belirteç iptal edilsin mi?`,body:`"{{name}}" kullanan herhangi bir cihaz hemen erişimini kaybedecek. Bu geri alınamaz.`,cancel:`İptal`,confirm:`İptal Et`},create:{title:`Yeni belirteç oluştur`,nameLabel:`Belirteç adı`,namePlaceholder:`örn. Home Assistant`,daysLabel:`Sona erene kadar gün`,submit:`Oluştur`,hint:`Maksimum ömür 365 gün. Belirteç değeri oluşturmada yalnızca bir kez gösterilir — şimdi kopyalayın.`},created:{title:`Belirteç oluşturuldu — şimdi kopyalayın`,warning:`Bu, bu belirtecin görünür olacağı tek seferdir. Bu iletişim kutusunu kapattıktan sonra onu bir daha asla görüntüleyemezsiniz.`,copy:`Kopyala`,dismiss:`Kaydettim`},list:{myTitle:`Belirteçlerim`,allTitle:`Tüm kullanıcılar (yönetici görünümü)`,empty:`Henüz belirteç yok.`,name:`Ad`,owner:`Sahip`,prefix:`Önek`,created:`Oluşturuldu`,expires:`Sona Erer`,lastUsed:`Son kullanım`,revoke:`İptal Et`,expired:`Süresi Doldu`},toast:{created:`Belirteç oluşturuldu`,createFailed:`Belirteç oluşturulamadı`,revoked:`Belirteç iptal edildi`,revokeFailed:`Belirteç iptal edilemedi`,loadFailed:`Belirteçler yüklenemedi`,copied:`Panoya kopyalandı`,copyFailed:`Kopyalama başarısız — manuel olarak seçip kopyalayın`}},forecast:{title:`Tahmin`,noSpools:`Aktif makara bulunamadı. Tahmin verisini görmek için envanterinize makara ekleyin.`,noUsageData:`Kullanım verisi mevcut değil — stok zaman çizelgesi öngörülemiyor.`,sku:`SKU`,material:`Malzeme`,stock:`Stok`,dailyRate:`Oran`,daysLeft:`Kalan Gün`,emptyBy:`Şu Tarihte Boş`,reorderBy:`Şu Tarihte Sipariş`,actions:`İşlemler`,trend:`Trend`,estimated:`Tahmini`,noData:`Veri yok`,timeframe:`Zaman Aralığı`,chartTitle:`Öngörülen Stok — İlk 5 Malzeme`,dashedLinesROP:`Kesik çizgiler = yeniden sipariş noktaları`,stockLevel:`Stok Seviyesi`,reorderPoint:`Yeniden Sipariş Noktası`,safetyMargin:`Güvenlik Marjı`,trendLegend:`Trend (geçmiş tabanlı, %95 servis seviyesi)`,estimatedLegend:`Tahmini (ağırlık farkı)`,noDataLegend:`Veri yok`,ropLabel:`ROP`,ssLabel:`SS`,safetyStockLegend:`Güvenlik stoku`,stockArrivalLegend:`Stok varışı`,stockoutLegend:`Stok tükenmesi`,alertCount_one:`{{count}} uyarı`,alertCount_other:`{{count}} uyarı`,order:`Sipariş`,save:`Kaydet`,cancel:`İptal`,settingsSaved:`Ayarlar kaydedildi`,failedSaveSettings:`Ayarlar kaydedilemedi`,globalLeadTimeSaved:`Global teslim süresi kaydedildi`,globalLeadTime:`Global teslim süresi`,globalLeadTimeHint:`Global teslim süresi tabanı — tüm SKU'lar için yeniden sipariş noktası hesaplamasında kullanılır`,skuLeadTimeOverride:`SKU Teslim Süresi Geçersiz Kılma`,skuLeadTimeHint:`0 = global teslim süresini kullan. Bu SKU için geçersiz kılmak için >0 ayarlayın.`,safetyMarginLabel:`Güvenlik Marjı`,effectiveLeadTime:`Etkili Teslim Süresi`,effectiveLeadTimeHint:`max(global {{global}}g, SKU {{sku}}g)`,reorderPointHint:`d̄ × LT + güvenlik marjı — stok bu seviyeye geldiğinde sipariş ver`,safetyMarginHint:`İstatistiksel güvenlik stoku (z=1.65 × σ × √LT) + kullanıcı tanımlı tampon`,safetyMarginHintDays:`İstatistiksel güvenlik stokunun üzerine eklenen tampon.{{approx}}`,safetyMarginHintDaysApprox:` ≈ mevcut oranda {{g}}g.`,safetyMarginHintG:`İstatistiksel güvenlik stokunun üzerine eklenen sabit ağırlık tamponu.{{approx}}`,safetyMarginHintGApprox:` ≈ mevcut oranda {{days}}g.`,individualSpools:`Bireysel makaralar`,labelWeight:`Etiket`,spoolCount_one:`{{count}} makara`,spoolCount_other:`{{count}} makara`,stockBreakRisk:`Stok tükenme riski`,stockBreakDetail:`{{days}}g kaldı, teslim süresi {{lt}}g.`,stockBreakBefore:`Yenileme öncesi stok tükenmesi`,reorderNow:`Şimdi sipariş ver`,reorderTriggerPassed:`Tetikleyici tarih {{date}} geçti.`,shoppingList:`Alışveriş Listesi`,shoppingListItems_one:`({{count}} öğe)`,shoppingListItems_other:`({{count}} öğe)`,shoppingListEmpty:`Alışveriş listesi boş. Öğe eklemek için herhangi bir satırdaki sepet simgesine tıklayın.`,addToCart:`Alışveriş listesine ekle`,alertsSnoozed:`Bu SKU için uyarıları sustur`,alertsEnabled:`Bu SKU için uyarıları aç`,addedToCart:`Alışveriş listesine eklendi`,failedAddItem:`Öğe eklenemedi`,listView:`Liste`,logisticsView:`Lojistik`,qty:`Adet`,weight:`Ağırlık`,leadTime:`Teslim Süresi`,expectedRestock:`Beklenen Yenileme`,status:`Durum`,note:`Not`,pending:`Beklemede`,purchased:`Satın Alındı`,received:`Teslim Alındı`,markPurchased:`Satın alındı olarak işaretle`,markReceived:`Teslim alındı olarak işaretle — makaraları Stok envanterine ekler`,resetToPending:`Beklemeye sıfırla`,remove:`Kaldır`,clearAll:`Tümünü temizle`,downloadCsv:`CSV`,addToCartTitle:`Alışveriş Listesine Ekle`,byQuantity:`Miktara Göre`,byDuration:`Süreye Göre`,numberOfSpools:`Makara sayısı`,lastHowManyDays:`Kaç gün dayanmalı?`,noUsageQty:`Kullanım verisi yok — miktar 1 olarak ayarlandı.`,noteOptional:`Not (isteğe bağlı)`,notePlaceholder:`örn. X projesi için, acil…`,addNSpools_one:`{{count}} makara ekle`,addNSpools_other:`{{count}} makara ekle`,onArrival:`Varışta`,stockBreakIn:`{{days}}g içinde stok tükenmesi.`,stockRunsOutBefore:`{{lt}}g teslim süresi dolmadan önce stok tükenir.`,atRate:`{{rate}}g/gün oranında size gerekli`,moreSpools_one:`{{count}} daha makara`,moreSpools_other:`{{count}} daha makara`,bridgeGap:`boşluğu kapatmak için.`,noReadAccess:`Envanter tahminlerini görüntüleme izniniz yok.`,noWriteAccess:`Tahmin ayarlarını değiştirme izniniz yok.`}}}},Tt=[`en`,`de`,`es`,`fr`,`ja`,`it`,`ko`,`pt-BR`,`tr`,`zh-CN`,`zh-TW`],Et=`bambuddy_appliance_locale_consumed`;De.use(Ct).use(Ke).init({resources:wt,fallbackLng:`en`,supportedLngs:Tt,detection:{order:[`localStorage`,`navigator`,`htmlTag`],lookupLocalStorage:`bambutrack_language`,caches:[`localStorage`]},interpolation:{escapeValue:!1},react:{useSuspense:!1}});function Dt(){if(typeof window>`u`||!window.localStorage)return;let e=window.localStorage;typeof e.getItem!=`function`||typeof e.setItem!=`function`||e.getItem(Et)||fetch(`/api/v1/system/appliance`).then(e=>e.ok?e.json():null).then(t=>{!t||typeof t.locale!=`string`||Tt.includes(t.locale)&&(De.changeLanguage(t.locale),e.setItem(Et,`1`))}).catch(()=>{})}Dt();var Ot=[{code:`en`,name:`English`,nativeName:`English`},{code:`de`,name:`German`,nativeName:`Deutsch`},{code:`es`,name:`Spanish`,nativeName:`Español`},{code:`fr`,name:`French`,nativeName:`Français`},{code:`ja`,name:`Japanese`,nativeName:`日本語`},{code:`it`,name:`Italian`,nativeName:`Italiano`},{code:`ko`,name:`Korean`,nativeName:`한국어`},{code:`pt-BR`,name:`Portuguese (Brazil)`,nativeName:`Português (Brasil)`},{code:`zh-CN`,name:`Chinese (Simplified)`,nativeName:`简体中文`},{code:`zh-TW`,name:`Chinese (Traditional)`,nativeName:`繁體中文`},{code:`tr`,name:`Turkish`,nativeName:`Türkçe`}],kt=`modulepreload`,At=function(e){return`/`+e},jt={},Mt=function(e,t,n){let r=Promise.resolve();if(t&&t.length>0){let e=document.getElementsByTagName(`link`),i=document.querySelector(`meta[property=csp-nonce]`),a=i?.nonce||i?.getAttribute(`nonce`);function o(e){return Promise.all(e.map(e=>Promise.resolve(e).then(e=>({status:`fulfilled`,value:e}),e=>({status:`rejected`,reason:e}))))}r=o(t.map(t=>{if(t=At(t,n),t in jt)return;jt[t]=!0;let r=t.endsWith(`.css`),i=r?`[rel="stylesheet"]`:``;if(n)for(let n=e.length-1;n>=0;n--){let i=e[n];if(i.href===t&&(!r||i.rel===`stylesheet`))return}else if(document.querySelector(`link[href="${t}"]${i}`))return;let o=document.createElement(`link`);if(o.rel=r?`stylesheet`:kt,r||(o.as=`script`),o.crossOrigin=``,o.href=t,a&&o.setAttribute(`nonce`,a),document.head.appendChild(o),r)return new Promise((e,n)=>{o.addEventListener(`load`,e),o.addEventListener(`error`,()=>n(Error(`Unable to preload CSS for ${t}`)))})}))}function i(e){let t=new Event(`vite:preloadError`,{cancelable:!0});if(t.payload=e,window.dispatchEvent(t),!t.defaultPrevented)throw e}return r.then(t=>{for(let e of t||[])e.status===`rejected`&&i(e.reason);return e().catch(i)})},G=`popstate`;function Nt(e){return typeof e==`object`&&!!e&&`pathname`in e&&`search`in e&&`hash`in e&&`state`in e&&`key`in e}function Pt(e={}){function t(e,t){let n=t.state?.masked,{pathname:r,search:i,hash:a}=n||e.location;return zt(``,{pathname:r,search:i,hash:a},t.state&&t.state.usr||null,t.state&&t.state.key||`default`,n?{pathname:e.location.pathname,search:e.location.search,hash:e.location.hash}:void 0)}function n(e,t){return typeof t==`string`?t:Bt(t)}return Ht(t,n,null,e)}function Ft(e,t){if(e===!1||e==null)throw Error(t)}function It(e,t){if(!e){typeof console<`u`&&console.warn(t);try{throw Error(t)}catch{}}}function Lt(){return Math.random().toString(36).substring(2,10)}function Rt(e,t){return{usr:e.state,key:e.key,idx:t,masked:e.mask?{pathname:e.pathname,search:e.search,hash:e.hash}:void 0}}function zt(e,t,n=null,r,i){return{pathname:typeof e==`string`?e:e.pathname,search:``,hash:``,...typeof t==`string`?Vt(t):t,state:n,key:t&&t.key||r||Lt(),mask:i}}function Bt({pathname:e=`/`,search:t=``,hash:n=``}){return t&&t!==`?`&&(e+=t.charAt(0)===`?`?t:`?`+t),n&&n!==`#`&&(e+=n.charAt(0)===`#`?n:`#`+n),e}function Vt(e){let t={};if(e){let n=e.indexOf(`#`);n>=0&&(t.hash=e.substring(n),e=e.substring(0,n));let r=e.indexOf(`?`);r>=0&&(t.search=e.substring(r),e=e.substring(0,r)),e&&(t.pathname=e)}return t}function Ht(e,t,n,r={}){let{window:i=document.defaultView,v5Compat:a=!1}=r,o=i.history,s=`POP`,c=null,l=u();l??(l=0,o.replaceState({...o.state,idx:l},``));function u(){return(o.state||{idx:null}).idx}function d(){s=`POP`;let e=u(),t=e==null?null:e-l;l=e,c&&c({action:s,location:h.location,delta:t})}function f(e,t){s=`PUSH`;let r=Nt(e)?e:zt(h.location,e,t);n&&n(r,e),l=u()+1;let d=Rt(r,l),f=h.createHref(r.mask||r);try{o.pushState(d,``,f)}catch(e){if(e instanceof DOMException&&e.name===`DataCloneError`)throw e;i.location.assign(f)}a&&c&&c({action:s,location:h.location,delta:1})}function p(e,t){s=`REPLACE`;let r=Nt(e)?e:zt(h.location,e,t);n&&n(r,e),l=u();let i=Rt(r,l),d=h.createHref(r.mask||r);o.replaceState(i,``,d),a&&c&&c({action:s,location:h.location,delta:0})}function m(e){return Ut(i,e)}let h={get action(){return s},get location(){return e(i,o)},listen(e){if(c)throw Error(`A history only accepts one active listener`);return i.addEventListener(G,d),c=e,()=>{i.removeEventListener(G,d),c=null}},createHref(e){return t(i,e)},createURL:m,encodeLocation(e){let t=m(e);return{pathname:t.pathname,search:t.search,hash:t.hash}},push:f,replace:p,go(e){return o.go(e)}};return h}function Ut(e,t,n=!1){let r=`http://localhost`;e&&(r=e.location.origin===`null`?e.location.href:e.location.origin),Ft(r,`No window.location.(origin|href) available to create URL`);let i=typeof t==`string`?t:Bt(t);return i=i.replace(/ $/,`%20`),!n&&i.startsWith(`//`)&&(i=r+i),new URL(i,r)}function Wt(e,t,n=`/`){return Gt(e,t,n,!1)}function Gt(e,t,n,r,i){let a=dn((typeof t==`string`?Vt(t):t).pathname||`/`,n);if(a==null)return null;let o=i??qt(e),s=null,c=un(a);for(let e=0;s==null&&e{let c={relativePath:s===void 0?e.path||``:s,caseSensitive:e.caseSensitive===!0,childrenIndex:a,route:e};if(c.relativePath.startsWith(`/`)){if(!c.relativePath.startsWith(r)&&o)return;Ft(c.relativePath.startsWith(r),`Absolute route path "${c.relativePath}" nested under path "${r}" is not valid. An absolute child route path must start with the combined path of all its parent routes.`),c.relativePath=c.relativePath.slice(r.length)}let l=bn([r,c.relativePath]),u=n.concat(c);e.children&&e.children.length>0&&(Ft(e.index!==!0,`Index routes must not have child routes. Please remove all child routes from route path "${l}".`),Jt(e.children,t,u,l,o)),!(e.path==null&&!e.index)&&t.push({path:l,score:an(l,e.index),routesMeta:u})};return e.forEach((e,t)=>{if(e.path===``||!e.path?.includes(`?`))a(e,t);else for(let n of Yt(e.path))a(e,t,!0,n)}),t}function Yt(e){let t=e.split(`/`);if(t.length===0)return[];let[n,...r]=t,i=n.endsWith(`?`),a=n.replace(/\?$/,``);if(r.length===0)return i?[a,``]:[a];let o=Yt(r.join(`/`)),s=[];return s.push(...o.map(e=>e===``?a:[a,e].join(`/`))),i&&s.push(...o),s.map(t=>e.startsWith(`/`)&&t===``?`/`:t)}function Xt(e){e.sort((e,t)=>e.score===t.score?on(e.routesMeta.map(e=>e.childrenIndex),t.routesMeta.map(e=>e.childrenIndex)):t.score-e.score)}var Zt=/^:[\w-]+$/,Qt=3,$t=2,en=1,tn=10,nn=-2,rn=e=>e===`*`;function an(e,t){let n=e.split(`/`),r=n.length;return n.some(rn)&&(r+=nn),t&&(r+=$t),n.filter(e=>!rn(e)).reduce((e,t)=>e+(Zt.test(t)?Qt:t===``?en:tn),r)}function on(e,t){return e.length===t.length&&e.slice(0,-1).every((e,n)=>e===t[n])?e[e.length-1]-t[t.length-1]:0}function sn(e,t,n=!1){let{routesMeta:r}=e,i={},a=`/`,o=[];for(let e=0;e{if(t===`*`){let e=s[r]||``;o=a.slice(0,a.length-e.length).replace(/(.)\/+$/,`$1`)}let i=s[r];return n&&!i?e[t]=void 0:e[t]=(i||``).replace(/%2F/g,`/`),e},{}),pathname:a,pathnameBase:o,pattern:e}}function ln(e,t=!1,n=!0){It(e===`*`||!e.endsWith(`*`)||e.endsWith(`/*`),`Route path "${e}" will be treated as if it were "${e.replace(/\*$/,`/*`)}" because the \`*\` character must always follow a \`/\` in the pattern. To get rid of this warning, please change the route path to "${e.replace(/\*$/,`/*`)}".`);let r=[],i=`^`+e.replace(/\/*\*?$/,``).replace(/^\/*/,`/`).replace(/[\\.*+^${}|()[\]]/g,`\\$&`).replace(/\/:([\w-]+)(\?)?/g,(e,t,n,i,a)=>{if(r.push({paramName:t,isOptional:n!=null}),n){let t=a.charAt(i+e.length);return t&&t!==`/`?`/([^\\/]*)`:`(?:/([^\\/]*))?`}return`/([^\\/]+)`}).replace(/\/([\w-]+)\?(\/|$)/g,`(/$1)?$2`);return e.endsWith(`*`)?(r.push({paramName:`*`}),i+=e===`*`||e===`/*`?`(.*)$`:`(?:\\/(.+)|\\/*)$`):n?i+=`\\/*$`:e!==``&&e!==`/`&&(i+=`(?:(?=\\/|$))`),[new RegExp(i,t?void 0:`i`),r]}function un(e){try{return e.split(`/`).map(e=>decodeURIComponent(e).replace(/\//g,`%2F`)).join(`/`)}catch(t){return It(!1,`The URL path "${e}" could not be decoded because it is a malformed URL segment. This is probably due to a bad percent encoding (${t}).`),e}}function dn(e,t){if(t===`/`)return e;if(!e.toLowerCase().startsWith(t.toLowerCase()))return null;let n=t.endsWith(`/`)?t.length-1:t.length,r=e.charAt(n);return r&&r!==`/`?null:e.slice(n)||`/`}var fn=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i;function pn(e,t=`/`){let{pathname:n,search:r=``,hash:i=``}=typeof e==`string`?Vt(e):e,a;return n?(n=yn(n),a=n.startsWith(`/`)?mn(n.substring(1),`/`):mn(n,t)):a=t,{pathname:a,search:Cn(r),hash:wn(i)}}function mn(e,t){let n=xn(t).split(`/`);return e.split(`/`).forEach(e=>{e===`..`?n.length>1&&n.pop():e!==`.`&&n.push(e)}),n.length>1?n.join(`/`):`/`}function hn(e,t,n,r){return`Cannot include a '${e}' character in a manually specified \`to.${t}\` field [${JSON.stringify(r)}]. Please separate it out to the \`to.${n}\` field. Alternatively you may provide the full path as a string in and the router will parse it for you.`}function gn(e){return e.filter((e,t)=>t===0||e.route.path&&e.route.path.length>0)}function _n(e){let t=gn(e);return t.map((e,n)=>n===t.length-1?e.pathname:e.pathnameBase)}function vn(e,t,n,r=!1){let i;typeof e==`string`?i=Vt(e):(i={...e},Ft(!i.pathname||!i.pathname.includes(`?`),hn(`?`,`pathname`,`search`,i)),Ft(!i.pathname||!i.pathname.includes(`#`),hn(`#`,`pathname`,`hash`,i)),Ft(!i.search||!i.search.includes(`#`),hn(`#`,`search`,`hash`,i)));let a=e===``||i.pathname===``,o=a?`/`:i.pathname,s;if(o==null)s=n;else{let e=t.length-1;if(!r&&o.startsWith(`..`)){let t=o.split(`/`);for(;t[0]===`..`;)t.shift(),--e;i.pathname=t.join(`/`)}s=e>=0?t[e]:`/`}let c=pn(i,s),l=o&&o!==`/`&&o.endsWith(`/`),u=(a||o===`.`)&&n.endsWith(`/`);return!c.pathname.endsWith(`/`)&&(l||u)&&(c.pathname+=`/`),c}var yn=e=>e.replace(/\/\/+/g,`/`),bn=e=>yn(e.join(`/`)),xn=e=>e.replace(/\/+$/,``),Sn=e=>xn(e).replace(/^\/*/,`/`),Cn=e=>!e||e===`?`?``:e.startsWith(`?`)?e:`?`+e,wn=e=>!e||e===`#`?``:e.startsWith(`#`)?e:`#`+e,Tn=class{constructor(e,t,n,r=!1){this.status=e,this.statusText=t||``,this.internal=r,n instanceof Error?(this.data=n.toString(),this.error=n):this.data=n}};function En(e){return e!=null&&typeof e.status==`number`&&typeof e.statusText==`string`&&typeof e.internal==`boolean`&&`data`in e}function Dn(e){return bn(e.map(e=>e.route.path).filter(Boolean))||`/`}var On=typeof window<`u`&&window.document!==void 0&&window.document.createElement!==void 0;function kn(e,t){let n=e;if(typeof n!=`string`||!fn.test(n))return{absoluteURL:void 0,isExternal:!1,to:n};let r=n,i=!1;if(On)try{let e=new URL(window.location.href),r=n.startsWith(`//`)?new URL(e.protocol+n):new URL(n),a=dn(r.pathname,t);r.origin===e.origin&&a!=null?n=a+r.search+r.hash:i=!0}catch{It(!1,` contains an invalid URL which will probably break when clicked - please update to a valid URL path.`)}return{absoluteURL:r,isExternal:i,to:n}}Object.getOwnPropertyNames(Object.prototype).sort().join(`\0`);var An=[`POST`,`PUT`,`PATCH`,`DELETE`];new Set(An);var jn=[`GET`,...An];new Set(jn);var Mn=y.createContext(null);Mn.displayName=`DataRouter`;var Nn=y.createContext(null);Nn.displayName=`DataRouterState`;var Pn=y.createContext(!1);function Fn(){return y.useContext(Pn)}var In=y.createContext({isTransitioning:!1});In.displayName=`ViewTransition`;var Ln=y.createContext(new Map);Ln.displayName=`Fetchers`;var Rn=y.createContext(null);Rn.displayName=`Await`;var zn=y.createContext(null);zn.displayName=`Navigation`;var Bn=y.createContext(null);Bn.displayName=`Location`;var Vn=y.createContext({outlet:null,matches:[],isDataRoute:!1});Vn.displayName=`Route`;var Hn=y.createContext(null);Hn.displayName=`RouteError`;var Un=`REACT_ROUTER_ERROR`,Wn=`REDIRECT`,Gn=`ROUTE_ERROR_RESPONSE`;function Kn(e){if(e.startsWith(`${Un}:${Wn}:{`))try{let t=JSON.parse(e.slice(28));if(typeof t==`object`&&t&&typeof t.status==`number`&&typeof t.statusText==`string`&&typeof t.location==`string`&&typeof t.reloadDocument==`boolean`&&typeof t.replace==`boolean`)return t}catch{}}function qn(e){if(e.startsWith(`${Un}:${Gn}:{`))try{let t=JSON.parse(e.slice(40));if(typeof t==`object`&&t&&typeof t.status==`number`&&typeof t.statusText==`string`)return new Tn(t.status,t.statusText,t.data)}catch{}}function Jn(e,{relative:t}={}){Ft(Yn(),`useHref() may be used only in the context of a component.`);let{basename:n,navigator:r}=y.useContext(zn),{hash:i,pathname:a,search:o}=ar(e,{relative:t}),s=a;return n!==`/`&&(s=a===`/`?n:bn([n,a])),r.createHref({pathname:s,search:o,hash:i})}function Yn(){return y.useContext(Bn)!=null}function Xn(){return Ft(Yn(),`useLocation() may be used only in the context of a component.`),y.useContext(Bn).location}var Zn=`You should call navigate() in a React.useEffect(), not when your component is first rendered.`;function Qn(e){y.useContext(zn).static||y.useLayoutEffect(e)}function $n(){let{isDataRoute:e}=y.useContext(Vn);return e?wr():er()}function er(){Ft(Yn(),`useNavigate() may be used only in the context of a component.`);let e=y.useContext(Mn),{basename:t,navigator:n}=y.useContext(zn),{matches:r}=y.useContext(Vn),{pathname:i}=Xn(),a=JSON.stringify(_n(r)),o=y.useRef(!1);return Qn(()=>{o.current=!0}),y.useCallback((r,s={})=>{if(It(o.current,Zn),!o.current)return;if(typeof r==`number`){n.go(r);return}let c=vn(r,JSON.parse(a),i,s.relative===`path`);e==null&&t!==`/`&&(c.pathname=c.pathname===`/`?t:bn([t,c.pathname])),(s.replace?n.replace:n.push)(c,s.state,s)},[t,n,a,i,e])}var tr=y.createContext(null);function nr(){return y.useContext(tr)}function rr(e){let t=y.useContext(Vn).outlet;return y.useMemo(()=>t&&y.createElement(tr.Provider,{value:e},t),[t,e])}function ir(){let{matches:e}=y.useContext(Vn);return e[e.length-1]?.params??{}}function ar(e,{relative:t}={}){let{matches:n}=y.useContext(Vn),{pathname:r}=Xn(),i=JSON.stringify(_n(n));return y.useMemo(()=>vn(e,JSON.parse(i),r,t===`path`),[e,i,r,t])}function or(e,t){return sr(e,t)}function sr(e,t,n){Ft(Yn(),`useRoutes() may be used only in the context of a component.`);let{navigator:r}=y.useContext(zn),{matches:i}=y.useContext(Vn),a=i[i.length-1],o=a?a.params:{},s=a?a.pathname:`/`,c=a?a.pathnameBase:`/`,l=a&&a.route;{let e=l&&l.path||``;Er(s,!l||e.endsWith(`*`)||e.endsWith(`*?`),`You rendered descendant (or called \`useRoutes()\`) at "${s}" (under ) but the parent route path has no trailing "*". This means if you navigate deeper, the parent won't match anymore and therefore the child routes will never render. -Please change the parent to .`)}let u=Xn(),d;if(t){let e=typeof t==`string`?Vt(t):t;Ft(c===`/`||e.pathname?.startsWith(c),`When overriding the location using \`\` or \`useRoutes(routes, location)\`, the location pathname must begin with the portion of the URL pathname that was matched by all parent routes. The current pathname base is "${c}" but pathname "${e.pathname}" was given in the \`location\` prop.`),d=e}else d=u;let f=d.pathname||`/`,p=f;if(c!==`/`){let e=c.replace(/^\//,``).split(`/`);p=`/`+f.replace(/^\//,``).split(`/`).slice(e.length).join(`/`)}let m=n&&n.state.matches.length?n.state.matches.map(e=>Object.assign(e,{route:n.manifest[e.route.id]||e.route})):Wt(e,{pathname:p});It(l||m!=null,`No routes matched location "${d.pathname}${d.search}${d.hash}" `),It(m==null||m[m.length-1].route.element!==void 0||m[m.length-1].route.Component!==void 0||m[m.length-1].route.lazy!==void 0,`Matched leaf route at location "${d.pathname}${d.search}${d.hash}" does not have an element or Component. This means it will render an with a null value by default resulting in an "empty" page.`);let h=mr(m&&m.map(e=>Object.assign({},e,{params:Object.assign({},o,e.params),pathname:bn([c,r.encodeLocation?r.encodeLocation(e.pathname.replace(/%/g,`%25`).replace(/\?/g,`%3F`).replace(/#/g,`%23`)).pathname:e.pathname]),pathnameBase:e.pathnameBase===`/`?c:bn([c,r.encodeLocation?r.encodeLocation(e.pathnameBase.replace(/%/g,`%25`).replace(/\?/g,`%3F`).replace(/#/g,`%23`)).pathname:e.pathnameBase])})),i,n);return t&&h?y.createElement(Bn.Provider,{value:{location:{pathname:`/`,search:``,hash:``,state:null,key:`default`,mask:void 0,...d},navigationType:`POP`}},h):h}function cr(){let e=Cr(),t=En(e)?`${e.status} ${e.statusText}`:e instanceof Error?e.message:JSON.stringify(e),n=e instanceof Error?e.stack:null,r=`rgba(200,200,200, 0.5)`,i={padding:`0.5rem`,backgroundColor:r},a={padding:`2px 4px`,backgroundColor:r},o=null;return console.error(`Error handled by React Router default ErrorBoundary:`,e),o=y.createElement(y.Fragment,null,y.createElement(`p`,null,`💿 Hey developer 👋`),y.createElement(`p`,null,`You can provide a way better UX than this when your app throws errors by providing your own `,y.createElement(`code`,{style:a},`ErrorBoundary`),` or`,` `,y.createElement(`code`,{style:a},`errorElement`),` prop on your route.`)),y.createElement(y.Fragment,null,y.createElement(`h2`,null,`Unexpected Application Error!`),y.createElement(`h3`,{style:{fontStyle:`italic`}},t),n?y.createElement(`pre`,{style:i},n):null,o)}var lr=y.createElement(cr,null),ur=class extends y.Component{constructor(e){super(e),this.state={location:e.location,revalidation:e.revalidation,error:e.error}}static getDerivedStateFromError(e){return{error:e}}static getDerivedStateFromProps(e,t){return t.location!==e.location||t.revalidation!==`idle`&&e.revalidation===`idle`?{error:e.error,location:e.location,revalidation:e.revalidation}:{error:e.error===void 0?t.error:e.error,location:t.location,revalidation:e.revalidation||t.revalidation}}componentDidCatch(e,t){this.props.onError?this.props.onError(e,t):console.error(`React Router caught the following error during render`,e)}render(){let e=this.state.error;if(this.context&&typeof e==`object`&&e&&`digest`in e&&typeof e.digest==`string`){let t=qn(e.digest);t&&(e=t)}let t=e===void 0?this.props.children:y.createElement(Vn.Provider,{value:this.props.routeContext},y.createElement(Hn.Provider,{value:e,children:this.props.component}));return this.context?y.createElement(fr,{error:e},t):t}};ur.contextType=Pn;var dr=new WeakMap;function fr({children:e,error:t}){let{basename:n}=y.useContext(zn);if(typeof t==`object`&&t&&`digest`in t&&typeof t.digest==`string`){let e=Kn(t.digest);if(e){let r=dr.get(t);if(r)throw r;let i=kn(e.location,n);if(On&&!dr.get(t))if(i.isExternal||e.reloadDocument)window.location.href=i.absoluteURL||i.to;else{let n=Promise.resolve().then(()=>window.__reactRouterDataRouter.navigate(i.to,{replace:e.replace}));throw dr.set(t,n),n}return y.createElement(`meta`,{httpEquiv:`refresh`,content:`0;url=${i.absoluteURL||i.to}`})}}return e}function pr({routeContext:e,match:t,children:n}){let r=y.useContext(Mn);return r&&r.static&&r.staticContext&&(t.route.errorElement||t.route.ErrorBoundary)&&(r.staticContext._deepestRenderedBoundaryId=t.route.id),y.createElement(Vn.Provider,{value:e},n)}function mr(e,t=[],n){let r=n?.state;if(e==null){if(!r)return null;if(r.errors)e=r.matches;else if(t.length===0&&!r.initialized&&r.matches.length>0)e=r.matches;else return null}let i=e,a=r?.errors;if(a!=null){let e=i.findIndex(e=>e.route.id&&a?.[e.route.id]!==void 0);Ft(e>=0,`Could not find a matching route for errors on route IDs: ${Object.keys(a).join(`,`)}`),i=i.slice(0,Math.min(i.length,e+1))}let o=!1,s=-1;if(n&&r){o=r.renderFallback;for(let e=0;e=0?i.slice(0,s+1):[i[0]];break}}}}let c=n?.onError,l=r&&c?(e,t)=>{c(e,{location:r.location,params:r.matches?.[0]?.params??{},pattern:Dn(r.matches),errorInfo:t})}:void 0;return i.reduceRight((e,n,c)=>{let u,d=!1,f=null,p=null;r&&(u=a&&n.route.id?a[n.route.id]:void 0,f=n.route.errorElement||lr,o&&(s<0&&c===0?(Er(`route-fallback`,!1,"No `HydrateFallback` element provided to render during initial hydration"),d=!0,p=null):s===c&&(d=!0,p=n.route.hydrateFallbackElement||null)));let m=t.concat(i.slice(0,c+1)),h=()=>{let t;return t=u?f:d?p:n.route.Component?y.createElement(n.route.Component,null):n.route.element?n.route.element:e,y.createElement(pr,{match:n,routeContext:{outlet:e,matches:m,isDataRoute:r!=null},children:t})};return r&&(n.route.ErrorBoundary||n.route.errorElement||c===0)?y.createElement(ur,{location:r.location,revalidation:r.revalidation,component:f,error:u,children:h(),routeContext:{outlet:null,matches:m,isDataRoute:!0},onError:l}):h()},null)}function hr(e){return`${e} must be used within a data router. See https://reactrouter.com/en/main/routers/picking-a-router.`}function gr(e){let t=y.useContext(Mn);return Ft(t,hr(e)),t}function _r(e){let t=y.useContext(Nn);return Ft(t,hr(e)),t}function vr(e){let t=y.useContext(Vn);return Ft(t,hr(e)),t}function yr(e){let t=vr(e),n=t.matches[t.matches.length-1];return Ft(n.route.id,`${e} can only be used on routes that contain a unique "id"`),n.route.id}function br(){return yr(`useRouteId`)}function xr(){let e=_r(`useNavigation`);return y.useMemo(()=>{let{matches:t,historyAction:n,...r}=e.navigation;return r},[e.navigation])}function Sr(){let{matches:e,loaderData:t}=_r(`useMatches`);return y.useMemo(()=>e.map(e=>Kt(e,t)),[e,t])}function Cr(){let e=y.useContext(Hn),t=_r(`useRouteError`),n=yr(`useRouteError`);return e===void 0?t.errors?.[n]:e}function wr(){let{router:e}=gr(`useNavigate`),t=yr(`useNavigate`),n=y.useRef(!1);return Qn(()=>{n.current=!0}),y.useCallback(async(r,i={})=>{It(n.current,Zn),n.current&&(typeof r==`number`?await e.navigate(r):await e.navigate(r,{fromRouteId:t,...i}))},[e,t])}var Tr={};function Er(e,t,n){!t&&!Tr[e]&&(Tr[e]=!0,It(!1,n))}y.memo(Dr);function Dr({routes:e,manifest:t,future:n,state:r,isStatic:i,onError:a}){return sr(e,void 0,{manifest:t,state:r,isStatic:i,onError:a,future:n})}function Or({to:e,replace:t,state:n,relative:r}){Ft(Yn(),` may be used only in the context of a component.`);let{static:i}=y.useContext(zn);It(!i,` must not be used on the initial render in a . This is a no-op, but you should modify your code so the is only ever rendered in response to some user interaction or state change.`);let{matches:a}=y.useContext(Vn),{pathname:o}=Xn(),s=$n(),c=vn(e,_n(a),o,r===`path`),l=JSON.stringify(c);return y.useEffect(()=>{s(JSON.parse(l),{replace:t,state:n,relative:r})},[s,l,r,t,n]),null}function kr(e){return rr(e.context)}function Ar(e){Ft(!1,`A is only ever to be used as the child of element, never rendered directly. Please wrap your in a .`)}function jr({basename:e=`/`,children:t=null,location:n,navigationType:r=`POP`,navigator:i,static:a=!1,useTransitions:o}){Ft(!Yn(),`You cannot render a inside another . You should never have more than one in your app.`);let s=e.replace(/^\/*/,`/`),c=y.useMemo(()=>({basename:s,navigator:i,static:a,useTransitions:o,future:{}}),[s,i,a,o]);typeof n==`string`&&(n=Vt(n));let{pathname:l=`/`,search:u=``,hash:d=``,state:f=null,key:p=`default`,mask:m}=n,h=y.useMemo(()=>{let e=dn(l,s);return e==null?null:{location:{pathname:e,search:u,hash:d,state:f,key:p,mask:m},navigationType:r}},[s,l,u,d,f,p,r,m]);return It(h!=null,` is not able to match the URL "${l}${u}${d}" because it does not start with the basename, so the won't render anything.`),h==null?null:y.createElement(zn.Provider,{value:c},y.createElement(Bn.Provider,{children:t,value:h}))}function Mr({children:e,location:t}){return or(Nr(e),t)}y.Component;function Nr(e,t=[]){let n=[];return y.Children.forEach(e,(e,r)=>{if(!y.isValidElement(e))return;let i=[...t,r];if(e.type===y.Fragment){n.push.apply(n,Nr(e.props.children,i));return}Ft(e.type===Ar,`[${typeof e.type==`string`?e.type:e.type.name}] is not a component. All component children of must be a or `),Ft(!e.props.index||!e.props.children,`An index route cannot have child routes.`);let a={id:e.props.id||i.join(`-`),caseSensitive:e.props.caseSensitive,element:e.props.element,Component:e.props.Component,index:e.props.index,path:e.props.path,middleware:e.props.middleware,loader:e.props.loader,action:e.props.action,hydrateFallbackElement:e.props.hydrateFallbackElement,HydrateFallback:e.props.HydrateFallback,errorElement:e.props.errorElement,ErrorBoundary:e.props.ErrorBoundary,hasErrorBoundary:e.props.hasErrorBoundary===!0||e.props.ErrorBoundary!=null||e.props.errorElement!=null,shouldRevalidate:e.props.shouldRevalidate,handle:e.props.handle,lazy:e.props.lazy};e.props.children&&(a.children=Nr(e.props.children,i)),n.push(a)}),n}var Pr=`get`,Fr=`application/x-www-form-urlencoded`;function Ir(e){return typeof HTMLElement<`u`&&e instanceof HTMLElement}function Lr(e){return Ir(e)&&e.tagName.toLowerCase()===`button`}function Rr(e){return Ir(e)&&e.tagName.toLowerCase()===`form`}function zr(e){return Ir(e)&&e.tagName.toLowerCase()===`input`}function Br(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}function Vr(e,t){return e.button===0&&(!t||t===`_self`)&&!Br(e)}function Hr(e=``){return new URLSearchParams(typeof e==`string`||Array.isArray(e)||e instanceof URLSearchParams?e:Object.keys(e).reduce((t,n)=>{let r=e[n];return t.concat(Array.isArray(r)?r.map(e=>[n,e]):[[n,r]])},[]))}function Ur(e,t){let n=Hr(e);return t&&t.forEach((e,r)=>{n.has(r)||t.getAll(r).forEach(e=>{n.append(r,e)})}),n}var Wr=null;function Gr(){if(Wr===null)try{new FormData(document.createElement(`form`),0),Wr=!1}catch{Wr=!0}return Wr}var Kr=new Set([`application/x-www-form-urlencoded`,`multipart/form-data`,`text/plain`]);function qr(e){return e!=null&&!Kr.has(e)?(It(!1,`"${e}" is not a valid \`encType\` for \`
\`/\`\` and will default to "${Fr}"`),null):e}function Jr(e,t){let n,r,i,a,o;if(Rr(e)){let o=e.getAttribute(`action`);r=o?dn(o,t):null,n=e.getAttribute(`method`)||Pr,i=qr(e.getAttribute(`enctype`))||Fr,a=new FormData(e)}else if(Lr(e)||zr(e)&&(e.type===`submit`||e.type===`image`)){let o=e.form;if(o==null)throw Error(`Cannot submit a