GeneralMailStatistics.js: rename traffic_in/out to bytes_in/out

This commit is contained in:
Dietmar Maurer 2017-09-01 07:43:11 +02:00
parent 93d09a018c
commit ae68a06f71

View File

@ -119,12 +119,12 @@ Ext.define('PMG.GeneralMailStatistics', {
res.push({
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({
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;
},