Adding alerts
This commit is contained in:
parent
047db2cce8
commit
ab6d51a88c
@ -84,10 +84,11 @@
|
||||
"playing": "Playing",
|
||||
"transcoding": "Transcoding",
|
||||
"bitrate": "Bitrate",
|
||||
"no_active": "No Active Streamsssssss"
|
||||
"no_active": "No Active Streams"
|
||||
},
|
||||
"omada": {
|
||||
"activeUser": "Active users",
|
||||
"activeUser": "Active devices",
|
||||
"alerts": "Alerts",
|
||||
"connectedAp": "Connected APs"
|
||||
},
|
||||
"nzbget": {
|
||||
|
||||
@ -22,6 +22,7 @@ export default function Component({ service }) {
|
||||
<Container service={service}>
|
||||
<Block label="omada.connectedAp" />
|
||||
<Block label="omada.activeUser" />
|
||||
<Block label="omada.alerts" />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
@ -30,6 +31,7 @@ export default function Component({ service }) {
|
||||
<Container service={service}>
|
||||
<Block label="omada.connectedAp" value={t( "common.number", { value: omadaData.connectedAp})} />
|
||||
<Block label="omada.activeUser" value={t( "common.number", { value: omadaData.activeUser })} />
|
||||
<Block label="omada.alerts" value={t( "common.number", { value: omadaData.alerts })} />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user