mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-08-03 17:43:59 +03:00
fix missing i18n keys (#18309)
This commit is contained in:
@@ -78,6 +78,10 @@
|
||||
"speed": {
|
||||
"mph": "mph",
|
||||
"kph": "kph"
|
||||
},
|
||||
"length": {
|
||||
"feet": "feet",
|
||||
"meters": "meters"
|
||||
}
|
||||
},
|
||||
"label": {
|
||||
|
||||
@@ -39,8 +39,11 @@
|
||||
"document": "Read the documentation "
|
||||
}
|
||||
},
|
||||
"stream": "Stream",
|
||||
"placeholder": "Choose a stream",
|
||||
"streamMethod": {
|
||||
"label": "Streaming Method",
|
||||
"placeholder": "Choose a streaming method",
|
||||
"method": {
|
||||
"noStreaming": {
|
||||
"label": "No Streaming",
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
"copyConfig": "Copy Config",
|
||||
"saveAndRestart": "Save & Restart",
|
||||
"saveOnly": "Save Only",
|
||||
"confirm": "Exit without saving?",
|
||||
"toast": {
|
||||
"success": {
|
||||
"copyToClipboard": "Config copied to clipboard."
|
||||
|
||||
@@ -75,7 +75,10 @@
|
||||
"desc": "This data comes from your camera's detect feed but is overlayed on images from the the record feed. It is unlikely that the two streams are perfectly in sync. As a result, the bounding box and the footage will not line up perfectly. However, the <code>annotation_offset</code> field can be used to adjust this.",
|
||||
"documentation": "Read the documentation ",
|
||||
"millisecondsToOffset": "Milliseconds to offset detect annotations by. <em>Default: 0</em>",
|
||||
"tips": "TIP: Imagine there is an event clip with a person walking from left to right. If the event timeline bounding box is consistently to the left of the person then the value should be decreased. Similarly, if a person is walking from left to right and the bounding box is consistently ahead of the person then the value should be increased."
|
||||
"tips": "TIP: Imagine there is an event clip with a person walking from left to right. If the event timeline bounding box is consistently to the left of the person then the value should be decreased. Similarly, if a person is walking from left to right and the bounding box is consistently ahead of the person then the value should be increased.",
|
||||
"toast": {
|
||||
"success": "Annotation offset for {{camera}} has been saved to the config file. Restart Frigate to apply your changes."
|
||||
}
|
||||
}
|
||||
},
|
||||
"carousel": {
|
||||
|
||||
@@ -219,6 +219,11 @@
|
||||
"mustBeGreaterOrEqualZero": "Loitering time must be greater than or equal to 0."
|
||||
}
|
||||
},
|
||||
"speed": {
|
||||
"error": {
|
||||
"mustBeGreaterOrEqualTo": "Speed threshold must greater than or equal to 0.1."
|
||||
}
|
||||
},
|
||||
"polygonDrawing": {
|
||||
"removeLastPoint": "Remove last point",
|
||||
"reset": {
|
||||
@@ -271,7 +276,11 @@
|
||||
"speedEstimation": {
|
||||
"title": "Speed Estimation",
|
||||
"desc": "Enable speed estimation for objects in this zone. The zone must have exactly 4 points.",
|
||||
"docs": "Read the documentation"
|
||||
"docs": "Read the documentation",
|
||||
"lineADistance": "Line A distance ({{unit}})",
|
||||
"lineBDistance": "Line B distance ({{unit}})",
|
||||
"lineCDistance": "Line C distance ({{unit}})",
|
||||
"lineDDistance": "Line D distance ({{unit}})"
|
||||
},
|
||||
"speedThreshold": {
|
||||
"title": "Speed Threshold ({{unit}})",
|
||||
@@ -473,12 +482,14 @@
|
||||
"placeholder": "Re-enter new password"
|
||||
}
|
||||
},
|
||||
"usernameIsRequired": "Username is required"
|
||||
"usernameIsRequired": "Username is required",
|
||||
"passwordIsRequired": "Password is required"
|
||||
},
|
||||
"createUser": {
|
||||
"title": "Create New User",
|
||||
"desc": "Add a new user account and specify an role for access to areas of the Frigate UI.",
|
||||
"usernameOnlyInclude": "Username may only include letters, numbers, . or _"
|
||||
"usernameOnlyInclude": "Username may only include letters, numbers, . or _",
|
||||
"confirmPassword": "Please confirm your password"
|
||||
},
|
||||
"deleteUser": {
|
||||
"title": "Delete User",
|
||||
@@ -486,12 +497,15 @@
|
||||
"warn": "Are you sure you want to delete <strong>{{username}}</strong>?"
|
||||
},
|
||||
"passwordSetting": {
|
||||
"cannotBeEmpty": "Password cannot be empty",
|
||||
"doNotMatch": "Passwords do not match",
|
||||
"updatePassword": "Update Password for {{username}}",
|
||||
"setPassword": "Set Password",
|
||||
"desc": "Create a strong password to secure this account."
|
||||
},
|
||||
"changeRole": {
|
||||
"title": "Change User Role",
|
||||
"select": "Select a role",
|
||||
"desc": "Update permissions for <strong>{{username}}</strong>",
|
||||
"roleInfo": {
|
||||
"intro": "Select the appropriate role for this user:",
|
||||
|
||||
@@ -108,6 +108,7 @@
|
||||
"title": "Cameras",
|
||||
"overview": "Overview",
|
||||
"info": {
|
||||
"aspectRatio": "aspect ratio",
|
||||
"cameraProbeInfo": "{{camera}} Camera Probe Info",
|
||||
"streamDataFromFFPROBE": "Stream data is obtained with <code>ffprobe</code>.",
|
||||
"fetching": "Fetching Camera Data",
|
||||
|
||||
Reference in New Issue
Block a user