mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-07-27 14:19:01 +03:00
79c22bd776aedf0e97477846172b1eecaf72f21a
5878
Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
79c22bd776 |
Bump js-yaml from 4.1.1 to 4.2.0 in /docs
Bumps [js-yaml](https://github.com/nodeca/js-yaml) from 4.1.1 to 4.2.0. - [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md) - [Commits](https://github.com/nodeca/js-yaml/compare/4.1.1...4.2.0) --- updated-dependencies: - dependency-name: js-yaml dependency-version: 4.2.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|
|
accbab7afc |
Rebuild object docs (#23570)
* Rebuild object docs * Tweak styling and fix mixing tabs * Fix warning * Cleanup styling |
||
|
|
cbf6d032cb |
Add optional docs link to config field messages (#23569)
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
* add optional docs link to config field messages * docs tweaks * add field messages for model dimensions |
||
|
|
ec3fb00494 |
perf(track): use sum()/len() instead of np.mean in average_boxes (#23521)
CI / AMD64 Build (push) Has been cancelled
CI / ARM Build (push) Has been cancelled
CI / Jetson Jetpack 6 (push) Has been cancelled
CI / AMD64 Extra Build (push) Has been cancelled
CI / ARM Extra Build (push) Has been cancelled
CI / Synaptics Build (push) Has been cancelled
CI / Assemble and push default build (push) Has been cancelled
* perf(track): avoid numpy reductions on tiny box lists in position smoothing update_position runs per tracked object per frame. While a position has fewer than 10 samples it calls np.percentile four times, and average_boxes (per stationary object per frame) calls np.mean four times - all on lists of at most 10 ints, where numpy's per-call dispatch/validation overhead dominates the actual work. Replace them with pure-Python equivalents: - average_boxes: sum()/len() instead of np.mean (bit-identical output) - interpolated_percentile(): linear-interpolated percentile matching numpy.percentile (including its lerp branch at frac>=0.5) for the small lists used here, in place of np.percentile Measured in the release image (numpy 1.26.4) on a 10-element list: np.percentile 18735 ns -> 191 ns/call (98x); np.mean-based average_boxes 7480 ns -> 591 ns (12.7x); ~74 us saved per object-frame in update_position. A live py-spy --gil profile of a camera process_frames worker showed np.percentile (update_position) and np.mean (average_boxes) among the top Frigate-owned on-CPU frames. Output is unchanged: added tests assert both helpers are bit-identical to numpy over randomized small inputs. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * Drop interpolated_percentile, keep only average_boxes Per review: reimplementing np.percentile hurts readability and risks divergence from numpy (e.g. numpy 2.x). Revert update_position to np.percentile and remove the helper; keep only the average_boxes change (sum()/len() instead of np.mean), which stays bit-identical. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com> |
||
|
|
081d6f95ef |
perf(track): avoid per-frame allocations and list lookups in tracker (#23523)
Two small per-object-per-frame improvements in the tracker hot path (match_and_update), both bit-identical: - get_stationary_threshold returned a freshly constructed StationaryThresholds (a dataclass plus a list) on every call for any label not in the three known lists - i.e. for common labels like person/dog. The default thresholds are constant and never mutated, so return a shared module-level singleton, as the other three cases already do. - untracked_object_boxes membership used `box not in [list of boxes]` (O(n)); build a set of box tuples for O(1) membership. Boxes are hashable as tuples and output is unchanged. get_stationary_threshold appeared in a live py-spy --gil profile of a camera process_frames worker. Adds tests for the threshold lookups. Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com> |
||
|
|
a2b46f5d84 |
perf(util): cut redundant work in per-frame detection consolidation (#23522)
video/detect.py runs these for every frame: - get_cluster_candidates: used_boxes was a list with `in` membership tests inside the nested loop (O(n) per check). It is only ever membership-tested, so switching it to a set (O(1)) leaves output unchanged. - get_consolidated_object_detections: area(current_box) was recomputed on every inner-loop iteration though it is loop-invariant; hoist it to one call per outer detection. Both are bit-identical (verified against the previous implementations over randomized inputs). Measured in the release image, get_cluster_candidates on a frame of 30 detection boxes: 59.2 us -> 42.1 us (1.4x); the gain scales with the number of boxes per frame. Adds a partition-invariant test (every box index lands in exactly one cluster). Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com> |
||
|
|
f065cc8642 |
fix unbounded recordings_info growth for cameras with no cache segments (#23528)
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
A record-enabled camera whose record stream produces no cache segments never appears in grouped_recordings, so the per-camera prune in RecordingMaintainer.move_files() never runs for it. Its object_recordings_info and audio_recordings_info buffers then grow without bound until the recording process is OOM-killed (discussion #23451). Run a prune every move_files() cycle for cameras absent from grouped_recordings, dropping entries older than the longest a segment could still wait in cache before being matched (MAX_SEGMENTS_IN_CACHE * MAX_SEGMENT_DURATION * 2). Cameras present in grouped_recordings are left untouched and keep their existing prune. Add a regression test asserting that an absent camera's stale entries are dropped (recent ones kept) while a present camera's entries are left intact. Co-authored-by: John Pescatore <johnpescatore@claude.internal.johnpescatore.com> |
||
|
|
9ce80e7266 |
Improve storage docs (#23542)
* improve storage docs * clarify * tweak language * move section |
||
|
|
bb5056a68a | docs: correct face_recognition min_area default to 750 (#23535) | ||
|
|
d982b3a782 |
perf(util): use monotonic clock and bounded deque in EventsPerSecond (#23520)
CI / AMD64 Build (push) Has been cancelled
CI / ARM Build (push) Has been cancelled
CI / Jetson Jetpack 6 (push) Has been cancelled
CI / AMD64 Extra Build (push) Has been cancelled
CI / ARM Extra Build (push) Has been cancelled
CI / Synaptics Build (push) Has been cancelled
CI / Assemble and push default build (push) Has been cancelled
* perf(util): use monotonic clock and bounded deque in EventsPerSecond EventsPerSecond is updated on every captured frame, every detection and every processed frame across all cameras and detectors. The previous implementation derived timestamps from datetime.now().timestamp() (wall clock), so an NTP or manual clock adjustment could skew the rolling-window expiry; it also stored timestamps in a list and expired them with del self._timestamps[0] (O(n) per removal) plus a periodic slice-copy to cap growth. Switch to time.monotonic() for the interval math (correct by construction and immune to wall-clock jumps) and a collections.deque(maxlen=...) so expiry is O(1) (popleft) and retention is bounded automatically. This mirrors the deque-based expiry already used in video/ffmpeg.py and watchdog.py. Observable output is unchanged. Adds frigate/test/test_builtin.py covering rate calculation, window expiry and the memory bound. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * test: drop test_timestamps_are_memory_bounded It only asserted that deque(maxlen=) caps length, which is stdlib behavior rather than something this change needs to verify. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com> |
||
|
|
d036061e3f |
cache the preview_frames directory listing so concurrent per-camera frame requests share one scan instead of each re-listing the whole directory (#23526)
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
|
||
|
|
5003ab895c |
add camera search, select-all/clear, and group selection to the multi-camera export dialog (#23516)
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
CI / AMD64 Extra Build (push) Blocked by required conditions
|
||
|
|
652ea2454f |
Miscellaneous fixes (#23513)
* display zone names consistently using friendly_name or raw id without transformation * enforce camera-level access on go2rtc live stream websocket endpoints |
||
|
|
37ea6b46b5 | small docs tweaks (#23506) | ||
|
|
8203e39b7f |
add go2rtc settings section to the save all flow (#23501)
CI / ARM Build (push) Has been cancelled
CI / Jetson Jetpack 6 (push) Has been cancelled
CI / AMD64 Extra Build (push) Has been cancelled
CI / ARM Extra Build (push) Has been cancelled
CI / Synaptics Build (push) Has been cancelled
CI / Assemble and push default build (push) Has been cancelled
CI / AMD64 Build (push) Has been cancelled
|
||
|
|
282e70d4bf |
Add go2rtc stream selection to camera configuration (#23496)
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* add go2rtc stream selection to camera ffmpeg config * i18n * add config-schema.json to generated e2e mock data * e2e test * docs * fix test |
||
|
|
a7df17cc61 | update ffmpeg navpath title (#23494) | ||
|
|
c79ca9838f |
UI tweaks (#23492)
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* slightly darken bg-card * change menu label * move snapshot retain out of advanced fields * add new ui options for collapsibles * backend title and description * remove unused snapshot retention field * update reference config * remove further references to snapshots retain.mode |
||
|
|
e84a89ef3e |
fix camera audio availability detection on mobile live grid (#23488)
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / Assemble and push default build (push) Blocked by required conditions
|
||
|
|
ba29e141da |
Docs tweaks (#23487)
* docs tweaks * tweak * title tweak |
||
|
|
32e433cafc |
Allow GenAI providers to be initialized lazily (#23482)
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
* allow GenAI providers to be initialized even if they failed on previous attempts * mypy |
||
|
|
bc816926a5 |
Replace export ffmpeg argument blocklist with a structural allowlist (#23478)
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
* use allowlist for custom export ffmpeg args * reject brackets in export filtergraph validation instead of stripping link labels |
||
|
|
b79ad9871a | generate the API docs OpenAPI spec from the app with per-endpoint auth requirements (#23476) | ||
|
|
8be7a97fa6 | guard norfair distance against non-finite and zero-area boxes that could crash autotracking cameras (#23475) | ||
|
|
d7ad3ba699 |
Fix chat tool calling and prompt breaking (#23457)
CI / AMD64 Build (push) Has been cancelled
CI / ARM Build (push) Has been cancelled
CI / Jetson Jetpack 6 (push) Has been cancelled
CI / AMD64 Extra Build (push) Has been cancelled
CI / ARM Extra Build (push) Has been cancelled
CI / Synaptics Build (push) Has been cancelled
CI / Assemble and push default build (push) Has been cancelled
* Implement tool call history keeping * Refactor to match single message implementation * Simplify data representation * Cleanup chat page rendering * Include system message to not break cache * Formatting * Update tests and update .gitignore |
||
|
|
e6601d50a6 |
Add recording keyframe analysis to camera probe dialog (#23453)
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
* backend: endpoint and util funcs * tests * frontend and i18n * update openapi spec * add tip to docs |
||
|
|
efe585a920 |
Miscellaneous fixes (#23445)
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
CI / AMD64 Build (push) Waiting to run
* keep global camera config subscribers broad when only one camera exists at startup * update glossary |
||
|
|
f3a352ef3f |
Miscellaneous fixes (#23413)
CI / AMD64 Build (push) Has been cancelled
CI / ARM Build (push) Has been cancelled
CI / Jetson Jetpack 6 (push) Has been cancelled
CI / AMD64 Extra Build (push) Has been cancelled
CI / ARM Extra Build (push) Has been cancelled
CI / Synaptics Build (push) Has been cancelled
CI / Assemble and push default build (push) Has been cancelled
* update e2e mock data to remove deprecated fields * remove scream audio label scream was never mapped to anything in frigate's custom labelmap, yell is used everywhere * document common audio labels * deprecate ffmpeg 5 * language tweak * add field message to recommend presets instead of manual hwaccel args * add guidance to docs on choosing a detect fps |
||
|
|
ad968efd3e |
Added translation using Weblate (Zuni)
CI / AMD64 Build (push) Has been cancelled
CI / ARM Build (push) Has been cancelled
CI / Jetson Jetpack 6 (push) Has been cancelled
CI / ARM Extra Build (push) Has been cancelled
CI / AMD64 Extra Build (push) Has been cancelled
CI / Synaptics Build (push) Has been cancelled
CI / Assemble and push default build (push) Has been cancelled
Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Added translation using Weblate (Zuni) Co-authored-by: Firas <firas.amm@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> |
||
|
|
3fe91e20d0 |
Translated using Weblate (Norwegian Bokmål)
Currently translated at 100.0% (473 of 473 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (811 of 811 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (1171 of 1171 strings) Translated using Weblate (Norwegian Bokmål) Currently translated at 100.0% (53 of 53 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: OverTheHillsAndFarAway <prosjektx@users.noreply.hosted.weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/nb_NO/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/nb_NO/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-chat/nb_NO/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/nb_NO/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/views-chat Translation: Frigate NVR/views-settings |
||
|
|
bd52a1cc48 |
Translated using Weblate (Chinese (Simplified Han script))
Currently translated at 100.0% (1272 of 1272 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (475 of 475 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (809 of 809 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (62 of 62 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (807 of 807 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (473 of 473 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (1268 of 1268 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (61 of 61 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 94.6% (1196 of 1263 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (1195 of 1195 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (239 of 239 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (100 of 100 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (1186 of 1186 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (23 of 23 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (1183 of 1183 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (54 of 54 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (1181 of 1181 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (54 of 54 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (811 of 811 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (53 of 53 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (238 of 238 strings) Translated using Weblate (Chinese (Simplified Han script)) Currently translated at 100.0% (1176 of 1176 strings) Co-authored-by: GuoQing Liu <842607283@qq.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-chat/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-motionsearch/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/zh_Hans/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/common Translation: Frigate NVR/components-player Translation: Frigate NVR/views-chat Translation: Frigate NVR/views-live Translation: Frigate NVR/views-motionSearch Translation: Frigate NVR/views-settings |
||
|
|
cb40343be7 |
Translated using Weblate (Chinese (Traditional Han script))
Currently translated at 100.0% (475 of 475 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 99.2% (803 of 809 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 100.0% (239 of 239 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 100.0% (50 of 50 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 99.5% (237 of 238 strings) Translated using Weblate (Chinese (Traditional Han script)) Currently translated at 100.0% (26 of 26 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: KelvinKueh <kelvin.kueh@gmail.com> Co-authored-by: Yu Chun Huang <yujun@bo2.tw> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/zh_Hant/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/common Translation: Frigate NVR/components-camera Translation: Frigate NVR/components-player |
||
|
|
b912a62e0b |
Translated using Weblate (Uzbek)
Currently translated at 0.3% (2 of 501 strings) Co-authored-by: Hamza Foziljonov <hamza.uztranslator@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/audio/uz/ Translation: Frigate NVR/audio |
||
|
|
fcfab8ef14 |
Translated using Weblate (Khmer (Central))
Currently translated at 0.9% (5 of 501 strings) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Added translation using Weblate (Khmer (Central)) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: reanyouda <mr.reanyouda@gmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/audio/km/ Translation: Frigate NVR/audio |
||
|
|
e0d0b2a345 |
Translated using Weblate (Persian)
Currently translated at 100.0% (60 of 60 strings) Translated using Weblate (Persian) Currently translated at 45.4% (368 of 809 strings) Translated using Weblate (Persian) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Persian) Currently translated at 50.0% (639 of 1276 strings) Translated using Weblate (Persian) Currently translated at 100.0% (49 of 49 strings) Translated using Weblate (Persian) Currently translated at 98.7% (236 of 239 strings) Translated using Weblate (Persian) Currently translated at 100.0% (50 of 50 strings) Translated using Weblate (Persian) Currently translated at 17.4% (15 of 86 strings) Co-authored-by: Amir reza Irani ali poor <amir1376irani@yahoo.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/fa/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/fa/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/fa/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/fa/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/fa/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/fa/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-search/fa/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/fa/ Translation: Frigate NVR/Config - Global Translation: Frigate NVR/common Translation: Frigate NVR/components-camera Translation: Frigate NVR/components-player Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-facelibrary Translation: Frigate NVR/views-search Translation: Frigate NVR/views-settings |
||
|
|
b72f5a986e |
Translated using Weblate (Swedish)
Currently translated at 92.0% (46 of 50 strings) Translated using Weblate (Swedish) Currently translated at 94.0% (94 of 100 strings) Translated using Weblate (Swedish) Currently translated at 100.0% (74 of 74 strings) Translated using Weblate (Swedish) Currently translated at 50.7% (647 of 1276 strings) Translated using Weblate (Swedish) Currently translated at 54.4% (55 of 101 strings) Translated using Weblate (Swedish) Currently translated at 77.7% (136 of 175 strings) Translated using Weblate (Swedish) Currently translated at 54.4% (55 of 101 strings) Translated using Weblate (Swedish) Currently translated at 50.7% (647 of 1276 strings) Translated using Weblate (Swedish) Currently translated at 90.0% (54 of 60 strings) Translated using Weblate (Swedish) Currently translated at 93.0% (120 of 129 strings) Translated using Weblate (Swedish) Currently translated at 92.8% (222 of 239 strings) Translated using Weblate (Swedish) Currently translated at 94.4% (137 of 145 strings) Translated using Weblate (Swedish) Currently translated at 100.0% (74 of 74 strings) Translated using Weblate (Swedish) Currently translated at 100.0% (49 of 49 strings) Translated using Weblate (Swedish) Currently translated at 94.0% (94 of 100 strings) Translated using Weblate (Swedish) Currently translated at 90.0% (54 of 60 strings) Translated using Weblate (Swedish) Currently translated at 77.7% (136 of 175 strings) Translated using Weblate (Swedish) Currently translated at 50.7% (647 of 1276 strings) Translated using Weblate (Swedish) Currently translated at 100.0% (74 of 74 strings) Translated using Weblate (Swedish) Currently translated at 94.4% (137 of 145 strings) Translated using Weblate (Swedish) Currently translated at 93.0% (120 of 129 strings) Translated using Weblate (Swedish) Currently translated at 92.8% (222 of 239 strings) Translated using Weblate (Swedish) Currently translated at 91.2% (218 of 239 strings) Co-authored-by: Douglas Stier <douglas.stier@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Mona Lisa <monalisa@users.noreply.hosted.weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/sv/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/sv/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/sv/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-filter/sv/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-classificationmodel/sv/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/sv/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/sv/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/sv/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-search/sv/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/sv/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/sv/ Translation: Frigate NVR/common Translation: Frigate NVR/components-camera Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-filter Translation: Frigate NVR/views-classificationmodel Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-facelibrary Translation: Frigate NVR/views-live Translation: Frigate NVR/views-search Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |
||
|
|
63b1506dd6 |
Translated using Weblate (French)
Currently translated at 5.4% (44 of 809 strings) Translated using Weblate (French) Currently translated at 100.0% (50 of 50 strings) Translated using Weblate (French) Currently translated at 67.0% (850 of 1268 strings) Translated using Weblate (French) Currently translated at 85.1% (86 of 101 strings) Translated using Weblate (French) Currently translated at 100.0% (238 of 238 strings) Translated using Weblate (French) Currently translated at 82.1% (83 of 101 strings) Co-authored-by: Gloup <emeric.denis@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: LeBuzzy <bwinster2@outlook.com> Co-authored-by: Lorent Felix <comloren@gmail.com> Co-authored-by: Thomas <arpelboxes@yahoo.fr> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/fr/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/fr/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/fr/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/fr/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/fr/ Translation: Frigate NVR/Config - Global Translation: Frigate NVR/common Translation: Frigate NVR/components-camera Translation: Frigate NVR/components-dialog Translation: Frigate NVR/views-settings |
||
|
|
90a18852ef |
Translated using Weblate (Spanish)
Currently translated at 100.0% (1276 of 1276 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (50 of 50 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (1272 of 1272 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (86 of 86 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (809 of 809 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (145 of 145 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (101 of 101 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (129 of 129 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (129 of 129 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (475 of 475 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (10 of 10 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (62 of 62 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (807 of 807 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (473 of 473 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (1268 of 1268 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (61 of 61 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (1263 of 1263 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (1263 of 1263 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (239 of 239 strings) Translated using Weblate (Spanish) Currently translated at 99.2% (1253 of 1263 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (100 of 100 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (1186 of 1186 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (1183 of 1183 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (23 of 23 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (1181 of 1181 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (54 of 54 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (238 of 238 strings) Translated using Weblate (Spanish) Currently translated at 100.0% (1176 of 1176 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Saninn Salas Diaz <saninnsalas@gmail.com> Co-authored-by: ThatStella7922 <stella@thatstel.la> Co-authored-by: jjavin <javiernovoa@gmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-chat/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-classificationmodel/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-configeditor/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-motionsearch/es/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/es/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/common Translation: Frigate NVR/components-camera Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-player Translation: Frigate NVR/views-chat Translation: Frigate NVR/views-classificationmodel Translation: Frigate NVR/views-configeditor Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-live Translation: Frigate NVR/views-motionSearch Translation: Frigate NVR/views-settings |
||
|
|
b1c133bfd1 |
Translated using Weblate (Dutch)
Currently translated at 100.0% (50 of 50 strings) Translated using Weblate (Dutch) Currently translated at 77.2% (78 of 101 strings) Translated using Weblate (Dutch) Currently translated at 97.0% (232 of 239 strings) Translated using Weblate (Dutch) Currently translated at 83.9% (397 of 473 strings) Translated using Weblate (Dutch) Currently translated at 100.0% (127 of 127 strings) Translated using Weblate (Dutch) Currently translated at 100.0% (60 of 60 strings) Translated using Weblate (Dutch) Currently translated at 100.0% (47 of 47 strings) Translated using Weblate (Dutch) Currently translated at 100.0% (23 of 23 strings) Translated using Weblate (Dutch) Currently translated at 97.9% (794 of 811 strings) Translated using Weblate (Dutch) Currently translated at 93.7% (224 of 239 strings) Translated using Weblate (Dutch) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Dutch) Currently translated at 100.0% (145 of 145 strings) Translated using Weblate (Dutch) Currently translated at 100.0% (100 of 100 strings) Translated using Weblate (Dutch) Currently translated at 100.0% (129 of 129 strings) Translated using Weblate (Dutch) Currently translated at 92.8% (221 of 238 strings) Translated using Weblate (Dutch) Currently translated at 98.0% (1148 of 1171 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Hosted Weblate user 151476 <marijndekker3@gmail.com> Co-authored-by: Hosted Weblate user 151476 <micel@users.noreply.hosted.weblate.org> Co-authored-by: bb61523 <brambini@gmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/nl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/nl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/nl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/nl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/nl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/nl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/nl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/objects/nl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-classificationmodel/nl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/nl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/nl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/nl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/nl/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/common Translation: Frigate NVR/components-camera Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-player Translation: Frigate NVR/objects Translation: Frigate NVR/views-classificationmodel Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-facelibrary Translation: Frigate NVR/views-live Translation: Frigate NVR/views-settings |
||
|
|
68e74c32e3 |
Translated using Weblate (Indonesian)
Currently translated at 100.0% (1276 of 1276 strings) Translated using Weblate (Indonesian) Currently translated at 5.0% (24 of 473 strings) Translated using Weblate (Indonesian) Currently translated at 100.0% (127 of 127 strings) Translated using Weblate (Indonesian) Currently translated at 1.8% (15 of 811 strings) Translated using Weblate (Indonesian) Currently translated at 100.0% (501 of 501 strings) Translated using Weblate (Indonesian) Currently translated at 100.0% (64 of 64 strings) Translated using Weblate (Indonesian) Currently translated at 100.0% (59 of 59 strings) Translated using Weblate (Indonesian) Currently translated at 100.0% (45 of 45 strings) Translated using Weblate (Indonesian) Currently translated at 86.6% (52 of 60 strings) Translated using Weblate (Indonesian) Currently translated at 100.0% (100 of 100 strings) Translated using Weblate (Indonesian) Currently translated at 100.0% (175 of 175 strings) Translated using Weblate (Indonesian) Currently translated at 100.0% (49 of 49 strings) Translated using Weblate (Indonesian) Currently translated at 59.3% (38 of 64 strings) Translated using Weblate (Indonesian) Currently translated at 100.0% (86 of 86 strings) Translated using Weblate (Indonesian) Currently translated at 100.0% (501 of 501 strings) Translated using Weblate (Indonesian) Currently translated at 100.0% (1176 of 1176 strings) Translated using Weblate (Indonesian) Currently translated at 100.0% (238 of 238 strings) Translated using Weblate (Indonesian) Currently translated at 100.0% (145 of 145 strings) Translated using Weblate (Indonesian) Currently translated at 30.7% (39 of 127 strings) Co-authored-by: Arif Budiman <arifpedia@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Joseph K <o.joseph.k@gmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/audio/id/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/id/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/id/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/id/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/objects/id/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/id/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/id/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/id/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/id/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/id/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-motionsearch/id/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-replay/id/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-search/id/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/id/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/id/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/audio Translation: Frigate NVR/common Translation: Frigate NVR/objects Translation: Frigate NVR/views-events Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-facelibrary Translation: Frigate NVR/views-live Translation: Frigate NVR/views-motionSearch Translation: Frigate NVR/views-replay Translation: Frigate NVR/views-search Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |
||
|
|
9ced2c25ee |
Translated using Weblate (Arabic)
Currently translated at 28.3% (142 of 501 strings) Translated using Weblate (Arabic) Currently translated at 18.8% (24 of 127 strings) Co-authored-by: Firas <firas.amm@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/audio/ar/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/objects/ar/ Translation: Frigate NVR/audio Translation: Frigate NVR/objects |
||
|
|
b76457e0af |
Translated using Weblate (Italian)
Currently translated at 55.3% (448 of 809 strings) Translated using Weblate (Italian) Currently translated at 55.2% (447 of 809 strings) Translated using Weblate (Italian) Currently translated at 75.3% (358 of 475 strings) Translated using Weblate (Italian) Currently translated at 74.7% (355 of 475 strings) Translated using Weblate (Italian) Currently translated at 54.8% (444 of 809 strings) Translated using Weblate (Italian) Currently translated at 74.7% (355 of 475 strings) Translated using Weblate (Italian) Currently translated at 54.8% (444 of 809 strings) Translated using Weblate (Italian) Currently translated at 74.7% (355 of 475 strings) Translated using Weblate (Italian) Currently translated at 54.8% (444 of 809 strings) Translated using Weblate (Italian) Currently translated at 74.7% (355 of 475 strings) Translated using Weblate (Italian) Currently translated at 54.8% (444 of 809 strings) Translated using Weblate (Italian) Currently translated at 54.8% (444 of 809 strings) Translated using Weblate (Italian) Currently translated at 74.7% (355 of 475 strings) Translated using Weblate (Italian) Currently translated at 54.8% (444 of 809 strings) Translated using Weblate (Italian) Currently translated at 74.7% (355 of 475 strings) Translated using Weblate (Italian) Currently translated at 74.7% (355 of 475 strings) Translated using Weblate (Italian) Currently translated at 54.8% (444 of 809 strings) Translated using Weblate (Italian) Currently translated at 50.7% (241 of 475 strings) Translated using Weblate (Italian) Currently translated at 41.7% (338 of 809 strings) Translated using Weblate (Italian) Currently translated at 100.0% (1276 of 1276 strings) Translated using Weblate (Italian) Currently translated at 34.1% (276 of 809 strings) Translated using Weblate (Italian) Currently translated at 37.0% (176 of 475 strings) Translated using Weblate (Italian) Currently translated at 100.0% (50 of 50 strings) Translated using Weblate (Italian) Currently translated at 100.0% (64 of 64 strings) Translated using Weblate (Italian) Currently translated at 100.0% (1272 of 1272 strings) Translated using Weblate (Italian) Currently translated at 26.5% (126 of 475 strings) Translated using Weblate (Italian) Currently translated at 28.4% (230 of 809 strings) Translated using Weblate (Italian) Currently translated at 94.6% (1204 of 1272 strings) Translated using Weblate (Italian) Currently translated at 100.0% (62 of 62 strings) Translated using Weblate (Italian) Currently translated at 100.0% (100 of 100 strings) Translated using Weblate (Italian) Currently translated at 100.0% (239 of 239 strings) Translated using Weblate (Italian) Currently translated at 26.4% (125 of 473 strings) Translated using Weblate (Italian) Currently translated at 100.0% (1195 of 1195 strings) Translated using Weblate (Italian) Currently translated at 28.3% (230 of 811 strings) Translated using Weblate (Italian) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Italian) Currently translated at 26.2% (124 of 473 strings) Translated using Weblate (Italian) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Italian) Currently translated at 28.2% (229 of 811 strings) Translated using Weblate (Italian) Currently translated at 28.1% (228 of 811 strings) Translated using Weblate (Italian) Currently translated at 100.0% (238 of 238 strings) Translated using Weblate (Italian) Currently translated at 100.0% (23 of 23 strings) Translated using Weblate (Italian) Currently translated at 100.0% (1183 of 1183 strings) Translated using Weblate (Italian) Currently translated at 100.0% (54 of 54 strings) Translated using Weblate (Italian) Currently translated at 26.0% (123 of 473 strings) Co-authored-by: Filippo-riccardo Franzin (filippo franzin) <filric01@gmail.com> Co-authored-by: Frank_ai <cyberpez.ai@gmail.com> Co-authored-by: Gringo <ita.translations@tiscali.it> Co-authored-by: Hosted Weblate <hosted@weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-chat/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-motionsearch/it/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/it/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/common Translation: Frigate NVR/components-camera Translation: Frigate NVR/components-player Translation: Frigate NVR/views-chat Translation: Frigate NVR/views-events Translation: Frigate NVR/views-live Translation: Frigate NVR/views-motionSearch Translation: Frigate NVR/views-settings |
||
|
|
4626d91fbb |
Translated using Weblate (Polish)
Currently translated at 24.0% (114 of 475 strings) Translated using Weblate (Polish) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Polish) Currently translated at 97.0% (232 of 239 strings) Translated using Weblate (Polish) Currently translated at 63.3% (64 of 101 strings) Translated using Weblate (Polish) Currently translated at 4.8% (39 of 809 strings) Translated using Weblate (Polish) Currently translated at 100.0% (50 of 50 strings) Translated using Weblate (Polish) Currently translated at 96.6% (231 of 239 strings) Translated using Weblate (Polish) Currently translated at 62.3% (63 of 101 strings) Translated using Weblate (Polish) Currently translated at 100.0% (501 of 501 strings) Translated using Weblate (Polish) Currently translated at 94.1% (224 of 238 strings) Translated using Weblate (Polish) Currently translated at 100.0% (501 of 501 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Piotr Łoboda <loboda4450@gmail.com> Co-authored-by: Tomasz Słuszniak <tomasz.sluszniak@gmail.com> Co-authored-by: magnumek <m4gnumek@gmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/audio/pl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/pl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/pl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/pl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/pl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/pl/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/pl/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/audio Translation: Frigate NVR/common Translation: Frigate NVR/components-camera Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-player |
||
|
|
77474ccfea |
Translated using Weblate (Czech)
Currently translated at 84.8% (123 of 145 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Milan K. <kostler.milan@gmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/cs/ Translation: Frigate NVR/views-explore |
||
|
|
8be5b9d8d0 |
Translated using Weblate (Catalan)
Currently translated at 100.0% (1276 of 1276 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (50 of 50 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (1272 of 1272 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (809 of 809 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (475 of 475 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (62 of 62 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (473 of 473 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (1268 of 1268 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (807 of 807 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (61 of 61 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (1263 of 1263 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (45 of 45 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (1263 of 1263 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (1195 of 1195 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (239 of 239 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (100 of 100 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (1186 of 1186 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (811 of 811 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (145 of 145 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (23 of 23 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (1183 of 1183 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (175 of 175 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (1181 of 1181 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (238 of 238 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (54 of 54 strings) Translated using Weblate (Catalan) Currently translated at 100.0% (1176 of 1176 strings) Co-authored-by: Eduardo Pastor Fernández <123eduardoneko123@gmail.com> Co-authored-by: Gerard Ricart Castells <gerard.ricart@gmail.com> Co-authored-by: Hosted Weblate <hosted@weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-chat/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-motionsearch/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-replay/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/ca/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/ca/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/common Translation: Frigate NVR/components-camera Translation: Frigate NVR/components-player Translation: Frigate NVR/views-chat Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-live Translation: Frigate NVR/views-motionSearch Translation: Frigate NVR/views-replay Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |
||
|
|
ffed173d5a |
Translated using Weblate (Japanese)
Currently translated at 100.0% (1268 of 1268 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (473 of 473 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (807 of 807 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (62 of 62 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (1263 of 1263 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (473 of 473 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (811 of 811 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (811 of 811 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (1263 of 1263 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (239 of 239 strings) Translated using Weblate (Japanese) Currently translated at 93.9% (1186 of 1263 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (10 of 10 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (238 of 238 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (501 of 501 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (175 of 175 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (59 of 59 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (101 of 101 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (145 of 145 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (811 of 811 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (23 of 23 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (129 of 129 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (47 of 47 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (1186 of 1186 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (54 of 54 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (60 of 60 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (127 of 127 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (64 of 64 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (473 of 473 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (100 of 100 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (86 of 86 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (25 of 25 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (74 of 74 strings) Translated using Weblate (Japanese) Currently translated at 100.0% (45 of 45 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: alpha <etc@alpha-line.org> Co-authored-by: yhi264 <yhiraki@gmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/audio/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-auth/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-filter/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-groups/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/objects/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-chat/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-classificationmodel/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-motionsearch/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-replay/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/ja/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/ja/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Groups Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/audio Translation: Frigate NVR/common Translation: Frigate NVR/components-auth Translation: Frigate NVR/components-camera Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-filter Translation: Frigate NVR/components-player Translation: Frigate NVR/objects Translation: Frigate NVR/views-chat Translation: Frigate NVR/views-classificationmodel Translation: Frigate NVR/views-events Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-exports Translation: Frigate NVR/views-facelibrary Translation: Frigate NVR/views-live Translation: Frigate NVR/views-motionSearch Translation: Frigate NVR/views-replay Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |
||
|
|
f70c142892 |
Translated using Weblate (Ukrainian)
Currently translated at 93.0% (120 of 129 strings) Translated using Weblate (Ukrainian) Currently translated at 77.7% (136 of 175 strings) Translated using Weblate (Ukrainian) Currently translated at 54.9% (649 of 1181 strings) Translated using Weblate (Ukrainian) Currently translated at 100.0% (101 of 101 strings) Translated using Weblate (Ukrainian) Currently translated at 92.2% (119 of 129 strings) Translated using Weblate (Ukrainian) Currently translated at 96.1% (25 of 26 strings) Translated using Weblate (Ukrainian) Currently translated at 100.0% (47 of 47 strings) Translated using Weblate (Ukrainian) Currently translated at 100.0% (238 of 238 strings) Translated using Weblate (Ukrainian) Currently translated at 54.7% (644 of 1176 strings) Translated using Weblate (Ukrainian) Currently translated at 90.0% (91 of 101 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: ivabil <ivanbilych@gmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/uk/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/uk/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/uk/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/uk/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-classificationmodel/uk/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/uk/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/uk/ Translation: Frigate NVR/common Translation: Frigate NVR/components-camera Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-player Translation: Frigate NVR/views-classificationmodel Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |
||
|
|
7c3b7f3c12 |
Translated using Weblate (Bulgarian)
Currently translated at 71.2% (357 of 501 strings) Translated using Weblate (Bulgarian) Currently translated at 20.4% (26 of 127 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: dirty <dirty@users.noreply.hosted.weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/audio/bg/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/objects/bg/ Translation: Frigate NVR/audio Translation: Frigate NVR/objects |
||
|
|
0756889d0e |
Translated using Weblate (Romanian)
Currently translated at 100.0% (1276 of 1276 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (50 of 50 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (809 of 809 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (1272 of 1272 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (175 of 175 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (101 of 101 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (475 of 475 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (62 of 62 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (473 of 473 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (1268 of 1268 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (807 of 807 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (1263 of 1263 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (239 of 239 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (1263 of 1263 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (1186 of 1186 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (100 of 100 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (23 of 23 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (1183 of 1183 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (54 of 54 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (53 of 53 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (1176 of 1176 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (145 of 145 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (811 of 811 strings) Translated using Weblate (Romanian) Currently translated at 100.0% (238 of 238 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: lukasig <lukasig@hotmail.com> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-chat/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-motionsearch/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/ro/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/ro/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/common Translation: Frigate NVR/components-camera Translation: Frigate NVR/components-dialog Translation: Frigate NVR/components-player Translation: Frigate NVR/views-chat Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-live Translation: Frigate NVR/views-motionSearch Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |
||
|
|
bb1f8757e6 |
Translated using Weblate (Estonian)
Currently translated at 100.0% (50 of 50 strings) Translated using Weblate (Estonian) Currently translated at 35.0% (21 of 60 strings) Translated using Weblate (Estonian) Currently translated at 2.5% (12 of 473 strings) Translated using Weblate (Estonian) Currently translated at 13.9% (18 of 129 strings) Translated using Weblate (Estonian) Currently translated at 41.3% (60 of 145 strings) Translated using Weblate (Estonian) Currently translated at 18.5% (234 of 1263 strings) Translated using Weblate (Estonian) Currently translated at 1.8% (15 of 811 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (49 of 49 strings) Translated using Weblate (Estonian) Currently translated at 14.8% (8 of 54 strings) Translated using Weblate (Estonian) Currently translated at 11.4% (20 of 175 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (239 of 239 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (100 of 100 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (23 of 23 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (26 of 26 strings) Translated using Weblate (Estonian) Currently translated at 26.6% (12 of 45 strings) Translated using Weblate (Estonian) Currently translated at 3.3% (2 of 59 strings) Translated using Weblate (Estonian) Currently translated at 100.0% (238 of 238 strings) Translated using Weblate (Estonian) Currently translated at 1.6% (8 of 473 strings) Translated using Weblate (Estonian) Currently translated at 0.3% (3 of 811 strings) Co-authored-by: Hosted Weblate <hosted@weblate.org> Co-authored-by: Priit Jõerüüt <jrthwlate@users.noreply.hosted.weblate.org> Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-cameras/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-global/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/config-validation/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-chat/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-classificationmodel/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-motionsearch/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-replay/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-search/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/et/ Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/et/ Translation: Frigate NVR/Config - Cameras Translation: Frigate NVR/Config - Global Translation: Frigate NVR/Config - Validation Translation: Frigate NVR/common Translation: Frigate NVR/components-camera Translation: Frigate NVR/components-player Translation: Frigate NVR/views-chat Translation: Frigate NVR/views-classificationmodel Translation: Frigate NVR/views-explore Translation: Frigate NVR/views-facelibrary Translation: Frigate NVR/views-live Translation: Frigate NVR/views-motionSearch Translation: Frigate NVR/views-replay Translation: Frigate NVR/views-search Translation: Frigate NVR/views-settings Translation: Frigate NVR/views-system |