mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-01-25 05:28:29 +03:00
feat: add system processes info i18n
This commit is contained in:
parent
3897b74f98
commit
af39ae8db9
@ -101,7 +101,8 @@
|
|||||||
"show": "Show {{item}}",
|
"show": "Show {{item}}",
|
||||||
"ID": "ID",
|
"ID": "ID",
|
||||||
"none": "None",
|
"none": "None",
|
||||||
"all": "All"
|
"all": "All",
|
||||||
|
"other": "Other"
|
||||||
},
|
},
|
||||||
"list": {
|
"list": {
|
||||||
"two": "{{0}} and {{1}}",
|
"two": "{{0}} and {{1}}",
|
||||||
|
|||||||
@ -86,7 +86,14 @@
|
|||||||
"otherProcesses": {
|
"otherProcesses": {
|
||||||
"title": "Other Processes",
|
"title": "Other Processes",
|
||||||
"processCpuUsage": "Process CPU Usage",
|
"processCpuUsage": "Process CPU Usage",
|
||||||
"processMemoryUsage": "Process Memory Usage"
|
"processMemoryUsage": "Process Memory Usage",
|
||||||
|
"series": {
|
||||||
|
"go2rtc": "go2rtc",
|
||||||
|
"recording": "recording",
|
||||||
|
"review_segment": "review segment",
|
||||||
|
"embeddings": "embeddings",
|
||||||
|
"audio_detector": "audio detector"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"storage": {
|
"storage": {
|
||||||
|
|||||||
@ -855,7 +855,7 @@ export default function GeneralMetrics({
|
|||||||
<ThresholdBarGraph
|
<ThresholdBarGraph
|
||||||
key={series.name}
|
key={series.name}
|
||||||
graphId={`${series.name}-cpu`}
|
graphId={`${series.name}-cpu`}
|
||||||
name={series.name.replaceAll("_", " ")}
|
name={t(`general.otherProcesses.series.${series.name}`)}
|
||||||
unit="%"
|
unit="%"
|
||||||
threshold={DetectorCpuThreshold}
|
threshold={DetectorCpuThreshold}
|
||||||
updateTimes={updateTimes}
|
updateTimes={updateTimes}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user