mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-08-14 16:14:18 +00:00
GeneralMailStatistics.js: rename traffic_in/out to bytes_in/out
This commit is contained in:
parent
93d09a018c
commit
ae68a06f71
@ -119,12 +119,12 @@ Ext.define('PMG.GeneralMailStatistics', {
|
|||||||
|
|
||||||
res.push({
|
res.push({
|
||||||
name: gettext("Incoming Mail Traffic"),
|
name: gettext("Incoming Mail Traffic"),
|
||||||
value: Ext.Number.toFixed(data.traffic_in/(1024*1024), 2) + ' MByte'
|
value: Ext.Number.toFixed(data.bytes_in/(1024*1024), 2) + ' MByte'
|
||||||
});
|
});
|
||||||
|
|
||||||
res.push({
|
res.push({
|
||||||
name: gettext("Outgoing Mail Traffic"),
|
name: gettext("Outgoing Mail Traffic"),
|
||||||
value: Ext.Number.toFixed(data.traffic_out/(1024*1024), 2) + ' MByte'
|
value: Ext.Number.toFixed(data.bytes_out/(1024*1024), 2) + ' MByte'
|
||||||
});
|
});
|
||||||
return res;
|
return res;
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user