mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-08-10 21:01:10 +03:00
Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7f8443f9d4 |
@@ -256,7 +256,7 @@ The only field that is valid at the camera level is `enabled`.
|
||||
|
||||
#### Live transcription
|
||||
|
||||
The single camera Live view in the Frigate UI supports live transcription of audio for streams defined with the `audio` role. Use the Enable/Disable Live Audio Transcription button/switch to toggle transcription processing, or toggle it outside of the UI with the [`frigate/<camera_name>/audio_transcription/set`](/integrations/mqtt#frigatecamera_nameaudio_transcriptionset) MQTT topic or the HTTP API. When speech is heard, the UI will display a black box over the top of the camera stream with text. The MQTT topic `frigate/<camera_name>/audio/transcription` will also be updated in real-time with transcribed text.
|
||||
The single camera Live view in the Frigate UI supports live transcription of audio for streams defined with the `audio` role. Use the Enable/Disable Live Audio Transcription button/switch to toggle transcription processing. When speech is heard, the UI will display a black box over the top of the camera stream with text. The MQTT topic `frigate/<camera_name>/audio/transcription` will also be updated in real-time with transcribed text.
|
||||
|
||||
Results can be error-prone due to a number of factors, including:
|
||||
|
||||
|
||||
@@ -50,31 +50,6 @@ Connect each stream to get a live preview, an estimated bandwidth figure, and a
|
||||
|
||||
Other features, including [hardware acceleration](hardware_acceleration_video.md), [two way talk](/configuration/live#two-way-talk), and audio transcoding, is configured after the camera has been added. For camera model specific quirks, see the [camera specific](camera_specific.md) docs.
|
||||
|
||||
## Deleting a camera
|
||||
|
||||
Click **Delete Camera** in <NavPath path="Settings > Global configuration > Camera management" />, choose the camera, and confirm. Deleting a camera requires the `admin` role and cannot be undone.
|
||||
|
||||
:::warning
|
||||
|
||||
Deleting a camera permanently removes its recordings, tracked objects, and configuration. If you only want to stop processing a camera, set its state to **Off** or **Disabled** in <NavPath path="Settings > Global configuration > Camera management" /> instead. See [camera state](/configuration/live#camera-state).
|
||||
|
||||
:::
|
||||
|
||||
Deleting a camera removes:
|
||||
|
||||
- The camera's section of your config file, along with its entries in any [role](authentication.md#user-roles) camera list. A custom role left with no cameras is removed as well.
|
||||
- Every database record for the camera: tracked objects, review items, recordings, previews, timeline entries, the saved region grid, and [triggers](semantic_search.md#triggers).
|
||||
- Every media file for the camera: recordings, snapshots, thumbnails, and preview clips.
|
||||
|
||||
[Exports](/usage/exports) are kept by default, so saved footage survives the deletion of the camera it came from. Turn on **Also delete exports for this camera** in the confirmation step to remove those too.
|
||||
|
||||
The camera's processes are stopped and the change takes effect immediately, so no restart is required. If the resulting config cannot be parsed, Frigate restores the previous config and reports an error instead of leaving Frigate in a broken state.
|
||||
|
||||
Two things are not cleaned up for you:
|
||||
|
||||
- **go2rtc streams.** Frigate makes a best effort to stop a running [go2rtc](go2rtc.md) stream named after the camera, but stream entries in your config file remain and are recreated on the next restart. Remove them in <NavPath path="Settings > System > go2rtc streams" /> or in your config file.
|
||||
- **Camera groups.** A deleted camera stays listed in any [camera group](#setting-up-camera-groups) that referenced it. The group skips the missing camera, so this is harmless, but you can edit the group to drop the stale entry.
|
||||
|
||||
## Setting Up Camera Inputs
|
||||
|
||||
Several inputs can be configured for each camera and the role of each input can be mixed and matched based on your needs. This allows you to use a lower resolution stream for object detection, but create recordings from a higher resolution stream, or vice versa.
|
||||
|
||||
@@ -6,7 +6,6 @@ title: Notifications
|
||||
import ConfigTabs from "@site/src/components/ConfigTabs";
|
||||
import TabItem from "@theme/TabItem";
|
||||
import NavPath from "@site/src/components/NavPath";
|
||||
import FaqItem from "@site/src/components/FaqItem";
|
||||
|
||||
# Notifications
|
||||
|
||||
@@ -22,7 +21,7 @@ Push notifications require internet access from the Frigate server to the browse
|
||||
|
||||
In order to use notifications the following requirements must be met:
|
||||
|
||||
- Frigate must be accessed via a secure `https` connection while signed in as a Frigate user ([see the authorization docs](/configuration/authentication)).
|
||||
- Frigate must be accessed via a secure `https` connection ([see the authorization docs](/configuration/authentication)).
|
||||
- A supported browser must be used. Currently Chrome, Firefox, and Safari are known to be supported.
|
||||
- In order for notifications to be usable externally, Frigate must be accessible externally.
|
||||
- For iOS devices, some users have also indicated that the Notifications switch needs to be enabled in iOS Settings --> Apps --> Safari --> Advanced --> Features.
|
||||
@@ -86,13 +85,7 @@ cameras:
|
||||
|
||||
### Registration
|
||||
|
||||
Once notifications are enabled, press the `Register This Device` button on all devices that you would like to receive notifications on. This will register the background worker. After this Frigate must be restarted and then notifications will begin to be sent.
|
||||
|
||||
:::warning
|
||||
|
||||
Each registration is attached to the Frigate user account you are signed in as, so you must register over a secure connection to the authenticated port (`8971`). Reverse proxies and tunnels should point at port `8971`.
|
||||
|
||||
:::
|
||||
Once notifications are enabled, press the `Register for Notifications` button on all devices that you would like to receive notifications on. This will register the background worker. After this Frigate must be restarted and then notifications will begin to be sent.
|
||||
|
||||
## Supported Notifications
|
||||
|
||||
@@ -111,62 +104,3 @@ Different platforms handle notifications differently, some settings changes may
|
||||
### Android
|
||||
|
||||
Most Android phones have battery optimization settings. To get reliable Notification delivery the browser (Chrome, Firefox) should have battery optimizations disabled. If Frigate is running as a PWA then the Frigate app should have battery optimizations disabled as well.
|
||||
|
||||
## Notifications FAQ
|
||||
|
||||
<FaqItem id="how-do-i-debug-notifications-issues" question="How do I debug notifications issues?">
|
||||
|
||||
Push notifications involve Frigate, your browser, and your browser vendor's push service, so it helps to work from the server outward.
|
||||
|
||||
1. Enable debug logs for the push client by adding `frigate.comms.webpush: debug` to your `logger` configuration. Restart Frigate after this change.
|
||||
|
||||
```yaml
|
||||
logger:
|
||||
default: info
|
||||
logs:
|
||||
# highlight-next-line
|
||||
frigate.comms.webpush: debug
|
||||
```
|
||||
|
||||
These logs show exactly where a notification stopped, including:
|
||||
- `Email must be provided for push notifications to be sent` means the global `email` field is empty and nothing will ever be sent.
|
||||
- `Sending test notification` and `Sending push notification for <camera>, review ID <id>` mean Frigate handed the message off to the push service.
|
||||
- `Skipping notification for <camera> - in global cooldown period` (or `camera-specific cooldown period`) means your [cooldown](#configuration) values suppressed it.
|
||||
- `Notifications for <camera> are currently suspended` means notifications were suspended from <NavPath path="Settings > Notifications" /> or MQTT.
|
||||
- `Notification endpoint expired for <user>, received 410` means that device's subscription is no longer valid and it must be re-registered.
|
||||
- `Failed to send notification to <user> :: <status>` means the push service rejected the message. A `401` or `403` usually points at a VAPID or `email` problem, and a `5xx` is a problem on the push service's end.
|
||||
- If you see no messages at all when an alert occurs, the notification was never queued. Confirm an actual **alert** was created (notifications are not sent for detections), and that notifications are enabled both globally and for that camera.
|
||||
|
||||
2. Verify the basics that most reports come down to:
|
||||
- Frigate must be reached over `https` with a certificate your device trusts. Browsers silently refuse to register a service worker otherwise, and a self-signed certificate that is not installed as trusted on the device will fail.
|
||||
- On iOS, notifications only work when Frigate has been installed to the Home Screen via **Share > Add to Home Screen** and opened from that icon. Safari and Chrome tabs cannot receive web push on iOS.
|
||||
- Each device must be registered individually, and Frigate must be restarted after registering before anything can be sent, including test notifications.
|
||||
- The Frigate server needs outbound internet access to the browser vendor's push service. See [Network Requirements](/frigate/network_requirements#push-notifications).
|
||||
|
||||
3. Test from the UI. Use the `Send a test notification` button in <NavPath path="Settings > Notifications" />. If the log shows `Sending test notification` but nothing arrives on the device, the problem is between the push service and your device rather than in Frigate.
|
||||
|
||||
4. Check the browser side on the device that is not receiving notifications:
|
||||
- Confirm the site's notification permission is set to **Allow** in your browser or OS settings, and that a focus/do not disturb mode is not hiding them.
|
||||
- In desktop browsers, open Developer Tools > Application > Service Workers and confirm `notifications-worker.js` is registered and activated. Unregistering it and registering the device again will rebuild a broken subscription.
|
||||
- Check the browser console and your reverse proxy logs for failures loading `/notifications-worker.js` or errors on `/api/notifications/register`.
|
||||
|
||||
</FaqItem>
|
||||
|
||||
<FaqItem id="why-did-notifications-stop-arriving-after-working-for-a-while" question="Why did notifications stop arriving after working for a while?">
|
||||
|
||||
Push subscriptions are issued by the browser vendor and can be revoked, most often after a browser update, after clearing site data, or when a device has been offline for an extended period. When this happens the device still appears registered in Frigate, but the push service rejects the message. The debug logs will show `Notification endpoint expired` with a `404` or `410` status.
|
||||
|
||||
Unregister and re-register the affected device from <NavPath path="Settings > Notifications" />, then restart Frigate.
|
||||
|
||||
</FaqItem>
|
||||
|
||||
<FaqItem id="why-am-i-not-getting-notifications-for-one-specific-camera" question="Why am I not getting notifications for one specific camera?">
|
||||
|
||||
Work through these in order:
|
||||
|
||||
- Notifications are only sent for **alerts**. If the camera is producing detections instead, adjust the camera's `review > alerts > labels` so the objects you care about are classified as alerts.
|
||||
- Confirm notifications are enabled for that camera in <NavPath path="Settings > Camera configuration > Notifications" />.
|
||||
- Check the camera's `cooldown` value, and remember that the global cooldown applies across all cameras. A busy camera can consume the global cooldown and suppress a quieter one.
|
||||
- If [authentication](/configuration/authentication) is enabled with roles, users only receive notifications for the cameras their role grants access to.
|
||||
|
||||
</FaqItem>
|
||||
|
||||
@@ -297,14 +297,6 @@ detectors:
|
||||
|
||||
:::
|
||||
|
||||
### Intel NPU host requirements {#intel-npu-requirements}
|
||||
|
||||
The NPU firmware is loaded by the host kernel and is not part of the Frigate image. Everything else the NPU needs is bundled in the container, so host NPU libraries should never be mounted in.
|
||||
|
||||
Frigate bundles a specific version of Intel's [linux-npu-driver](https://github.com/intel/linux-npu-driver/releases), and the host firmware must come from that release or a newer one. Firmware older than the bundled driver may fail with `MAPPED_INFERENCE_VERSION is NOT compatible with the ELF`, where `Expected` is the version the firmware supports and `received` is the version the bundled compiler produced. Distributions often package older firmware than the driver Frigate ships, so check the build date on the host with `sudo dmesg | grep -i vpu` and update it there if needed.
|
||||
|
||||
Intel NPUs cannot be used under Home Assistant OS, which does not include the NPU firmware.
|
||||
|
||||
### Configuration {#configuration-openvino}
|
||||
|
||||
<ModelConfigDropdown detectorTitle="OpenVINO" models={objectDetectorsModels.openvino.models} />
|
||||
|
||||
@@ -308,8 +308,6 @@ Publishes the current health status of each role that is enabled (`audio`, `dete
|
||||
- `offline`: Stream is offline and is being restarted
|
||||
- `disabled`: Camera is currently turned off (either at runtime via the `enabled/set` topic, or persistently via the configuration file). See [Camera state](/configuration/live#camera-state) for the distinction.
|
||||
|
||||
These reflect the state of Frigate's process for that role, not the camera's reachability, so an unreachable camera alternates between `offline` and `online` as the watchdog restarts ffmpeg. Wait for the status to hold steady (for example with Home Assistant's `for:`) rather than acting on a single message.
|
||||
|
||||
### `frigate/<camera_name>/<object_name>`
|
||||
|
||||
Publishes the count of objects for the camera for use as a sensor in Home Assistant.
|
||||
@@ -392,18 +390,6 @@ Topic to turn audio detection for a camera on and off. Expected values are `ON`
|
||||
|
||||
Topic with current state of audio detection for a camera. Published values are `ON` and `OFF`.
|
||||
|
||||
### `frigate/<camera_name>/audio_transcription/set`
|
||||
|
||||
Topic to turn [live audio transcription](/configuration/audio_detectors#live-transcription) for a camera on and off. Expected values are `ON` and `OFF`. Transcribed text is published to `frigate/<camera_name>/audio/transcription`.
|
||||
|
||||
`ON` is ignored unless audio transcription is enabled in the config for the camera. Unlike the other camera toggles, this one is not persisted across Frigate restarts.
|
||||
|
||||
**NOTE:** Requires audio detection and transcription to be enabled
|
||||
|
||||
### `frigate/<camera_name>/audio_transcription/state`
|
||||
|
||||
Topic with current state of live audio transcription for a camera. Published values are `ON` and `OFF`.
|
||||
|
||||
### `frigate/<camera_name>/recordings/set`
|
||||
|
||||
Topic to turn recordings for a camera on and off. Expected values are `ON` and `OFF`. The change is persisted across Frigate restarts (see [Runtime toggle persistence](/configuration/live#runtime-toggle-persistence)).
|
||||
|
||||
@@ -65,17 +65,9 @@ This is because Frigate does not run in host mode so localhost points to the Fri
|
||||
|
||||
### How do I know if my camera is offline
|
||||
|
||||
Frigate publishes a per-role health status to [`frigate/<camera_name>/status/<role>`](/integrations/mqtt#frigatecamera_namestatusrole), where `<role>` is each enabled role on the camera (`detect`, `record`, and `audio`). The published value is one of:
|
||||
A camera being offline can be detected via MQTT or /api/stats, the camera_fps for any offline camera will be 0.
|
||||
|
||||
- `online`: Frigate's process for that role is running normally
|
||||
- `offline`: the process is down and Frigate is restarting it
|
||||
- `disabled`: the camera is turned off, either at runtime or in the configuration file
|
||||
|
||||
These reflect the state of Frigate's process for that role, not the camera's reachability, so an unreachable camera alternates between `offline` and `online` as the watchdog restarts ffmpeg. Wait for the status to hold steady (for example with Home Assistant's `for:`) rather than acting on a single message.
|
||||
|
||||
Because the status is per role, a camera whose substream is fine but whose recording stream has dropped will report `online` for `detect` and `offline` for `record`. The status is republished whenever it changes.
|
||||
|
||||
You can also detect an offline camera through `/api/stats`, where `camera_fps` will be 0.
|
||||
Also, Home Assistant will mark any offline camera as being unavailable when the camera is offline.
|
||||
|
||||
### How can I view the Frigate log files without using the Web UI?
|
||||
|
||||
|
||||
+1
-16
@@ -53,7 +53,6 @@ from frigate.util.file import (
|
||||
)
|
||||
from frigate.util.image import get_image_from_recording, get_image_quality_params
|
||||
from frigate.util.media import get_keyframe_before
|
||||
from frigate.util.object import create_empty_regions_grid
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
@@ -1084,21 +1083,7 @@ def clear_region_grid(request: Request, camera_name: str):
|
||||
status_code=404,
|
||||
)
|
||||
|
||||
# store an empty grid instead of deleting the row so the grid is
|
||||
# rebuilt from newly tracked objects and not from all past history
|
||||
region = {
|
||||
Regions.camera: camera_name,
|
||||
Regions.grid: create_empty_regions_grid(),
|
||||
Regions.last_update: datetime.now().timestamp(),
|
||||
}
|
||||
(
|
||||
Regions.insert(region)
|
||||
.on_conflict(
|
||||
conflict_target=[Regions.camera],
|
||||
update=region,
|
||||
)
|
||||
.execute()
|
||||
)
|
||||
Regions.delete().where(Regions.camera == camera_name).execute()
|
||||
return JSONResponse(
|
||||
content={"success": True, "message": "Region grid cleared"},
|
||||
)
|
||||
|
||||
@@ -77,11 +77,6 @@ class MqttClient(Communicator):
|
||||
"ON" if camera.audio.enabled_in_config else "OFF",
|
||||
retain=True,
|
||||
)
|
||||
self.publish(
|
||||
f"{camera_name}/audio_transcription/state",
|
||||
"ON" if camera.audio_transcription.live_enabled else "OFF",
|
||||
retain=True,
|
||||
)
|
||||
self.publish(
|
||||
f"{camera_name}/detect/state",
|
||||
"ON" if camera.detect.enabled else "OFF",
|
||||
@@ -263,7 +258,6 @@ class MqttClient(Communicator):
|
||||
"snapshots",
|
||||
"detect",
|
||||
"audio",
|
||||
"audio_transcription",
|
||||
"motion",
|
||||
"improve_contrast",
|
||||
"ptz_autotracker",
|
||||
|
||||
@@ -35,11 +35,6 @@ logger = logging.getLogger(__name__)
|
||||
GRID_SIZE = 8
|
||||
|
||||
|
||||
def create_empty_regions_grid() -> list[list[dict[str, Any]]]:
|
||||
"""Create a region grid with no learned sizes."""
|
||||
return [[{"sizes": []} for _ in range(GRID_SIZE)] for _ in range(GRID_SIZE)]
|
||||
|
||||
|
||||
def get_camera_regions_grid(
|
||||
name: str,
|
||||
detect: DetectConfig,
|
||||
@@ -52,7 +47,12 @@ def get_camera_regions_grid(
|
||||
grid = regions.grid
|
||||
last_update = regions.last_update
|
||||
except DoesNotExist:
|
||||
grid = create_empty_regions_grid()
|
||||
grid = []
|
||||
for x in range(GRID_SIZE):
|
||||
row = []
|
||||
for y in range(GRID_SIZE):
|
||||
row.append({"sizes": []})
|
||||
grid.append(row)
|
||||
last_update = 0
|
||||
|
||||
# get events for timeline entries
|
||||
|
||||
Generated
+13
-13
@@ -71,7 +71,7 @@
|
||||
"react-icons": "^5.5.0",
|
||||
"react-konva": "^19.2.3",
|
||||
"react-markdown": "^9.0.1",
|
||||
"react-router-dom": "^6.30.3",
|
||||
"react-router-dom": "^6.30.4",
|
||||
"react-swipeable": "^7.0.2",
|
||||
"react-zoom-pan-pinch": "3.4.4",
|
||||
"remark-gfm": "^4.0.0",
|
||||
@@ -4878,9 +4878,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@remix-run/router": {
|
||||
"version": "1.23.2",
|
||||
"resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.23.2.tgz",
|
||||
"integrity": "sha512-Ic6m2U/rMjTkhERIa/0ZtXJP17QUi2CbWE7cqx4J58M8aA3QTfW+2UlQ4psvTX9IO1RfNVhK3pcpdjej7L+t2w==",
|
||||
"version": "1.23.3",
|
||||
"resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.23.3.tgz",
|
||||
"integrity": "sha512-4An71tdz9X8+3sI4Qqqd2LWd9vS39J7sqd9EU4Scw7TJE/qB10Flv/UuqbPVgfQV9XoK8Np6jNquZitnZq5i+Q==",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=14.0.0"
|
||||
@@ -12282,12 +12282,12 @@
|
||||
}
|
||||
},
|
||||
"node_modules/react-router": {
|
||||
"version": "6.30.3",
|
||||
"resolved": "https://registry.npmjs.org/react-router/-/react-router-6.30.3.tgz",
|
||||
"integrity": "sha512-XRnlbKMTmktBkjCLE8/XcZFlnHvr2Ltdr1eJX4idL55/9BbORzyZEaIkBFDhFGCEWBBItsVrDxwx3gnisMitdw==",
|
||||
"version": "6.30.4",
|
||||
"resolved": "https://registry.npmjs.org/react-router/-/react-router-6.30.4.tgz",
|
||||
"integrity": "sha512-SVUsDe+DybHM/WmYKIVYhZh1o5Dcuf16yM6WjG02Q9XVFMZIJyHYhwrr6bFBXZkVP6z69kNkMyBCujt8FaFLJA==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@remix-run/router": "1.23.2"
|
||||
"@remix-run/router": "1.23.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.0.0"
|
||||
@@ -12297,13 +12297,13 @@
|
||||
}
|
||||
},
|
||||
"node_modules/react-router-dom": {
|
||||
"version": "6.30.3",
|
||||
"resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.30.3.tgz",
|
||||
"integrity": "sha512-pxPcv1AczD4vso7G4Z3TKcvlxK7g7TNt3/FNGMhfqyntocvYKj+GCatfigGDjbLozC4baguJ0ReCigoDJXb0ag==",
|
||||
"version": "6.30.4",
|
||||
"resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.30.4.tgz",
|
||||
"integrity": "sha512-q4HvNl+mmDdkS0g+MqiBZNteQJCuimWoOyHMy4T/RQLAn9Z29+E91QXRaxOujeMl2HTzRSS0KFPd7lxX3PjV0Q==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@remix-run/router": "1.23.2",
|
||||
"react-router": "6.30.3"
|
||||
"@remix-run/router": "1.23.3",
|
||||
"react-router": "6.30.4"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.0.0"
|
||||
|
||||
+1
-1
@@ -85,7 +85,7 @@
|
||||
"react-icons": "^5.5.0",
|
||||
"react-konva": "^19.2.3",
|
||||
"react-markdown": "^9.0.1",
|
||||
"react-router-dom": "^6.30.3",
|
||||
"react-router-dom": "^6.30.4",
|
||||
"react-swipeable": "^7.0.2",
|
||||
"react-zoom-pan-pinch": "3.4.4",
|
||||
"remark-gfm": "^4.0.0",
|
||||
|
||||
@@ -867,8 +867,8 @@
|
||||
"description": "Ordre numèric utilitzat per ordenar la càmera a la interfície d'usuari (taulell de control i llistes per defecte); els nombres més grans apareixen més tard."
|
||||
},
|
||||
"dashboard": {
|
||||
"label": "Mostra al tauler en directe",
|
||||
"description": "Alterna si aquesta càmera és visible al tauler de control en directe de totes les càmeres per defecte. La càmera roman disponible a tot arreu a la interfície d'usuari, inclosos els grups i la configuració de la càmera."
|
||||
"label": "Mostra a l'interfície d'usuari",
|
||||
"description": "Estableix si aquesta càmera és visible a tot arreu a la interfície d'usuari de la Frigate. Desactivar això requerirà editar manualment la configuració per tornar a veure aquesta càmera a la interfície d'usuari."
|
||||
},
|
||||
"review": {
|
||||
"label": "Mostra en la revisió",
|
||||
|
||||
@@ -2338,8 +2338,8 @@
|
||||
"description": "Ordre numèric utilitzat per ordenar la càmera a la interfície d'usuari (taulell de control i llistes per defecte); els nombres més grans apareixen més tard."
|
||||
},
|
||||
"dashboard": {
|
||||
"label": "Mostra al tauler en directe",
|
||||
"description": "Alterna si aquesta càmera és visible al tauler de control en directe de totes les càmeres per defecte. La càmera roman disponible a tot arreu a la interfície d'usuari, inclosos els grups i la configuració de la càmera."
|
||||
"label": "Mostra a la interfície",
|
||||
"description": "Estableix si aquesta càmera és visible a tot arreu a la interfície d'usuari de Frigate. Desactivar això requerirà editar manualment la configuració per tornar a veure aquesta càmera a la interfície d'usuari."
|
||||
},
|
||||
"review": {
|
||||
"label": "Mostra en la revisió",
|
||||
|
||||
@@ -126,7 +126,5 @@
|
||||
"baby_stroller": "Cotxet",
|
||||
"rickshaw": "Ricksaw",
|
||||
"Rodent": "Rosegador",
|
||||
"rodent": "Rosegador",
|
||||
"possum": "Possum",
|
||||
"garbage_truck": "Camió de brossa"
|
||||
"rodent": "Rosegador"
|
||||
}
|
||||
|
||||
@@ -76,7 +76,7 @@
|
||||
"menuItem": "Visualitza les vistes prèvies del moviment",
|
||||
"title": "Vista prèvia del moviment: {{camera}}",
|
||||
"mobileSettingsTitle": "Configuració de la vista prèvia del moviment",
|
||||
"mobileSettingsDesc": "Ajusteu la velocitat de reproducció, l'enfosquiment i l'escapçament, i trieu una data per a revisar clips només en moviment.",
|
||||
"mobileSettingsDesc": "Ajusteu la velocitat de reproducció i l'enfosquiment, i trieu una data per a revisar clips només en moviment.",
|
||||
"dim": "Atenuar",
|
||||
"dimAria": "Ajusta la intensitat de l'enfosquiment",
|
||||
"dimDesc": "Incrementa l'enfosquiment per augmentar la visibilitat de l'àrea de moviment.",
|
||||
@@ -89,9 +89,6 @@
|
||||
"seekAria": "Cerca el reproductor {{camera}} a {{time}}",
|
||||
"filter": "Filtre",
|
||||
"filterDesc": "Seleccioneu àrees per a mostrar només clips amb moviment en aquestes regions.",
|
||||
"filterClear": "Neteja",
|
||||
"crop": "Escapça per filtrar",
|
||||
"cropAria": "Commuta la vista prèvia d'escapçament a les àrees filtrades",
|
||||
"cropDesc": "Amplia les vistes prèvies a les àrees de filtre seleccionades en lloc de mostrar el fotograma complet."
|
||||
"filterClear": "Neteja"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1330,7 +1330,7 @@
|
||||
"webuiUrlHelp": "URL per a visitar la interfície d'usuari web de la càmera directament des de la vista de depuració. Deixeu-ho en blanc per desactivar l'enllaç.",
|
||||
"webuiUrlInvalid": "Ha de ser un URL vàlid (p. ex., https://example.com).",
|
||||
"dashboardLabel": "Mostra al tauler en directe",
|
||||
"dashboardHelp": "Mostra aquesta càmera al tauler de control en directe predeterminat de totes les càmeres. Es manté disponible a tot arreu, inclosos els grups de càmeres.",
|
||||
"dashboardHelp": "Mostra aquesta càmera al Tauler en viu.",
|
||||
"reviewLabel": "Mostra a la ressenya",
|
||||
"reviewHelp": "Mostra aquesta càmera a Revisió, incloent el filtre de càmera, la revisió de moviment i la vista de l'historial."
|
||||
},
|
||||
@@ -1377,7 +1377,7 @@
|
||||
"deleteCameraDialog": {
|
||||
"title": "Suprimeix la càmera",
|
||||
"description": "Suprimir una càmera eliminarà permanentment tots els enregistraments, els objectes rastrejats i la configuració d'aquesta càmera. Qualsevol flux go2rtc associat amb aquesta càmera encara pot haver de ser eliminat manualment.",
|
||||
"selectPlaceholder": "Trieu la càmera…",
|
||||
"selectPlaceholder": "Trieu la càmera...",
|
||||
"confirmTitle": "N'estàs segur?",
|
||||
"confirmWarning": "Suprimir <strong>{{cameraName}}</strong> no es pot desfer.",
|
||||
"deleteExports": "Elimina també les exportacions d'aquesta càmera",
|
||||
|
||||
@@ -443,60 +443,5 @@
|
||||
"slap": "Plácnout",
|
||||
"smash": "Rozmlátit",
|
||||
"bouncing": "Odrážející",
|
||||
"scratch": "Škrábat",
|
||||
"spray": "Sprej",
|
||||
"pulse": "Pulz",
|
||||
"inside": "Uvnitř",
|
||||
"outside": "Venku",
|
||||
"reverberation": "Dozvuk",
|
||||
"echo": "Ozvěna",
|
||||
"noise": "Hluk",
|
||||
"mains_hum": "Síťový brum",
|
||||
"distortion": "Zkreslení",
|
||||
"sidetone": "Příposlech",
|
||||
"cacophony": "Kakofonie",
|
||||
"throbbing": "Pulzování",
|
||||
"vibration": "Vibrace",
|
||||
"sodeling": "Jódlování",
|
||||
"shofar": "Šofar",
|
||||
"slosh": "Šplouchání",
|
||||
"gush": "Příval",
|
||||
"whoosh": "Svištění",
|
||||
"thump": "Tlumená rána",
|
||||
"thunk": "Dutá rána",
|
||||
"effects_unit": "Efektová jednotka",
|
||||
"chorus_effect": "Chorus",
|
||||
"whack": "Úder",
|
||||
"breaking": "Rozbíjení",
|
||||
"whip": "Švihnutí",
|
||||
"flap": "Třepotání",
|
||||
"scrape": "Drhnutí",
|
||||
"rub": "Tření",
|
||||
"roll": "Kutálení",
|
||||
"crushing": "Drcení",
|
||||
"crumpling": "Mačkání",
|
||||
"tearing": "Trhání",
|
||||
"beep": "Pípnutí",
|
||||
"ping": "Ping",
|
||||
"ding": "Cinknutí",
|
||||
"clang": "Řinčení",
|
||||
"squeal": "Skřípění",
|
||||
"creak": "Vrzání",
|
||||
"rustle": "Šustění",
|
||||
"whir": "Hučení",
|
||||
"clatter": "Rachocení",
|
||||
"sizzle": "Prskání",
|
||||
"clicking": "Klikání",
|
||||
"clickety_clack": "Klapot",
|
||||
"rumble": "Dunění",
|
||||
"plop": "Žbluňknutí",
|
||||
"hum": "Brum",
|
||||
"zing": "Zvonivý tón",
|
||||
"boing": "Pružinový zvuk",
|
||||
"crunch": "Křupání",
|
||||
"sine_wave": "Sinusový tón",
|
||||
"harmonic": "Harmonický tón",
|
||||
"chirp_tone": "Klouzavý tón",
|
||||
"pump": "Pumpa",
|
||||
"basketball_bounce": "Basketbalový odraz"
|
||||
"scratch": "Škrábat"
|
||||
}
|
||||
|
||||
@@ -120,19 +120,7 @@
|
||||
"deleteNow": "Smazat hned",
|
||||
"next": "Další",
|
||||
"export": "Exportovat",
|
||||
"continue": "Pokračovat",
|
||||
"add": "Přidat",
|
||||
"applying": "Aplikuje se…",
|
||||
"undo": "Vrátit",
|
||||
"copiedToClipboard": "Zkopírováno do schránky",
|
||||
"modified": "Upraveno",
|
||||
"overridden": "Přepsáno",
|
||||
"resetToGlobal": "Obnovit globální nastavení",
|
||||
"resetToDefault": "Obnovit výchozí nastavení",
|
||||
"saveAll": "Uložit vše",
|
||||
"savingAll": "Ukládání…",
|
||||
"undoAll": "Vrátit vše",
|
||||
"retry": "Zkusit znovu"
|
||||
"continue": "Pokračovat"
|
||||
},
|
||||
"label": {
|
||||
"back": "Jdi zpět",
|
||||
@@ -225,9 +213,7 @@
|
||||
"gl": "Galego (Galicijština)",
|
||||
"id": "Bahasa Indonesia (Indonéština)",
|
||||
"ur": "اردو (Urdština)",
|
||||
"hr": "Hrvatski (Chorvatština)",
|
||||
"zhHant": "繁體中文 (Tradiční čínština)",
|
||||
"bs": "Bosanski (Bosenština)"
|
||||
"hr": "Hrvatski (Chorvatština)"
|
||||
},
|
||||
"theme": {
|
||||
"highcontrast": "Vysoký kontrast",
|
||||
@@ -265,11 +251,7 @@
|
||||
"faceLibrary": "Knihovna Obličejů",
|
||||
"configurationEditor": "Editor Konfigurace",
|
||||
"withSystem": "Systém",
|
||||
"classification": "Klasifikace",
|
||||
"profiles": "Profily",
|
||||
"actions": "Akce",
|
||||
"features": "Funkce",
|
||||
"chat": "Chat"
|
||||
"classification": "Klasifikace"
|
||||
},
|
||||
"pagination": {
|
||||
"previous": {
|
||||
@@ -300,8 +282,7 @@
|
||||
"error": {
|
||||
"title": "Chyba při ukládání změn konfigurace: {{errorMessage}}",
|
||||
"noMessage": "Chyba při ukládání změn konfigurace"
|
||||
},
|
||||
"success": "Změny konfigurace byly úspěšně uloženy."
|
||||
}
|
||||
}
|
||||
},
|
||||
"role": {
|
||||
@@ -322,10 +303,5 @@
|
||||
},
|
||||
"information": {
|
||||
"pixels": "{{area}}px"
|
||||
},
|
||||
"no_items": "Žádné položky",
|
||||
"validation_errors": "Chyby ověření",
|
||||
"credentialField": {
|
||||
"savedPlaceholder": "Uloženo – ponechte prázdné pro zachování aktuální hodnoty"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -68,10 +68,7 @@
|
||||
"desc": "Vyberte kamery pro tuto skupinu."
|
||||
},
|
||||
"icon": "Ikona",
|
||||
"success": "Skupina kamer {{name}} byla uložena.",
|
||||
"showAll": "Zobrazit všechny skupiny kamer",
|
||||
"showLess": "Zobrazit méně",
|
||||
"editGroups": "Upravit skupiny kamer"
|
||||
"success": "Skupina kamer {{name}} byla uložena."
|
||||
},
|
||||
"debug": {
|
||||
"options": {
|
||||
@@ -85,7 +82,6 @@
|
||||
"regions": "Kraje",
|
||||
"timestamp": "Časové razítko",
|
||||
"boundingBox": "Ohraničení",
|
||||
"mask": "Maska",
|
||||
"paths": "Cesty"
|
||||
"mask": "Maska"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,8 +6,7 @@
|
||||
"title": "Frigate restartuje",
|
||||
"content": "Tato stránka bude obnovena za {{countdown}} sekund.",
|
||||
"button": "Vynutit opětovné načtení"
|
||||
},
|
||||
"description": "Frigate bude během restartu krátce nedostupný."
|
||||
}
|
||||
},
|
||||
"explore": {
|
||||
"plus": {
|
||||
@@ -20,9 +19,6 @@
|
||||
},
|
||||
"state": {
|
||||
"submitted": "Odesláno"
|
||||
},
|
||||
"toast": {
|
||||
"error": "Odeslání do Frigate+ se nezdařilo. Zkontrolujte své síťové připojení a zkuste to znovu."
|
||||
}
|
||||
},
|
||||
"submitToPlus": {
|
||||
@@ -78,11 +74,7 @@
|
||||
"endTimeMustAfterStartTime": "Čas konce musí být po čase začátku",
|
||||
"noVaildTimeSelected": "Není vybráno žádné platné časové období"
|
||||
},
|
||||
"view": "Zobrazení",
|
||||
"queued": "Export zařazen do fronty. Průběh zobrazíte na stránce Exporty.",
|
||||
"batchSuccess_one": "Začal 1 export. Nyní se otevírá případ.",
|
||||
"batchSuccess_few": "Začaly {{count}} exporty. Nyní se otevírá případ.",
|
||||
"batchSuccess_other": "Začalo {{count}} exportů. Nyní se otevírá případ."
|
||||
"view": "Zobrazení"
|
||||
},
|
||||
"fromTimeline": {
|
||||
"saveExport": "Uložit export",
|
||||
@@ -90,65 +82,6 @@
|
||||
},
|
||||
"name": {
|
||||
"placeholder": "Jméno exportu"
|
||||
},
|
||||
"case": {
|
||||
"newCaseOption": "Vytvořit nový případ",
|
||||
"newCaseNamePlaceholder": "Název nového případu",
|
||||
"newCaseDescriptionPlaceholder": "Popis případu",
|
||||
"label": "Případ",
|
||||
"nonAdminHelp": "Pro tyto exporty bude vytvořen nový případ.",
|
||||
"placeholder": "Vyberte případ"
|
||||
},
|
||||
"queueing": "Přidávání exportu do fronty…",
|
||||
"tabs": {
|
||||
"export": "Jedna kamera",
|
||||
"multiCamera": "Vícekamerový"
|
||||
},
|
||||
"multiCamera": {
|
||||
"timeRange": "Časový rozsah",
|
||||
"selectFromTimeline": "Vybrat z časové osy",
|
||||
"cameraSelection": "Kamery",
|
||||
"cameraSelectionHelp": "Kamery se sledovanými objekty v tomto časovém rozsahu jsou předem vybrány",
|
||||
"searchOrSelectGroup": "Vyhledejte nebo vyberte skupinu kamer…",
|
||||
"selectAll": "Vybrat všechny kamery",
|
||||
"clearSelection": "Zrušit výběr",
|
||||
"selectWithActivity": "Kamery se sledovanými objekty",
|
||||
"selectGroup": "Vybrat skupinu",
|
||||
"noMatchingCameras": "Žádná kamera neodpovídá vašemu hledání",
|
||||
"selectedCount": "{{selected}} / {{total}} vybráno",
|
||||
"checkingActivity": "Kontrola aktivity kamer…",
|
||||
"noCameras": "Nejsou k dispozici žádné kamery",
|
||||
"detectionCount_one": "1 sledovaný objekt",
|
||||
"detectionCount_few": "{{count}} sledované objekty",
|
||||
"detectionCount_other": "{{count}} sledovaných objektů",
|
||||
"nameLabel": "Název exportu",
|
||||
"namePlaceholder": "Volitelný základní název pro tyto exporty",
|
||||
"queueingButton": "Příprava exportů…",
|
||||
"exportButton_one": "Exportovat 1 kameru",
|
||||
"exportButton_few": "Exportovat {{count}} kamery",
|
||||
"exportButton_other": "Exportovat {{count}} kamer"
|
||||
},
|
||||
"multi": {
|
||||
"title_one": "Exportovat 1 kontrolu",
|
||||
"title_few": "Exportovat {{count}} kontroly",
|
||||
"title_other": "Exportovat {{count}} kontrol",
|
||||
"description": "Exportujte každou vybranou kontrolu. Všechny exporty budou seskupeny do jednoho případu.",
|
||||
"descriptionNoCase": "Exportujte každou vybranou kontrolu.",
|
||||
"caseNamePlaceholder": "Export kontroly – {{date}}",
|
||||
"exportButton_one": "Exportovat 1 kontrolu",
|
||||
"exportButton_few": "Exportovat {{count}} kontroly",
|
||||
"exportButton_other": "Exportovat {{count}} kontrol",
|
||||
"exportingButton": "Exportování…",
|
||||
"toast": {
|
||||
"started_one": "Spuštěn 1 export. Otevírá se případ.",
|
||||
"started_few": "Spuštěny {{count}} exporty. Otevírá se případ.",
|
||||
"started_other": "Spuštěno {{count}} exportů. Otevírá se případ.",
|
||||
"startedNoCase_one": "Spuštěn 1 export.",
|
||||
"startedNoCase_few": "Spuštěny {{count}} exporty.",
|
||||
"startedNoCase_other": "Spuštěno {{count}} exportů.",
|
||||
"partial": "Spuštěno {{successful}} z {{total}} exportů. Selhalo: {{failedItems}}",
|
||||
"failed": "Nepodařilo se spustit {{total}} exportů. Selhalo: {{failedItems}}"
|
||||
}
|
||||
}
|
||||
},
|
||||
"streaming": {
|
||||
|
||||
@@ -309,8 +309,7 @@
|
||||
"triggers": "Spouštěče",
|
||||
"cameraManagement": "Správa",
|
||||
"cameraReview": "Kontrola",
|
||||
"roles": "Role",
|
||||
"profiles": "Profily"
|
||||
"roles": "Role"
|
||||
},
|
||||
"dialog": {
|
||||
"unsavedChanges": {
|
||||
|
||||
@@ -206,140 +206,5 @@
|
||||
"whale_vocalization": "Hvallyde",
|
||||
"music": "Musik",
|
||||
"musical_instrument": "Musikinstrument",
|
||||
"plucked_string_instrument": "Strengeinstrument",
|
||||
"zither": "Citar",
|
||||
"ukulele": "Ukulele",
|
||||
"piano": "Piano",
|
||||
"electric_piano": "Elektrisk Piano",
|
||||
"organ": "orgel",
|
||||
"electronic_organ": "Elektrisk orgel",
|
||||
"hammond_organ": "Hammond orgel",
|
||||
"synthesizer": "Synthesizer",
|
||||
"sampler": "Sampler",
|
||||
"harpsichord": "Mundharmonika",
|
||||
"percussion": "Percussion",
|
||||
"drum_kit": "Trommesæt",
|
||||
"drum_machine": "Trommemaskine",
|
||||
"drum": "Tromme",
|
||||
"timpani": "Pauker",
|
||||
"tabla": "Tabla",
|
||||
"cymbal": "Bækken",
|
||||
"hi_hat": "Hi-Hat",
|
||||
"wood_block": "Woodblock",
|
||||
"maraca": "Maraca",
|
||||
"gong": "Gong",
|
||||
"tubular_bells": "Rørklokker",
|
||||
"mallet_percussion": "Mallet percussion",
|
||||
"glockenspiel": "Klokkespil",
|
||||
"vibraphone": "Vibrafon",
|
||||
"steelpan": "olietønde",
|
||||
"orchestra": "Orkester",
|
||||
"brass_instrument": "Messingblæser",
|
||||
"french_horn": "Valdhorn",
|
||||
"bowed_string_instrument": "Stryger",
|
||||
"string_section": "Strygerdel",
|
||||
"pizzicato": "Pizzicato",
|
||||
"cello": "Cello",
|
||||
"double_bass": "Kontrabas",
|
||||
"wind_instrument": "Blæseinstrument",
|
||||
"church_bell": "Kirkeklokke",
|
||||
"jingle_bell": "Bjældeklang",
|
||||
"bicycle_bell": "Ringeklokke",
|
||||
"tuning_fork": "Stemmegaffel",
|
||||
"chime": "Kimen",
|
||||
"wind_chime": "Vindklokke",
|
||||
"accordion": "Harmonika",
|
||||
"theremin": "Theremin",
|
||||
"singing_bowl": "Syngeskål",
|
||||
"scratching": "Kradse",
|
||||
"pop_music": "Popmusik",
|
||||
"hip_hop_music": "Hip-Hopmusik",
|
||||
"beatboxing": "Beatboxing",
|
||||
"rock_music": "Rockmusik",
|
||||
"heavy_metal": "Heavymetal",
|
||||
"punk_rock": "Punkrock",
|
||||
"grunge": "Grunge",
|
||||
"progressive_rock": "Progressiv rock",
|
||||
"rock_and_roll": "Rock and Roll",
|
||||
"psychedelic_rock": "Psykedelisk rock",
|
||||
"rhythm_and_blues": "Rhythm and Blues",
|
||||
"soul_music": "Soulmusik",
|
||||
"reggae": "Reggae",
|
||||
"country": "Country",
|
||||
"disco": "Disko",
|
||||
"classical_music": "Klassisk musik",
|
||||
"electronic_music": "Elektronisk musik",
|
||||
"house_music": "Housemusik",
|
||||
"drum_and_bass": "Drum and Bass",
|
||||
"electronica": "Elektronisk musik",
|
||||
"electronic_dance_music": "Elektronisk dancemusik",
|
||||
"ambient_music": "Ambient musik",
|
||||
"trance_music": "Trancemusik",
|
||||
"music_of_latin_america": "Musik fra Latin Amerika",
|
||||
"salsa_music": "Salsamusik",
|
||||
"flamenco": "Flamenco",
|
||||
"music_for_children": "Musik for børn",
|
||||
"new-age_music": "New Age musik",
|
||||
"vocal_music": "Vokalmusik",
|
||||
"a_capella": "A Capella",
|
||||
"music_of_africa": "Musik fra Afrika",
|
||||
"afrobeat": "Afrobeat",
|
||||
"christian_music": "Kristen musik",
|
||||
"gospel_music": "Gospelmusik",
|
||||
"music_of_asia": "Musik fra Asian",
|
||||
"ska": "Ska",
|
||||
"traditional_music": "Traditionel musik",
|
||||
"independent_music": "Individual musik",
|
||||
"background_music": "Baggrundsmusik",
|
||||
"theme_music": "Temamusik",
|
||||
"jingle": "Jingle",
|
||||
"soundtrack_music": "Soundtrack musik",
|
||||
"video_game_music": "Videospil musik",
|
||||
"christmas_music": "Julemusik",
|
||||
"dance_music": "Dance musik",
|
||||
"wedding_music": "Bryllupsmusik",
|
||||
"happy_music": "Glad musik",
|
||||
"sad_music": "Trist musik",
|
||||
"tender_music": "Kærlighedsmusik",
|
||||
"exciting_music": "Spændende musik",
|
||||
"angry_music": "Vred musik",
|
||||
"scary_music": "Skræmmende musik",
|
||||
"rustling_leaves": "Raslende blade",
|
||||
"wind_noise": "Vindstøj",
|
||||
"rain_on_surface": "Regn på en overflade",
|
||||
"stream": "Strøm",
|
||||
"ocean": "Verdenshav",
|
||||
"steam": "Damp",
|
||||
"gurgling": "Gurgle",
|
||||
"crackle": "Knitren",
|
||||
"motor_vehicle": "Motoriseret køretøj",
|
||||
"toot": "Dytte",
|
||||
"car_alarm": "Bilalarm",
|
||||
"power_windows": "Elruder",
|
||||
"skidding": "Udskridning",
|
||||
"tire_squeal": "Dækhvin",
|
||||
"car_passing_by": "Forbikørende bil",
|
||||
"race_car": "Racerbil",
|
||||
"truck": "Lastbil",
|
||||
"air_brake": "Trykluftsbremse",
|
||||
"air_horn": "Trykluftshorn",
|
||||
"reversing_beeps": "Bakalarm",
|
||||
"ice_cream_truck": "Isbil",
|
||||
"emergency_vehicle": "Redningskøretøj",
|
||||
"police_car": "Politibil",
|
||||
"fire_engine": "Brandbil",
|
||||
"traffic_noise": "Trafikstøj",
|
||||
"rail_transport": "Godstogstransport",
|
||||
"train_whistle": "Togfløjt",
|
||||
"train_horn": "Toghorn",
|
||||
"railroad_car": "Togvogn",
|
||||
"train_wheels_squealing": "Skinneskrig",
|
||||
"subway": "Undergrund",
|
||||
"aircraft": "Fly",
|
||||
"aircraft_engine": "Flymotor",
|
||||
"jet_engine": "Jetmotor",
|
||||
"propeller": "Probel",
|
||||
"fixed-wing_aircraft": "Fastvingefly",
|
||||
"engine": "Motor",
|
||||
"light_engine": "Lille motor"
|
||||
"plucked_string_instrument": "Strengeinstrument"
|
||||
}
|
||||
|
||||
@@ -30,9 +30,6 @@
|
||||
"ask_a": "Ist dieses Objekt ein <code>{{label}}</code>?",
|
||||
"ask_an": "Ist dieses Objekt ein <code>{{label}}</code>?",
|
||||
"ask_full": "Ist dieses Objekt ein <code>{{untranslatedLabel}}</code> ({{translatedLabel}})?"
|
||||
},
|
||||
"toast": {
|
||||
"error": "Übermittlung an Frigate+ fehlgeschlagen. Bitte überprüfen Sie Ihre Netzwerkverbindung und versuchen Sie es erneut."
|
||||
}
|
||||
},
|
||||
"submitToPlus": {
|
||||
@@ -68,8 +65,7 @@
|
||||
"error": {
|
||||
"endTimeMustAfterStartTime": "Die Endzeit darf nicht vor der Startzeit liegen",
|
||||
"failed": "Fehler beim Export in die Warteschlange: {{error}}",
|
||||
"noVaildTimeSelected": "Kein gültiger Zeitraum ausgewählt",
|
||||
"noValidTimeSelected": "Kein gültiger Zeitraum ausgewählt"
|
||||
"noVaildTimeSelected": "Kein gültiger Zeitraum ausgewählt"
|
||||
},
|
||||
"success": "Export erfolgreich gestartet. Die Datei befindet sich auf der Exportseite.",
|
||||
"view": "Ansicht",
|
||||
|
||||
@@ -545,9 +545,6 @@
|
||||
"max_concurrent": {
|
||||
"label": "Maximale Anzahl gleichzeitiger Exporte",
|
||||
"description": "Maximale Anzahl der gleichzeitig zu verarbeitenden Exportaufträge."
|
||||
},
|
||||
"chapters": {
|
||||
"label": "Kapitel-Metadaten zur Einbettung in exportierte Aufzeichnungen"
|
||||
}
|
||||
},
|
||||
"preview": {
|
||||
@@ -771,8 +768,8 @@
|
||||
"description": "Numerische Reihenfolge, nach der die Kamera in der Benutzeroberfläche sortiert wird (Standard-Dashboard und Listen); höhere Zahlen erscheinen später."
|
||||
},
|
||||
"dashboard": {
|
||||
"label": "Im Live-Dashboard anzeigen",
|
||||
"description": "Legt fest, ob diese Kamera im Live-Dashboard ‚Alle Kameras‘ angezeigt wird. Die Kamera bleibt in allen anderen Bereichen der Benutzeroberfläche verfügbar, einschließlich Kamera-Gruppen und Einstellungen."
|
||||
"label": "In der Benutzeroberfläche anzeigen",
|
||||
"description": "Schalte ein, ob diese Kamera überall in der Benutzeroberfläche von „Frigate“ sichtbar ist. Wenn du diese Option deaktivierst, musst du die Konfiguration manuell bearbeiten, um diese Kamera wieder in der Benutzeroberfläche anzuzeigen."
|
||||
},
|
||||
"review": {
|
||||
"label": "In der Überprüfung anzeigen",
|
||||
|
||||
@@ -1123,7 +1123,7 @@
|
||||
},
|
||||
"model_type": {
|
||||
"label": "Typ des Objekterkennungsmodells",
|
||||
"description": "Typ der Detektor-Modellarchitektur (ssd, yolox, yolonas, yolo-generic, rfdetr, dfine), der von einigen Detektoren zur Optimierung verwendet wird."
|
||||
"description": "Typ der Detektor-Modellarchitektur (ssd, yolox, yolonas), der von einigen Detektoren zur Optimierung verwendet wird."
|
||||
}
|
||||
},
|
||||
"model_path": {
|
||||
@@ -1400,9 +1400,6 @@
|
||||
"max_concurrent": {
|
||||
"label": "Maximale Anzahl gleichzeitiger Exporte",
|
||||
"description": "Maximale Anzahl der gleichzeitig zu verarbeitenden Exportaufträge."
|
||||
},
|
||||
"chapters": {
|
||||
"label": "Kapitel-Metadaten zur Einbettung in exportierte Aufzeichnungen"
|
||||
}
|
||||
},
|
||||
"preview": {
|
||||
@@ -1732,7 +1729,7 @@
|
||||
},
|
||||
"model_type": {
|
||||
"label": "Typ des Objekterkennungsmodells",
|
||||
"description": "Typ der Detektor-Modellarchitektur (ssd, yolox, yolonas, yolo-generic, rfdetr, dfine), der von einigen Detektoren zur Optimierung verwendet wird."
|
||||
"description": "Typ der Detektor-Modellarchitektur (ssd, yolox, yolonas), der von einigen Detektoren zur Optimierung verwendet wird."
|
||||
}
|
||||
},
|
||||
"genai": {
|
||||
@@ -1935,8 +1932,8 @@
|
||||
"description": "Numerische Reihenfolge, nach der die Kamera in der Benutzeroberfläche sortiert wird (Standard-Dashboard und Listen); höhere Zahlen erscheinen später."
|
||||
},
|
||||
"dashboard": {
|
||||
"label": "Im Live-Dashboard anzeigen",
|
||||
"description": "Legt fest, ob diese Kamera im Live-Dashboard ‚Alle Kameras‘ angezeigt wird. Die Kamera bleibt in allen anderen Bereichen der Benutzeroberfläche verfügbar, einschließlich Kamera-Gruppen und Einstellungen."
|
||||
"label": "In der Benutzeroberfläche anzeigen",
|
||||
"description": "Schalte ein, ob diese Kamera überall in der Benutzeroberfläche von „Frigate“ sichtbar ist. Wenn du diese Option deaktivierst, musst du die Konfiguration manuell bearbeiten, um diese Kamera wieder in der Benutzeroberfläche anzuzeigen."
|
||||
},
|
||||
"review": {
|
||||
"label": "In der Überprüfung anzeigen",
|
||||
|
||||
@@ -125,7 +125,5 @@
|
||||
"baby": "Baby",
|
||||
"baby_stroller": "Kinderwagen",
|
||||
"rickshaw": "Rikscha",
|
||||
"rodent": "Nagetier",
|
||||
"garbage_truck": "Müllfahrzeug",
|
||||
"possum": "Possum"
|
||||
"rodent": "Nagetier"
|
||||
}
|
||||
|
||||
@@ -64,20 +64,7 @@
|
||||
"title": "Klassifikationsmodell bearbeiten",
|
||||
"descriptionState": "Bearbeite die Klassen für dieses Zustandsklassifikationsmodell. Änderungen erfordern ein erneutes Trainieren des Modells.",
|
||||
"descriptionObject": "Bearbeite den Objekttyp und Klassifizierungstyp für dieses Objektklassifikationsmodell.",
|
||||
"stateClassesInfo": "Modell aktualisiert. Trainieren Sie das Modell neu, damit die Klassenänderungen wirksam werden.",
|
||||
"enabled": "Aktiviert",
|
||||
"enabledDesc": "Dieses Modell ausführen. Bei Deaktivierung wird es nicht mehr ausgeführt und führt keine Klassifizierung mehr durch.",
|
||||
"saveAttempts": "Versuche speichern",
|
||||
"saveAttemptsDesc": "Anzahl der für die Übersicht der letzten Klassifizierungen zu speichernden Bilder.",
|
||||
"motion": "Bei Bewegung ausführen",
|
||||
"motionDesc": "Klassifizierung bei Bewegung im konfigurierten Bildausschnitt ausführen.",
|
||||
"interval": "Intervall",
|
||||
"intervalDesc": "Sekundenabstand zwischen regelmäßigen Klassifizierungsläufen. Leer lassen, um die Klassifizierung nur bei Bewegung auszuführen.",
|
||||
"intervalPlaceholder": "Kein Intervall",
|
||||
"errors": {
|
||||
"saveAttemptsInvalid": "Sparversuche müssen eine ganze Zahl von 0 oder mehr sein",
|
||||
"intervalInvalid": "Intervall muss eine ganze Nummer sein größer als 0"
|
||||
}
|
||||
"stateClassesInfo": "Hinweis: Die Änderung der Statusklassen erfordert ein erneutes Trainieren des Modells mit den aktualisierten Klassen."
|
||||
},
|
||||
"deleteDatasetImages": {
|
||||
"title": "Datensatz Bilder löschen",
|
||||
@@ -208,6 +195,5 @@
|
||||
},
|
||||
"none": "Keiner",
|
||||
"reclassifyImageAs": "Bild neu klassifizieren als:",
|
||||
"reclassifyImage": "Bild neu klassifizieren",
|
||||
"disabled": "Deaktiviert"
|
||||
"reclassifyImage": "Bild neu klassifizieren"
|
||||
}
|
||||
|
||||
@@ -570,7 +570,7 @@
|
||||
"openCameraWebUI": "Web-Benutzeroberfläche von {{camera}} öffnen",
|
||||
"audio": {
|
||||
"title": "Audio",
|
||||
"noAudioDetections": "Kein Audio-Ereignis erkannt",
|
||||
"noAudioDetections": "Keine Audioerkennungen",
|
||||
"score": "Punktzahl",
|
||||
"currentRMS": "Aktueller Effektivwert",
|
||||
"currentdbFS": "Aktuelle dbFS"
|
||||
@@ -1383,7 +1383,7 @@
|
||||
"webuiUrlHelp": "URL, um die Web-Benutzeroberfläche der Kamera direkt aus der Debug-Ansicht aufzurufen. Lassen Sie das Feld leer, um den Link zu deaktivieren.",
|
||||
"webuiUrlInvalid": "Es muss sich um eine gültige URL handeln (z. B. https://example.com).",
|
||||
"dashboardLabel": "Im Live-Dashboard anzeigen",
|
||||
"dashboardHelp": "Zeige diese Kamera auf dem Standard Alle Kameras live dashboard. Es bleibt überall verfügbar, einschließlich Kameragruppen.",
|
||||
"dashboardHelp": "Diese Kamera im Live-Dashboard anzeigen.",
|
||||
"reviewLabel": "In der Überprüfung anzeigen",
|
||||
"reviewHelp": "Zeige diese Kamera in der Übersicht an, einschließlich des Kamerafilters, der Bewegungsübersicht und der Verlaufsansicht."
|
||||
},
|
||||
@@ -1430,7 +1430,7 @@
|
||||
"deleteCameraDialog": {
|
||||
"title": "Kamera löschen",
|
||||
"description": "Durch das Löschen einer Kamera werden alle Aufzeichnungen, erfassten Objekte und Konfigurationseinstellungen für diese Kamera endgültig entfernt. Alle mit dieser Kamera verbundenen go2rtc-Streams müssen möglicherweise noch manuell entfernt werden.",
|
||||
"selectPlaceholder": "Kamera auswählen…",
|
||||
"selectPlaceholder": "Kamera auswählen...",
|
||||
"confirmTitle": "Bist du dir sicher?",
|
||||
"confirmWarning": "Das Löschen von <strong>{{cameraName}}</strong> kann nicht rückgängig gemacht werden.",
|
||||
"deleteExports": "Lösche auch die Exporte für diese Kamera",
|
||||
@@ -1720,14 +1720,7 @@
|
||||
"keyLabel": "Schlüssel",
|
||||
"valueLabel": "Wert",
|
||||
"keyPlaceholder": "Neuer Schlüssel",
|
||||
"remove": "Entfernen",
|
||||
"providerNameLabel": "Name des Anbieters",
|
||||
"providerNamePlaceholder": "z.B. openai",
|
||||
"variableNameLabel": "Variabler Name",
|
||||
"variableNamePlaceholder": "z.B. MY_VARIABLE",
|
||||
"loggerNameLabel": "Name des Loggers",
|
||||
"loggerNamePlaceholder": "z.B. frigate.record",
|
||||
"keyPatternError": "Verwenden Sie nur Buchstaben, Zahlen, Bindestriche und Unterstriche (keine Leerzeichen)"
|
||||
"remove": "Entfernen"
|
||||
},
|
||||
"timezone": {
|
||||
"defaultOption": "Zeitzone des Browsers verwenden"
|
||||
|
||||
@@ -463,7 +463,7 @@
|
||||
"deleteCameraDialog": {
|
||||
"title": "Delete Camera",
|
||||
"description": "Deleting a camera will permanently remove all recordings, tracked objects, and configuration for that camera. Any go2rtc streams associated with this camera may still need to be manually removed.",
|
||||
"selectPlaceholder": "Choose camera…",
|
||||
"selectPlaceholder": "Choose camera...",
|
||||
"confirmTitle": "Are you sure?",
|
||||
"confirmWarning": "Deleting <strong>{{cameraName}}</strong> cannot be undone.",
|
||||
"deleteExports": "Also delete exports for this camera",
|
||||
@@ -613,6 +613,7 @@
|
||||
}
|
||||
},
|
||||
"footer": {
|
||||
"changeCount_zero": "No changes selected",
|
||||
"changeCount_one": "{{count}} change will be applied",
|
||||
"changeCount_other": "{{count}} changes will be applied",
|
||||
"restartNeeded": "Restart will be required for some changes.",
|
||||
|
||||
@@ -126,7 +126,5 @@
|
||||
"baby_stroller": "Lapsevanker",
|
||||
"rickshaw": "Rikša",
|
||||
"Rodent": "Näriline",
|
||||
"rodent": "Näriline",
|
||||
"possum": "Opossum",
|
||||
"garbage_truck": "Prügiauto"
|
||||
"rodent": "Näriline"
|
||||
}
|
||||
|
||||
@@ -74,7 +74,7 @@
|
||||
"menuItem": "Vaata liikumiste eelvaateid",
|
||||
"title": "Liikumiste eelvaated: {{camera}}",
|
||||
"mobileSettingsTitle": "Liikumiste eelvaadete seadistused",
|
||||
"mobileSettingsDesc": "Kohenda taasesituse kiirust, heledust ja kadreerimist ning vali kuupäev, et vaadata läbi ainult liikumist kajastavaid klipid.",
|
||||
"mobileSettingsDesc": "Kohenda taasesituse kiirust ja heledust ning vali kuupäev, et vaadata läbi ainult liikumist kajastavaid klipid.",
|
||||
"dim": "Hämarus",
|
||||
"dimAria": "Muuda hämarust",
|
||||
"dimDesc": "Kohenda hämarust parandamaks liikumisala nähtavust.",
|
||||
@@ -87,9 +87,6 @@
|
||||
"seekAria": "Keri „{{camera}}“ kaamera vaade ajatempli juurde: {{time}}",
|
||||
"filter": "Filtreeri",
|
||||
"filterDesc": "Näitamaks ainult liikumisega klippe antud aladel, vali soovitud piirkonnad.",
|
||||
"filterClear": "Tühjenda",
|
||||
"crop": "Kadreeri filtreerimiseks",
|
||||
"cropAria": "Lülita filtreeritud alade kadreeritud eelvaated sisse/välja",
|
||||
"cropDesc": "Täiskaadri kuvamise asemel suumi eelvaated valitud filtritega märgitud alani."
|
||||
"filterClear": "Tühjenda"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -129,9 +129,6 @@
|
||||
"error": {
|
||||
"updatedLPRFailed": "Sõiduki numbrimärgi uuendamine ei õnnestunud: {{errorMessage}}"
|
||||
}
|
||||
},
|
||||
"button": {
|
||||
"share": "Jaga seda ülevaadatud objekti"
|
||||
}
|
||||
},
|
||||
"snapshotScore": {
|
||||
|
||||
@@ -538,7 +538,7 @@
|
||||
"licensePlateRecognition": {
|
||||
"title": "Sõidukite numbrimärkide tuvastus"
|
||||
},
|
||||
"title": "Andmerikastuse seadistused",
|
||||
"title": "Andmerikastuse seaded",
|
||||
"restart_required": "Taaskäivitamine on vajalik (Andmerikastuse seadeid on muudetud)",
|
||||
"toast": {
|
||||
"success": "Andmerikastamise seaded on salvestatud. Muudatuste rakendamiseks taaskäivitage Frigate.",
|
||||
|
||||
@@ -502,7 +502,7 @@
|
||||
},
|
||||
"model_type": {
|
||||
"label": "物体検知モデル種別",
|
||||
"description": "一部の検出器が最適化に使用する検知モデルのアーキテクチャ種別(ssd, yolox, yolonas, yolo-generic, rfdetr, dfine)。"
|
||||
"description": "一部の検出器が最適化に使用する検知モデルのアーキテクチャ種別(ssd, yolox, yolonas)。"
|
||||
}
|
||||
},
|
||||
"model_path": {
|
||||
@@ -675,7 +675,7 @@
|
||||
},
|
||||
"model_type": {
|
||||
"label": "物体検知モデル種別",
|
||||
"description": "一部の検出器が最適化に使用する検知モデルのアーキテクチャ種別(ssd, yolox, yolonas, yolo-generic, rfdetr, dfine)。"
|
||||
"description": "一部の検出器が最適化に使用する検知モデルのアーキテクチャ種別(ssd, yolox, yolonas)。"
|
||||
}
|
||||
},
|
||||
"genai": {
|
||||
@@ -1555,7 +1555,7 @@
|
||||
"description": "UI 内でのカメラの並び順に使用される数値(デフォルトダッシュボードとリスト)。値が大きいほど後ろに表示されます。"
|
||||
},
|
||||
"dashboard": {
|
||||
"label": "ライブダッシュボードに表示",
|
||||
"label": "UI に表示",
|
||||
"description": "このカメラを Frigate UI 全体に表示するかを切り替えます。無効化した場合、再表示するには設定ファイルを手動編集する必要があります。"
|
||||
},
|
||||
"review": {
|
||||
|
||||
@@ -147,19 +147,7 @@
|
||||
"deleteNow": "Trinti Dabar",
|
||||
"next": "Kitas",
|
||||
"off": "OFF",
|
||||
"continue": "Tęsti",
|
||||
"add": "Pridėti",
|
||||
"applying": "Pritaikoma…",
|
||||
"undo": "Grąžinti",
|
||||
"copiedToClipboard": "Nukopijuotą į iškarpinę",
|
||||
"modified": "Modifikuota",
|
||||
"overridden": "Perrašytas",
|
||||
"resetToGlobal": "Sugąžinti į Globalius",
|
||||
"resetToDefault": "Sugrąžinti į Numatytuosius",
|
||||
"saveAll": "Išsaugoti Viską",
|
||||
"savingAll": "Viskas Išsaugoma…",
|
||||
"undoAll": "Grąžinti Viską",
|
||||
"retry": "Pakartoti"
|
||||
"continue": "Tęsti"
|
||||
},
|
||||
"menu": {
|
||||
"system": "Sistema",
|
||||
@@ -211,10 +199,7 @@
|
||||
"bg": "Bulgarų",
|
||||
"gl": "Galician",
|
||||
"id": "Indonesian",
|
||||
"ur": "Urdu",
|
||||
"zhHant": "Tradicinė Kinijos",
|
||||
"hr": "Kroatų",
|
||||
"bs": "Bosnių"
|
||||
"ur": "Urdu"
|
||||
},
|
||||
"appearance": "Išvaizda",
|
||||
"darkMode": {
|
||||
@@ -264,11 +249,7 @@
|
||||
"setPassword": "Nustatyti Slaptažodi"
|
||||
},
|
||||
"uiPlayground": "UI Playground",
|
||||
"classification": "Klasifikavimas",
|
||||
"profiles": "Profiliai",
|
||||
"actions": "Veiksmai",
|
||||
"features": "Ypatybės",
|
||||
"chat": "Pokalbiai"
|
||||
"classification": "Klasifikavimas"
|
||||
},
|
||||
"toast": {
|
||||
"copyUrlToClipboard": "URL nukopijuotas į atmintį.",
|
||||
@@ -277,8 +258,7 @@
|
||||
"error": {
|
||||
"title": "Nepavyko išsaugoti konfiguracijos pakeitimų: {{errorMessage}}",
|
||||
"noMessage": "Nepavyko išsaugoti konfiguracijos pakeitimų"
|
||||
},
|
||||
"success": "Konfiguracijos pokyčiai išsaugoti sėkmingai."
|
||||
}
|
||||
}
|
||||
},
|
||||
"role": {
|
||||
@@ -322,10 +302,5 @@
|
||||
"field": {
|
||||
"optional": "Pasirinktinis",
|
||||
"internalID": "Vidinį ID Frigate naudoja konfiguracijoje ir duombazėje"
|
||||
},
|
||||
"no_items": "Nėra įrašų",
|
||||
"validation_errors": "Tikrinimo Klaidos",
|
||||
"credentialField": {
|
||||
"savedPlaceholder": "Išsaugota - palikite tuščia kad išliktų esamas"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -68,10 +68,7 @@
|
||||
}
|
||||
},
|
||||
"birdseye": "Birdseye"
|
||||
},
|
||||
"showAll": "Rodyti visas kamerų grupes",
|
||||
"showLess": "Rodyti mažiau",
|
||||
"editGroups": "Koreguoti Kameru Grupes"
|
||||
}
|
||||
},
|
||||
"debug": {
|
||||
"options": {
|
||||
@@ -85,7 +82,6 @@
|
||||
"zones": "Zonos",
|
||||
"mask": "Maskuotė",
|
||||
"motion": "Judesys",
|
||||
"regions": "Regionas",
|
||||
"paths": "Keliai"
|
||||
"regions": "Regionas"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,9 +20,6 @@
|
||||
},
|
||||
"state": {
|
||||
"submitted": "Pateikta"
|
||||
},
|
||||
"toast": {
|
||||
"error": "Pateikti į Frigate+ nepavyko. Prašau patikrinkite savo tinklo nustatymus ir bandykite dar kartą."
|
||||
}
|
||||
},
|
||||
"submitToPlus": {
|
||||
@@ -82,16 +79,7 @@
|
||||
"noVaildTimeSelected": "Nėra pasirinkto tinkamo laikotarpio"
|
||||
},
|
||||
"view": "Žiūrėti"
|
||||
},
|
||||
"case": {
|
||||
"newCaseOption": "Kurti naują užklausą",
|
||||
"newCaseNamePlaceholder": "Naujos užklausos pavadinimas",
|
||||
"newCaseDescriptionPlaceholder": "Užklausos aprašymas",
|
||||
"label": "Užklausa",
|
||||
"nonAdminHelp": "Nauja užklausa bus sukurta šiems išrašams",
|
||||
"placeholder": "Pasirinkti užklausą"
|
||||
},
|
||||
"queueing": "Sudaroma išrašų eilė...."
|
||||
}
|
||||
},
|
||||
"recording": {
|
||||
"button": {
|
||||
|
||||
@@ -28,8 +28,7 @@
|
||||
"triggers": "Trigeriai",
|
||||
"roles": "Rolės",
|
||||
"cameraManagement": "Valdymas",
|
||||
"cameraReview": "Peržiūra",
|
||||
"profiles": "Profiliai"
|
||||
"cameraReview": "Peržiūra"
|
||||
},
|
||||
"dialog": {
|
||||
"unsavedChanges": {
|
||||
|
||||
@@ -147,7 +147,7 @@
|
||||
"streaming": {
|
||||
"label": "Strøm",
|
||||
"restreaming": {
|
||||
"disabled": "Viderestrømming er ikke aktivert for dette kameraet.",
|
||||
"disabled": "Restrømming er ikke aktivert for dette kameraet.",
|
||||
"desc": {
|
||||
"readTheDocumentation": "Se dokumentasjonen",
|
||||
"title": "Konfigurer go2rtc for flere direktestrømmingsalternativer og lyd for dette kameraet."
|
||||
|
||||
@@ -235,7 +235,7 @@
|
||||
"label": "Direkteavspilling",
|
||||
"streams": {
|
||||
"label": "Navn på direktestrømmer",
|
||||
"description": "Kobling mellom konfigurerte strøm-navn og viderestrøm/go2rtc-navn brukt for direkteavspilling."
|
||||
"description": "Kobling mellom konfigurerte strøm-navn og restream/go2rtc-navn brukt for direkteavspilling."
|
||||
},
|
||||
"height": {
|
||||
"label": "Direktevisningshøyde",
|
||||
|
||||
@@ -81,7 +81,7 @@
|
||||
},
|
||||
"go2rtc": {
|
||||
"label": "go2rtc",
|
||||
"description": "Innstillinger for den integrerte go2rtc-tjenesten for viderestrømming og oversettelse av direktestrømmer."
|
||||
"description": "Innstillinger for den integrerte go2rtc-tjenesten for videreformidling og oversettelse av direktestrømmer."
|
||||
},
|
||||
"mqtt": {
|
||||
"label": "MQTT",
|
||||
@@ -586,7 +586,7 @@
|
||||
"description": "Modus for å inkludere kameraer i Fugleperspektiv: 'objects', 'motion' eller 'continuous'."
|
||||
},
|
||||
"restream": {
|
||||
"label": "Viderestrøm RTSP",
|
||||
"label": "Videreformidle RTSP",
|
||||
"description": "Videreformidle Fugleperspektiv-utdataen som en RTSP-strøm; aktivering av dette vil holde Fugleperspektiv kjørende kontinuerlig."
|
||||
},
|
||||
"width": {
|
||||
@@ -756,10 +756,10 @@
|
||||
},
|
||||
"live": {
|
||||
"label": "Direkteavspilling",
|
||||
"description": "Innstillinger for å kontrollere oppløsning og kvalitet på jsmpeg-direktestrømmer. Dette påvirker ikke vderestrømmede kameraer som bruker go2rtc for direktevisning.",
|
||||
"description": "Innstillinger for å kontrollere oppløsning og kvalitet på jsmpeg-direktestrømmer. Dette påvirker ikke kameraer som bruker go2rtc for direktevisning.",
|
||||
"streams": {
|
||||
"label": "Navn på direktestrømmer",
|
||||
"description": "Kobling mellom konfigurerte strøm-navn og viderestrøm/go2rtc-navn brukt for direkteavspilling."
|
||||
"description": "Kobling mellom konfigurerte strøm-navn og restream/go2rtc-navn brukt for direkteavspilling."
|
||||
},
|
||||
"height": {
|
||||
"label": "Direktevisningshøyde",
|
||||
|
||||
@@ -126,7 +126,5 @@
|
||||
"Rodent": "Gnager",
|
||||
"baby": "Baby",
|
||||
"rickshaw": "Rickshaw",
|
||||
"rodent": "Gnager",
|
||||
"possum": "Pungrotte",
|
||||
"garbage_truck": "Avfallsbil"
|
||||
"rodent": "Gnager"
|
||||
}
|
||||
|
||||
@@ -188,23 +188,9 @@
|
||||
"title": "Rediger klassifiseringsmodell",
|
||||
"descriptionState": "Rediger klassene for denne tilstandsklassifiseringsmodellen. Endringer vil kreve at modellen trenes på nytt.",
|
||||
"descriptionObject": "Rediger objekttypen og klassifiseringstypen for denne objektklassifiseringsmodellen.",
|
||||
"stateClassesInfo": "Modellen ble oppdatert. Tren modellen på nytt for at endringene i klassene skal bli iverksatt.",
|
||||
"enabled": "Aktivert",
|
||||
"enabledDesc": "Kjør denne modellen. Når den er deaktivert, stopper den og vil ikke lenger klassifisere.",
|
||||
"saveAttempts": "Lagringsforsøk",
|
||||
"saveAttemptsDesc": "Antall bilder fra klassifiseringsforsøk som skal lagres for visning av nylige klassifiseringer.",
|
||||
"motion": "Utfør ved bevegelse",
|
||||
"motionDesc": "Utfør klassifisering når bevegelse registreres innenfor det konfigurerte utsnittet.",
|
||||
"interval": "Intervall",
|
||||
"intervalDesc": "Sekunder mellom periodiske klassifiseringskjøringer. La stå tom for å kun kjøre ved bevegelse.",
|
||||
"intervalPlaceholder": "Ingen intervall",
|
||||
"errors": {
|
||||
"saveAttemptsInvalid": "Lagringsforsøk må være et heltall på 0 eller høyere",
|
||||
"intervalInvalid": "Intervall må være et heltall større enn 0"
|
||||
}
|
||||
"stateClassesInfo": "Modellen ble oppdatert. Tren modellen på nytt for at endringene i klassene skal bli iverksatt."
|
||||
},
|
||||
"none": "Ingen",
|
||||
"reclassifyImageAs": "Reklassifiser bilde som:",
|
||||
"reclassifyImage": "Reklassifiser bilde",
|
||||
"disabled": "Deaktivert"
|
||||
"reclassifyImage": "Reklassifiser bilde"
|
||||
}
|
||||
|
||||
@@ -1305,7 +1305,7 @@
|
||||
},
|
||||
"featuresPopover": {
|
||||
"title": "Strømfunksjoner",
|
||||
"description": "Bruk go2rtc-viderestrømming for å redusere antall tilkoblinger til kameraet."
|
||||
"description": "Bruk go2rtc-restrømming for å redusere antall tilkoblinger til kameraet."
|
||||
}
|
||||
},
|
||||
"step4": {
|
||||
@@ -1382,7 +1382,7 @@
|
||||
"saving": "Lagrer…",
|
||||
"saved": "Lagret",
|
||||
"label": "Kamerastatus",
|
||||
"description": "Angi driftsstatus for hvert kamera.<br /><br /><strong>På</strong>: Strømmer behandles normalt.<br /><strong>Av</strong>: Setter behandlingen midlertidig på pause. Vedvarer ikke etter omstart av Frigate.<br /><strong>Deaktivert</strong>: Stopper behandlingen og lagrer endringen i konfigurasjonen din. En omstart kreves for å aktivere et deaktivert kamera igjen.<br /><br /><em>Merk: Deaktivering påvirker ikke viderestrømming (restream) i go2rtc.</em><br /><br />Dra i ikonet for å endre rekkefølgen på aktive kameraer slik de vises i grensesnittet, inkludert Live-dashbordet og rullegardinmenyene for kameravalg.",
|
||||
"description": "Angi driftsstatus for hvert kamera.<br /><br /><strong>På</strong>: Strømmer behandles normalt.<br /><strong>Av</strong>: Setter behandlingen midlertidig på pause. Vedvarer ikke etter omstart av Frigate.<br /><strong>Deaktivert</strong>: Stopper behandlingen og lagrer endringen i konfigurasjonen din. En omstart kreves for å aktivere et deaktivert kamera igjen.<br /><br /><em>Merk: Deaktivering påvirker ikke videreformidling (restream) i go2rtc.</em><br /><br />Dra i ikonet for å endre rekkefølgen på aktive kameraer slik de vises i grensesnittet, inkludert Live-dashbordet og rullegardinmenyene for kameravalg.",
|
||||
"disabledSubheading": "Deaktivert i konfigurasjonen",
|
||||
"status": {
|
||||
"on": "På",
|
||||
@@ -1670,8 +1670,8 @@
|
||||
"preset-rtmp-generic": "RTMP (Generisk)",
|
||||
"preset-rtsp-blue-iris": "RTSP - Blue Iris",
|
||||
"preset-rtsp-udp": "RTSP - UDP",
|
||||
"preset-rtsp-restream": "RTSP - Viderestrømming fra go2rtc",
|
||||
"preset-rtsp-restream-low-latency": "RTSP - Viderestrømming fra go2rtc (lav forsinkelse)",
|
||||
"preset-rtsp-restream": "RTSP - Videreformidling fra go2rtc",
|
||||
"preset-rtsp-restream-low-latency": "RTSP - Videreformidling fra go2rtc (lav forsinkelse)",
|
||||
"preset-rtsp-generic": "RTSP (Generisk)",
|
||||
"preset-vaapi": "VAAPI (Intel/AMD GPU)"
|
||||
},
|
||||
@@ -1725,11 +1725,7 @@
|
||||
"valueLabel": "Verdi",
|
||||
"providerNamePlaceholder": "f.eks. openai",
|
||||
"variableNameLabel": "Variabelnavn",
|
||||
"variableNamePlaceholder": "f.eks MIN_VARIABEL",
|
||||
"providerNameLabel": "Tilbydernavn",
|
||||
"loggerNameLabel": "Loggernavn",
|
||||
"loggerNamePlaceholder": "f.eks. frigate.record",
|
||||
"keyPatternError": "Bruk kun bokstaver, tall, bindestreker og understreker (ingen mellomrom)"
|
||||
"variableNamePlaceholder": "f.eks MIN_VARIABEL"
|
||||
},
|
||||
"roleMap": {
|
||||
"remove": "Fjern",
|
||||
@@ -1779,7 +1775,7 @@
|
||||
"cameraInputs": {
|
||||
"itemTitle": "Strøm {{index}}",
|
||||
"sourceMode": {
|
||||
"restream": "Viderestrøm (go2rtc)",
|
||||
"restream": "Videreformidling / Restream (go2rtc)",
|
||||
"manual": "Manuell kildesti",
|
||||
"go2rtcStreamLabel": "go2rtc-strøm",
|
||||
"go2rtcStreamPlaceholder": "Velg en go2rtc-strøm",
|
||||
@@ -1864,7 +1860,7 @@
|
||||
}
|
||||
},
|
||||
"go2rtcStreams": {
|
||||
"description": "Administrer go2rtc-strømkonfigurasjoner for viderestrømming av kamera-strømmer. Hver strøm har ett navn og én eller flere kilde-URL-er.",
|
||||
"description": "Administrer go2rtc-strømkonfigurasjoner for videreformidling av kamera-strømmer. Hver strøm har ett navn og én eller flere kilde-URL-er.",
|
||||
"ffmpeg": {
|
||||
"hardwareAuto": "Automatisk (anbefalt)",
|
||||
"useFfmpegModule": "Bruk kompatibilitetsmodus (ffmpeg)",
|
||||
@@ -2014,8 +2010,7 @@
|
||||
"inputDimensionsNotDetectResolution": "Modellens inndata for bredde og høyde er dimensjonene til selve objektdeteksjonsmodellen, ikke kameraets deteksjonsoppløsning. De skal samsvare med dimensjonene til modellen du bruker – vanligvis en kvadratisk størrelse som 320x320 eller 640x640."
|
||||
},
|
||||
"ffmpeg": {
|
||||
"hwaccelManualNotRecommended": "Manuelle argumenter for maskinvareakselerasjon anbefales ikke. Med mindre det foreligger et spesifikt behov, bør du velge forhåndsinnstillingen som samsvarer med maskinvaren din.",
|
||||
"inputsMissingGo2rtcStream": "En innstrøm nedenfor peker til en go2rtc-viderestrøm som ikke lenger eksisterer. Velg en eksisterende viderestrømeller oppgi kameraets URL manuelt, ellers vil ikke kameraet klarer å koble til."
|
||||
"hwaccelManualNotRecommended": "Manuelle argumenter for maskinvareakselerasjon anbefales ikke. Med mindre det foreligger et spesifikt behov, bør du velge forhåndsinnstillingen som samsvarer med maskinvaren din."
|
||||
},
|
||||
"onvif": {
|
||||
"autotrackingNoZones": "Autosporing krever minst én sone. Definer en sone for dette kameraet under Masker / Soner, og angi den deretter som en påkrevd sone nedenfor."
|
||||
|
||||
@@ -65,16 +65,13 @@
|
||||
"select": "Selecteer",
|
||||
"toast": {
|
||||
"error": {
|
||||
"failed": "Exporter naar wachtrij mislukt: {{error}}",
|
||||
"failed": "Exporteren is mislukt: {{error}}",
|
||||
"noVaildTimeSelected": "Geen geldig tijdsbereik geselecteerd",
|
||||
"endTimeMustAfterStartTime": "Eindtijd moet na starttijd zijn",
|
||||
"noValidTimeSelected": "Geen geldige tijd voor geselecteerd bereik"
|
||||
"endTimeMustAfterStartTime": "Eindtijd moet na starttijd zijn"
|
||||
},
|
||||
"success": "Export is succesvol gestart. Bekijk het bestand op de exportpagina.",
|
||||
"view": "Weergeven",
|
||||
"queued": "Export staat in de wachtrij. Bekijk voortgang op de exports pagina.",
|
||||
"batchSuccess_one": "1 export gestart. Zaak wordt aangemaakt.",
|
||||
"batchSuccess_other": "{{count}} export gestart. Zaak wordt aangemaakt."
|
||||
"queued": "Export staat in de wachtrij. Bekijk voortgang op de exports pagina."
|
||||
},
|
||||
"fromTimeline": {
|
||||
"saveExport": "Export opslaan",
|
||||
@@ -128,9 +125,7 @@
|
||||
"startedNoCase_one": "1 export gestart.",
|
||||
"startedNoCase_other": "{{count}} Exports gestart.",
|
||||
"partial": "{{successful}} van {{total}} exports gestart. Mislukte items: {{failedItems}}",
|
||||
"failed": "Het starten van {{total}} exports is mislukt. Mislukt: {{failedItems}}",
|
||||
"started_one": "1 export gestart. Zaak wordt aangemaakt.",
|
||||
"started_other": "{{count}} exports gestart. Zaak wordt aangemaakt."
|
||||
"failed": "Het starten van {{total}} exports is mislukt. Mislukt: {{failedItems}}"
|
||||
},
|
||||
"exportingButton": "Exporteren...",
|
||||
"exportButton_one": "Exporteer 1 revisie",
|
||||
|
||||
@@ -867,8 +867,8 @@
|
||||
"description": "Ordine numerică folosită pentru sortarea camerei în interfață (dashboard și liste); numerele mai mari apar mai târziu."
|
||||
},
|
||||
"dashboard": {
|
||||
"label": "Afișează pe tabloul de bord Live",
|
||||
"description": "Comută dacă această cameră este vizibilă pe tabloul de bord Live implicit „Toate camerele”. Camera rămâne disponibilă în restul interfeței, inclusiv în grupurile de camere și în setări."
|
||||
"label": "Arată în interfață",
|
||||
"description": "Comută vizibilitatea acestei camere peste tot în interfața Frigate. Dezactivarea acestei opțiuni va necesita editarea manuală a configurației pentru a vedea din nou camera în interfață."
|
||||
},
|
||||
"review": {
|
||||
"label": "Arată în Revizuire",
|
||||
|
||||
@@ -2338,8 +2338,8 @@
|
||||
"description": "Ordinea numerică folosită pentru sortarea camerei în interfață (dashboard-ul implicit și liste); numerele mai mari apar mai târziu."
|
||||
},
|
||||
"dashboard": {
|
||||
"label": "Afișează pe tabloul de bord Live",
|
||||
"description": "Comută dacă această cameră este vizibilă pe tabloul de bord Live implicit „Toate camerele”. Camera rămâne disponibilă în restul interfeței, inclusiv în grupurile de camere și în setări."
|
||||
"label": "Arată în interfață",
|
||||
"description": "Comută dacă această cameră este vizibilă peste tot în interfața Frigate. Dezactivarea acestei opțiuni va necesita editarea manuală a config-ului pentru a vedea din nou camera în interfață."
|
||||
},
|
||||
"review": {
|
||||
"label": "Arată în Revizuire",
|
||||
|
||||
@@ -126,7 +126,5 @@
|
||||
"baby_stroller": "Cărucior de copii",
|
||||
"rickshaw": "Ricșă",
|
||||
"Rodent": "Rozătoare",
|
||||
"rodent": "Rozătoare",
|
||||
"garbage_truck": "Mașină de gunoi",
|
||||
"possum": "Oposum"
|
||||
"rodent": "Rozătoare"
|
||||
}
|
||||
|
||||
@@ -76,7 +76,7 @@
|
||||
"menuItem": "Vezi previzualizări mișcare",
|
||||
"title": "Previzualizări mișcare: {{camera}}",
|
||||
"mobileSettingsTitle": "Setări previzualizări mișcare",
|
||||
"mobileSettingsDesc": "Ajustează viteza de redare, întunecarea și decuparea și alege o dată pentru a examina clipurile doar cu mișcare.",
|
||||
"mobileSettingsDesc": "Ajustează viteza de redare și estomparea, și alege o dată pentru a revizui clipurile doar cu mișcare.",
|
||||
"dim": "Estompare",
|
||||
"dimAria": "Ajustează intensitatea estompării",
|
||||
"dimDesc": "Crește intensitatea estompării pentru a mări vizibilitatea zonei de mișcare.",
|
||||
@@ -89,9 +89,6 @@
|
||||
"seekAria": "Derulează player-ul {{camera}} la {{time}}",
|
||||
"filter": "Filtru",
|
||||
"filterDesc": "Selectează zonele pentru a afișa doar clipurile cu mișcare în acele regiuni.",
|
||||
"filterClear": "Șterge",
|
||||
"crop": "Decupează după filtru",
|
||||
"cropDesc": "Mărește previzualizările pe zonele de filtrare selectate în loc să afișeze cadrul complet.",
|
||||
"cropAria": "Comută decuparea previzualizărilor pe zonele filtrate"
|
||||
"filterClear": "Șterge"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1333,7 +1333,7 @@
|
||||
"webuiUrlInvalid": "Trebuie să fie un URL valid (de exemplu, https://exemplu.com).",
|
||||
"dashboardLabel": "Arată pe dashboard-ul Live",
|
||||
"reviewLabel": "Arată în Revizuire",
|
||||
"dashboardHelp": "Afișează această cameră pe tabloul de bord Live implicit „Toate camerele”. Aceasta rămâne disponibilă în restul interfeței, inclusiv în grupurile de camere.",
|
||||
"dashboardHelp": "Arată această cameră pe dashboard-ul Live.",
|
||||
"reviewHelp": "Arată această cameră în revizuiri, inclusiv filtrul de camere, revizuirea mișcărilor și vizualizarea istoricului."
|
||||
},
|
||||
"label": "Stare cameră",
|
||||
@@ -1379,7 +1379,7 @@
|
||||
"deleteCameraDialog": {
|
||||
"title": "Șterge camera",
|
||||
"description": "Ștergerea unei camere va elimina definitiv toate înregistrările, obiectele urmărite și configurația pentru acea cameră. Orice fluxuri go2rtc asociate cu această cameră ar putea necesita în continuare eliminarea manuală.",
|
||||
"selectPlaceholder": "Alege camera…",
|
||||
"selectPlaceholder": "Alege camera...",
|
||||
"confirmTitle": "Ești sigur?",
|
||||
"confirmWarning": "Ștergerea <strong>{{cameraName}}</strong> nu poate fi anulată.",
|
||||
"deleteExports": "Șterge și exporturile pentru această cameră",
|
||||
|
||||
@@ -95,7 +95,7 @@
|
||||
"placeholder": "Выберите случай",
|
||||
"newCaseOption": "Создайте новый случай",
|
||||
"newCaseNamePlaceholder": "Имя нового случая",
|
||||
"newCaseDescriptionPlaceholder": "Описание случая",
|
||||
"newCaseDescriptionPlaceholder": "Описание Случая",
|
||||
"nonAdminHelp": "Для этих экспортов будет создан новый случай."
|
||||
},
|
||||
"queueing": "Помещаем Экспорт в очередь...",
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
},
|
||||
"label": "Конфигурация",
|
||||
"audio": {
|
||||
"label": "Обнаружение звука",
|
||||
"label": "Аудиособытия",
|
||||
"description": "Настройки обнаружения аудиособытий для этой камеры.",
|
||||
"enabled": {
|
||||
"label": "Включить обнаружение звука",
|
||||
@@ -28,16 +28,12 @@
|
||||
"description": "Для запуска функции обнаружения звука требуется минимальный пороговый уровень громкости RMS; более низкие значения повышают чувствительность (например, 200 — высокий, 500 — средний, 1000 — низкий)."
|
||||
},
|
||||
"listen": {
|
||||
"description": "Список типов аудиособытий для обнаружения (например: лай, пожарная тревога, речь, вопль).",
|
||||
"description": "Список типов аудиособытий для обнаружения (например: лай, пожарная тревога, крик, речь, вопль).",
|
||||
"label": "Типы аудиособытий"
|
||||
},
|
||||
"filters": {
|
||||
"label": "Аудиофильтры",
|
||||
"description": "Настройки фильтров для каждого типа аудиофайлов, такие как пороговые значения, используются для уменьшения количества ложных срабатываний.",
|
||||
"threshold": {
|
||||
"label": "Минимальная уверенность в звуке",
|
||||
"description": "Минимальный порог достоверности для подсчета аудиособытия."
|
||||
}
|
||||
"description": "Настройки фильтров для каждого типа аудиофайлов, такие как пороговые значения, используются для уменьшения количества ложных срабатываний."
|
||||
},
|
||||
"enabled_in_config": {
|
||||
"label": "Исходное состояние звука",
|
||||
@@ -108,693 +104,7 @@
|
||||
},
|
||||
"stationary": {
|
||||
"label": "Конфигурация стационарных объектов",
|
||||
"description": "Настройки для обнаружения и управления объектами, которые остаются неподвижными в течение определенного периода времени.",
|
||||
"interval": {
|
||||
"label": "Стационарный интервал",
|
||||
"description": "Как часто (в кадрах) запускать проверку обнаружения для подтверждения неподвижного объекта."
|
||||
},
|
||||
"threshold": {
|
||||
"label": "Стационарный порог",
|
||||
"description": "Количество кадров без изменения положения, необходимое для того, чтобы пометить объект как неподвижный."
|
||||
},
|
||||
"max_frames": {
|
||||
"label": "Максимальное количество кадров",
|
||||
"description": "Ограничивает продолжительность отслеживания стационарных объектов, прежде чем они будут отброшены.",
|
||||
"default": {
|
||||
"label": "Максимальное количество кадров по умолчанию",
|
||||
"description": "Максимальное количество кадров по умолчанию для отслеживания неподвижного объекта перед остановкой."
|
||||
},
|
||||
"objects": {
|
||||
"label": "Максимальное количество кадров объекта",
|
||||
"description": "Переопределения для каждого объекта для максимального количества кадров для отслеживания неподвижных объектов."
|
||||
}
|
||||
},
|
||||
"classifier": {
|
||||
"label": "Включить визуальный классификатор",
|
||||
"description": "Используйте визуальный классификатор для обнаружения действительно неподвижных объектов даже при дрожании ограничивающих рамок."
|
||||
}
|
||||
},
|
||||
"annotation_offset": {
|
||||
"label": "Смещение аннотации",
|
||||
"description": "Миллисекунды для обнаружения смещения аннотаций, чтобы лучше совместить ограничивающие рамки временной шкалы с записями; может быть положительным или отрицательным."
|
||||
}
|
||||
},
|
||||
"mqtt": {
|
||||
"label": "MQTT"
|
||||
},
|
||||
"notifications": {
|
||||
"label": "Уведомления",
|
||||
"enabled": {
|
||||
"label": "Включить уведомления"
|
||||
},
|
||||
"email": {
|
||||
"label": "Уведомление по электронной почте",
|
||||
"description": "Адрес электронной почты, используемый для push-уведомлений или требуемый некоторыми поставщиками уведомлений."
|
||||
},
|
||||
"cooldown": {
|
||||
"label": "Период охлаждения",
|
||||
"description": "Пауза (в секундах) между уведомлениями, чтобы не спамить получателей."
|
||||
},
|
||||
"enabled_in_config": {
|
||||
"label": "Исходное состояние уведомлений",
|
||||
"description": "Указывает, были ли уведомления включены в исходной статической конфигурации."
|
||||
}
|
||||
},
|
||||
"ffmpeg": {
|
||||
"path": {
|
||||
"label": "Путь FFmpeg",
|
||||
"description": "Путь к используемому двоичному файлу FFmpeg или псевдоним версии («7.0» или «8.0»)."
|
||||
},
|
||||
"global_args": {
|
||||
"label": "Глобальные аргументы FFmpeg",
|
||||
"description": "Глобальные аргументы, передаваемые процессам FFmpeg."
|
||||
},
|
||||
"hwaccel_args": {
|
||||
"label": "Аргументы аппаратного ускорения",
|
||||
"description": "Аргументы аппаратного ускорения для FFmpeg. Рекомендуется использовать предустановки, зависящие от поставщика."
|
||||
},
|
||||
"input_args": {
|
||||
"label": "Входные аргументы",
|
||||
"description": "Входные аргументы, применяемые к входным потокам FFmpeg."
|
||||
},
|
||||
"output_args": {
|
||||
"label": "Выходные аргументы",
|
||||
"description": "Выходные аргументы по умолчанию, используемые для различных ролей FFmpeg, таких как обнаружение и запись.",
|
||||
"detect": {
|
||||
"label": "Выходные аргументы обнаружения",
|
||||
"description": "Выходные аргументы по умолчанию для потоков роли обнуружения."
|
||||
},
|
||||
"record": {
|
||||
"label": "Выходные аргументы записи",
|
||||
"description": "Выходные аргументы по умолчанию для потоков роли запись."
|
||||
}
|
||||
},
|
||||
"retry_interval": {
|
||||
"label": "Интервал повтора FFmpeg",
|
||||
"description": "Секунды ожидания перед повторным подключением потока камеры после сбоя. По умолчанию 10."
|
||||
},
|
||||
"apple_compatibility": {
|
||||
"label": "Совместимость с Apple",
|
||||
"description": "Включить тегирование HEVC для лучшей совместимости с плеерами Apple при записи H.265."
|
||||
},
|
||||
"gpu": {
|
||||
"label": "Индекс GPU",
|
||||
"description": "Индекс GPU по умолчанию, используемый для аппаратного ускорения, если он доступен."
|
||||
},
|
||||
"inputs": {
|
||||
"label": "Входы камеры",
|
||||
"description": "Список определений входного потока (пути и роли) для этой камеры.",
|
||||
"path": {
|
||||
"label": "Входной путь",
|
||||
"description": "URL или путь входного потока камеры."
|
||||
},
|
||||
"roles": {
|
||||
"label": "Входные роли",
|
||||
"description": "Роли для этого входного потока."
|
||||
},
|
||||
"global_args": {
|
||||
"label": "Глобальные аргументы FFmpeg",
|
||||
"description": "Глобальные аргументы FFmpeg для этого входного потока."
|
||||
},
|
||||
"hwaccel_args": {
|
||||
"label": "Аргументы аппаратного ускорения",
|
||||
"description": "Аргументы аппаратного ускорения для этого входного потока."
|
||||
},
|
||||
"input_args": {
|
||||
"label": "Входные аргументы",
|
||||
"description": "Входные аргументы, специфичные для этого потока."
|
||||
}
|
||||
}
|
||||
},
|
||||
"live": {
|
||||
"label": "Просмотр в реальном времени",
|
||||
"streams": {
|
||||
"label": "Имена live-потоков",
|
||||
"description": "Сопоставление настроенных имён потоков с именами restream/go2rtc для просмотра в реальном времени."
|
||||
},
|
||||
"height": {
|
||||
"label": "Высота live-потока",
|
||||
"description": "Высота (в пикселях) для отображения jsmpeg-потока в веб-интерфейсе; должна быть <= высоты потока обнаружения."
|
||||
},
|
||||
"quality": {
|
||||
"label": "Качество live-потока",
|
||||
"description": "Качество кодирования потока jsmpeg (1 — наивысшее, 31 — наинизшее)."
|
||||
}
|
||||
},
|
||||
"motion": {
|
||||
"label": "Обнаружение движения",
|
||||
"enabled": {
|
||||
"label": "Включить обнаружение движения"
|
||||
},
|
||||
"threshold": {
|
||||
"label": "Порог движения",
|
||||
"description": "Порог разницы пикселей, используемый детектором движения; более высокие значения снижают чувствительность (диапазон 1–255)."
|
||||
},
|
||||
"lightning_threshold": {
|
||||
"label": "Порог молнии",
|
||||
"description": "Порог для обнаружения и игнорирования кратковременных всплесков освещения (ниже - более чувствительно, значения от 0,3 до 1,0). Это не предотвращает полное обнаружение движения; это просто заставляет детектор прекратить анализ дополнительных кадров после превышения порога. Во время этих событий по-прежнему создаются записи на основе движения."
|
||||
},
|
||||
"skip_motion_threshold": {
|
||||
"label": "Порог пропуска движения",
|
||||
"description": "Если задано значение от 0.0 до 1.0 и за один кадр изменяется большая доля изображения, детектор не вернет области движения и сразу выполнит повторную калибровку. Это снижает нагрузку на CPU и число ложных срабатываний во время молний, гроз и т. п., но может пропустить реальные события, например автотрекинг объекта PTZ-камерой. Компромисс состоит в выборе между потерей нескольких мегабайт записи и просмотром пары коротких клипов. Оставьте параметр незаданным (None), чтобы отключить эту функцию."
|
||||
},
|
||||
"improve_contrast": {
|
||||
"label": "Улучшить контраст",
|
||||
"description": "Примените улучшение контрастности к кадрам перед анализом движения, чтобы облегчить обнаружение."
|
||||
},
|
||||
"contour_area": {
|
||||
"label": "Контурная площадь",
|
||||
"description": "Минимальная площадь контура в пикселях, необходимая для подсчета контура движения."
|
||||
},
|
||||
"delta_alpha": {
|
||||
"label": "Дельта альфа",
|
||||
"description": "Коэффициент альфа-смешивания, используемый при различении кадров для расчета движения."
|
||||
},
|
||||
"frame_alpha": {
|
||||
"label": "Кадр альфа",
|
||||
"description": "Значение альфа, используемое при смешивании кадров для предварительной обработки движения."
|
||||
},
|
||||
"frame_height": {
|
||||
"label": "Высота рамки",
|
||||
"description": "Высота в пикселях для масштабирования кадров при расчете движения."
|
||||
},
|
||||
"mask": {
|
||||
"label": "Координаты маски",
|
||||
"description": "Упорядоченные координаты x,y, определяющие многоугольник маски движения, используемый для включения/исключения областей."
|
||||
},
|
||||
"mqtt_off_delay": {
|
||||
"label": "MQTT задержка выключения",
|
||||
"description": "Секунды ожидания после последнего движения перед публикацией состояния «выключено» MQTT."
|
||||
},
|
||||
"enabled_in_config": {
|
||||
"label": "Исходное состояние движения",
|
||||
"description": "Указывает, было ли включено обнаружение движения в исходной статической конфигурации."
|
||||
},
|
||||
"raw_mask": {
|
||||
"label": "Исходная маска"
|
||||
}
|
||||
},
|
||||
"objects": {
|
||||
"label": "Объекты",
|
||||
"description": "Параметры отслеживания объектов по умолчанию, включая метки для отслеживания и фильтры для каждого объекта.",
|
||||
"track": {
|
||||
"label": "Объекты для отслеживания"
|
||||
},
|
||||
"filters": {
|
||||
"label": "Фильтры объектов",
|
||||
"description": "К обнаруженным объектам применяются фильтры для уменьшения ложных срабатываний (площадь, соотношение, достоверность).",
|
||||
"min_area": {
|
||||
"label": "Минимальная площадь объекта",
|
||||
"description": "Минимальная площадь ограничивающей рамки (в пикселях или процентах), необходимая для этого типа объекта. Может быть в пикселях (целое число) или в процентах (плавающее значение от 0,000001 до 0,99)."
|
||||
},
|
||||
"max_area": {
|
||||
"label": "Максимальная площадь объекта",
|
||||
"description": "Максимальная площадь ограничивающей рамки (в пикселях или процентах), разрешенная для этого типа объекта. Может быть в пикселях (целое число) или в процентах (плавающее значение от 0,000001 до 0,99)."
|
||||
},
|
||||
"min_ratio": {
|
||||
"label": "Минимальное соотношение сторон",
|
||||
"description": "Минимальное соотношение ширины и высоты, необходимое для соответствия ограничивающей рамки."
|
||||
},
|
||||
"max_ratio": {
|
||||
"label": "Максимальное соотношение сторон",
|
||||
"description": "Максимальное соотношение ширины и высоты, допускаемое для соответствия ограничивающей рамке."
|
||||
},
|
||||
"threshold": {
|
||||
"label": "Порог уверенности",
|
||||
"description": "Средний порог достоверности обнаружения, необходимый для того, чтобы объект считался истинно положительным."
|
||||
},
|
||||
"min_score": {
|
||||
"label": "Минимальная уверенность",
|
||||
"description": "Минимальная достоверность обнаружения одного кадра, необходимая для подсчета объекта."
|
||||
},
|
||||
"mask": {
|
||||
"label": "Маска фильтра",
|
||||
"description": "Координаты полигона, определяющие, где этот фильтр применяется в кадре."
|
||||
},
|
||||
"raw_mask": {
|
||||
"label": "Исходная маска"
|
||||
}
|
||||
},
|
||||
"mask": {
|
||||
"label": "Маска объекта",
|
||||
"description": "Полигон маски, используемый для предотвращения обнаружения объектов в определенных областях."
|
||||
},
|
||||
"raw_mask": {
|
||||
"label": "Исходная маска"
|
||||
},
|
||||
"genai": {
|
||||
"label": "Конфигурация объекта GenAI",
|
||||
"description": "Опции GenAI для описания отслеживаемых объектов и отправки кадров на генерацию.",
|
||||
"enabled": {
|
||||
"label": "Включить GenAI",
|
||||
"description": "По умолчанию включить GenAI генерацию описаний отслеживаемых объектов."
|
||||
},
|
||||
"use_snapshot": {
|
||||
"label": "Используйте снимки",
|
||||
"description": "Используйте снимки объектов вместо миниатюр для создания описания GenAI."
|
||||
},
|
||||
"prompt": {
|
||||
"label": "Промпт описания",
|
||||
"description": "Шаблон промпта по умолчанию для генерации описаний с помощью GenAI."
|
||||
},
|
||||
"object_prompts": {
|
||||
"label": "Промпты по объектам",
|
||||
"description": "Промпты для отдельных объектов, чтобы настроить вывод GenAI для конкретных меток."
|
||||
},
|
||||
"objects": {
|
||||
"label": "Объекты GenAI",
|
||||
"description": "Список меток объектов для отправки в GenAI по умолчанию."
|
||||
},
|
||||
"required_zones": {
|
||||
"label": "Обязательные зоны",
|
||||
"description": "Зоны, которые необходимо ввести для объектов, чтобы соответствовать критериям создания описания GenAI."
|
||||
},
|
||||
"debug_save_thumbnails": {
|
||||
"label": "Сохранить миниатюры",
|
||||
"description": "Сохранять миниатюры, отправляемые в GenAI, для отладки и просмотра."
|
||||
},
|
||||
"send_triggers": {
|
||||
"label": "Триггеры GenAI",
|
||||
"description": "Определяет, когда кадры должны отправляться на GenAI (по окончании, после обновлений и т. д.).",
|
||||
"tracked_object_end": {
|
||||
"label": "Отправить в конце",
|
||||
"description": "Отправьте запрос на GenAI, когда отслеживаемый объект закончится."
|
||||
},
|
||||
"after_significant_updates": {
|
||||
"label": "Ранний триггер GenAI",
|
||||
"description": "Отправьте запрос GenAI после указанного количества существенных обновлений отслеживаемого объекта."
|
||||
}
|
||||
},
|
||||
"enabled_in_config": {
|
||||
"label": "Исходное состояние GenAI",
|
||||
"description": "Указывает, был ли включен GenAI в исходной статической конфигурации."
|
||||
}
|
||||
}
|
||||
},
|
||||
"record": {
|
||||
"label": "Запись",
|
||||
"enabled": {
|
||||
"label": "Включить запись"
|
||||
},
|
||||
"expire_interval": {
|
||||
"label": "Запись интервала очистки",
|
||||
"description": "Минуты между проходами очистки, при которых удаляются просроченные сегменты записи."
|
||||
},
|
||||
"continuous": {
|
||||
"label": "Постоянное удержание",
|
||||
"description": "Количество дней для хранения записей независимо от отслеживаемых объектов или движения. Установите значение 0, если вы хотите сохранять только записи предупреждений и обнаружений.",
|
||||
"days": {
|
||||
"label": "Дни хранения",
|
||||
"description": "Дни хранения записей."
|
||||
}
|
||||
},
|
||||
"motion": {
|
||||
"label": "Удержание движения",
|
||||
"description": "Количество дней для хранения записей, вызванных движением, независимо от отслеживаемых объектов. Установите значение 0, если вы хотите сохранять только записи предупреждений и обнаружений.",
|
||||
"days": {
|
||||
"label": "Дни хранения",
|
||||
"description": "Дни хранения записей."
|
||||
}
|
||||
},
|
||||
"detections": {
|
||||
"label": "Сохранение обнаружения",
|
||||
"description": "Настройки хранения записи для событий обнаружения, включая продолжительность до и после захвата.",
|
||||
"pre_capture": {
|
||||
"label": "Предварительная съемка секунд",
|
||||
"description": "Количество секунд до события обнаружения, которое необходимо включить в запись."
|
||||
},
|
||||
"post_capture": {
|
||||
"label": "Секунды после захвата",
|
||||
"description": "Количество секунд после события обнаружения, которое необходимо включить в запись."
|
||||
},
|
||||
"retain": {
|
||||
"label": "Сохранение событий",
|
||||
"description": "Настройки хранения записей событий обнаружения.",
|
||||
"days": {
|
||||
"label": "Дни хранения",
|
||||
"description": "Количество дней для хранения записей событий обнаружения."
|
||||
},
|
||||
"mode": {
|
||||
"label": "Режим хранения",
|
||||
"description": "Режим сохранения: all (сохранить все сегменты), motion (сохранить сегменты с движением) или active_objects (сохранить сегменты с активными объектами)."
|
||||
}
|
||||
}
|
||||
},
|
||||
"alerts": {
|
||||
"label": "Сохранение оповещений",
|
||||
"description": "Настройки хранения записи для событий оповещений, включая продолжительность до и после захвата.",
|
||||
"pre_capture": {
|
||||
"label": "Предварительная съемка секунд",
|
||||
"description": "Количество секунд до события обнаружения, которое необходимо включить в запись."
|
||||
},
|
||||
"post_capture": {
|
||||
"label": "Секунды после захвата",
|
||||
"description": "Количество секунд после события обнаружения, которое необходимо включить в запись."
|
||||
},
|
||||
"retain": {
|
||||
"label": "Сохранение событий",
|
||||
"description": "Настройки хранения записей событий обнаружения.",
|
||||
"days": {
|
||||
"label": "Дни хранения",
|
||||
"description": "Количество дней для хранения записей событий обнаружения."
|
||||
},
|
||||
"mode": {
|
||||
"label": "Режим хранения",
|
||||
"description": "Режим сохранения: all (сохранить все сегменты), motion (сохранить сегменты с движением) или active_objects (сохранить сегменты с активными объектами)."
|
||||
}
|
||||
}
|
||||
},
|
||||
"export": {
|
||||
"label": "Экспортировать конфигурацию",
|
||||
"description": "Настройки, используемые при экспорте записей, такие как замедленная съемка и аппаратное ускорение.",
|
||||
"hwaccel_args": {
|
||||
"label": "Экспортировать аргументы hwaccel",
|
||||
"description": "Аргументы аппаратного ускорения, используемые для операций экспорта/перекодирования."
|
||||
},
|
||||
"max_concurrent": {
|
||||
"label": "Максимальный одновременный экспорт",
|
||||
"description": "Максимальное количество заданий экспорта, обрабатываемых одновременно."
|
||||
},
|
||||
"chapters": {
|
||||
"label": "Метаданные глав для встраивания в экспортированные записи"
|
||||
}
|
||||
},
|
||||
"preview": {
|
||||
"label": "Предварительный просмотр конфигурации",
|
||||
"description": "Настройки, управляющие качеством предварительного просмотра записи, отображаемого в пользовательском интерфейсе.",
|
||||
"quality": {
|
||||
"label": "Предварительный просмотр качества",
|
||||
"description": "Уровень качества предпросмотра (very_low, low, medium, high, very_high)."
|
||||
}
|
||||
},
|
||||
"enabled_in_config": {
|
||||
"label": "Исходное состояние записи",
|
||||
"description": "Указывает, была ли запись включена в исходной статической конфигурации."
|
||||
}
|
||||
},
|
||||
"review": {
|
||||
"label": "Проверка",
|
||||
"alerts": {
|
||||
"label": "Конфигурация оповещений",
|
||||
"description": "Настройки, для которых отслеживаемые объекты генерируют оповещения и как оповещения сохраняются.",
|
||||
"enabled": {
|
||||
"label": "Включить оповещения"
|
||||
},
|
||||
"labels": {
|
||||
"label": "Предупреждающие ярлыки",
|
||||
"description": "Список меток объектов, которые квалифицируются как оповещения (например: машина, человек)."
|
||||
},
|
||||
"required_zones": {
|
||||
"label": "Обязательные зоны",
|
||||
"description": "Зоны, в которые должен войти объект, чтобы считаться оповещением; оставьте пустым, чтобы разрешить любую зону."
|
||||
},
|
||||
"enabled_in_config": {
|
||||
"label": "Исходное состояние оповещений",
|
||||
"description": "Отслеживает, были ли оповещения изначально включены в статической конфигурации."
|
||||
},
|
||||
"cutoff_time": {
|
||||
"label": "Время окончания оповещений",
|
||||
"description": "Секунды ожидания после отсутствия активности, вызывающей оповещение, прежде чем отключать оповещение."
|
||||
}
|
||||
},
|
||||
"detections": {
|
||||
"label": "Конфигурация обнаружения",
|
||||
"description": "Настройки, для которых отслеживаемые объекты генерируют обнаружения (без оповещения) и порядок сохранения обнаружений.",
|
||||
"enabled": {
|
||||
"label": "Включить обнаружение"
|
||||
},
|
||||
"labels": {
|
||||
"label": "Метки обнаружения",
|
||||
"description": "\"Список меток объектов, которые квалифицируются как события обнаружения."
|
||||
},
|
||||
"required_zones": {
|
||||
"label": "Обязательные зоны",
|
||||
"description": "Зоны, в которые должен войти объект, чтобы считаться обнаруженным; оставьте пустым, чтобы разрешить любую зону."
|
||||
},
|
||||
"cutoff_time": {
|
||||
"label": "Время прекращения обнаружения",
|
||||
"description": "Секунды ожидания после отсутствия активности, вызывающей обнаружение, прежде чем отключать обнаружение."
|
||||
},
|
||||
"enabled_in_config": {
|
||||
"label": "Исходное состояние обнаружений",
|
||||
"description": "Отслеживает, были ли изначально включены обнаружения в статической конфигурации."
|
||||
}
|
||||
},
|
||||
"genai": {
|
||||
"label": "Конфигурация GenAI",
|
||||
"description": "Контролирует использование генеративного искусственного интеллекта для создания описаний и резюме элементов обзора.",
|
||||
"enabled": {
|
||||
"label": "Включить описания GenAI",
|
||||
"description": "Включить или отключить описания и сводки GenAI для элементов проверки."
|
||||
},
|
||||
"alerts": {
|
||||
"label": "Включить GenAI для оповещений",
|
||||
"description": "Используйте GenAI для создания описаний элементов оповещений."
|
||||
},
|
||||
"detections": {
|
||||
"label": "Включить GenAI для детекций",
|
||||
"description": "Используйте GenAI для создания описаний элементов обнаружения."
|
||||
},
|
||||
"image_source": {
|
||||
"label": "Проверьте источник изображения",
|
||||
"description": "\"Источник изображений, отправляемых на GenAI ('preview' или 'recordings'); 'recordings' использует кадры более высокого качества, но больше токенов."
|
||||
},
|
||||
"additional_concerns": {
|
||||
"label": "Дополнительные проблемы",
|
||||
"description": "Список дополнительных проблем или примечаний, которые GenAI следует учитывать при оценке активности на этой камере."
|
||||
},
|
||||
"debug_save_thumbnails": {
|
||||
"label": "Сохранить миниатюры",
|
||||
"description": "Сохраняйте миниатюры, которые отправляются поставщику GenAI для отладки и проверки."
|
||||
},
|
||||
"enabled_in_config": {
|
||||
"label": "Исходное состояние GenAI",
|
||||
"description": "Отслеживает, была ли изначально включена проверка GenAI в статической конфигурации."
|
||||
},
|
||||
"preferred_language": {
|
||||
"label": "Предпочитаемый язык",
|
||||
"description": "Предпочитаемый язык для запроса у провайдера GenAI сгенерированных ответов."
|
||||
},
|
||||
"activity_context_prompt": {
|
||||
"label": "Промпт контекста активности",
|
||||
"description": "Пользовательский промпт, описывающий, какая активность считается подозрительной, а какая нет, для контекста сводок GenAI."
|
||||
}
|
||||
}
|
||||
},
|
||||
"snapshots": {
|
||||
"label": "Снимки",
|
||||
"enabled": {
|
||||
"label": "Включить снимки"
|
||||
},
|
||||
"timestamp": {
|
||||
"label": "Наложение временной метки",
|
||||
"description": "Наложение временной метки на снимки из API."
|
||||
},
|
||||
"bounding_box": {
|
||||
"label": "Наложение ограничивающей рамки",
|
||||
"description": "Рисовать ограничивающие рамки отслеживаемых объектов на снимках из API."
|
||||
},
|
||||
"crop": {
|
||||
"label": "Обрезать снимок",
|
||||
"description": "Обрезать снимки API по ограничивающей рамке обнаруженного объекта."
|
||||
},
|
||||
"required_zones": {
|
||||
"label": "Обязательные зоны",
|
||||
"description": "Зоны, в которые должен войти объект, чтобы снимок был сохранен."
|
||||
},
|
||||
"height": {
|
||||
"label": "Высота снимка",
|
||||
"description": "Высота (в пикселях) для изменения размера снимков с API на; оставьте пустым, чтобы сохранить исходный размер."
|
||||
},
|
||||
"retain": {
|
||||
"label": "Хранение снимков",
|
||||
"description": "Настройки хранения для снимков, включая дни по умолчанию и переопределения для каждого объекта.",
|
||||
"default": {
|
||||
"label": "Срок хранения по умолчанию",
|
||||
"description": "Число дней по умолчанию для хранения снимков."
|
||||
},
|
||||
"objects": {
|
||||
"label": "Сохранение объекта",
|
||||
"description": "Переопределения дней хранения снимков для каждого объекта."
|
||||
}
|
||||
},
|
||||
"quality": {
|
||||
"label": "Качество снимка",
|
||||
"description": "Качество кодирования для сохраненных снимков (0–100)."
|
||||
}
|
||||
},
|
||||
"timestamp_style": {
|
||||
"label": "Стиль временной метки",
|
||||
"position": {
|
||||
"label": "Позиция временной метки",
|
||||
"description": "Положение отметки времени на изображении (tl/tr/bl/br)."
|
||||
},
|
||||
"format": {
|
||||
"label": "Формат временной метки",
|
||||
"description": "Строка формата даты и времени, используемая для меток времени (коды формата даты и времени Python)."
|
||||
},
|
||||
"color": {
|
||||
"label": "Цвет временной метки",
|
||||
"description": "Значения цвета RGB для текста метки времени (все значения от 0 до 255).",
|
||||
"red": {
|
||||
"label": "Красный",
|
||||
"description": "Красный компонент (0–255) для цвета метки времени."
|
||||
},
|
||||
"green": {
|
||||
"label": "Зелёный",
|
||||
"description": "Зеленый компонент (0–255) для цвета метки времени."
|
||||
},
|
||||
"blue": {
|
||||
"label": "Синий",
|
||||
"description": "Синий компонент (0–255) для цвета метки времени."
|
||||
}
|
||||
},
|
||||
"thickness": {
|
||||
"label": "Толщина временной метки",
|
||||
"description": "Толщина линии текста метки времени."
|
||||
},
|
||||
"effect": {
|
||||
"label": "Эффект временной метки",
|
||||
"description": "Визуальный эффект для текста метки времени (нет, сплошной, тень)."
|
||||
}
|
||||
},
|
||||
"semantic_search": {
|
||||
"label": "Семантический поиск",
|
||||
"triggers": {
|
||||
"label": "Триггеры",
|
||||
"description": "Действия и критерии соответствия для триггеров семантического поиска, специфичных для камеры.",
|
||||
"friendly_name": {
|
||||
"label": "Дружественное имя",
|
||||
"description": "Необязательное понятное имя, отображаемое в пользовательском интерфейсе для этого триггера."
|
||||
},
|
||||
"enabled": {
|
||||
"label": "Включить этот триггер",
|
||||
"description": "Включить или отключить этот триггер семантического поиска."
|
||||
},
|
||||
"type": {
|
||||
"label": "Тип триггера",
|
||||
"description": "Тип триггера: 'thumbnail' (совпадение с изображением) или 'description' (совпадение с текстом)."
|
||||
},
|
||||
"data": {
|
||||
"label": "Содержимое триггера",
|
||||
"description": "Текстовая фраза или идентификатор миниатюры для сопоставления с отслеживаемыми объектами."
|
||||
},
|
||||
"threshold": {
|
||||
"label": "Порог срабатывания",
|
||||
"description": "Минимальный показатель сходства (0–1), необходимый для активации этого триггера."
|
||||
},
|
||||
"actions": {
|
||||
"label": "Триггерные действия",
|
||||
"description": "Список действий при срабатывании триггера (notification, sub_label, attribute)."
|
||||
}
|
||||
}
|
||||
},
|
||||
"face_recognition": {
|
||||
"label": "Распознавание лиц",
|
||||
"enabled": {
|
||||
"label": "Включить распознавание лиц"
|
||||
},
|
||||
"min_area": {
|
||||
"label": "Минимальная площадь лица",
|
||||
"description": "Минимальная площадь (пиксели) обнаруженного лицевого окна, необходимая для попытки распознавания."
|
||||
}
|
||||
},
|
||||
"lpr": {
|
||||
"label": "Распознавание номерных знаков",
|
||||
"description": "Настройки распознавания номерных знаков, включая пороговые значения обнаружения, форматирование и известные номера.",
|
||||
"enabled": {
|
||||
"label": "Включить LPR"
|
||||
},
|
||||
"min_area": {
|
||||
"label": "Минимальная площадь номера",
|
||||
"description": "Минимальная площадь номерного знака (в пикселях), необходимая для попытки распознавания."
|
||||
},
|
||||
"enhancement": {
|
||||
"label": "Уровень улучшения",
|
||||
"description": "Уровень улучшения (0–10), применяемый к кропам номеров перед OCR; более высокие значения не всегда улучшают результат, уровни выше 5 могут работать только с ночными номерами — используйте осторожно."
|
||||
},
|
||||
"expire_time": {
|
||||
"label": "Время истечения (сек)",
|
||||
"description": "Время в секундах, после которого невидимый номер удаляется из трекера (только для выделенных LPR-камер)."
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"label": "Профили"
|
||||
},
|
||||
"onvif": {
|
||||
"label": "ONVIF",
|
||||
"description": "Соединение ONVIF и настройки автослежения PTZ для этой камеры.",
|
||||
"host": {
|
||||
"label": "Хост ONVIF",
|
||||
"description": "Хост (и дополнительная схема) для службы ONVIF для этой камеры."
|
||||
},
|
||||
"port": {
|
||||
"label": "Порт ONVIF",
|
||||
"description": "Номер порта для службы ONVIF."
|
||||
},
|
||||
"user": {
|
||||
"label": "Имя пользователя ONVIF",
|
||||
"description": "Имя пользователя для аутентификации ONVIF; на некоторых устройствах требуется администратор для ONVIF."
|
||||
},
|
||||
"password": {
|
||||
"label": "Пароль ONVIF",
|
||||
"description": "Пароль для аутентификации ONVIF."
|
||||
},
|
||||
"tls_insecure": {
|
||||
"label": "Отключить проверку TLS",
|
||||
"description": "Пропустить проверку TLS и отключить дайджест-аутентификацию для ONVIF (небезопасно; использовать только в безопасных сетях)."
|
||||
},
|
||||
"profile": {
|
||||
"label": "Профиль ONVIF",
|
||||
"description": "Конкретный медиа-профиль ONVIF, используемый для элемента управления PTZ, соответствующий токену или имени. Если этот параметр не установлен, автоматически выбирается первый профиль с действительной конфигурацией PTZ."
|
||||
},
|
||||
"autotracking": {
|
||||
"label": "Автотрекинг",
|
||||
"description": "Автоматически отслеживайте движущиеся объекты и удерживайте их в центре кадра с помощью движений камеры PTZ.",
|
||||
"enabled": {
|
||||
"label": "Включить автотрекинг",
|
||||
"description": "Включить или отключить автоматическое PTZ-сопровождение обнаруженных объектов."
|
||||
},
|
||||
"calibrate_on_startup": {
|
||||
"label": "Калибровка при запуске",
|
||||
"description": "Измерьте скорость двигателя PTZ при запуске, чтобы повысить точность отслеживания. Frigate обновит конфигурацию с помощью motion_weights после калибровки."
|
||||
},
|
||||
"zooming": {
|
||||
"label": "Режим масштабирования",
|
||||
"description": "Управляет масштабированием: отключенный (только панорамирование и наклон), полный (наиболее совместимый режим) или условный (одновременное панорамирование, наклон и масштабирование)."
|
||||
},
|
||||
"zoom_factor": {
|
||||
"label": "Уровень масштабирования",
|
||||
"description": "Уровень зума на отслеживаемых объектах. Меньшие значения оставляют в кадре больше сцены; большие приближают сильнее, но могут потерять объект. Значения от 0.1 до 0.75."
|
||||
},
|
||||
"track": {
|
||||
"label": "Отслеживаемые объекты",
|
||||
"description": "Список типов объектов, которые должны запускать автоматическое отслеживание."
|
||||
},
|
||||
"required_zones": {
|
||||
"label": "Обязательные зоны",
|
||||
"description": "Прежде чем начнется автоматическое слежение, объекты должны войти в одну из этих зон."
|
||||
},
|
||||
"return_preset": {
|
||||
"label": "Вернуть предустановку",
|
||||
"description": "Имя предустановки ONVIF, настроенное в прошивке камеры, к которому можно вернуться после завершения отслеживания."
|
||||
},
|
||||
"timeout": {
|
||||
"label": "Тайм-аут возврата",
|
||||
"description": "Подождите это количество секунд после потери отслеживания, прежде чем возвращать камеру в заданное положение."
|
||||
},
|
||||
"movement_weights": {
|
||||
"label": "Вес движения",
|
||||
"description": "Калибровочные значения автоматически генерируются при калибровке камеры. Не вносите изменения вручную."
|
||||
},
|
||||
"enabled_in_config": {
|
||||
"label": "Исходное состояние автотрека",
|
||||
"description": "Внутреннее поле для отслеживания того, включено ли в конфигурации автоотслеживание."
|
||||
}
|
||||
},
|
||||
"ignore_time_mismatch": {
|
||||
"label": "Игнорировать несоответствие времени",
|
||||
"description": "Игнорировать расхождение времени между камерой и сервером Frigate при обмене по ONVIF."
|
||||
"description": "Настройки для обнаружения и управления объектами, которые остаются неподвижными в течение определенного периода времени."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -31,7 +31,7 @@
|
||||
"classification": "Распознавание",
|
||||
"enrichments": "Обогащения",
|
||||
"triggers": "Триггеры",
|
||||
"cameraManagement": "Управление камерой",
|
||||
"cameraManagement": "Управление",
|
||||
"cameraReview": "Обзор",
|
||||
"roles": "Роли",
|
||||
"general": "Общее",
|
||||
@@ -70,28 +70,7 @@
|
||||
"cameraConfigReview": "Обзор событий",
|
||||
"cameraAudioEvents": "Обнаружение аудио",
|
||||
"cameraAudioTranscription": "Расшифровка аудиозаписи",
|
||||
"cameraNotifications": "Уведомления",
|
||||
"globalRecording": "Запись",
|
||||
"globalSnapshots": "Снимки",
|
||||
"globalFfmpeg": "FFmpeg",
|
||||
"globalMotion": "Обнаружение движения",
|
||||
"globalObjects": "Объекты",
|
||||
"globalLivePlayback": "Воспроизведение в реальном времени",
|
||||
"globalTimestampStyle": "Стиль временной метки",
|
||||
"systemDatabase": "База данных",
|
||||
"systemTls": "TLS",
|
||||
"cameraLivePlayback": "Воспроизведение в реальном времени",
|
||||
"cameraBirdseye": "Birdseye",
|
||||
"cameraFaceRecognition": "Распознавание лиц",
|
||||
"cameraLpr": "Распознавание номерных знаков",
|
||||
"cameraMqttConfig": "MQTT",
|
||||
"cameraOnvif": "ONVIF",
|
||||
"cameraUi": "Интерфейс камеры",
|
||||
"cameraTimestampStyle": "Стиль временной метки",
|
||||
"cameraMqtt": "MQTT камеры",
|
||||
"maintenance": "Обслуживание",
|
||||
"mediaSync": "Синхронизация медиа",
|
||||
"regionGrid": "Сетка регионов"
|
||||
"cameraNotifications": "Уведомления"
|
||||
},
|
||||
"dialog": {
|
||||
"unsavedChanges": {
|
||||
@@ -281,7 +260,7 @@
|
||||
"hide": "Скрыть пароль",
|
||||
"requirements": {
|
||||
"title": "Требования к паролю:",
|
||||
"length": "Не менее 12 символов",
|
||||
"length": "Не менее 8 символов",
|
||||
"uppercase": "Как минимум одна заглавная буква",
|
||||
"digit": "Как минимум одна цифра",
|
||||
"special": "Хотя бы один специальный символ (!@#$%^&*(),.?\":{}|<>)"
|
||||
@@ -349,8 +328,7 @@
|
||||
"notificationUnavailable": {
|
||||
"documentation": "Читать документацию",
|
||||
"title": "Уведомления недоступны",
|
||||
"desc": "Веб-уведомления требуют защищённого контекста (<code>https://…</code>). Это ограничение браузера. Получите безопасный доступ к Frigate, чтобы использовать уведомления.",
|
||||
"descPwa": "На iOS веб-уведомления доступны только в том случае, если Frigate установлен на главном экране. Откройте меню <strong>Поделиться</strong>, выберите <strong>Добавить на главный экран</strong>, затем откройте Frigate с помощью нового значка, чтобы зарегистрировать это устройство для уведомлений."
|
||||
"desc": "Веб-уведомления требуют защищённого контекста (<code>https://…</code>). Это ограничение браузера. Получите безопасный доступ к Frigate, чтобы использовать уведомления."
|
||||
},
|
||||
"email": {
|
||||
"title": "Email",
|
||||
@@ -520,10 +498,6 @@
|
||||
},
|
||||
"toast": {
|
||||
"success": "Зона ({{zoneName}}) сохранена."
|
||||
},
|
||||
"enabled": {
|
||||
"title": "Включено",
|
||||
"description": "Активна ли эта зона и включена ли она в файле конфигурации. Если отключено, его нельзя включить с помощью MQTT. Отключенные зоны игнорируются во время выполнения."
|
||||
}
|
||||
},
|
||||
"motionMasks": {
|
||||
@@ -553,12 +527,6 @@
|
||||
"title": "{{polygonName}} сохранена.",
|
||||
"noName": "Маска движения сохранена."
|
||||
}
|
||||
},
|
||||
"defaultName": "Маска движения {{number}}",
|
||||
"name": {
|
||||
"title": "Имя",
|
||||
"description": "Необязательное отображаемое имя для этой маски движения.",
|
||||
"placeholder": "Введите имя…"
|
||||
}
|
||||
},
|
||||
"filter": {
|
||||
@@ -607,32 +575,12 @@
|
||||
},
|
||||
"reset": {
|
||||
"label": "Удалить все точки"
|
||||
},
|
||||
"type": {
|
||||
"zone": "зона",
|
||||
"motion_mask": "маска движения",
|
||||
"object_mask": "маска объекта"
|
||||
},
|
||||
"revertOverride": {
|
||||
"title": "Вернуться к базовой конфигурации",
|
||||
"desc": "Это приведет к удалению переопределения профиля для {{type}} <em>{{name}}</em> и возврату к базовой конфигурации."
|
||||
}
|
||||
},
|
||||
"speed": {
|
||||
"error": {
|
||||
"mustBeGreaterOrEqualTo": "Порог скорости должен быть не меньше 0,1."
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"error": {
|
||||
"mustNotBeEmpty": "Идентификатор не должен быть пустым.",
|
||||
"alreadyExists": "Маска с таким идентификатором уже существует для этой камеры."
|
||||
}
|
||||
},
|
||||
"name": {
|
||||
"error": {
|
||||
"mustNotBeEmpty": "Имя не должно быть пустым."
|
||||
}
|
||||
}
|
||||
},
|
||||
"toast": {
|
||||
@@ -667,26 +615,11 @@
|
||||
"title": "{{polygonName}} сохранена.",
|
||||
"noName": "Маска объектов сохранена."
|
||||
}
|
||||
},
|
||||
"name": {
|
||||
"title": "Имя",
|
||||
"description": "Необязательное отображаемое имя для этой маски объекта.",
|
||||
"placeholder": "Введите имя…"
|
||||
}
|
||||
},
|
||||
"restart_required": "Требуется перезапуск (изменены маски/зоны)",
|
||||
"objectMaskLabel": "Маска объекта {{number}}",
|
||||
"motionMaskLabel": "Маска движения {{number}}",
|
||||
"disabledInConfig": "Элемент отключен в файле конфигурации",
|
||||
"addDisabledProfile": "Сначала добавьте в базовую конфигурацию, затем переопределите в профиле",
|
||||
"profileBase": "(база)",
|
||||
"profileOverride": "(переопределить)",
|
||||
"masks": {
|
||||
"enabled": {
|
||||
"title": "Включено",
|
||||
"description": "Включена ли эта маска в файле конфигурации. Если отключено, его нельзя включить с помощью MQTT. Отключенные маски игнорируются во время выполнения."
|
||||
}
|
||||
}
|
||||
"objectMaskLabel": "Маска объекта {{number}} {{label}}",
|
||||
"motionMaskLabel": "Маска движения {{number}}"
|
||||
},
|
||||
"motionDetectionTuner": {
|
||||
"desc": {
|
||||
@@ -775,13 +708,13 @@
|
||||
"snapshotConfig": {
|
||||
"documentation": "Читать документацию",
|
||||
"title": "Настройки снимков",
|
||||
"cleanCopyWarning": "У некоторых камер снимки отключены",
|
||||
"cleanCopyWarning": "У некоторых камер включены снимки (snapshots), но отключена опция чистой копии (clean copy). Чтобы иметь возможность отправлять изображения с этих камер в Frigate+, необходимо включить параметр <code>clean_copy</code> в конфигурации снимков.",
|
||||
"table": {
|
||||
"cleanCopySnapshots": "Снимки <code>clean_copy</code>",
|
||||
"camera": "Камера",
|
||||
"snapshots": "Снимки"
|
||||
},
|
||||
"desc": "Отправка в Frigate+ требует, чтобы в вашей конфигурации были включены снимки."
|
||||
"desc": "Отправка в Frigate+ требует, чтобы в вашей конфигурации были включены как снимки (snapshots), так и снимки <code>clean_copy</code>."
|
||||
},
|
||||
"title": "Настройки Frigate+",
|
||||
"apiKey": {
|
||||
@@ -796,7 +729,7 @@
|
||||
"modelType": "Тип модели",
|
||||
"trainDate": "Дата обучения",
|
||||
"error": "Не удалось загрузить информацию о модели",
|
||||
"availableModels": "Доступные Frigate+ модели",
|
||||
"availableModels": "Доступные модели",
|
||||
"loadingAvailableModels": "Загрузка доступных моделей…",
|
||||
"modelSelect": "Здесь можно выбрать ваши доступные модели на Frigate+. Обратите внимание, что могут быть выбраны только модели, совместимые с текущей конфигурацией детектора.",
|
||||
"baseModel": "Базовая модель",
|
||||
@@ -807,14 +740,6 @@
|
||||
"plusModelType": {
|
||||
"baseModel": "Базовая модель",
|
||||
"userModel": "Дообученная"
|
||||
},
|
||||
"noModelLoaded": "Ни одна модель Frigate+ в настоящее время не загружена.",
|
||||
"selectModel": "Выберите модель",
|
||||
"noModelsAvailable": "Нет доступных моделей",
|
||||
"filter": {
|
||||
"ariaLabel": "Фильтровать модели по типу",
|
||||
"baseModels": "Базовые модели",
|
||||
"fineTunedModels": "Настроенные модели"
|
||||
}
|
||||
},
|
||||
"toast": {
|
||||
@@ -822,15 +747,7 @@
|
||||
"error": "Не удалось сохранить изменения конфигурации: {{errorMessage}}"
|
||||
},
|
||||
"restart_required": "Требуется перезапуск (изменена модель Frigate+)",
|
||||
"unsavedChanges": "Настройки Frigate+ не сохранены",
|
||||
"description": "Frigate+ — это служба подписки, которая предоставляет доступ к дополнительным функциям и возможностям вашего экземпляра Frigate, включая возможность использовать пользовательские модели обнаружения объектов, обученные на ваших собственных данных. Здесь вы можете управлять настройками модели Frigate+.",
|
||||
"cardTitles": {
|
||||
"api": "API",
|
||||
"currentModel": "Текущая модель",
|
||||
"otherModels": "Другие модели",
|
||||
"configuration": "Конфигурация"
|
||||
},
|
||||
"changeInDetectorsAndModel": "Изменить модель"
|
||||
"unsavedChanges": "Настройки Frigate+ не сохранены"
|
||||
},
|
||||
"enrichments": {
|
||||
"title": "Настройки обогащения",
|
||||
@@ -1077,7 +994,7 @@
|
||||
"brands": {
|
||||
"reolink-rtsp": "RTSP от Reolink не рекомендуется. Включите HTTP в настройках камеры и перезапустите мастер настройки камеры."
|
||||
},
|
||||
"customUrlRtspRequired": "Пользовательские URL должны начинаться с \"rtsp://\" или \"rtsps://\". Для потоков камер, не использующих RTSP, требуется ручная настройка."
|
||||
"customUrlRtspRequired": "Пользовательские URL должны начинаться с \"rtsp://\". Для потоков камер, не использующих RTSP, требуется ручная настройка."
|
||||
},
|
||||
"docs": {
|
||||
"reolink": "https://docs.frigate.video/configuration/camera_specific.html#reolink-cameras"
|
||||
@@ -1241,8 +1158,7 @@
|
||||
},
|
||||
"hikvision": {
|
||||
"substreamWarning": "Подпоток 1 заблокирован на низком разрешении. Многие камеры Hikvision поддерживают дополнительные подпотоки, которые необходимо включить в настройках камеры. Рекомендуется проверить и использовать эти потоки, если они доступны."
|
||||
},
|
||||
"resolutionUnknown": "Разрешение этого потока проверить не удалось. Вам следует вручную установить разрешение обнаружения в настройках или вашей конфигурации."
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1315,13 +1231,11 @@
|
||||
"selectCamera": "Выбрать камеру",
|
||||
"backToSettings": "Вернуться к настройкам камеры",
|
||||
"streams": {
|
||||
"title": "Состояние и характеристики камеры",
|
||||
"title": "Включить / Отключить камеры",
|
||||
"desc": "Временно отключить камеру до перезапуска Frigate. Отключение камеры полностью останавливает обработку потоков этой камеры в Frigate. Обнаружение, запись и отладка будут недоступны.<br /> <em>Примечание: Это не отключает рестриминг go2rtc.</em>",
|
||||
"label": "Состояние камеры",
|
||||
"status": {
|
||||
"disabled": "Отключено",
|
||||
"on": "Вкл",
|
||||
"off": "Выкл"
|
||||
"disabled": "Отключено"
|
||||
},
|
||||
"enableSuccess": "Включена {{cameraName}}. Перезапустите Frigate для применения изменений.",
|
||||
"disableSuccess": "Отключено {{cameraName}} и сохранено в конфигурации.",
|
||||
@@ -1338,12 +1252,8 @@
|
||||
"webuiUrlHelp": "URL-адрес для посещения веб-UI камеры непосредственно с отладочного меню. Оставьте пустым, чтобы отключить ссылку.",
|
||||
"webuiUrlInvalid": "Должен быть действительный URL (например, https://example.com).",
|
||||
"dashboardLabel": "Показывать на Live dashboard",
|
||||
"dashboardHelp": "Отобразить эту камеру на панели мониторинга «Все камеры» в режиме реального времени по умолчанию. Она остается доступной везде, включая группы камер.",
|
||||
"reviewLabel": "Показать в обзоре",
|
||||
"reviewHelp": "Покажите эту камеру в обзоре, включая фильтр камеры, обзор движения и просмотр истории."
|
||||
},
|
||||
"description": "Задайте рабочее состояние для каждой камеры.<br /><br /><strong>Вкл</strong>: потоки обрабатываются в обычном режиме.<br /><strong>Выкл</strong>: временно приостанавливает обработку. Не сохраняется между перезапусками Frigate.<br /><strong>Отключено</strong>: останавливает обработку и сохраняет изменение в конфигурации. Для повторного включения отключённой камеры требуется перезапуск.<br /><br /><em>Примечание: отключение не влияет на рестримы go2rtc.</em><br /><br />Перетащите маркер, чтобы изменить порядок активных камер в интерфейсе, включая панель мониторинга Live и списки выбора камер.",
|
||||
"disabledSubheading": "Отключено в конфигурации"
|
||||
"dashboardHelp": "Показывать эту камеру на Live dashboard."
|
||||
}
|
||||
},
|
||||
"cameraConfig": {
|
||||
"add": "Добавить камеру",
|
||||
@@ -1377,119 +1287,7 @@
|
||||
"deleteCameraDialog": {
|
||||
"confirmWarning": "Удаление <strong>{{cameraName}}</strong> не может быть отменено.",
|
||||
"success": "Камера {{cameraName}} успешно удалена",
|
||||
"error": "Не удалось удалить камеру {{cameraName}}",
|
||||
"description": "Удаление камеры приведет к безвозвратному удалению всех записей, отслеживаемых объектов и конфигурации этой камеры. Любые потоки go2rtc, связанные с этой камерой, возможно, придется удалить вручную.",
|
||||
"selectPlaceholder": "Выберите камеру…",
|
||||
"confirmTitle": "Вы уверены?",
|
||||
"deleteExports": "Также удалите экспорт для этой камеры",
|
||||
"confirmButton": "Удалить навсегда",
|
||||
"title": "Удалить камеру"
|
||||
},
|
||||
"deleteCamera": "Удалить камеру",
|
||||
"description": "Добавляйте, редактируйте и удаляйте камеры, управляйте состоянием каждой камеры и настраивайте переопределения для профилей и типа камеры. Чтобы настроить потоки, обнаружение, движение и другие параметры камеры, выберите нужный раздел в конфигурации камеры.",
|
||||
"profiles": {
|
||||
"title": "Переопределения профиля камеры",
|
||||
"selectLabel": "Выберите профиль",
|
||||
"description": "Настройте, какие камеры будут включаться или выключаться при активации профиля. Камеры, для которых установлено значение «Наследовать», сохраняют состояние по умолчанию.",
|
||||
"inherit": "Наследовать",
|
||||
"on": "Вкл",
|
||||
"off": "Выкл"
|
||||
},
|
||||
"cameraType": {
|
||||
"title": "Тип камеры",
|
||||
"label": "Тип камеры",
|
||||
"description": "Установите тип для каждой камеры. Специальные камеры LPR — это одноцелевые камеры с мощным оптическим зумом для захвата номерных знаков удаленных транспортных средств. Большинство камер должны использовать камеры обычного типа, если только камера не предназначена специально для LPR и не обеспечивает четкое изображение номерных знаков.",
|
||||
"normal": "Нормальный",
|
||||
"dedicatedLpr": "Выделенный LPR",
|
||||
"saveSuccess": "Обновлен тип камеры для {{cameraName}}. Перезапустите Frigate, чтобы применить изменения."
|
||||
},
|
||||
"clone": {
|
||||
"sectionTitle": "Настройки клонирования",
|
||||
"sectionDescription": "Скопируйте конфигурацию с одной камеры на другую камеру или на новую.",
|
||||
"button": "Настройки клонирования",
|
||||
"title": "Клонировать настройки камеры",
|
||||
"description": "Скопируйте конфигурацию камеры на одну или несколько других камер либо на новую камеру. Идентичность (имя, отображаемое имя, URL веб-интерфейса, порядок отображения) никогда не копируется.",
|
||||
"source": {
|
||||
"label": "Исходная камера",
|
||||
"placeholder": "Выберите исходную камеру",
|
||||
"required": "Выберите исходную камеру"
|
||||
},
|
||||
"target": {
|
||||
"legend": "Цель",
|
||||
"newRadio": "Новая камера",
|
||||
"newNameLabel": "Имя камеры",
|
||||
"newNamePlaceholder": "например, back_door или Back Door",
|
||||
"newNameRequired": "Название камеры обязательно.",
|
||||
"newNameInvalid": "Неверное имя камеры",
|
||||
"newNameCollision": "Камера с таким названием уже существует",
|
||||
"newStreamsForced": "Потоки всегда копируются для новой камеры.",
|
||||
"existingCamerasRadio": "Существующие камеры",
|
||||
"allCameras": "Все камеры",
|
||||
"existingPlaceholder": "Выберите хотя бы одну камеру",
|
||||
"existingDisabled": "Нет других камер для копирования"
|
||||
},
|
||||
"categories": {
|
||||
"legend": "Настройки для клонирования",
|
||||
"description": "Выберите, какие настройки копировать с исходной камеры.",
|
||||
"selectAll": "Выбрать всё",
|
||||
"selectNone": "Ничего не выбрать",
|
||||
"resetDefaults": "Сбросить настройки по умолчанию",
|
||||
"general": "Общие",
|
||||
"spatial": "Пространственные настройки",
|
||||
"streams": "Потоки",
|
||||
"spatialWarningTitle": "Несоответствие разрешения",
|
||||
"spatialWarning": "Разрешение обнаружения исходной камеры {{srcCamera}} ({{srcWidth}}×{{srcHeight}}) отличается от: {{cameras}}. На этих камерах полигоны могут не совпадать. Эти значения по умолчанию отключены; включить копирование как есть.",
|
||||
"restartHint": "Требуется перезагрузка",
|
||||
"items": {
|
||||
"record": "Запись",
|
||||
"snapshots": "Снимки",
|
||||
"review": "Обзор событий",
|
||||
"motion": "Обнаружение движения",
|
||||
"objects": "Объекты",
|
||||
"audio": "Обнаружение аудио",
|
||||
"audio_transcription": "Расшифровка аудио",
|
||||
"notifications": "Уведомления",
|
||||
"birdseye": "Birdseye",
|
||||
"mqtt": "MQTT",
|
||||
"timestamp_style": "Стиль временной метки",
|
||||
"onvif": "ONVIF",
|
||||
"lpr": "Распознавание номерных знаков",
|
||||
"face_recognition": "Распознавание лиц",
|
||||
"semantic_search": "Семантический поиск",
|
||||
"genai": "Генеративный ИИ",
|
||||
"type": "Тип камеры (обычная / выделенная LPR)",
|
||||
"profiles": "Профили",
|
||||
"detect": "Определить размеры",
|
||||
"zones": "Зоны",
|
||||
"motion_mask": "Маски движения",
|
||||
"object_masks": "Маски объектов",
|
||||
"ffmpeg_live": "Стрим URLs и роли"
|
||||
}
|
||||
},
|
||||
"footer": {
|
||||
"changeCount_one": "Изменение {{count}} будет применено",
|
||||
"changeCount_few": "Изменение {{count}} будет применено",
|
||||
"changeCount_many": "Изменение {{count}} будет применено",
|
||||
"restartNeeded": "Для некоторых изменений потребуется перезагрузка.",
|
||||
"liveOnly": "Все изменения вступят в силу без перезагрузки.",
|
||||
"submit": "Клонировать",
|
||||
"submitting": "Клонирование…"
|
||||
},
|
||||
"toast": {
|
||||
"success": "Настройки скопированы в {{cameraName}}.",
|
||||
"successWithRestart": "Настройки скопированы в {{cameraName}}. Перезапустите Frigate, чтобы применить все изменения.",
|
||||
"successMulti_one": "Настройки скопированы в {{count}} камеру",
|
||||
"successMulti_few": "Настройки скопированы в {{count}} камеры",
|
||||
"successMulti_many": "Настройки скопированы в {{count}} камер",
|
||||
"successMultiWithRestart_one": "Настройки скопированы в {{count}} камеру. Перезапустите Frigate, чтобы применить все изменения.",
|
||||
"successMultiWithRestart_few": "Настройки скопированы в {{count}} камеры. Перезапустите Frigate, чтобы применить все изменения.",
|
||||
"successMultiWithRestart_many": "Настройки скопированы в {{count}} камер. Перезапустите Frigate, чтобы применить все изменения.",
|
||||
"partialFailure": "Применены {{successCount}} разделов; Ошибка «{{failedSection}}»: {{errorMessage}}",
|
||||
"partialFailureMulti": "Скопировано на {{successCount}}камеру(ы); не удалось для {{failed}}: {{errorMessage}}",
|
||||
"newCameraPartialFailure": "Камера {{cameraName}} создана, но некоторые настройки не удалось скопировать: {{errorMessage}}",
|
||||
"sourceMissing": "Исходная камера больше не существует",
|
||||
"submitError": "Не удалось клонировать камеру: {{errorMessage}}"
|
||||
}
|
||||
"error": "Не удалось удалить камеру {{cameraName}}"
|
||||
}
|
||||
},
|
||||
"cameraReview": {
|
||||
@@ -1533,363 +1331,6 @@
|
||||
"overriddenGlobal": "Перезаписано (глобально)",
|
||||
"overriddenGlobalTooltip": "Эта камера перезаписывает глобальные настройки в этой секции",
|
||||
"overriddenBaseConfig": "Перезаписано (базовые настройки)",
|
||||
"overriddenBaseConfigTooltip": "Перезаписи настроек профиля {{profile}} в этой секции",
|
||||
"overriddenGlobalHeading_one": "Эта камера переопределяет {{count}} поле из глобальной конфигурации:",
|
||||
"overriddenGlobalHeading_few": "Эта камера переопределяет {{count}} поля из глобальной конфигурации:",
|
||||
"overriddenGlobalHeading_many": "Эта камера переопределяет {{count}} полей из глобальной конфигурации:",
|
||||
"overriddenGlobalNoDeltas": "Эта камера переопределяет глобальную конфигурацию, но значения полей не отличаются.",
|
||||
"overriddenBaseConfigHeading_one": "Профиль {{profile}} переопределяет {{count}} поле из базовой конфигурации:",
|
||||
"overriddenBaseConfigHeading_few": "Профиль {{profile}} переопределяет {{count}} поля из базовой конфигурации:",
|
||||
"overriddenBaseConfigHeading_many": "Профиль {{profile}} переопределяет {{count}} полей из базовой конфигурации:",
|
||||
"overriddenBaseConfigNoDeltas": "Профиль {{profile}} переопределяет этот раздел, но значения полей не отличаются от базовой конфигурации.",
|
||||
"overriddenInCameras": {
|
||||
"label_one": "Переопределено в {{count}} камере",
|
||||
"label_few": "Переопределено в {{count}} камерах",
|
||||
"label_many": "Переопределено в {{count}} камерах",
|
||||
"tooltip_one": "{{count}} камера переопределяет значения в этом разделе. Нажмите, чтобы увидеть подробности.",
|
||||
"tooltip_few": "{{count}} камеры переопределяет значения в этом разделе. Нажмите, чтобы увидеть подробности.",
|
||||
"tooltip_many": "{{count}} камер переопределяет значения в этом разделе. Нажмите, чтобы увидеть подробности.",
|
||||
"heading_one": "В этом глобальном разделе есть поля, переопределённые в {{count}} камере.",
|
||||
"heading_few": "В этом глобальном разделе есть поля, переопределённые в {{count}} камерах.",
|
||||
"heading_many": "В этом глобальном разделе есть поля, переопределённые в {{count}} камерах.",
|
||||
"othersField_one": "{{count}} другой",
|
||||
"othersField_few": "{{count}} других",
|
||||
"othersField_many": "{{count}} других",
|
||||
"profilePrefix": "Профиль {{profile}}: {{fields}}"
|
||||
}
|
||||
},
|
||||
"menuDot": {
|
||||
"overrideGlobal": "Этот раздел переопределяет глобальную конфигурацию",
|
||||
"overrideProfile": "Этот раздел переопределён профилем {{profile}}",
|
||||
"unsaved": "В этом разделе есть несохранённые изменения"
|
||||
},
|
||||
"saveAllPreview": {
|
||||
"title": "Изменения для сохранения",
|
||||
"triggerLabel": "Просмотр ожидающих изменений",
|
||||
"empty": "Нет ожидающих изменений.",
|
||||
"scope": {
|
||||
"label": "Область",
|
||||
"global": "Глобальная",
|
||||
"camera": "Камера: {{cameraName}}"
|
||||
},
|
||||
"profile": {
|
||||
"label": "Профиль"
|
||||
},
|
||||
"field": {
|
||||
"label": "Поле"
|
||||
},
|
||||
"value": {
|
||||
"label": "Новое значение",
|
||||
"reset": "Сбросить"
|
||||
}
|
||||
},
|
||||
"timestampPosition": {
|
||||
"tl": "Сверху слева",
|
||||
"tr": "Сверху справа",
|
||||
"bl": "Снизу слева",
|
||||
"br": "Снизу справа"
|
||||
},
|
||||
"detectorsAndModel": {
|
||||
"title": "Детекторы и модель",
|
||||
"description": "Настройте бэкенд детектора, который выполняет обнаружение объектов, и используемую модель. Изменения сохраняются вместе, чтобы детектор и модель оставались согласованными.",
|
||||
"cardTitles": {
|
||||
"detector": "Оборудование детектора",
|
||||
"model": "Модель обнаружения"
|
||||
},
|
||||
"tabs": {
|
||||
"plus": "Frigate+",
|
||||
"custom": "Пользовательская модель"
|
||||
},
|
||||
"mismatch": {
|
||||
"warning": "Текущая модель Frigate+ «{{model}}» требует детектор {{required}}. Выберите совместимую модель ниже или переключитесь на пользовательскую модель перед сохранением."
|
||||
},
|
||||
"plusModel": {
|
||||
"requiresDetector": "Требуется: {{detector}}",
|
||||
"noModelSelected": "Выберите модель Frigate+"
|
||||
},
|
||||
"toast": {
|
||||
"saveSuccess": "Настройки детекторов и модели сохранены. Перезапустите Frigate, чтобы применить изменения.",
|
||||
"saveError": "Не удалось сохранить настройки детектора и модели"
|
||||
},
|
||||
"unsavedChanges": "Несохранённые изменения детектора и модели",
|
||||
"restartRequired": "Требуется перезапуск (изменён детектор или модель)"
|
||||
},
|
||||
"maintenance": {
|
||||
"title": "Обслуживание",
|
||||
"sync": {
|
||||
"title": "Синхронизация медиа",
|
||||
"desc": "Frigate периодически очищает медиафайлы по расписанию в соответствии с вашей конфигурацией хранения. Во время работы Frigate нормально видеть несколько потерянных файлов. Используйте эту функцию, чтобы удалить с диска потерянные медиафайлы, на которые больше нет ссылок в базе данных.",
|
||||
"started": "Синхронизация мультимедиа началась.",
|
||||
"alreadyRunning": "Задание синхронизации уже запущено",
|
||||
"error": "Не удалось начать синхронизацию",
|
||||
"currentStatus": "Статус",
|
||||
"jobId": "Идентификатор процесса",
|
||||
"startTime": "Время начала",
|
||||
"endTime": "Конец времени",
|
||||
"statusLabel": "Статус",
|
||||
"results": "Результаты",
|
||||
"errorLabel": "Ошибка",
|
||||
"mediaTypes": "Типы носителей",
|
||||
"allMedia": "Все носители",
|
||||
"dryRun": "Пробный прогон",
|
||||
"dryRunEnabled": "Никакие файлы не будут удалены",
|
||||
"dryRunDisabled": "Файлы будут удалены",
|
||||
"force": "Принудительно",
|
||||
"forceDesc": "Обойти порог безопасности и завершить синхронизацию, даже если будет удалено более 50% файлов.",
|
||||
"verbose": "Детали",
|
||||
"verboseDesc": "Запишите полный список потерянных файлов на диск для просмотра.",
|
||||
"running": "Синхронизация выполняется…",
|
||||
"start": "Начать синхронизацию",
|
||||
"inProgress": "Синхронизация выполняется. Эта страница отключена.",
|
||||
"status": {
|
||||
"queued": "В очереди",
|
||||
"running": "Выполняется",
|
||||
"completed": "Завершено",
|
||||
"failed": "Ошибка",
|
||||
"notRunning": "Не выполняется"
|
||||
},
|
||||
"resultsFields": {
|
||||
"filesChecked": "Файлы проверены",
|
||||
"orphansFound": "Найдены потерянные файлы",
|
||||
"orphansDeleted": "Удалены потерянные файлы",
|
||||
"aborted": "Прервано. Удаление превысит порог безопасности.",
|
||||
"error": "Ошибка",
|
||||
"totals": "Итоги"
|
||||
},
|
||||
"event_snapshots": "Снимки отслеживаемых объектов",
|
||||
"event_thumbnails": "Миниатюры отслеживаемых объектов",
|
||||
"review_thumbnails": "Обзор миниатюр",
|
||||
"previews": "Предпросмотры",
|
||||
"exports": "Экспорт",
|
||||
"recordings": "Записи"
|
||||
},
|
||||
"regionGrid": {
|
||||
"title": "Сетка регионов",
|
||||
"desc": "Сетка регионов — это оптимизация, которая запоминает, где в кадре камеры обычно появляются объекты разного размера. Frigate использует эти данные, чтобы эффективнее подбирать размер областей обнаружения. Сетка автоматически строится со временем на основе данных отслеживаемых объектов.",
|
||||
"clear": "Очистить сетку регионов",
|
||||
"clearConfirmTitle": "Очистить сетку регионов",
|
||||
"clearConfirmDesc": "Очищать сетку регионов не рекомендуется, если только вы недавно не изменили размер модели детектора или не изменили физическое положение камеры и не возникли проблемы с отслеживанием объектов. Сетка будет автоматически перестраиваться со временем по мере отслеживания объектов. Чтобы изменения вступили в силу, требуется перезапуск Frigate.",
|
||||
"clearSuccess": "Сетка регионов успешно очищена",
|
||||
"clearError": "Не удалось очистить сетку регионов",
|
||||
"restartRequired": "Требуется перезапуск, чтобы изменения сетки регионов вступили в силу"
|
||||
}
|
||||
},
|
||||
"configForm": {
|
||||
"global": {
|
||||
"title": "Глобальные настройки",
|
||||
"description": "Эти настройки применяются ко всем камерам, если они не переопределены в настройках конкретной камеры."
|
||||
},
|
||||
"camera": {
|
||||
"title": "Настройки камеры",
|
||||
"description": "Эти настройки применяются только к этой камере и переопределяют глобальные настройки.",
|
||||
"noCameras": "Нет доступных камер"
|
||||
},
|
||||
"advancedSettingsCount": "Расширенные настройки ({{count}})",
|
||||
"advancedCount": "Расширенный ({{count}})",
|
||||
"showAdvanced": "Показать дополнительные настройки",
|
||||
"tabs": {
|
||||
"sharedDefaults": "Общие настройки по умолчанию",
|
||||
"system": "Система",
|
||||
"integrations": "Интеграции"
|
||||
},
|
||||
"additionalProperties": {
|
||||
"keyLabel": "Ключ",
|
||||
"valueLabel": "Значение",
|
||||
"keyPlaceholder": "Новый ключ",
|
||||
"remove": "Удалить",
|
||||
"providerNameLabel": "Имя провайдера",
|
||||
"providerNamePlaceholder": "например, openai",
|
||||
"variableNameLabel": "Имя переменной",
|
||||
"variableNamePlaceholder": "например, MY_VARIABLE",
|
||||
"loggerNameLabel": "Имя логгера",
|
||||
"loggerNamePlaceholder": "например, frigate.record",
|
||||
"keyPatternError": "Используйте только буквы, цифры, дефисы и подчёркивания (без пробелов)"
|
||||
},
|
||||
"knownPlates": {
|
||||
"namePlaceholder": "например, Машина жены",
|
||||
"platePlaceholder": "Номерной знак или regex"
|
||||
},
|
||||
"liveStreams": {
|
||||
"streamNameLabel": "Название потока",
|
||||
"streamNamePlaceholder": "например, основной поток HD",
|
||||
"go2rtcStreamLabel": "go2rtc поток",
|
||||
"go2rtcStreamPlaceholder": "Выберите поток go2rtc",
|
||||
"go2rtcStreamSearch": "Найдите или введите название потока…",
|
||||
"noGo2rtcStreams": "Потоки go2rtc не настроены",
|
||||
"availableStreams": "Доступные потоки",
|
||||
"useCustom": "Используйте «{{value}}»",
|
||||
"addStream": "Добавить поток"
|
||||
},
|
||||
"timezone": {
|
||||
"defaultOption": "Использовать часовой пояс браузера"
|
||||
},
|
||||
"roleMap": {
|
||||
"empty": "Нет сопоставлений ролей",
|
||||
"roleLabel": "Роль",
|
||||
"groupsLabel": "Группы",
|
||||
"addMapping": "Добавить сопоставление ролей",
|
||||
"remove": "Удалить"
|
||||
},
|
||||
"ffmpegArgs": {
|
||||
"preset": "Предустановка",
|
||||
"manual": "Ручные аргументы",
|
||||
"inherit": "Наследовать настройки камеры",
|
||||
"none": "Нет",
|
||||
"useGlobalSetting": "Наследовать от глобальной настройки",
|
||||
"selectPreset": "Выберите предустановку",
|
||||
"manualPlaceholder": "Введите аргументы FFmpeg",
|
||||
"presetLabels": {
|
||||
"preset-rpi-64-h264": "Raspberry Pi (H.264)",
|
||||
"preset-rpi-64-h265": "Raspberry Pi (H.265)",
|
||||
"preset-vaapi": "VAAPI (Intel/AMD GPU)",
|
||||
"preset-intel-qsv-h264": "Intel QuickSync (H.264)",
|
||||
"preset-intel-qsv-h265": "Intel QuickSync (H.265)",
|
||||
"preset-nvidia": "NVIDIA GPU",
|
||||
"preset-jetson-h264": "NVIDIA Jetson (H.264)",
|
||||
"preset-jetson-h265": "NVIDIA Jetson (H.265)",
|
||||
"preset-rkmpp": "Rockchip RKMPP",
|
||||
"preset-http-jpeg-generic": "HTTP JPEG (универсальный)",
|
||||
"preset-http-mjpeg-generic": "HTTP MJPEG (универсальный)",
|
||||
"preset-http-reolink": "HTTP — камеры Reolink",
|
||||
"preset-rtmp-generic": "RTMP (универсальный)",
|
||||
"preset-rtsp-generic": "RTSP (универсальный)",
|
||||
"preset-rtsp-restream": "RTSP — рестрим из go2rtc",
|
||||
"preset-rtsp-restream-low-latency": "RTSP — рестрим из go2rtc (низкая задержка)",
|
||||
"preset-rtsp-udp": "RTSP — UDP",
|
||||
"preset-rtsp-blue-iris": "RTSP — Blue Iris",
|
||||
"preset-record-generic": "Запись (универсальная, без звука)",
|
||||
"preset-record-generic-audio-copy": "Запись (универсальная + копирование аудио)",
|
||||
"preset-record-generic-audio-aac": "Запись (универсальная + аудио в AAC)",
|
||||
"preset-record-mjpeg": "Запись — камеры MJPEG",
|
||||
"preset-record-jpeg": "Запись — камеры JPEG",
|
||||
"preset-record-ubiquiti": "Запись — камеры Ubiquiti"
|
||||
}
|
||||
},
|
||||
"cameraInputs": {
|
||||
"itemTitle": "Поток {{index}}",
|
||||
"sourceMode": {
|
||||
"restream": "Рестрим (go2rtc)",
|
||||
"manual": "Путь ввода вручную",
|
||||
"go2rtcStreamLabel": "go2rtc поток",
|
||||
"go2rtcStreamPlaceholder": "Выберите поток go2rtc",
|
||||
"noGo2rtcStreams": "Потоки go2rtc не настроены",
|
||||
"go2rtcStreamSearch": "Поиск потоков…",
|
||||
"availableStreams": "Доступные потоки",
|
||||
"noMatchingStreams": "Нет подходящих потоков"
|
||||
}
|
||||
},
|
||||
"restartRequiredField": "Требуется перезапуск",
|
||||
"restartRequiredFooter": "Конфигурация изменена – требуется перезагрузка",
|
||||
"sections": {
|
||||
"detect": "Обнаружение",
|
||||
"record": "Запись",
|
||||
"snapshots": "Снимки",
|
||||
"motion": "Движение",
|
||||
"objects": "Объекты",
|
||||
"review": "Обзор",
|
||||
"audio": "Аудио",
|
||||
"notifications": "Уведомления",
|
||||
"live": "Просмотр в реальном времени",
|
||||
"timestamp_style": "Временные метки",
|
||||
"mqtt": "MQTT",
|
||||
"database": "База данных",
|
||||
"telemetry": "Телеметрия",
|
||||
"auth": "Аутентификация",
|
||||
"tls": "TLS",
|
||||
"proxy": "Прокси",
|
||||
"go2rtc": "go2rtc",
|
||||
"ffmpeg": "FFmpeg",
|
||||
"detectors": "Детекторы",
|
||||
"model": "Модель",
|
||||
"semantic_search": "Семантический поиск",
|
||||
"genai": "GenAI",
|
||||
"face_recognition": "Распознавание лиц",
|
||||
"lpr": "Распознавание номерных знаков",
|
||||
"birdseye": "Birdseye",
|
||||
"masksAndZones": "Маски / Зоны"
|
||||
},
|
||||
"detect": {
|
||||
"title": "Настройки обнаружения"
|
||||
},
|
||||
"detectors": {
|
||||
"title": "Настройки детектора",
|
||||
"singleType": "Разрешен только один детектор {{type}}.",
|
||||
"keyRequired": "Требуется имя детектора.",
|
||||
"keyDuplicate": "Имя детектора уже существует.",
|
||||
"noSchema": "Схемы детекторов отсутствуют.",
|
||||
"none": "Экземпляры детектора не настроены.",
|
||||
"add": "Добавить детектор",
|
||||
"addCustomKey": "Добавить пользовательский ключ"
|
||||
},
|
||||
"record": {
|
||||
"title": "Настройки записи"
|
||||
},
|
||||
"snapshots": {
|
||||
"title": "Настройки снимка"
|
||||
},
|
||||
"motion": {
|
||||
"title": "Настройки движения"
|
||||
},
|
||||
"objects": {
|
||||
"title": "Настройки объекта"
|
||||
},
|
||||
"audioLabels": {
|
||||
"summary": "Выбраны аудиометки {{count}}",
|
||||
"empty": "Нет доступных аудиометок"
|
||||
},
|
||||
"objectLabels": {
|
||||
"summary": "Выбраны типы объектов {{count}}.",
|
||||
"empty": "Нет доступных меток объектов"
|
||||
},
|
||||
"reviewLabels": {
|
||||
"summary": "Выбраны ярлыки {{count}}",
|
||||
"empty": "Нет доступных ярлыков"
|
||||
},
|
||||
"filters": {
|
||||
"objectFieldLabel": "{{field}} для {{label}}"
|
||||
},
|
||||
"zoneNames": {
|
||||
"summary": "{{count}} выбрано",
|
||||
"empty": "Нет доступных зон"
|
||||
},
|
||||
"inputRoles": {
|
||||
"summary": "Выбраны роли {{count}}",
|
||||
"empty": "Нет доступных ролей",
|
||||
"options": {
|
||||
"detect": "Обнаружение",
|
||||
"record": "Запись",
|
||||
"audio": "Аудио"
|
||||
}
|
||||
},
|
||||
"genaiRoles": {
|
||||
"options": {
|
||||
"embeddings": "Встраивание",
|
||||
"descriptions": "Описания",
|
||||
"chat": "Чат"
|
||||
}
|
||||
},
|
||||
"semanticSearchModel": {
|
||||
"placeholder": "Выберите модель…",
|
||||
"builtIn": "Встроенные модели",
|
||||
"genaiProviders": "Поставщики GenAI"
|
||||
},
|
||||
"semanticSearchModelSize": {
|
||||
"notApplicable": "Не применимо для провайдеров GenAI"
|
||||
},
|
||||
"review": {
|
||||
"title": "Просмотр настроек"
|
||||
},
|
||||
"audio": {
|
||||
"title": "Настройки звука"
|
||||
},
|
||||
"notifications": {
|
||||
"title": "Настройки уведомлений"
|
||||
},
|
||||
"live": {
|
||||
"title": "Настройки просмотра в реальном времени"
|
||||
},
|
||||
"timestamp_style": {
|
||||
"title": "Настройки временной метки"
|
||||
}
|
||||
"overriddenBaseConfigTooltip": "Перезаписи настроек профиля {{profile}} в этой секции"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,27 +1 @@
|
||||
{
|
||||
"speech": "Fjalim",
|
||||
"babbling": "Grumbullim",
|
||||
"yell": "Bërtas",
|
||||
"whispering": "Pëshpëritje",
|
||||
"laughter": "E qeshur",
|
||||
"snicker": "Qeshje e lehtë",
|
||||
"crying": "Qarje",
|
||||
"sigh": "Psherëtimë",
|
||||
"singing": "Këndim",
|
||||
"choir": "Kor",
|
||||
"child_singing": "Fëmijët këndojnë",
|
||||
"synthetic_singing": "Këndim sintetik",
|
||||
"rapping": "Rap",
|
||||
"humming": "Gumëzhimë",
|
||||
"groan": "Rënkim",
|
||||
"grunt": "Përgjërim",
|
||||
"whistling": "Fishkëllima",
|
||||
"breathing": "Frymëmarrja",
|
||||
"wheeze": "Fryme me fishkëllimë",
|
||||
"snoring": "Gërhitje",
|
||||
"whoop": "Klithmë",
|
||||
"chant": "Këndim ritmik",
|
||||
"mantra": "Është një fjalë, tingull ose frazë e shenjtë që përsëritet gjatë meditimit apo lutjes për të ndihmuar përqendrimin",
|
||||
"yodeling": "Këndim me jodlim",
|
||||
"bellow": "Ulërimë, rrahje zëri"
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -97,7 +97,7 @@
|
||||
"timeRange": "Tidsintervall",
|
||||
"selectFromTimeline": "Välj från tidslinjen",
|
||||
"cameraSelection": "Kameror",
|
||||
"cameraSelectionHelp": "Kameror med spårade objekt inom tidsintervallet är förvalda",
|
||||
"cameraSelectionHelp": "Kameror med spårade objekt inom tidsintervallet är förvalda.",
|
||||
"checkingActivity": "Kontrollerar kameraaktivitet…",
|
||||
"noCameras": "Inga kameror tillgängliga",
|
||||
"detectionCount_one": "1 spårat objekt",
|
||||
|
||||
@@ -12,8 +12,7 @@
|
||||
"motionTuner": "Rörelsejustering - Frigate",
|
||||
"object": "Felsökning - Frigate",
|
||||
"cameraManagement": "Hantera kameror - Frigate",
|
||||
"cameraReview": "Kameragranskningsinställningar - Frigate",
|
||||
"profiles": "Profiler - Frigate"
|
||||
"cameraReview": "Kameragranskningsinställningar - Frigate"
|
||||
},
|
||||
"general": {
|
||||
"title": "Inställningar för användargränssnittet",
|
||||
@@ -153,12 +152,7 @@
|
||||
"roles": "Roller",
|
||||
"cameraManagement": "Kamerahantering",
|
||||
"cameraReview": "Granskning",
|
||||
"profiles": "Profiler",
|
||||
"maintenance": "Underhåll",
|
||||
"cameraObjects": "Föremål",
|
||||
"cameraUi": "Kameragränssnitt",
|
||||
"cameraFaceRecognition": "Ansiktsigenkänning",
|
||||
"cameraRecording": "Inspelning"
|
||||
"profiles": "Profiler"
|
||||
},
|
||||
"dialog": {
|
||||
"unsavedChanges": {
|
||||
@@ -1246,13 +1240,5 @@
|
||||
"success": "Konfigurationen för granskning av klassificering har sparats. Starta om Frigate för att tillämpa ändringarna."
|
||||
}
|
||||
}
|
||||
},
|
||||
"saveAllPreview": {
|
||||
"value": {
|
||||
"reset": "Återställ"
|
||||
},
|
||||
"field": {
|
||||
"label": "Fält"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,31 +1 @@
|
||||
{
|
||||
"speech": "ప్రసంగం",
|
||||
"yell": "అరువు",
|
||||
"whispering": "గుసగుసలాడు",
|
||||
"laughter": "నవ్వు",
|
||||
"crying": "ఏడుపు",
|
||||
"singing": "పాడు",
|
||||
"snoring": "గురకపెట్టు",
|
||||
"child_singing": "పాప పాట పాడుట",
|
||||
"cough": "దగ్గుట",
|
||||
"throat_clearing": "గొంతు సవరించు కొను",
|
||||
"sneeze": "తుమ్ముట",
|
||||
"run": "పరిగెత్తుట",
|
||||
"chewing": "నవులుట",
|
||||
"biting": "కొరుకుట",
|
||||
"gargling": "పుక్కిలించుట",
|
||||
"burping": "త్రెంచుట",
|
||||
"hiccup": "ఎక్కిళ్ళు",
|
||||
"fart": "పిత్తు",
|
||||
"hands": "చేతులు",
|
||||
"finger_snapping": "వెళ్ళు విరుచుట",
|
||||
"clapping": "చప్పట్లు కొట్టుట",
|
||||
"animal": "జంతువు",
|
||||
"pets": "పెంపుడు జెంతువులు",
|
||||
"dog": "కుక్క",
|
||||
"bark": "మొరుగు",
|
||||
"bow_wow": "భౌ వౌ",
|
||||
"cat": "పిల్లి",
|
||||
"meow": "మియావ్",
|
||||
"horse": "గుర్రం"
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -1,7 +1 @@
|
||||
{
|
||||
"animal": "జంతువు",
|
||||
"dog": "కుక్క",
|
||||
"bark": "మొరుగు",
|
||||
"cat": "పిల్లి",
|
||||
"horse": "గుర్రం"
|
||||
}
|
||||
{}
|
||||
|
||||
@@ -534,7 +534,7 @@
|
||||
"description": "控制界面中显示的录像预览质量的设置。",
|
||||
"quality": {
|
||||
"label": "预览质量",
|
||||
"description": "预览质量级别(非常低、低、中等、高、非常高)。"
|
||||
"description": "预览质量级别(very_low、low、medium、high、very_high)。"
|
||||
}
|
||||
},
|
||||
"enabled_in_config": {
|
||||
@@ -859,8 +859,8 @@
|
||||
"description": "用于在页面中排序摄像头的顺序(只会影响默认仪表板和列表);数值越大则在越后面。"
|
||||
},
|
||||
"dashboard": {
|
||||
"label": "在实时监控面板中显示",
|
||||
"description": "切换此摄像头是否在默认的“所有摄像头”实时监控仪表盘上可见。该摄像头在页面的其他位置(例如摄像头分组和设置页)仍然可见。"
|
||||
"label": "在页面中显示",
|
||||
"description": "切换此摄像头在 Frigate 页面的所有位置是否可见。禁用此项将需要手动编辑配置才能在页面中再次查看此摄像头。"
|
||||
},
|
||||
"review": {
|
||||
"label": "在核查中显示",
|
||||
|
||||
@@ -1405,7 +1405,7 @@
|
||||
},
|
||||
"model_type": {
|
||||
"label": "目标检测模型类型",
|
||||
"description": "某些检测器用于优化的检测器模型架构类型(ssd、yolox、yolonas、yolo-generic、rfdetr和dfine)。"
|
||||
"description": "某些检测器用于优化的检测器模型架构类型(ssd、yolox、yolonas)。"
|
||||
}
|
||||
},
|
||||
"model_path": {
|
||||
@@ -1454,7 +1454,7 @@
|
||||
},
|
||||
"model_type": {
|
||||
"label": "目标检测模型类型",
|
||||
"description": "某些检测器用于优化的检测器模型架构类型(ssd、yolox、yolonas、yolo-generic、rfdetr和dfine)。"
|
||||
"description": "某些检测器用于优化的检测器模型架构类型(ssd、yolox、yolonas)。"
|
||||
}
|
||||
},
|
||||
"genai": {
|
||||
@@ -1788,7 +1788,7 @@
|
||||
"description": "控制界面中显示的录像预览质量的设置。",
|
||||
"quality": {
|
||||
"label": "预览质量",
|
||||
"description": "预览质量级别(非常低、低、中等、高、非常高)。"
|
||||
"description": "预览质量级别(very_low、low、medium、high、very_high)。"
|
||||
}
|
||||
},
|
||||
"enabled_in_config": {
|
||||
@@ -2214,8 +2214,8 @@
|
||||
"description": "用于在页面中排序摄像头的顺序(只会影响默认仪表板和列表);数值越大则在越后面。"
|
||||
},
|
||||
"dashboard": {
|
||||
"label": "在实时监控仪表盘中显示",
|
||||
"description": "切换此摄像头是否在默认的“所有摄像头”实时监控仪表盘上可见。该摄像头在页面的其他位置(例如摄像头分组和设置页)仍然可见。"
|
||||
"label": "在页面中显示",
|
||||
"description": "切换此摄像头在 Frigate 页面中是否可见。禁用后需要手动编辑配置才能再次在页面中查看此摄像头。"
|
||||
},
|
||||
"review": {
|
||||
"label": "在核查中显示",
|
||||
|
||||
@@ -126,7 +126,5 @@
|
||||
"baby_stroller": "婴儿车",
|
||||
"rickshaw": "三轮车",
|
||||
"Rodent": "啮齿动物",
|
||||
"rodent": "鼠类动物",
|
||||
"possum": "负鼠",
|
||||
"garbage_truck": "垃圾清运车"
|
||||
"rodent": "鼠类动物"
|
||||
}
|
||||
|
||||
@@ -1388,7 +1388,7 @@
|
||||
"webuiUrlHelp": "从调试页面中直接访问摄像头管理网页界面。留空以禁用链接。",
|
||||
"webuiUrlInvalid": "必须是有效的 URL(例如:https://example.com)。",
|
||||
"dashboardLabel": "在实时监控面板上显示",
|
||||
"dashboardHelp": "在实时监控面板显示该摄像头,在分组等其他位置仍可见。",
|
||||
"dashboardHelp": "在实时监控面板显示该摄像头。",
|
||||
"reviewLabel": "在核查中显示",
|
||||
"reviewHelp": "在核查页面展示该摄像头,包括在筛选列表、画面变动核查以及历史视图。"
|
||||
},
|
||||
@@ -2134,8 +2134,7 @@
|
||||
"autotrackingNoZones": "自动追踪至少需要一个区域。请先在“遮罩 / 区域”中为此摄像头定义一个区域,然后在下方将其设置为必需区域。"
|
||||
},
|
||||
"ffmpeg": {
|
||||
"hwaccelManualNotRecommended": "不建议手动硬件加速参数。除非存在特定需求,否则选择与你的硬件匹配的预设。",
|
||||
"inputsMissingGo2rtcStream": "下面的输入指向了一个已不存在的 go2rtc 转流。请选择一个现有的转流或手动输入摄像头的 URL,否则此摄像头将无法连接。"
|
||||
"hwaccelManualNotRecommended": "不建议手动硬件加速参数。除非存在特定需求,否则选择与你的硬件匹配的预设。"
|
||||
},
|
||||
"model": {
|
||||
"optimizedFor320": "Frigate 针对了 320x320 的模型进行优化,这是大多数设置的最佳选择。640x640 模型速度较慢,仅在特定场景下有帮助。",
|
||||
|
||||
@@ -37,7 +37,7 @@ export function LogSettingsButton({
|
||||
</Button>
|
||||
);
|
||||
const content = (
|
||||
<div className={cn("my-3 space-y-3 px-3 py-3 md:mt-0 md:px-0 md:py-0")}>
|
||||
<div className={cn("my-3 space-y-3 py-3 md:mt-0 md:py-0")}>
|
||||
<div className="space-y-4">
|
||||
<div className="space-y-0.5">
|
||||
<div>{t("filter")}</div>
|
||||
@@ -77,7 +77,7 @@ export function LogSettingsButton({
|
||||
return (
|
||||
<Drawer>
|
||||
<DrawerTrigger asChild>{trigger}</DrawerTrigger>
|
||||
<DrawerContent className="mx-1 max-h-[75dvh] overflow-hidden">
|
||||
<DrawerContent className="mx-1 max-h-[75dvh] overflow-hidden p-3">
|
||||
{content}
|
||||
</DrawerContent>
|
||||
</Drawer>
|
||||
|
||||
@@ -26,7 +26,6 @@ import PlatformAwareDialog from "../overlay/dialog/PlatformAwareDialog";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { getTranslatedLabel } from "@/utils/i18n";
|
||||
import { useAllowedCameras } from "@/hooks/use-allowed-cameras";
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
const REVIEW_FILTERS = [
|
||||
"cameras",
|
||||
@@ -410,7 +409,6 @@ function GeneralFilterButton({
|
||||
onUpdateFilter(resetFilter);
|
||||
}}
|
||||
onClose={() => setOpen(false)}
|
||||
contentClassName="p-4"
|
||||
/>
|
||||
);
|
||||
|
||||
@@ -418,7 +416,6 @@ function GeneralFilterButton({
|
||||
<PlatformAwareDialog
|
||||
trigger={trigger}
|
||||
content={content}
|
||||
contentClassName="p-1"
|
||||
open={open}
|
||||
onOpenChange={(open) => {
|
||||
if (!open) {
|
||||
@@ -447,7 +444,6 @@ type GeneralFilterContentProps = {
|
||||
onApply: () => void;
|
||||
onReset: () => void;
|
||||
onClose: () => void;
|
||||
contentClassName?: string;
|
||||
};
|
||||
export function GeneralFilterContent({
|
||||
allLabels,
|
||||
@@ -458,7 +454,6 @@ export function GeneralFilterContent({
|
||||
onApply,
|
||||
onReset,
|
||||
onClose,
|
||||
contentClassName,
|
||||
}: GeneralFilterContentProps) {
|
||||
const { t } = useTranslation(["components/filter", "views/events"]);
|
||||
const { data: config } = useSWR<FrigateConfig>("config", {
|
||||
@@ -481,12 +476,7 @@ export function GeneralFilterContent({
|
||||
}, [config]);
|
||||
return (
|
||||
<>
|
||||
<div
|
||||
className={cn(
|
||||
"scrollbar-container h-auto max-h-[80dvh] overflow-y-auto overflow-x-hidden",
|
||||
contentClassName,
|
||||
)}
|
||||
>
|
||||
<div className="scrollbar-container h-auto max-h-[80dvh] overflow-y-auto overflow-x-hidden">
|
||||
{currentSeverity && (
|
||||
<div className="my-2.5 flex flex-col gap-2.5">
|
||||
<FilterSwitch
|
||||
|
||||
@@ -8,7 +8,6 @@ import { Label } from "../ui/label";
|
||||
import { Switch } from "../ui/switch";
|
||||
import { DropdownMenuSeparator } from "../ui/dropdown-menu";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
type ZoneMaskFilterButtonProps = {
|
||||
selectedZoneMask?: PolygonType[];
|
||||
@@ -47,12 +46,8 @@ export function ZoneMaskFilterButton({
|
||||
return (
|
||||
<Drawer>
|
||||
<DrawerTrigger asChild>{trigger}</DrawerTrigger>
|
||||
<DrawerContent className="mx-1 max-h-[75dvh] overflow-hidden">
|
||||
<GeneralFilterContent
|
||||
selectedZoneMask={selectedZoneMask}
|
||||
updateZoneMaskFilter={updateZoneMaskFilter}
|
||||
contentClassName="p-3"
|
||||
/>
|
||||
<DrawerContent className="mx-1 max-h-[75dvh] overflow-hidden p-3">
|
||||
{content}
|
||||
</DrawerContent>
|
||||
</Drawer>
|
||||
);
|
||||
@@ -69,22 +64,15 @@ export function ZoneMaskFilterButton({
|
||||
type GeneralFilterContentProps = {
|
||||
selectedZoneMask: PolygonType[] | undefined;
|
||||
updateZoneMaskFilter: (labels: PolygonType[] | undefined) => void;
|
||||
contentClassName?: string;
|
||||
};
|
||||
export function GeneralFilterContent({
|
||||
selectedZoneMask,
|
||||
updateZoneMaskFilter,
|
||||
contentClassName,
|
||||
}: GeneralFilterContentProps) {
|
||||
const { t } = useTranslation(["components/filter"]);
|
||||
return (
|
||||
<>
|
||||
<div
|
||||
className={cn(
|
||||
"h-auto overflow-y-auto overflow-x-hidden",
|
||||
contentClassName,
|
||||
)}
|
||||
>
|
||||
<div className="h-auto overflow-y-auto overflow-x-hidden">
|
||||
<div className="my-2.5 flex items-center justify-between">
|
||||
<Label
|
||||
className="mx-2 cursor-pointer text-primary"
|
||||
|
||||
@@ -257,7 +257,7 @@ export default function GeneralSettings({
|
||||
className={
|
||||
isDesktop
|
||||
? "scrollbar-container mr-5 w-72 overflow-y-auto"
|
||||
: "max-h-[75dvh] overflow-hidden"
|
||||
: "max-h-[75dvh] overflow-hidden p-2"
|
||||
}
|
||||
>
|
||||
{!isDesktop && (
|
||||
@@ -270,12 +270,7 @@ export default function GeneralSettings({
|
||||
</DrawerDescription>
|
||||
</>
|
||||
)}
|
||||
<div
|
||||
className={cn(
|
||||
"scrollbar-container w-full flex-col overflow-y-auto overflow-x-hidden",
|
||||
!isDesktop && "p-2",
|
||||
)}
|
||||
>
|
||||
<div className="scrollbar-container w-full flex-col overflow-y-auto overflow-x-hidden">
|
||||
{isMobile && (
|
||||
<div className="mb-2">
|
||||
<DropdownMenuLabel>
|
||||
|
||||
@@ -174,11 +174,11 @@ function StatusAlertNav({ className, large }: StatusAlertNavProps) {
|
||||
</DrawerTrigger>
|
||||
<DrawerContent
|
||||
className={cn(
|
||||
"mx-1 max-h-[75dvh] overflow-hidden rounded-t-2xl",
|
||||
"mx-1 max-h-[75dvh] overflow-hidden rounded-t-2xl px-2",
|
||||
className,
|
||||
)}
|
||||
>
|
||||
<div className="scrollbar-container flex h-auto w-full flex-col items-center gap-2 overflow-y-auto overflow-x-hidden px-2 py-4">
|
||||
<div className="scrollbar-container flex h-auto w-full flex-col items-center gap-2 overflow-y-auto overflow-x-hidden py-4">
|
||||
{Object.entries(messages).map(([key, messageArray]) => (
|
||||
<div key={key} className="flex w-full items-center gap-2">
|
||||
{messageArray.map(({ id, text, color, link }: StatusMessage) => {
|
||||
|
||||
@@ -34,8 +34,8 @@ export default function MobileCameraDrawer({
|
||||
<FaVideo className="text-secondary-foreground" />
|
||||
</Button>
|
||||
</DrawerTrigger>
|
||||
<DrawerContent className="mx-1 max-h-[75dvh] overflow-hidden rounded-t-2xl">
|
||||
<div className="scrollbar-container flex h-auto w-full flex-col items-center gap-2 overflow-y-auto overflow-x-hidden p-4">
|
||||
<DrawerContent className="mx-1 max-h-[75dvh] overflow-hidden rounded-t-2xl px-4">
|
||||
<div className="scrollbar-container flex h-auto w-full flex-col items-center gap-2 overflow-y-auto overflow-x-hidden py-4">
|
||||
{allCameras.map((cam) => (
|
||||
<div
|
||||
key={cam}
|
||||
|
||||
@@ -30,7 +30,6 @@ import { useNavigate } from "react-router-dom";
|
||||
import { StartExportResponse } from "@/types/export";
|
||||
import { ShareTimestampContent } from "./ShareTimestampDialog";
|
||||
import { useIsAdmin } from "@/hooks/use-is-admin";
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
type DrawerMode =
|
||||
| "none"
|
||||
@@ -519,9 +518,9 @@ export default function MobileReviewSettingsDrawer({
|
||||
} else if (drawerMode == "filter") {
|
||||
content = (
|
||||
<div className="scrollbar-container flex h-auto w-full flex-col overflow-y-auto overflow-x-hidden">
|
||||
<div className="relative mb-4 h-8 w-full">
|
||||
<div className="relative mb-2 h-8 w-full">
|
||||
<div
|
||||
className="absolute left-4 text-selected"
|
||||
className="absolute left-0 text-selected"
|
||||
onClick={() => setDrawerMode("select")}
|
||||
>
|
||||
{t("button.back", { ns: "common" })}
|
||||
@@ -549,7 +548,6 @@ export default function MobileReviewSettingsDrawer({
|
||||
onUpdateFilter(resetFilter);
|
||||
}}
|
||||
onClose={() => setDrawerMode("select")}
|
||||
contentClassName="px-4"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
@@ -687,14 +685,7 @@ export default function MobileReviewSettingsDrawer({
|
||||
</Button>
|
||||
</DrawerTrigger>
|
||||
<DrawerContent
|
||||
className={cn(
|
||||
"mx-1 flex max-h-[80dvh] flex-col items-center gap-2 rounded-t-2xl pb-4",
|
||||
// the filter content pads itself so its scrollbar reaches the drawer edge
|
||||
drawerMode != "filter" && "px-4",
|
||||
drawerMode == "export" || drawerMode == "debug-replay"
|
||||
? "overflow-visible"
|
||||
: "overflow-hidden",
|
||||
)}
|
||||
className={`mx-1 flex max-h-[80dvh] flex-col items-center gap-2 rounded-t-2xl px-4 pb-4 ${drawerMode == "export" || drawerMode == "debug-replay" ? "overflow-visible" : "overflow-hidden"}`}
|
||||
>
|
||||
{content}
|
||||
</DrawerContent>
|
||||
|
||||
@@ -491,7 +491,7 @@ export default function Step3StreamConfig({
|
||||
</Button>
|
||||
</div>
|
||||
</DrawerTrigger>
|
||||
<DrawerContent className="mx-1 max-h-[75dvh] overflow-hidden rounded-t-2xl">
|
||||
<DrawerContent className="mx-1 max-h-[75dvh] overflow-hidden rounded-t-2xl px-2">
|
||||
<div className="mt-2">
|
||||
<Command>
|
||||
<CommandInput
|
||||
@@ -500,7 +500,7 @@ export default function Step3StreamConfig({
|
||||
)}
|
||||
className="h-9"
|
||||
/>
|
||||
<CommandList className="px-2">
|
||||
<CommandList>
|
||||
<CommandEmpty>
|
||||
{t("cameraWizard.step3.noStreamFound")}
|
||||
</CommandEmpty>
|
||||
|
||||
@@ -47,7 +47,7 @@ const DrawerContent = React.forwardRef<
|
||||
)}
|
||||
{...props}
|
||||
>
|
||||
<div className="mx-auto mt-4 h-2 w-[100px] shrink-0 rounded-full bg-muted" />
|
||||
<div className="mx-auto mt-4 h-2 w-[100px] rounded-full bg-muted" />
|
||||
{children}
|
||||
</DrawerPrimitive.Content>
|
||||
</DrawerPortal>
|
||||
|
||||
Reference in New Issue
Block a user