Adding alerts
This commit is contained in:
parent
047db2cce8
commit
ab6d51a88c
2 changed files with 5 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue