mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-08-03 09:38:15 +03:00
i18n fixes (#17725)
* fix key * add french * Fix random 0 * fix i18n in role change dialog * fix delete user dialog * fix filter tips steps * remove classes from i18n files * combine disjointed norweigan localized files * change submit to plus to use a question with yes/no --------- Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com>
This commit is contained in:
co-authored by
Nicolas Mowen
parent
1315a28252
commit
84c1ad59a2
@@ -15,15 +15,11 @@
|
||||
"desc": "Objects in locations you want to avoid are not false positives. Submitting them as false positives will confuse the model."
|
||||
},
|
||||
"review": {
|
||||
"true": {
|
||||
"question": {
|
||||
"label": "Confirm this label for Frigate Plus",
|
||||
"true_one": "This is a {{label}}",
|
||||
"true_other": "This is an {{label}}"
|
||||
},
|
||||
"false": {
|
||||
"label": "Do not confirm this label for Frigate Plus",
|
||||
"false_one": "This is not a {{label}}",
|
||||
"false_other": "This is not an {{label}}"
|
||||
"ask_a": "Is this object a <code>{{label}}</code>?",
|
||||
"ask_an": "Is this object an <code>{{label}}</code>?",
|
||||
"ask_full": "Is this object a <code>{{untranslatedLabel}}</code> ({{translatedLabel}})?"
|
||||
},
|
||||
"state": {
|
||||
"submitted": "Submitted"
|
||||
|
||||
@@ -46,8 +46,13 @@
|
||||
"title": "How to use text filters",
|
||||
"desc": {
|
||||
"text": "Filters help you narrow down your search results. Here's how to use them in the input field:",
|
||||
"step": "<ul className=\"list-disc pl-5 text-sm text-primary-variant\"><li>Type a filter name followed by a colon (e.g., \"cameras:\").</li><li>Select a value from the suggestions or type your own.</li><li>Use multiple filters by adding them one after another with a space in between.</li><li>Date filters (before: and after:) use <em>{{DateFormat}}</em> format.</li><li>Time range filter uses <em>{{exampleTime}}</em> format.</li><li>Remove filters by clicking the 'x' next to them.</li></ul>",
|
||||
"example": "Example: <code className=\"text-primary\">cameras:front_door label:person before:01012024 time_range:3:00PM-4:00PM </code>"
|
||||
"step1": "Type a filter key name followed by a colon (e.g., \"cameras:\").",
|
||||
"step2": "Select a value from the suggestions or type your own.",
|
||||
"step3": "Use multiple filters by adding them one after another with a space in between.",
|
||||
"step4": "Date filters (before: and after:) use {{DateFormat}} format.",
|
||||
"step5": "Time range filter uses {{exampleTime}} format.",
|
||||
"step6": "Remove filters by clicking the 'x' next to them.",
|
||||
"exampleLabel": "Example:"
|
||||
}
|
||||
},
|
||||
"header": {
|
||||
|
||||
@@ -385,12 +385,12 @@
|
||||
"motion": {
|
||||
"title": "Motion boxes",
|
||||
"desc": "Show boxes around areas where motion is detected",
|
||||
"tips": "<p className=\"mb-2\"><strong>Motion Boxes</strong></p><br><p>Red boxes will be overlaid on areas of the frame where motion is currently being detected</p>"
|
||||
"tips": "<p><strong>Motion Boxes</strong></p><br><p>Red boxes will be overlaid on areas of the frame where motion is currently being detected</p>"
|
||||
},
|
||||
"regions": {
|
||||
"title": "Regions",
|
||||
"desc": "Show a box of the region of interest sent to the object detector",
|
||||
"tips": "<p className=\"mb-2\"><strong>Region Boxes</strong></p><br><p>Bright green boxes will be overlaid on areas of interest in the frame that are being sent to the object detector.</p>"
|
||||
"tips": "<p><strong>Region Boxes</strong></p><br><p>Bright green boxes will be overlaid on areas of interest in the frame that are being sent to the object detector.</p>"
|
||||
},
|
||||
"objectShapeFilterDrawing": {
|
||||
"title": "Object Shape Filter Drawing",
|
||||
@@ -474,7 +474,7 @@
|
||||
"deleteUser": {
|
||||
"title": "Delete User",
|
||||
"desc": "This action cannot be undone. This will permanently delete the user account and remove all associated data.",
|
||||
"warn": "Are you sure you want to delete <span className=\"font-bold\">{{username}}</span>?"
|
||||
"warn": "Are you sure you want to delete"
|
||||
},
|
||||
"passwordSetting": {
|
||||
"updatePassword": "Update Password for {{username}}",
|
||||
@@ -483,8 +483,14 @@
|
||||
},
|
||||
"changeRole": {
|
||||
"title": "Change User Role",
|
||||
"desc": "Update permissions for <span className=\"font-medium\">{{username}}</span>",
|
||||
"roleInfo": "<p>Select the appropriate role for this user:</p><ul className=\"mt-2 space-y-1 pl-5\"><li> • <span className=\"font-medium\">Admin:</span> Full access to all features. </li><li> • <span className=\"font-medium\">Viewer:</span> Limited to Live dashboards, Review, Explore, and Exports only.</li></ul>"
|
||||
"desc": "Update permissions for",
|
||||
"roleInfo": {
|
||||
"intro": "Select the appropriate role for this user:",
|
||||
"admin": "Admin",
|
||||
"adminDesc": "Full access to all features.",
|
||||
"viewer": "Viewer",
|
||||
"viewerDesc": "Limited to Live dashboards, Review, Explore, and Exports only."
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user