Make I/O totals translatable
This commit is contained in:
@@ -1067,9 +1067,9 @@
|
||||
<canvas id="graphsMemoryChart" style="width: 100%; margin-bottom: 10px;"></canvas>
|
||||
<label style="margin-top: 10px;">CPU</label>
|
||||
<canvas id="graphsCpuChart" style="width: 100%; margin-bottom: 10px;"></canvas>
|
||||
<label style="margin-top: 10px; display: block;">Disk I/O <span class="pull-right text-small">total: read {{ graphs.blockReadTotal }} / write {{ graphs.blockWriteTotal }}</span></label>
|
||||
<label style="margin-top: 10px; display: block;">Disk I/O <span class="pull-right text-small">{{ 'app.graphs.diskIOTotal' | tr:{ read: graphs.blockReadTotal, write: graphs.blockWriteTotal } }}</span></label>
|
||||
<canvas id="graphsDiskChart" style="width: 100%; margin-bottom: 10px;"></canvas>
|
||||
<label style="margin-top: 10px; display: block;">Network I/O <span class="pull-right text-small">total: inbound {{ graphs.networkReadTotal }} / outbound {{ graphs.networkWriteTotal }}</span></label>
|
||||
<label style="margin-top: 10px; display: block;">Network I/O <span class="pull-right text-small">{{ 'app.graphs.networkIOTotal' | tr:{ inbound: graphs.networkReadTotal, outbound: graphs.networkWriteTotal } }}</span></label>
|
||||
<canvas id="graphsNetworkChart" style="width: 100%; margin-bottom: 10px;"></canvas>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user