* Move log level initialization to log
* Use logger config
* Formatting
* Fix config order
* Set process names
---------
Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com>
* Set runtime
* Use count correctly
* Don't assume camera sizes
* Use separate zmq proxy for object detection
* Correct order
* Use forkserver
* Only store PID instead of entire process reference
* Cleanup
* Catch correct errors
* Fix typing
* Remove before_run from process util
The before_run never actually ran because:
You're right to suspect an issue with before_run not being called and a potential deadlock. The way you've implemented the run_wrapper using __getattribute__ for the run method of BaseProcess is a common pitfall in Python's multiprocessing, especially when combined with how multiprocessing.Process works internally.
Here's a breakdown of why before_run isn't being called and why you might be experiencing a deadlock:
The Problem: __getattribute__ and Process Serialization
When you create a multiprocessing.Process object and call start(), the multiprocessing module needs to serialize the process object (or at least enough of it to re-create the process in the new interpreter). It then pickles this serialized object and sends it to the newly spawned process.
The issue with your __getattribute__ implementation for run is that:
run is retrieved during serialization: When multiprocessing tries to pickle your Process object to send to the new process, it will likely access the run attribute. This triggers your __getattribute__ wrapper, which then tries to bind run_wrapper to self.
run_wrapper is bound to the parent process's self: The run_wrapper closure, when created in the parent process, captures the self (the Process instance) from the parent's memory space.
Deserialization creates a new object: In the child process, a new Process object is created by deserializing the pickled data. However, the run_wrapper method that was pickled still holds a reference to the self from the parent process. This is a subtle but critical distinction.
The child's run is not your wrapped run: When the child process starts, it internally calls its own run method. Because of the serialization and deserialization process, the run method that's ultimately executed in the child process is the original multiprocessing.Process.run or the Process.run if you had directly overridden it. Your __getattribute__ magic, which wraps run, isn't correctly applied to the Process object within the child's context.
* Cleanup
* Logging bugfix (#18465)
* use mp Manager to handle logging queues
A Python bug (https://github.com/python/cpython/issues/91555) was preventing logs from the embeddings maintainer process from printing. The bug is fixed in Python 3.14, but a viable workaround is to use the multiprocessing Manager, which better manages mp queues and causes the logging to work correctly.
* consolidate
* fix typing
* Fix typing
* Use global log queue
* Move to using process for logging
* Convert camera tracking to process
* Add more processes
* Finalize process
* Cleanup
* Cleanup typing
* Formatting
* Remove daemon
---------
Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com>
* Add base class for global config updates
* Add or remove camera states
* Move camera process management to separate thread
* Move camera management fully to separate class
* Cleanup
* Stop camera processes when stop command is sent
* Start processes dynamically when needed
* Adjust
* Leave extra room in tracked object queue for two cameras
* Dynamically set extra config pieces
* Add some TODOs
* Fix type check
* Simplify config updates
* Improve typing
* Correctly handle indexed entries
* Cleanup
* Create out SHM
* Use ZMQ for signaling object detectoin is completed
* Get camera correctly created
* Cleanup for updating the cameras config
* Cleanup
* Don't enable audio if no cameras have audio transcription
* Use exact string so similar camera names don't interfere
* Add ability to update config via json body to config/set endpoint
Additionally, update the config in a single rather than multiple calls for each updated key
* fix autotracking calibration to support new config updater function
---------
Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com>
* Combine base and arm trt detectors
* Remove unused deps for amd64 build
* Add missing packages and cleanup ldconfig
* Expand packages for tensorflow model training
* Cleanup
* Refactor training to not reserve memory
* Refactor common functions for tflite detector implementations
* Add detector using mesa teflon delegate
Non-EdgeTPU TFLite can use the standard .tflite format
* Add mesa-teflon-delegate from bookworm-backports to arm64 images
* Implement model training via ZMQ and add model states to represent training
* Get model updates working
* Improve toasts and model state
* Clean up logging
* Add back in
* Setup basic training structure
* Build out route
* Handle model configs
* Add image fetch APIs
* Implement model training screen with dataset selection
* Implement viewing of training images
* Adjust directories
* Implement viewing of images
* Add support for deleting images
* Implement full deletion
* Implement classification model training
* Improve naming
* More renaming
* Improve layout
* Reduce logging
* Cleanup
The PP_OCRv5 text detection models have greatly improved over v3. The v5 recognition model makes improvements to challenging handwriting and uncommon characters, which are not necessary for LPR, so using v4 seemed like a better choice to continue to keep inference time as low as possible. Also included is the full dictionary for Chinese character support.
* install new packages for transcription support
* add config options
* audio maintainer modifications to support transcription
* pass main config to audio process
* embeddings support
* api and transcription post processor
* embeddings maintainer support for post processor
* live audio transcription with sherpa and faster-whisper
* update dispatcher with live transcription topic
* frontend websocket
* frontend live transcription
* frontend changes for speech events
* i18n changes
* docs
* mqtt docs
* fix linter
* use float16 and small model on gpu for real-time
* fix return value and use requestor to embed description instead of passing embeddings
* run real-time transcription in its own thread
* tweaks
* publish live transcriptions on their own topic instead of tracked_object_update
* config validator and docs
* clarify docs
* Start Frigate in safe mode when config does not validate
* Add safe mode page that is just the config editor
* Adjust Frigate config editor when in safe mode
* Cleanup
* Improve log message
* Indicate no recordings on the history timeline with gray hash marks
This commit includes a new backend API endpoint and the frontend changes needed to support this functionality
* don't show slashes for now
* Add basic config for defining a teachable machine model
* Add model type
* Add basic config for teachable machine models
* Adjust config for state and object
* Use config to process
* Correctly check for objects
* Remove debug
* Rename to not be teachable machine specific
* Cleanup
* Include config publisher in api
* Call update topic for passed topics
* Update zones dynamically
* Update zones internally
* Support zone and mask reset
* Handle updating objects config
* Don't put status for needing to restart Frigate
* Cleanup http tests
* Fix tests
* Remove torch install
* notification fixes
the pubkey was not being returned if notifications was not enabled at the global level
* Put back
* single condition check for fetching and disabling button
---------
Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com>
Currently translated at 100.0% (183 of 183 strings)
Translated using Weblate (Vietnamese)
Currently translated at 100.0% (114 of 114 strings)
Translated using Weblate (Vietnamese)
Currently translated at 100.0% (183 of 183 strings)
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Lâm Lê <silamle6@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/vi/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/vi/
Translation: Frigate NVR/common
Translation: Frigate NVR/views-system
Currently translated at 100.0% (114 of 114 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (114 of 114 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (114 of 114 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 42.0% (148 of 352 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (115 of 115 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (118 of 118 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 81.4% (149 of 183 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 38.6% (165 of 427 strings)
Co-authored-by: Deilson Peres <deilson.peres@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Marcelo Popper Costa <marcelo_popper@hotmail.com>
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/audio/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/objects/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/pt_BR/
Translation: Frigate NVR/audio
Translation: Frigate NVR/common
Translation: Frigate NVR/objects
Translation: Frigate NVR/views-explore
Translation: Frigate NVR/views-settings
Translation: Frigate NVR/views-system
* Fix api filter hook
cameras, labels, sub labels, plates, and zones could be parsed as numeric values rather than strings, which would break the explore filter. This change adds an optional param to the useApiFilterArgs hook to always parse keys as string[]
* fix notifications register button from being incorrectly disabled
Currently translated at 83.3% (40 of 48 strings)
Translated using Weblate (Finnish)
Currently translated at 53.2% (33 of 62 strings)
Translated using Weblate (Finnish)
Currently translated at 46.0% (53 of 115 strings)
Translated using Weblate (Finnish)
Currently translated at 50.0% (33 of 66 strings)
Translated using Weblate (Finnish)
Currently translated at 64.0% (32 of 50 strings)
Translated using Weblate (Finnish)
Currently translated at 13.5% (58 of 427 strings)
Translated using Weblate (Finnish)
Currently translated at 77.0% (37 of 48 strings)
Translated using Weblate (Finnish)
Currently translated at 48.3% (30 of 62 strings)
Translated using Weblate (Finnish)
Currently translated at 45.2% (52 of 115 strings)
Translated using Weblate (Finnish)
Currently translated at 46.9% (31 of 66 strings)
Translated using Weblate (Finnish)
Currently translated at 13.3% (57 of 427 strings)
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Julius Hyvönen <julius.hyvonen@gmail.com>
Co-authored-by: Risto Toivanen <risto.toivanen@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/audio/fi/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/fi/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-filter/fi/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/fi/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/fi/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-search/fi/
Translation: Frigate NVR/audio
Translation: Frigate NVR/components-dialog
Translation: Frigate NVR/components-filter
Translation: Frigate NVR/views-explore
Translation: Frigate NVR/views-facelibrary
Translation: Frigate NVR/views-search
Currently translated at 28.9% (33 of 114 strings)
Translated using Weblate (Swedish)
Currently translated at 21.0% (24 of 114 strings)
Translated using Weblate (Swedish)
Currently translated at 14.9% (17 of 114 strings)
Translated using Weblate (Swedish)
Currently translated at 57.5% (38 of 66 strings)
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Lars Gustavsson <lars@textalk.se>
Co-authored-by: Oscar Haraldsson <oscar.haraldsson@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-filter/sv/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/sv/
Translation: Frigate NVR/components-filter
Translation: Frigate NVR/views-system
Currently translated at 85.9% (98 of 114 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 27.8% (98 of 352 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (62 of 62 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 85.2% (98 of 115 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 83.8% (99 of 118 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 54.0% (99 of 183 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 27.4% (117 of 427 strings)
Update translation files
Updated by "Squash Git commits" add-on in Weblate.
Update translation files
Updated by "Squash Git commits" add-on in Weblate.
Translated using Weblate (Portuguese (Brazil))
Currently translated at 76.3% (87 of 114 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 24.7% (87 of 352 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (80 of 80 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 76.5% (88 of 115 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 48.6% (89 of 183 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 65.7% (75 of 114 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 65.7% (75 of 114 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 21.3% (75 of 352 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (48 of 48 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 93.7% (75 of 80 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.3% (61 of 62 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 98.3% (61 of 62 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 66.0% (76 of 115 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (66 of 66 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (66 of 66 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (50 of 50 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (46 of 46 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 65.2% (77 of 118 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 41.5% (76 of 183 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 20.6% (88 of 427 strings)
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Marcelo Popper Costa <marcelo_popper@hotmail.com>
Co-authored-by: Rogério Mendes <rogeriomendes.mg@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/audio/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-filter/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/objects/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-search/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/pt_BR/
Translation: Frigate NVR/audio
Translation: Frigate NVR/common
Translation: Frigate NVR/components-camera
Translation: Frigate NVR/components-dialog
Translation: Frigate NVR/components-filter
Translation: Frigate NVR/objects
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
Currently translated at 39.4% (45 of 114 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 39.4% (45 of 114 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 93.7% (45 of 48 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 93.7% (45 of 48 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 57.5% (46 of 80 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 57.5% (46 of 80 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 74.1% (46 of 62 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 74.1% (46 of 62 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 39.1% (45 of 115 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 39.1% (45 of 115 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 63.6% (42 of 66 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 63.6% (42 of 66 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 92.0% (46 of 50 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 92.0% (46 of 50 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 95.6% (44 of 46 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 95.6% (44 of 46 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 34.7% (41 of 118 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 34.7% (41 of 118 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 22.4% (41 of 183 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 12.4% (53 of 427 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 29.8% (34 of 114 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 70.8% (34 of 48 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 42.5% (34 of 80 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 31.3% (36 of 115 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 53.0% (35 of 66 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 70.0% (35 of 50 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 76.0% (35 of 46 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 29.6% (35 of 118 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 19.6% (36 of 183 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 11.0% (47 of 427 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 26.3% (30 of 114 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 62.5% (30 of 48 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 37.5% (30 of 80 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 69.3% (43 of 62 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 26.9% (31 of 115 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 45.4% (30 of 66 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 60.0% (30 of 50 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 67.3% (31 of 46 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 26.2% (31 of 118 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 17.4% (32 of 183 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 10.0% (43 of 427 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 22.8% (26 of 114 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 54.1% (26 of 48 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 32.5% (26 of 80 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 66.1% (41 of 62 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 23.4% (27 of 115 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (24 of 24 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 39.3% (26 of 66 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 52.0% (26 of 50 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 56.5% (26 of 46 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 22.8% (27 of 118 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 15.3% (28 of 183 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 9.1% (39 of 427 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 19.2% (22 of 114 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 15.6% (55 of 352 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 45.8% (22 of 48 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 45.8% (22 of 48 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 28.7% (23 of 80 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 28.7% (23 of 80 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 62.9% (39 of 62 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 20.8% (24 of 115 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 20.8% (24 of 115 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 95.8% (23 of 24 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 92.0% (23 of 25 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 92.0% (23 of 25 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 34.8% (23 of 66 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 34.8% (23 of 66 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 46.0% (23 of 50 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 46.0% (23 of 50 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 50.0% (23 of 46 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 19.4% (23 of 118 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 13.1% (24 of 183 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 8.1% (35 of 427 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 8.1% (35 of 427 strings)
Translated using Weblate (Portuguese (Brazil))
Currently translated at 15.3% (54 of 352 strings)
Co-authored-by: Cleiton Carvalho <cleitonsilvacarvalho@gmail.com>
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Marcelo Popper Costa <marcelo_popper@hotmail.com>
Co-authored-by: Rogério Mendes <rogeriomendes.mg@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/audio/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-filter/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/objects/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-search/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/pt_BR/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/pt_BR/
Translation: Frigate NVR/audio
Translation: Frigate NVR/common
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-events
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
Currently translated at 1.7% (2 of 114 strings)
Translated using Weblate (Lithuanian)
Currently translated at 0.5% (2 of 352 strings)
Translated using Weblate (Lithuanian)
Currently translated at 4.1% (2 of 48 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (6 of 6 strings)
Translated using Weblate (Lithuanian)
Currently translated at 3.7% (3 of 80 strings)
Translated using Weblate (Lithuanian)
Currently translated at 4.8% (3 of 62 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (9 of 9 strings)
Translated using Weblate (Lithuanian)
Currently translated at 2.6% (3 of 115 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (24 of 24 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (8 of 8 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (25 of 25 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (2 of 2 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (2 of 2 strings)
Translated using Weblate (Lithuanian)
Currently translated at 4.5% (3 of 66 strings)
Translated using Weblate (Lithuanian)
Currently translated at 6.0% (3 of 50 strings)
Translated using Weblate (Lithuanian)
Currently translated at 6.5% (3 of 46 strings)
Translated using Weblate (Lithuanian)
Currently translated at 100.0% (9 of 9 strings)
Translated using Weblate (Lithuanian)
Currently translated at 89.8% (106 of 118 strings)
Translated using Weblate (Lithuanian)
Currently translated at 80.3% (147 of 183 strings)
Translated using Weblate (Lithuanian)
Currently translated at 6.7% (29 of 427 strings)
Translated using Weblate (Lithuanian)
Currently translated at 28.8% (34 of 118 strings)
Translated using Weblate (Lithuanian)
Currently translated at 3.0% (13 of 427 strings)
Translated using Weblate (Lithuanian)
Currently translated at 2.0% (1 of 48 strings)
Translated using Weblate (Lithuanian)
Currently translated at 1.2% (1 of 80 strings)
Translated using Weblate (Lithuanian)
Currently translated at 11.1% (1 of 9 strings)
Translated using Weblate (Lithuanian)
Currently translated at 45.8% (11 of 24 strings)
Translated using Weblate (Lithuanian)
Currently translated at 0.8% (1 of 118 strings)
Translated using Weblate (Lithuanian)
Currently translated at 0.4% (2 of 427 strings)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian)
Co-authored-by: Hosted Weblate <hosted@weblate.org>
Co-authored-by: Languages add-on <noreply-addon-languages@weblate.org>
Co-authored-by: MaBeniu <runnerm@gmail.com>
Co-authored-by: PovilasID <povilas.sidaravicius@gmail.com>
Co-authored-by: boxstep <evaldas.blauzdziunas@hotmail.com>
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/audio/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/common/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-auth/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-camera/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-dialog/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-filter/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-icons/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-input/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/components-player/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/objects/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-configeditor/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-events/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-explore/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-exports/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-facelibrary/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-live/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-recording/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-search/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-settings/lt/
Translate-URL: https://hosted.weblate.org/projects/frigate-nvr/views-system/lt/
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-icons
Translation: Frigate NVR/components-input
Translation: Frigate NVR/components-player
Translation: Frigate NVR/objects
Translation: Frigate NVR/views-configeditor
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-recording
Translation: Frigate NVR/views-search
Translation: Frigate NVR/views-settings
Translation: Frigate NVR/views-system