Adding alerts

This commit is contained in:
Benoit 2022-12-06 09:50:14 +01:00
parent 047db2cce8
commit ab6d51a88c
2 changed files with 5 additions and 2 deletions

View file

@ -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": {

View file

@ -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>
);
}