mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-08-03 09:38:15 +03:00
Merge remote-tracking branch 'upstream/dev' into feature/share-review-timestamp
This commit is contained in:
@@ -529,7 +529,7 @@
|
||||
},
|
||||
"detections": {
|
||||
"label": "Detections config",
|
||||
"description": "Settings for creating detection events (non-alert) and how long to keep them.",
|
||||
"description": "Settings for which tracked objects generate detections (non-alert) and how detections are retained.",
|
||||
"enabled": {
|
||||
"label": "Enable detections",
|
||||
"description": "Enable or disable detection events for this camera."
|
||||
@@ -787,6 +787,10 @@
|
||||
"label": "Disable TLS verify",
|
||||
"description": "Skip TLS verification and disable digest auth for ONVIF (unsafe; use in safe networks only)."
|
||||
},
|
||||
"profile": {
|
||||
"label": "ONVIF profile",
|
||||
"description": "Specific ONVIF media profile to use for PTZ control, matched by token or name. If not set, the first profile with valid PTZ configuration is selected automatically."
|
||||
},
|
||||
"autotracking": {
|
||||
"label": "Autotracking",
|
||||
"description": "Automatically track moving objects and keep them centered in the frame using PTZ camera movements.",
|
||||
|
||||
@@ -293,7 +293,7 @@
|
||||
"label": "Detector specific model configuration",
|
||||
"description": "Detector-specific model configuration options (path, input size, etc.).",
|
||||
"path": {
|
||||
"label": "Custom Object detection model path",
|
||||
"label": "Custom object detector model path",
|
||||
"description": "Path to a custom detection model file (or plus://<model_id> for Frigate+ models)."
|
||||
},
|
||||
"labelmap_path": {
|
||||
@@ -466,7 +466,7 @@
|
||||
"label": "Detection model",
|
||||
"description": "Settings to configure a custom object detection model and its input shape.",
|
||||
"path": {
|
||||
"label": "Custom Object detection model path",
|
||||
"label": "Custom object detector model path",
|
||||
"description": "Path to a custom detection model file (or plus://<model_id> for Frigate+ models)."
|
||||
},
|
||||
"labelmap_path": {
|
||||
@@ -527,7 +527,7 @@
|
||||
},
|
||||
"roles": {
|
||||
"label": "Roles",
|
||||
"description": "GenAI roles (tools, vision, embeddings); one provider per role."
|
||||
"description": "GenAI roles (chat, descriptions, embeddings); one provider per role."
|
||||
},
|
||||
"provider_options": {
|
||||
"label": "Provider options",
|
||||
@@ -752,7 +752,7 @@
|
||||
},
|
||||
"live": {
|
||||
"label": "Live playback",
|
||||
"description": "Settings used by the Web UI to control live stream resolution and quality.",
|
||||
"description": "Settings to control the jsmpeg live stream resolution and quality. This does not affect restreamed cameras that use go2rtc for live view.",
|
||||
"streams": {
|
||||
"label": "Live stream names",
|
||||
"description": "Mapping of configured stream names to restream/go2rtc names used for live playback."
|
||||
@@ -1044,7 +1044,7 @@
|
||||
},
|
||||
"detections": {
|
||||
"label": "Detections config",
|
||||
"description": "Settings for creating detection events (non-alert) and how long to keep them.",
|
||||
"description": "Settings for which tracked objects generate detections (non-alert) and how detections are retained.",
|
||||
"enabled": {
|
||||
"label": "Enable detections",
|
||||
"description": "Enable or disable detection events for all cameras; can be overridden per-camera."
|
||||
@@ -1536,6 +1536,10 @@
|
||||
"label": "Disable TLS verify",
|
||||
"description": "Skip TLS verification and disable digest auth for ONVIF (unsafe; use in safe networks only)."
|
||||
},
|
||||
"profile": {
|
||||
"label": "ONVIF profile",
|
||||
"description": "Specific ONVIF media profile to use for PTZ control, matched by token or name. If not set, the first profile with valid PTZ configuration is selected automatically."
|
||||
},
|
||||
"autotracking": {
|
||||
"label": "Autotracking",
|
||||
"description": "Automatically track moving objects and keep them centered in the frame using PTZ camera movements.",
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"documentTitle": "Chat - Frigate",
|
||||
"title": "Frigate Chat",
|
||||
"subtitle": "Your AI assistant for camera management and insights",
|
||||
"placeholder": "Ask anything...",
|
||||
@@ -15,10 +16,14 @@
|
||||
"suggested_requests": "Try asking:",
|
||||
"starting_requests": {
|
||||
"show_recent_events": "Show recent events",
|
||||
"show_camera_status": "Show camera status"
|
||||
"show_camera_status": "Show camera status",
|
||||
"recap": "What happened while I was away?",
|
||||
"watch_camera": "Watch a camera for activity"
|
||||
},
|
||||
"starting_requests_prompts": {
|
||||
"show_recent_events": "Show me the recent events from the last hour",
|
||||
"show_camera_status": "What is the current status of my cameras?"
|
||||
"show_camera_status": "What is the current status of my cameras?",
|
||||
"recap": "What happened while I was away?",
|
||||
"watch_camera": "Watch the front door and let me know if anyone shows up"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
"clickMove": {
|
||||
"label": "Click in the frame to center the camera",
|
||||
"enable": "Enable click to move",
|
||||
"enableWithZoom": "Enable click to move / drag to zoom",
|
||||
"disable": "Disable click to move"
|
||||
},
|
||||
"left": {
|
||||
|
||||
@@ -539,6 +539,7 @@
|
||||
},
|
||||
"restart_required": "Restart required (masks/zones changed)",
|
||||
"disabledInConfig": "Item is disabled in the config file",
|
||||
"addDisabledProfile": "Add to the base config first, then override in the profile",
|
||||
"profileBase": "(base)",
|
||||
"profileOverride": "(override)",
|
||||
"toast": {
|
||||
@@ -613,6 +614,10 @@
|
||||
"desc": "Are you sure you want to delete the {{type}} <em>{{name}}</em>?",
|
||||
"success": "{{name}} has been deleted."
|
||||
},
|
||||
"revertOverride": {
|
||||
"title": "Revert to Base Config",
|
||||
"desc": "This will remove the profile override for the {{type}} <em>{{name}}</em> and revert to the base configuration."
|
||||
},
|
||||
"error": {
|
||||
"mustBeFinished": "Polygon drawing must be finished before saving."
|
||||
}
|
||||
@@ -825,6 +830,12 @@
|
||||
"area": "Area"
|
||||
}
|
||||
},
|
||||
"timestampPosition": {
|
||||
"tl": "Top left",
|
||||
"tr": "Top right",
|
||||
"bl": "Bottom left",
|
||||
"br": "Bottom right"
|
||||
},
|
||||
"users": {
|
||||
"title": "Users",
|
||||
"management": {
|
||||
@@ -1342,7 +1353,22 @@
|
||||
"preset-nvidia": "NVIDIA GPU",
|
||||
"preset-jetson-h264": "NVIDIA Jetson (H.264)",
|
||||
"preset-jetson-h265": "NVIDIA Jetson (H.265)",
|
||||
"preset-rkmpp": "Rockchip RKMPP"
|
||||
"preset-rkmpp": "Rockchip RKMPP",
|
||||
"preset-http-jpeg-generic": "HTTP JPEG (Generic)",
|
||||
"preset-http-mjpeg-generic": "HTTP MJPEG (Generic)",
|
||||
"preset-http-reolink": "HTTP - Reolink Cameras",
|
||||
"preset-rtmp-generic": "RTMP (Generic)",
|
||||
"preset-rtsp-generic": "RTSP (Generic)",
|
||||
"preset-rtsp-restream": "RTSP - Restream from go2rtc",
|
||||
"preset-rtsp-restream-low-latency": "RTSP - Restream from go2rtc (Low Latency)",
|
||||
"preset-rtsp-udp": "RTSP - UDP",
|
||||
"preset-rtsp-blue-iris": "RTSP - Blue Iris",
|
||||
"preset-record-generic": "Record (Generic, no audio)",
|
||||
"preset-record-generic-audio-copy": "Record (Generic + Copy Audio)",
|
||||
"preset-record-generic-audio-aac": "Record (Generic + Audio to AAC)",
|
||||
"preset-record-mjpeg": "Record - MJPEG Cameras",
|
||||
"preset-record-jpeg": "Record - JPEG Cameras",
|
||||
"preset-record-ubiquiti": "Record - Ubiquiti Cameras"
|
||||
}
|
||||
},
|
||||
"cameraInputs": {
|
||||
@@ -1388,7 +1414,8 @@
|
||||
"keyDuplicate": "Detector name already exists.",
|
||||
"noSchema": "No detector schemas are available.",
|
||||
"none": "No detector instances configured.",
|
||||
"add": "Add detector"
|
||||
"add": "Add detector",
|
||||
"addCustomKey": "Add custom key"
|
||||
},
|
||||
"record": {
|
||||
"title": "Recording Settings"
|
||||
@@ -1410,6 +1437,10 @@
|
||||
"summary": "{{count}} object types selected",
|
||||
"empty": "No object labels available"
|
||||
},
|
||||
"reviewLabels": {
|
||||
"summary": "{{count}} labels selected",
|
||||
"empty": "No labels available"
|
||||
},
|
||||
"filters": {
|
||||
"objectFieldLabel": "{{field}} for {{label}}"
|
||||
},
|
||||
@@ -1453,7 +1484,13 @@
|
||||
"timestamp_style": {
|
||||
"title": "Timestamp Settings"
|
||||
},
|
||||
"searchPlaceholder": "Search..."
|
||||
"searchPlaceholder": "Search...",
|
||||
"addCustomLabel": "Add custom label...",
|
||||
"genaiModel": {
|
||||
"placeholder": "Select model…",
|
||||
"search": "Search models…",
|
||||
"noModels": "No models available"
|
||||
}
|
||||
},
|
||||
"globalConfig": {
|
||||
"title": "Global Configuration",
|
||||
@@ -1500,6 +1537,8 @@
|
||||
"noOverrides": "No overrides",
|
||||
"cameraCount_one": "{{count}} camera",
|
||||
"cameraCount_other": "{{count}} cameras",
|
||||
"columnCamera": "Camera",
|
||||
"columnOverrides": "Profile Overrides",
|
||||
"baseConfig": "Base Config",
|
||||
"addProfile": "Add Profile",
|
||||
"newProfile": "New Profile",
|
||||
@@ -1573,5 +1612,46 @@
|
||||
"hardwareNone": "No hardware acceleration",
|
||||
"hardwareAuto": "Automatic hardware acceleration"
|
||||
}
|
||||
},
|
||||
"onvif": {
|
||||
"profileAuto": "Auto",
|
||||
"profileLoading": "Loading profiles..."
|
||||
},
|
||||
"configMessages": {
|
||||
"review": {
|
||||
"recordDisabled": "Recording is disabled, review items will not be generated.",
|
||||
"detectDisabled": "Object detection is disabled. Review items require detected objects to categorize alerts and detections.",
|
||||
"allNonAlertDetections": "All non-alert activity will be included as detections."
|
||||
},
|
||||
"audio": {
|
||||
"noAudioRole": "No streams have the audio role defined. You must enable the audio role for audio detection to function."
|
||||
},
|
||||
"audioTranscription": {
|
||||
"audioDetectionDisabled": "Audio detection is not enabled for this camera. Audio transcription requires audio detection to be active."
|
||||
},
|
||||
"detect": {
|
||||
"fpsGreaterThanFive": "Setting the detect FPS higher than 5 is not recommended."
|
||||
},
|
||||
"faceRecognition": {
|
||||
"globalDisabled": "Face recognition is not enabled at the global level. Enable it in global settings for camera-level face recognition to function.",
|
||||
"personNotTracked": "Face recognition requires the 'person' object to be tracked. Ensure 'person' is in the object tracking list."
|
||||
},
|
||||
"lpr": {
|
||||
"globalDisabled": "License plate recognition is not enabled at the global level. Enable it in global settings for camera-level LPR to function.",
|
||||
"vehicleNotTracked": "License plate recognition requires 'car' or 'motorcycle' to be tracked."
|
||||
},
|
||||
"record": {
|
||||
"noRecordRole": "No streams have the record role defined. Recording will not function."
|
||||
},
|
||||
"birdseye": {
|
||||
"objectsModeDetectDisabled": "Birdseye is set to 'objects' mode, but object detection is disabled for this camera. The camera will not appear in Birdseye."
|
||||
},
|
||||
"snapshots": {
|
||||
"detectDisabled": "Object detection is disabled. Snapshots are generated from tracked objects and will not be created."
|
||||
},
|
||||
"detectors": {
|
||||
"mixedTypes": "All detectors must use the same type. Remove existing detectors to use a different type.",
|
||||
"mixedTypesSuggestion": "All detectors must use the same type. Remove existing detectors or select {{type}}."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -78,6 +78,7 @@
|
||||
"gpuUsage": "GPU Usage",
|
||||
"gpuMemory": "GPU Memory",
|
||||
"gpuEncoder": "GPU Encoder",
|
||||
"gpuCompute": "GPU Compute / Encode",
|
||||
"gpuDecoder": "GPU Decoder",
|
||||
"gpuTemperature": "GPU Temperature",
|
||||
"gpuInfo": {
|
||||
@@ -188,6 +189,7 @@
|
||||
"cameraFfmpeg": "{{camName}} FFmpeg",
|
||||
"cameraCapture": "{{camName}} capture",
|
||||
"cameraDetect": "{{camName}} detect",
|
||||
"cameraGpu": "{{camName}} GPU",
|
||||
"cameraFramesPerSecond": "{{camName}} frames per second",
|
||||
"cameraDetectionsPerSecond": "{{camName}} detections per second",
|
||||
"cameraSkippedDetectionsPerSecond": "{{camName}} skipped detections per second"
|
||||
|
||||
Reference in New Issue
Block a user