luci-app-nlbwmon: convert to client side JS

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2020-04-20 17:55:39 +02:00
parent 79814b2f52
commit fdce990b90
41 changed files with 6705 additions and 5656 deletions

View file

@ -1,686 +0,0 @@
var chartRegistry = {},
trafficPeriods = [],
trafficData = { columns: [], data: [] },
hostNames = {},
ouiData = [];
function off(elem)
{
var val = [0, 0];
do {
if (!isNaN(elem.offsetLeft) && !isNaN(elem.offsetTop)) {
val[0] += elem.offsetLeft;
val[1] += elem.offsetTop;
}
}
while ((elem = elem.offsetParent) != null);
return val;
}
Chart.defaults.global.customTooltips = function(tooltip) {
var tooltipEl = document.getElementById('chartjs-tooltip');
if (!tooltipEl) {
tooltipEl = document.createElement('div');
tooltipEl.setAttribute('id', 'chartjs-tooltip');
document.body.appendChild(tooltipEl);
}
if (!tooltip) {
if (tooltipEl.row)
tooltipEl.row.style.backgroundColor = '';
tooltipEl.style.opacity = 0;
return;
}
var pos = off(tooltip.chart.canvas);
tooltipEl.className = tooltip.yAlign;
tooltipEl.innerHTML = tooltip.text[0];
tooltipEl.style.opacity = 1;
tooltipEl.style.left = pos[0] + tooltip.x + 'px';
tooltipEl.style.top = pos[1] + tooltip.y - tooltip.caretHeight - tooltip.caretPadding + 'px';
console.debug(tooltip.text);
var row = findParent(tooltip.text[1], '.tr'),
hue = tooltip.text[2];
if (row && !isNaN(hue)) {
row.style.backgroundColor = 'hsl(%u, 100%%, 80%%)'.format(hue);
tooltipEl.row = row;
}
};
Chart.defaults.global.tooltipFontSize = 10;
Chart.defaults.global.tooltipTemplate = function(tip) {
tip.label[0] = tip.label[0].format(tip.value);
return tip.label;
};
function kpi(id, val1, val2, val3)
{
var e = L.dom.elem(id) ? id : document.getElementById(id);
if (val1 && val2 && val3)
e.innerHTML = _('%s, %s and %s').format(val1, val2, val3);
else if (val1 && val2)
e.innerHTML = _('%s and %s').format(val1, val2);
else if (val1)
e.innerHTML = val1;
e.parentNode.style.display = val1 ? 'list-item' : '';
}
function pie(id, data)
{
var total = data.reduce(function(n, d) { return n + d.value }, 0);
data.sort(function(a, b) { return b.value - a.value });
if (total === 0)
data = [{
value: 1,
color: '#cccccc',
label: [ _('no traffic') ]
}];
for (var i = 0; i < data.length; i++) {
if (!data[i].color) {
var hue = 120 / (data.length-1) * i;
data[i].color = 'hsl(%u, 80%%, 50%%)'.format(hue);
data[i].label.push(hue);
}
}
var node = L.dom.elem(id) ? id : document.getElementById(id),
key = L.dom.elem(id) ? id.id : id,
ctx = node.getContext('2d');
if (chartRegistry.hasOwnProperty(key))
chartRegistry[key].destroy();
chartRegistry[key] = new Chart(ctx).Doughnut(data, {
segmentStrokeWidth: 1,
percentageInnerCutout: 30
});
return chartRegistry[key];
}
function query(filter, group, order)
{
var keys = [], columns = {}, records = {}, result = [];
if (typeof(group) !== 'function' && typeof(group) !== 'object')
group = ['mac'];
for (var i = 0; i < trafficData.columns.length; i++)
columns[trafficData.columns[i]] = i;
for (var i = 0; i < trafficData.data.length; i++) {
var record = trafficData.data[i];
if (typeof(filter) === 'function' && filter(columns, record) !== true)
continue;
var key;
if (typeof(group) === 'function') {
key = group(columns, record);
}
else {
key = [];
for (var j = 0; j < group.length; j++)
if (columns.hasOwnProperty(group[j]))
key.push(record[columns[group[j]]]);
key = key.join(',');
}
if (!records.hasOwnProperty(key)) {
var rec = {};
for (var col in columns)
rec[col] = record[columns[col]];
records[key] = rec;
result.push(rec);
}
else {
records[key].conns += record[columns.conns];
records[key].rx_bytes += record[columns.rx_bytes];
records[key].rx_pkts += record[columns.rx_pkts];
records[key].tx_bytes += record[columns.tx_bytes];
records[key].tx_pkts += record[columns.tx_pkts];
}
}
if (typeof(order) === 'function')
result.sort(order);
return result;
}
function oui(mac) {
var m, l = 0, r = ouiData.length / 3 - 1;
var mac1 = parseInt(mac.replace(/[^a-fA-F0-9]/g, ''), 16);
while (l <= r) {
m = l + Math.floor((r - l) / 2);
var mask = (0xffffffffffff -
(Math.pow(2, 48 - ouiData[m * 3 + 1]) - 1));
var mac1_hi = ((mac1 / 0x10000) & (mask / 0x10000)) >>> 0;
var mac1_lo = ((mac1 & 0xffff) & (mask & 0xffff)) >>> 0;
var mac2 = parseInt(ouiData[m * 3], 16);
var mac2_hi = (mac2 / 0x10000) >>> 0;
var mac2_lo = (mac2 & 0xffff) >>> 0;
if (mac1_hi === mac2_hi && mac1_lo === mac2_lo)
return ouiData[m * 3 + 2];
if (mac2_hi > mac1_hi ||
(mac2_hi === mac1_hi && mac2_lo > mac1_lo))
r = m - 1;
else
l = m + 1;
}
return null;
}
function fetchData(period)
{
XHR.get(L.url('admin/nlbw/data'), { period: period, group_by: 'family,mac,ip,layer7', order_by: '-rx_bytes,-tx_bytes' }, function(xhr, res) {
if (res !== null && typeof(res) === 'object' && typeof(res.columns) === 'object' && typeof(res.data) === 'object')
trafficData = res;
var addrs = query(null, ['ip'], null);
var ipAddrs = [];
for (var i = 0; i < addrs.length; i++)
if (ipAddrs.indexOf(addrs[i].ip) < 0)
ipAddrs.push(addrs[i].ip);
renderHostData();
renderLayer7Data();
renderIPv6Data();
XHR.get(L.url('admin/nlbw/ptr', ipAddrs.join('/')), null, function(xhr, res) {
if (res !== null && typeof(res) === 'object')
hostNames = res;
});
});
}
function renderPeriods()
{
var sel = document.getElementById('nlbw.period');
for (var e, i = trafficPeriods.length - 1; e = trafficPeriods[i]; i--) {
var ymd1 = e.split(/-/);
var d1 = new Date(+ymd1[0], +ymd1[1] - 1, +ymd1[2]);
var ymd2, d2, pd;
if (i) {
ymd2 = trafficPeriods[i - 1].split(/-/);
d2 = new Date(+ymd2[0], +ymd2[1] - 1, +ymd2[2]);
d2.setDate(d2.getDate() - 1);
pd = e;
}
else {
d2 = new Date();
pd = '';
}
var opt = document.createElement('option');
opt.setAttribute('data-duration', (d2.getTime() - d1.getTime()) / 1000);
opt.value = pd;
opt.text = '%04d-%02d-%02d - %04d-%02d-%02d'.format(
d1.getFullYear(), d1.getMonth() + 1, d1.getDate(),
d2.getFullYear(), d2.getMonth() + 1, d2.getDate());
sel.appendChild(opt);
}
sel.selectedIndex = sel.childNodes.length - 1;
sel.style.display = '';
sel.onchange = function(ev) {
L.hideTooltip(ev);
fetchData(sel.options[sel.selectedIndex].value);
}
}
function renderHostDetail(tooltip)
{
var key = this.getAttribute('href').substr(1),
col = this.getAttribute('data-col'),
label = this.getAttribute('data-tooltip');
var detailData = query(
function(c, r) {
return ((r[c.mac] === key || r[c.ip] === key) &&
(r[c.rx_bytes] > 0 || r[c.tx_bytes] > 0));
},
[col],
function(r1, r2) {
return ((r2.rx_bytes + r2.tx_bytes) - (r1.rx_bytes + r1.tx_bytes));
}
);
var rxData = [], txData = [];
L.dom.content(tooltip, [
E('div', { 'class': 'head' }, [
E('div', { 'class': 'pie' }, [
E('label', _('Download')),
E('canvas', { 'id': 'bubble-pie1', 'width': 100, 'height': 100 })
]),
E('div', { 'class': 'pie' }, [
E('label', _('Upload')),
E('canvas', { 'id': 'bubble-pie2', 'width': 100, 'height': 100 })
]),
E('div', { 'class': 'kpi' }, [
E('ul', [
E('li', _('Hostname: <big id="bubble-hostname">example.org</big>')),
E('li', _('Vendor: <big id="bubble-vendor">Example Corp.</big>'))
])
])
]),
E('div', { 'class': 'table' }, [
E('div', { 'class': 'tr table-titles' }, [
E('div', { 'class': 'th' }, label || col),
E('div', { 'class': 'th' }, _('Conn.')),
E('div', { 'class': 'th' }, _('Down. (Bytes)')),
E('div', { 'class': 'th' }, _('Down. (Pkts.)')),
E('div', { 'class': 'th' }, _('Up. (Bytes)')),
E('div', { 'class': 'th' }, _('Up. (Pkts.)')),
])
])
]);
var rows = [];
for (var i = 0; i < detailData.length; i++) {
var rec = detailData[i],
cell = E('div', rec[col] || _('other'));
rows.push([
cell,
'%1000.2m'.format(rec.conns),
'%1024.2mB'.format(rec.rx_bytes),
'%1000.2mP'.format(rec.rx_pkts),
'%1024.2mB'.format(rec.tx_bytes),
'%1000.2mP'.format(rec.tx_pkts)
]);
rxData.push({
label: ['%s: %%1024.2mB'.format(rec[col] || _('other')), cell],
value: rec.rx_bytes
});
txData.push({
label: ['%s: %%1024.2mB'.format(rec[col] || _('other')), cell],
value: rec.tx_bytes
});
}
cbi_update_table(tooltip.lastElementChild, rows);
pie(tooltip.querySelector('#bubble-pie1'), rxData);
pie(tooltip.querySelector('#bubble-pie2'), txData);
var mac = key.toUpperCase();
var name = hostInfo.hasOwnProperty(mac) ? hostInfo[mac].name : null;
if (!name)
for (var i = 0; i < detailData.length; i++)
if ((name = hostNames[detailData[i].ip]) !== undefined)
break;
if (mac !== '00:00:00:00:00:00') {
kpi(tooltip.querySelector('#bubble-hostname'), name);
kpi(tooltip.querySelector('#bubble-vendor'), oui(mac));
}
else {
kpi(tooltip.querySelector('#bubble-hostname'));
kpi(tooltip.querySelector('#bubble-vendor'));
}
var rect = this.getBoundingClientRect(), x, y;
if ('ontouchstart' in window || window.innerWidth <= 992) {
var vpHeight = Math.max(document.documentElement.clientHeight, window.innerHeight || 0),
scrollFrom = window.pageYOffset,
scrollTo = scrollFrom + rect.top - vpHeight * 0.5,
start = null;
tooltip.style.top = (rect.top + rect.height + window.pageYOffset) + 'px';
tooltip.style.left = 0;
var scrollStep = function(timestamp) {
if (!start)
start = timestamp;
var duration = Math.max(timestamp - start, 1);
if (duration < 100) {
document.body.scrollTop = scrollFrom + (scrollTo - scrollFrom) * (duration / 100);
window.requestAnimationFrame(scrollStep);
}
else {
document.body.scrollTop = scrollTo;
}
};
window.requestAnimationFrame(scrollStep);
}
else {
x = rect.left + rect.width + window.pageXOffset,
y = rect.top + window.pageYOffset;
if ((y + tooltip.offsetHeight) > (window.innerHeight + window.pageYOffset))
y -= ((y + tooltip.offsetHeight) - (window.innerHeight + window.pageYOffset));
tooltip.style.top = y + 'px';
tooltip.style.left = x + 'px';
}
return false;
}
function formatHostname(dns)
{
if (dns === undefined || dns === null || dns === '')
return '-';
dns = dns.split('.')[0];
if (dns.length > 12)
return '<span title="%q">%h…</span>'.format(dns, dns.substr(0, 12));
return '%h'.format(dns);
}
function renderHostData()
{
var trafData = [], connData = [];
var rx_total = 0, tx_total = 0, conn_total = 0;
var hostData = query(
function(c, r) {
return (r[c.rx_bytes] > 0 || r[c.tx_bytes] > 0);
},
['mac'],
//function(c, r) {
// return (r[c.mac] !== '00:00:00:00:00:00') ? r[c.mac] : r[c.ip];
//},
function(r1, r2) {
return ((r2.rx_bytes + r2.tx_bytes) - (r1.rx_bytes + r1.tx_bytes));
}
);
var rows = [];
for (var i = 0; i < hostData.length; i++) {
var rec = hostData[i],
mac = rec.mac.toUpperCase(),
key = (mac !== '00:00:00:00:00:00') ? mac : rec.ip,
dns = hostInfo[mac] ? hostInfo[mac].name : null;
var cell = E('div', formatHostname(dns));
rows.push([
cell,
E('a', {
'href': '#' + rec.mac,
'data-col': 'ip',
'data-tooltip': _('Source IP')
}, (mac !== '00:00:00:00:00:00') ? mac : _('other')),
E('a', {
'href': '#' + rec.mac,
'data-col': 'layer7',
'data-tooltip': _('Protocol')
}, '%1000.2m'.format(rec.conns)),
'%1024.2mB'.format(rec.rx_bytes),
'%1000.2mP'.format(rec.rx_pkts),
'%1024.2mB'.format(rec.tx_bytes),
'%1000.2mP'.format(rec.tx_pkts)
]);
trafData.push({
value: rec.rx_bytes + rec.tx_bytes,
label: ["%s: %%.2mB".format(key), cell]
});
connData.push({
value: rec.conns,
label: ["%s: %%.2m".format(key), cell]
});
rx_total += rec.rx_bytes;
tx_total += rec.tx_bytes;
conn_total += rec.conns;
}
cbi_update_table('#host-data', rows, E('em', [
_('No data recorded yet.'), ' ',
E('a', { 'href': L.url('admin/nlbw/commit') }, _('Force reload…'))
]));
pie('traf-pie', trafData);
pie('conn-pie', connData);
kpi('rx-total', '%1024.2mB'.format(rx_total));
kpi('tx-total', '%1024.2mB'.format(tx_total));
kpi('conn-total', '%1000m'.format(conn_total));
kpi('host-total', '%u'.format(hostData.length));
}
function renderLayer7Data()
{
var rxData = [], txData = [];
var topConn = [[0],[0],[0]], topRx = [[0],[0],[0]], topTx = [[0],[0],[0]];
var layer7Data = query(
null, ['layer7'],
function(r1, r2) {
return ((r2.rx_bytes + r2.tx_bytes) - (r1.rx_bytes + r1.tx_bytes));
}
);
var rows = [];
for (var i = 0, c = 0; i < layer7Data.length; i++) {
var rec = layer7Data[i],
cell = E('div', rec.layer7 || _('other'));
rows.push([
cell,
'%1000m'.format(rec.conns),
'%1024.2mB'.format(rec.rx_bytes),
'%1000.2mP'.format(rec.rx_pkts),
'%1024.2mB'.format(rec.tx_bytes),
'%1000.2mP'.format(rec.tx_pkts)
]);
rxData.push({
value: rec.rx_bytes,
label: ["%s: %%.2mB".format(rec.layer7 || _('other')), cell]
});
txData.push({
value: rec.tx_bytes,
label: ["%s: %%.2mB".format(rec.layer7 || _('other')), cell]
});
if (rec.layer7) {
topRx.push([rec.rx_bytes, rec.layer7]);
topTx.push([rec.tx_bytes, rec.layer7]);
topConn.push([rec.conns, rec.layer7]);
}
}
cbi_update_table('#layer7-data', rows, E('em', [
_('No data recorded yet.'), ' ',
E('a', { 'href': L.url('admin/nlbw/commit') }, _('Force reload…'))
]));
pie('layer7-rx-pie', rxData);
pie('layer7-tx-pie', txData);
topRx.sort(function(a, b) { return b[0] - a[0] });
topTx.sort(function(a, b) { return b[0] - a[0] });
topConn.sort(function(a, b) { return b[0] - a[0] });
kpi('layer7-total', layer7Data.length);
kpi('layer7-most-rx', topRx[0][1], topRx[1][1], topRx[2][1]);
kpi('layer7-most-tx', topTx[0][1], topTx[1][1], topTx[2][1]);
kpi('layer7-most-conn', topConn[0][1], topConn[1][1], topConn[2][1]);
}
function renderIPv6Data()
{
var col = { },
rx4_total = 0,
tx4_total = 0,
rx6_total = 0,
tx6_total = 0,
v4_total = 0,
v6_total = 0,
ds_total = 0,
families = { },
records = { };
ipv6Data = query(
null, ['family', 'mac'],
function(r1, r2) {
return ((r2.rx_bytes + r2.tx_bytes) - (r1.rx_bytes + r1.tx_bytes));
}
);
for (var i = 0, c = 0; i < ipv6Data.length; i++) {
var rec = ipv6Data[i],
mac = rec.mac.toUpperCase(),
ip = rec.ip,
fam = families[mac] || 0,
recs = records[mac] || {};
if (rec.family == 4) {
rx4_total += rec.rx_bytes;
tx4_total += rec.tx_bytes;
fam |= 1;
}
else {
rx6_total += rec.rx_bytes;
tx6_total += rec.tx_bytes;
fam |= 2;
}
recs[rec.family] = rec;
records[mac] = recs;
families[mac] = fam;
}
for (var mac in families) {
switch (families[mac])
{
case 3:
ds_total++;
break;
case 2:
v6_total++;
break;
case 1:
v4_total++;
break;
}
}
var rows = [];
for (var mac in records) {
if (mac === '00:00:00:00:00:00')
continue;
var dns = hostInfo[mac] ? hostInfo[mac].name : null,
rec4 = records[mac][4],
rec6 = records[mac][6];
rows.push([
formatHostname(dns),
mac,
[ E('span', _('IPv4')),
E('span', _('IPv6')) ],
[ E('span', rec4 ? '%1024.2mB'.format(rec4.rx_bytes) : '-'),
E('span', rec6 ? '%1024.2mB'.format(rec6.rx_bytes) : '-') ],
[ E('span', rec4 ? '%1000.2mP'.format(rec4.rx_pkts) : '-'),
E('span', rec6 ? '%1000.2mP'.format(rec6.rx_pkts) : '-') ],
[ E('span', rec4 ? '%1024.2mB'.format(rec4.tx_bytes) : '-'),
E('span', rec6 ? '%1024.2mB'.format(rec6.tx_bytes) : '-') ],
[ E('span', rec4 ? '%1000.2mP'.format(rec4.tx_pkts) : '-'),
E('span', rec6 ? '%1000.2mP'.format(rec6.tx_pkts) : '-') ]
]);
}
cbi_update_table('#ipv6-data', rows, E('em', [
_('No data recorded yet.'), ' ',
E('a', { 'href': L.url('admin/nlbw/commit') }, _('Force reload…'))
]));
var shareData = [], hostsData = [];
if (rx4_total > 0 || tx4_total > 0)
shareData.push({
value: rx4_total + tx4_total,
label: ["IPv4: %.2mB"],
color: 'hsl(140, 100%, 50%)'
});
if (rx6_total > 0 || tx6_total > 0)
shareData.push({
value: rx6_total + tx6_total,
label: ["IPv6: %.2mB"],
color: 'hsl(180, 100%, 50%)'
});
if (v4_total > 0)
hostsData.push({
value: v4_total,
label: [_('%d IPv4-only hosts')],
color: 'hsl(140, 100%, 50%)'
});
if (v6_total > 0)
hostsData.push({
value: v6_total,
label: [_('%d IPv6-only hosts')],
color: 'hsl(180, 100%, 50%)'
});
if (ds_total > 0)
hostsData.push({
value: ds_total,
label: [_('%d dual-stack hosts')],
color: 'hsl(50, 100%, 50%)'
});
pie('ipv6-share-pie', shareData);
pie('ipv6-hosts-pie', hostsData);
kpi('ipv6-hosts', '%.2f%%'.format(100 / (ds_total + v4_total + v6_total) * (ds_total + v6_total)));
kpi('ipv6-share', '%.2f%%'.format(100 / (rx4_total + rx6_total + tx4_total + tx6_total) * (rx6_total + tx6_total)));
kpi('ipv6-rx', '%1024.2mB'.format(rx6_total));
kpi('ipv6-tx', '%1024.2mB'.format(tx6_total));
}

View file

@ -0,0 +1,70 @@
'use strict';
'require view';
'require ui';
'require fs';
return view.extend({
load: function() {
return fs.trimmed('/proc/sys/kernel/hostname');
},
handleArchiveUpload: function(ev) {
return ui.uploadFile('/tmp/nlbw-restore.tar.gz').then(function() {
return fs.exec('/usr/libexec/nlbwmon-action', [ 'restore' ]).then(function(res) {
if (res.code != 0)
throw new Error(res.stderr || res.stdout);
var json = JSON.parse(res.stdout || '{}'),
list = (L.isObject(json) && Array.isArray(json.restored)) ? json.restored : [];
ui.showModal(_('Restore complete'), [
E('p', [ _('The following database files have been restored:') ]),
E('ul', list.map(function(file) { return E('li', [ file ]) })),
E('div', { 'class': 'right' }, [
E('button', { 'click': ui.hideModal }, [ _('Dismiss') ])
])
]);
}).catch(function(err) {
ui.addNotification(null, E('p', [ _('Failed to restore backup archive: %s').format(err.message) ]));
});
});
},
handleArchiveDownload: function(hostname, ev) {
return fs.exec_direct('/usr/libexec/nlbwmon-action', [ 'backup' ], 'blob').then(function(blob) {
var url = window.URL.createObjectURL(blob),
date = new Date(),
name = 'nlbwmon-backup-%s-%04d-%02d-%02d.tar.gz'.format(hostname, date.getFullYear(), date.getMonth() + 1, date.getDate()),
link = E('a', { 'style': 'display:none', 'href': url, 'download': name });
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
window.URL.revokeObjectURL(url);
}).catch(function(err) {
ui.addNotification(null, E('p', [ _('Failed to download backup archive: %s').format(err.message) ]));
});
},
render: function(hostname) {
return E([], [
E('h2', [ _('Netlink Bandwidth Monitor - Backup / Restore') ]),
E('h5', [ _('Restore Database Backup') ]),
E('p', [
E('button', {
'click': ui.createHandlerFn(this, 'handleArchiveUpload')
}, [ _('Restore') ])
]),
E('h5', [ _('Download Database Backup') ]),
E('p', [
E('button', {
'click': ui.createHandlerFn(this, 'handleArchiveDownload', hostname)
}, [ _('Generate Backup') ])
])
]);
},
handleSave: null,
handleSaveApply: null,
handleReset: null
});

View file

@ -0,0 +1,180 @@
'use strict';
'require view';
'require form';
'require uci';
'require fs';
'require validation';
'require tools.widgets as widgets';
function writePeriod(section_id, value) {
var interval = this.map.lookupOption('_interval', section_id)[0],
period = this.map.lookupOption('_period', section_id)[0],
date = this.map.lookupOption('_date', section_id)[0],
days = this.map.lookupOption('_days', section_id)[0];
if (period.formvalue(section_id) == 'relative') {
uci.set('nlbwmon', section_id, 'database_interval', interval.formvalue(section_id));
}
else {
uci.set('nlbwmon', section_id, 'database_interval', '%s/%s'.format(
date.formvalue(section_id),
days.formvalue(section_id)
));
}
}
function writeNetworks(section_id, value) {
var oldval = L.toArray(uci.get('nlbwmon', section_id, 'local_network')),
subnets = this.map.lookupOption('_subnets', section_id)[0],
ifaces = this.map.lookupOption('_ifaces', section_id)[0];
var newval = [].concat(
L.toArray(subnets.formvalue(section_id)),
L.toArray(ifaces.formvalue(section_id))
);
if (oldval.length != newval.length || oldval.join(' ') != newval.join(' '))
uci.set('nlbwmon', section_id, 'local_network', newval);
}
function writeProtocols(section_id, value) {
return fs.write('/usr/share/nlbwmon/protocols', (value || '').trim().replace(/\r\n/g, '\n') + '\n');
}
return view.extend({
load: function() {
return uci.load('nlbwmon');
},
render: function() {
var m, s, o;
m = new form.Map('nlbwmon', _('Netlink Bandwidth Monitor - Configuration'),
_('The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic accounting program keeping track of bandwidth usage per host and protocol.'));
s = m.section(form.TypedSection, 'nlbwmon');
s.anonymous = true;
s.addremove = false;
s.tab('general', _('General Settings'));
s.tab('advanced', _('Advanced Settings'));
s.tab('protocol', _('Protocol Mapping'), _('Protocol mappings to distinguish traffic types per host, one mapping per line. The first value specifies the IP protocol, the second value the port number and the third column is the name of the mapped protocol.'));
o = s.taboption('general', form.ListValue, '_period', _('Accounting period'),
_('Choose "Day of month" to restart the accounting period monthly on a specific date, e.g. every 3rd. Choose "Fixed interval" to restart the accounting period exactly every N days, beginning at a given date.'));
o.cfgvalue = function(section_id) {
var value = uci.get('nlbwmon', section_id, 'database_interval'),
m = /^[0-9]{4}-[0-9]{2}-[0-9]{2}\/[0-9]+$/.test(value);
return m ? 'absolute' : 'relative';
};
o.write = writePeriod;
o.value('relative', _('Day of month'));
o.value('absolute', _('Fixed interval'));
o = s.taboption('general', form.DummyValue, '_warning', _('Warning'));
o.default = _('Changing the accounting interval type will invalidate existing databases!<br /><strong><a href="%s">Download backup</a></strong>.').format(L.url('admin/nlbw/backup'));
o.rawhtml = true;
if (/^[0-9]{4}-[0-9]{2}-[0-9]{2}\/[0-9]+$/.test(uci.get_first('nlbwmon', 'nlbwmon', 'database_interval')))
o.depends('_period', 'relative');
else
o.depends('_period', 'absolute');
o = s.taboption('general', form.Value, '_interval', _('Due date'),
_('Day of month to restart the accounting period. Use negative values to count towards the end of month, e.g. "-5" to specify the 27th of July or the 24th of February.'));
o.rmempty = false;
o.cfgvalue = function(section_id) {
var value = +uci.get('nlbwmon', section_id, 'database_interval');
return !isNaN(value) ? value.toString() : null;
};
o.write = writePeriod;
o.depends('_period', 'relative');
o.value('1', _('1 - Restart every 1st of month'));
o.value('-1', _('-1 - Restart every last day of month'));
o.value('-7', _('-7 - Restart a week before end of month'));
o = s.taboption('general', form.Value, '_date', _('Start date'),
_('Start date of the first accounting period, e.g. begin of ISP contract.'));
o.rmempty = false;
o.cfgvalue = function(section_id) {
var value = uci.get('nlbwmon', section_id, 'database_interval'),
m = /^([0-9]{4}-[0-9]{2}-[0-9]{2})\/[0-9]+$/.exec(value);
return m ? m[1] : null;
};
o.write = writePeriod;
o.depends('_period', 'absolute');
o = s.taboption('general', form.Value, '_days', _('Interval'),
_('Length of accounting interval in days.'));
o.rmempty = false;
o.cfgvalue = function(section_id) {
var value = uci.get('nlbwmon', section_id, 'database_interval'),
m = /^[0-9]{4}-[0-9]{2}-[0-9]{2}\/([0-9]+)$/.exec(value);
return m ? m[1] : null;
};
o.write = writePeriod;
o.depends('_period', 'absolute');
o = s.taboption('general', widgets.NetworkSelect, '_ifaces', _('Local interfaces'),
_('Only conntrack streams from or to any of these networks are counted.'));
o.nocreate = true;
o.multiple = true;
o.cfgvalue = function(section_id) {
return L.toArray(uci.get('nlbwmon', section_id, 'local_network'));
};
o.write = writeNetworks;
o = s.taboption('general', form.DynamicList, '_subnets', _('Local subnets'),
_('Only conntrack streams from or to any of these subnets are counted.'));
o.cfgvalue = function(section_id) {
return L.toArray(uci.get('nlbwmon', section_id, 'local_network')).filter(function(addr) {
var m = /^([0-9a-fA-F:.]+)(?:\/[0-9a-fA-F:.]+)?$/.exec(addr);
return m && (validation.parseIPv4(m[1]) || validation.parseIPv6(m[1]));
});
};
o.write = writeNetworks;
o.datatype = 'ipaddr';
o = s.taboption('advanced', form.Value, 'database_limit', _('Maximum entries'),
_('The maximum amount of entries that should be put into the database, setting the limit to 0 will allow databases to grow indefinitely.'));
o = s.taboption('advanced', form.Flag, 'database_prealloc', _('Preallocate database'),
_('Whether to preallocate the maximum possible database size in memory. This is mainly useful for memory constrained systems which might not be able to satisfy memory allocation after longer uptime periods.'));
o.depends({ 'database_limit': '0', '!reverse': 'true' });
o = s.taboption('advanced', form.Flag, 'database_compress', _('Compress database'),
_('Whether to gzip compress archive databases. Compressing the database files makes accessing old data slightly slower but helps to reduce storage requirements.'));
o = s.taboption('advanced', form.Value, 'database_generations', _('Stored periods'),
_('Maximum number of accounting periods to keep, use zero to keep databases forever.'));
o = s.taboption('advanced', form.Value, 'commit_interval', _('Commit interval'),
_('Interval at which the temporary in-memory database is committed to the persistent database directory.'));
o.value('24h', _('24h - least flash wear at the expense of data loss risk'));
o.value('12h', _('12h - compromise between risk of data loss and flash wear'));
o.value('10m', _('10m - frequent commits at the expense of flash wear'));
o.value('60s', _('60s - commit minutely, useful for non-flash storage'));
o = s.taboption('advanced', form.Value, 'refresh_interval', _('Refresh interval'),
_('Interval at which traffic counters of still established connections are refreshed from netlink information.'));
o.value('30s', _('30s - refresh twice per minute for reasonably current stats'));
o.value('5m', _('5m - rarely refresh to avoid frequently clearing conntrack counters'));
o = s.taboption('advanced', form.Value, 'database_directory', _('Database directory'),
_('Database storage directory. One file per accounting period will be placed into this directory.'));
o = s.taboption('protocol', form.TextValue, '_protocols');
o.rows = 50;
o.load = function(section_id) {
return fs.trimmed('/usr/share/nlbwmon/protocols');
};
o.write = writeProtocols;
o.remove = writeProtocols;
return m.render();
}
});

View file

@ -0,0 +1,980 @@
'use strict';
'require view';
'require network';
'require request';
'require fs';
'require ui';
'require rpc';
'require dom';
var callNetworkRrdnsLookup = rpc.declare({
object: 'network.rrdns',
method: 'lookup',
params: [ 'addrs', 'timeout', 'limit' ],
expect: { '': {} }
});
var chartRegistry = {},
trafficPeriods = [],
trafficData = { columns: [], data: [] },
hostNames = {},
hostInfo = {},
ouiData = [];
return view.extend({
load: function() {
return Promise.all([
this.loadHosts(),
this.loadPeriods(),
this.loadData(),
this.loadOUI()
]);
},
loadHosts: function() {
return L.resolveDefault(network.getHostHints()).then(function(res) {
if (res) {
var hints = res.getMACHints();
for (var i = 0; i < hints.length; i++) {
hostInfo[hints[i][0]] = {
name: res.getHostnameByMACAddr(hints[i][0]),
ipv6: res.getIP6AddrByMACAddr(hints[i][0]),
ipv4: res.getIPAddrByMACAddr(hints[i][0])
};
}
}
});
},
loadOUI: function() {
var url = 'https://raw.githubusercontent.com/jow-/oui-database/master/oui.json';
return L.resolveDefault(request.get(url, { cache: true }), []).then(function(res) {
res = res.json();
if (Array.isArray(res))
ouiData = res;
});
},
loadPeriods: function() {
return L.resolveDefault(fs.exec_direct('/usr/libexec/nlbwmon-action', [ 'periods' ], 'json')).then(function(res) {
if (L.isObject(res) && Array.isArray(res.periods))
trafficPeriods = res.periods;
});
},
loadData: function(period) {
var args = [ 'download', '-g', 'family,mac,ip,layer7', '-o', '-rx_bytes,-tx_bytes' ];
if (period)
args.push('-t', period);
return fs.exec_direct('/usr/libexec/nlbwmon-action', args, 'json').then(L.bind(function(res) {
if (!L.isObject(res) || !Array.isArray(res.columns) || !Array.isArray(res.data))
throw new Error(_('Malformed data received'));
trafficData = res;
var addrs = this.query(null, [ 'ip' ], null),
ipAddrs = [];
for (var i = 0; i < addrs.length; i++)
if (ipAddrs.indexOf(addrs[i].ip) < 0)
ipAddrs.push(addrs[i].ip);
if (ipAddrs.length)
return L.resolveDefault(callNetworkRrdnsLookup(ipAddrs, 1000, 1000), {}).then(function(res) {
hostNames = res;
});
}, this)).catch(function(err) {
ui.addNotification(null, _('Unable to fetch traffic statistic data: %s').format(err.message));
});
},
off: function(elem) {
var val = [0, 0];
do {
if (!isNaN(elem.offsetLeft) && !isNaN(elem.offsetTop)) {
val[0] += elem.offsetLeft;
val[1] += elem.offsetTop;
}
}
while ((elem = elem.offsetParent) != null);
return val;
},
kpi: function(id, val1, val2, val3) {
var e = L.dom.elem(id) ? id : document.getElementById(id);
if (val1 && val2 && val3)
e.innerHTML = _('%s, %s and %s').format(val1, val2, val3);
else if (val1 && val2)
e.innerHTML = _('%s and %s').format(val1, val2);
else if (val1)
e.innerHTML = val1;
e.parentNode.style.display = val1 ? 'list-item' : '';
},
pie: function(id, data) {
var total = data.reduce(function(n, d) { return n + d.value }, 0);
data.sort(function(a, b) { return b.value - a.value });
if (total === 0)
data = [{
value: 1,
color: '#cccccc',
label: [ _('no traffic') ]
}];
for (var i = 0; i < data.length; i++) {
if (!data[i].color) {
var hue = 120 / (data.length-1) * i;
data[i].color = 'hsl(%u, 80%%, 50%%)'.format(hue);
data[i].label.push(hue);
}
}
var node = L.dom.elem(id) ? id : document.getElementById(id),
key = L.dom.elem(id) ? id.id : id,
ctx = node.getContext('2d');
if (chartRegistry.hasOwnProperty(key))
chartRegistry[key].destroy();
chartRegistry[key] = new Chart(ctx).Doughnut(data, {
segmentStrokeWidth: 1,
percentageInnerCutout: 30
});
return chartRegistry[key];
},
oui: function(mac) {
var m, l = 0, r = ouiData.length / 3 - 1;
var mac1 = parseInt(mac.replace(/[^a-fA-F0-9]/g, ''), 16);
while (l <= r) {
m = l + Math.floor((r - l) / 2);
var mask = (0xffffffffffff -
(Math.pow(2, 48 - ouiData[m * 3 + 1]) - 1));
var mac1_hi = ((mac1 / 0x10000) & (mask / 0x10000)) >>> 0;
var mac1_lo = ((mac1 & 0xffff) & (mask & 0xffff)) >>> 0;
var mac2 = parseInt(ouiData[m * 3], 16);
var mac2_hi = (mac2 / 0x10000) >>> 0;
var mac2_lo = (mac2 & 0xffff) >>> 0;
if (mac1_hi === mac2_hi && mac1_lo === mac2_lo)
return ouiData[m * 3 + 2];
if (mac2_hi > mac1_hi ||
(mac2_hi === mac1_hi && mac2_lo > mac1_lo))
r = m - 1;
else
l = m + 1;
}
return null;
},
query: function(filter, group, order) {
var keys = [], columns = {}, records = {}, result = [];
if (typeof(group) !== 'function' && typeof(group) !== 'object')
group = ['mac'];
for (var i = 0; i < trafficData.columns.length; i++)
columns[trafficData.columns[i]] = i;
for (var i = 0; i < trafficData.data.length; i++) {
var record = trafficData.data[i];
if (typeof(filter) === 'function' && filter(columns, record) !== true)
continue;
var key;
if (typeof(group) === 'function') {
key = group(columns, record);
}
else {
key = [];
for (var j = 0; j < group.length; j++)
if (columns.hasOwnProperty(group[j]))
key.push(record[columns[group[j]]]);
key = key.join(',');
}
if (!records.hasOwnProperty(key)) {
var rec = {};
for (var col in columns)
rec[col] = record[columns[col]];
records[key] = rec;
result.push(rec);
}
else {
records[key].conns += record[columns.conns];
records[key].rx_bytes += record[columns.rx_bytes];
records[key].rx_pkts += record[columns.rx_pkts];
records[key].tx_bytes += record[columns.tx_bytes];
records[key].tx_pkts += record[columns.tx_pkts];
}
}
if (typeof(order) === 'function')
result.sort(order);
return result;
},
renderPeriods: function() {
if (!trafficPeriods.length)
return E([]);
var choices = {},
keys = [];
for (var e, i = trafficPeriods.length - 1; e = trafficPeriods[i]; i--) {
var ymd1 = e.split(/-/);
var d1 = new Date(+ymd1[0], +ymd1[1] - 1, +ymd1[2]);
var ymd2, d2, pd;
if (i) {
ymd2 = trafficPeriods[i - 1].split(/-/);
d2 = new Date(+ymd2[0], +ymd2[1] - 1, +ymd2[2]);
d2.setDate(d2.getDate() - 1);
pd = e;
}
else {
d2 = new Date();
pd = '-';
}
keys.push(pd);
choices[pd] = '%04d-%02d-%02d - %04d-%02d-%02d'.format(
d1.getFullYear(), d1.getMonth() + 1, d1.getDate(),
d2.getFullYear(), d2.getMonth() + 1, d2.getDate()
);
}
var dropdown = new ui.Dropdown('-', choices, { sort: keys, optional: false }).render();
dropdown.addEventListener('cbi-dropdown-change', ui.createHandlerFn(this, function(ev) {
ui.hideTooltip(ev);
var period = ev.detail.value.value != '-' ? ev.detail.value.value : null;
return this.loadData(period).then(L.bind(function() {
this.renderHostData();
this.renderLayer7Data();
this.renderIPv6Data();
}, this));
}));
return E([], [
E('p', [ _('Select accounting period:'), ' ', dropdown ]),
E('hr')
]);
},
formatHostname: function(dns) {
if (dns === undefined || dns === null || dns === '')
return '-';
dns = dns.split('.')[0];
if (dns.length > 12)
return '<span title="%q">%h…</span>'.format(dns, dns.substr(0, 12));
return '%h'.format(dns);
},
renderHostData: function() {
var trafData = [], connData = [];
var rx_total = 0, tx_total = 0, conn_total = 0;
var hostData = this.query(
function(c, r) {
return (r[c.rx_bytes] > 0 || r[c.tx_bytes] > 0);
},
['mac'],
//function(c, r) {
// return (r[c.mac] !== '00:00:00:00:00:00') ? r[c.mac] : r[c.ip];
//},
function(r1, r2) {
return ((r2.rx_bytes + r2.tx_bytes) - (r1.rx_bytes + r1.tx_bytes));
}
);
var rows = [];
for (var i = 0; i < hostData.length; i++) {
var rec = hostData[i],
mac = rec.mac.toUpperCase(),
key = (mac !== '00:00:00:00:00:00') ? mac : rec.ip,
dns = hostInfo[mac] ? hostInfo[mac].name : null;
var cell = E('div', this.formatHostname(dns));
rows.push([
cell,
E('a', {
'href': '#' + rec.mac,
'data-col': 'ip',
'data-tooltip': _('Source IP')
}, (mac !== '00:00:00:00:00:00') ? mac : _('other')),
E('a', {
'href': '#' + rec.mac,
'data-col': 'layer7',
'data-tooltip': _('Protocol')
}, '%1000.2m'.format(rec.conns)),
'%1024.2mB'.format(rec.rx_bytes),
'%1000.2mP'.format(rec.rx_pkts),
'%1024.2mB'.format(rec.tx_bytes),
'%1000.2mP'.format(rec.tx_pkts)
]);
trafData.push({
value: rec.rx_bytes + rec.tx_bytes,
label: ["%s: %%.2mB".format(key), cell]
});
connData.push({
value: rec.conns,
label: ["%s: %%.2m".format(key), cell]
});
rx_total += rec.rx_bytes;
tx_total += rec.tx_bytes;
conn_total += rec.conns;
}
cbi_update_table('#host-data', rows, E('em', [
_('No data recorded yet.'), ' ',
E('a', {
'href': '#',
'click': ui.createHandlerFn(this, 'handleCommit')
}, _('Force reload…'))
]));
this.pie('traf-pie', trafData);
this.pie('conn-pie', connData);
this.kpi('rx-total', '%1024.2mB'.format(rx_total));
this.kpi('tx-total', '%1024.2mB'.format(tx_total));
this.kpi('conn-total', '%1000m'.format(conn_total));
this.kpi('host-total', '%u'.format(hostData.length));
},
renderLayer7Data: function() {
var rxData = [], txData = [];
var topConn = [[0],[0],[0]], topRx = [[0],[0],[0]], topTx = [[0],[0],[0]];
var layer7Data = this.query(
null, ['layer7'],
function(r1, r2) {
return ((r2.rx_bytes + r2.tx_bytes) - (r1.rx_bytes + r1.tx_bytes));
}
);
var rows = [];
for (var i = 0, c = 0; i < layer7Data.length; i++) {
var rec = layer7Data[i],
cell = E('div', rec.layer7 || _('other'));
rows.push([
cell,
'%1000m'.format(rec.conns),
'%1024.2mB'.format(rec.rx_bytes),
'%1000.2mP'.format(rec.rx_pkts),
'%1024.2mB'.format(rec.tx_bytes),
'%1000.2mP'.format(rec.tx_pkts)
]);
rxData.push({
value: rec.rx_bytes,
label: ["%s: %%.2mB".format(rec.layer7 || _('other')), cell]
});
txData.push({
value: rec.tx_bytes,
label: ["%s: %%.2mB".format(rec.layer7 || _('other')), cell]
});
if (rec.layer7) {
topRx.push([rec.rx_bytes, rec.layer7]);
topTx.push([rec.tx_bytes, rec.layer7]);
topConn.push([rec.conns, rec.layer7]);
}
}
cbi_update_table('#layer7-data', rows, E('em', [
_('No data recorded yet.'), ' ',
E('a', { 'href': L.url('admin/nlbw/commit') }, _('Force reload…'))
]));
this.pie('layer7-rx-pie', rxData);
this.pie('layer7-tx-pie', txData);
topRx.sort(function(a, b) { return b[0] - a[0] });
topTx.sort(function(a, b) { return b[0] - a[0] });
topConn.sort(function(a, b) { return b[0] - a[0] });
this.kpi('layer7-total', layer7Data.length);
this.kpi('layer7-most-rx', topRx[0][1], topRx[1][1], topRx[2][1]);
this.kpi('layer7-most-tx', topTx[0][1], topTx[1][1], topTx[2][1]);
this.kpi('layer7-most-conn', topConn[0][1], topConn[1][1], topConn[2][1]);
},
renderIPv6Data: function() {
var col = { },
rx4_total = 0,
tx4_total = 0,
rx6_total = 0,
tx6_total = 0,
v4_total = 0,
v6_total = 0,
ds_total = 0,
families = { },
records = { };
var ipv6Data = this.query(
null, ['family', 'mac'],
function(r1, r2) {
return ((r2.rx_bytes + r2.tx_bytes) - (r1.rx_bytes + r1.tx_bytes));
}
);
for (var i = 0, c = 0; i < ipv6Data.length; i++) {
var rec = ipv6Data[i],
mac = rec.mac.toUpperCase(),
ip = rec.ip,
fam = families[mac] || 0,
recs = records[mac] || {};
if (rec.family == 4) {
rx4_total += rec.rx_bytes;
tx4_total += rec.tx_bytes;
fam |= 1;
}
else {
rx6_total += rec.rx_bytes;
tx6_total += rec.tx_bytes;
fam |= 2;
}
recs[rec.family] = rec;
records[mac] = recs;
families[mac] = fam;
}
for (var mac in families) {
switch (families[mac])
{
case 3:
ds_total++;
break;
case 2:
v6_total++;
break;
case 1:
v4_total++;
break;
}
}
var rows = [];
for (var mac in records) {
if (mac === '00:00:00:00:00:00')
continue;
var dns = hostInfo[mac] ? hostInfo[mac].name : null,
rec4 = records[mac][4],
rec6 = records[mac][6];
rows.push([
this.formatHostname(dns),
mac,
[ E('span', _('IPv4')),
E('span', _('IPv6')) ],
[ E('span', rec4 ? '%1024.2mB'.format(rec4.rx_bytes) : '-'),
E('span', rec6 ? '%1024.2mB'.format(rec6.rx_bytes) : '-') ],
[ E('span', rec4 ? '%1000.2mP'.format(rec4.rx_pkts) : '-'),
E('span', rec6 ? '%1000.2mP'.format(rec6.rx_pkts) : '-') ],
[ E('span', rec4 ? '%1024.2mB'.format(rec4.tx_bytes) : '-'),
E('span', rec6 ? '%1024.2mB'.format(rec6.tx_bytes) : '-') ],
[ E('span', rec4 ? '%1000.2mP'.format(rec4.tx_pkts) : '-'),
E('span', rec6 ? '%1000.2mP'.format(rec6.tx_pkts) : '-') ]
]);
}
cbi_update_table('#ipv6-data', rows, E('em', [
_('No data recorded yet.'), ' ',
E('a', { 'href': L.url('admin/nlbw/commit') }, _('Force reload…'))
]));
var shareData = [], hostsData = [];
if (rx4_total > 0 || tx4_total > 0)
shareData.push({
value: rx4_total + tx4_total,
label: ["IPv4: %.2mB"],
color: 'hsl(140, 100%, 50%)'
});
if (rx6_total > 0 || tx6_total > 0)
shareData.push({
value: rx6_total + tx6_total,
label: ["IPv6: %.2mB"],
color: 'hsl(180, 100%, 50%)'
});
if (v4_total > 0)
hostsData.push({
value: v4_total,
label: [_('%d IPv4-only hosts')],
color: 'hsl(140, 100%, 50%)'
});
if (v6_total > 0)
hostsData.push({
value: v6_total,
label: [_('%d IPv6-only hosts')],
color: 'hsl(180, 100%, 50%)'
});
if (ds_total > 0)
hostsData.push({
value: ds_total,
label: [_('%d dual-stack hosts')],
color: 'hsl(50, 100%, 50%)'
});
this.pie('ipv6-share-pie', shareData);
this.pie('ipv6-hosts-pie', hostsData);
this.kpi('ipv6-hosts', '%.2f%%'.format(100 / (ds_total + v4_total + v6_total) * (ds_total + v6_total)));
this.kpi('ipv6-share', '%.2f%%'.format(100 / (rx4_total + rx6_total + tx4_total + tx6_total) * (rx6_total + tx6_total)));
this.kpi('ipv6-rx', '%1024.2mB'.format(rx6_total));
this.kpi('ipv6-tx', '%1024.2mB'.format(tx6_total));
},
renderHostDetail: function(node, tooltip) {
var key = node.getAttribute('href').substr(1),
col = node.getAttribute('data-col'),
label = node.getAttribute('data-tooltip');
var detailData = this.query(
function(c, r) {
return ((r[c.mac] === key || r[c.ip] === key) &&
(r[c.rx_bytes] > 0 || r[c.tx_bytes] > 0));
},
[col],
function(r1, r2) {
return ((r2.rx_bytes + r2.tx_bytes) - (r1.rx_bytes + r1.tx_bytes));
}
);
var rxData = [], txData = [];
dom.content(tooltip, [
E('div', { 'class': 'head' }, [
E('div', { 'class': 'pie' }, [
E('label', _('Download')),
E('canvas', { 'id': 'bubble-pie1', 'width': 100, 'height': 100 })
]),
E('div', { 'class': 'pie' }, [
E('label', _('Upload')),
E('canvas', { 'id': 'bubble-pie2', 'width': 100, 'height': 100 })
]),
E('div', { 'class': 'kpi' }, [
E('ul', [
E('li', _('Hostname: <big id="bubble-hostname">example.org</big>')),
E('li', _('Vendor: <big id="bubble-vendor">Example Corp.</big>'))
])
])
]),
E('div', { 'class': 'table' }, [
E('div', { 'class': 'tr table-titles' }, [
E('div', { 'class': 'th' }, label || col),
E('div', { 'class': 'th' }, _('Conn.')),
E('div', { 'class': 'th' }, _('Down. (Bytes)')),
E('div', { 'class': 'th' }, _('Down. (Pkts.)')),
E('div', { 'class': 'th' }, _('Up. (Bytes)')),
E('div', { 'class': 'th' }, _('Up. (Pkts.)')),
])
])
]);
var rows = [];
for (var i = 0; i < detailData.length; i++) {
var rec = detailData[i],
cell = E('div', rec[col] || _('other'));
rows.push([
cell,
'%1000.2m'.format(rec.conns),
'%1024.2mB'.format(rec.rx_bytes),
'%1000.2mP'.format(rec.rx_pkts),
'%1024.2mB'.format(rec.tx_bytes),
'%1000.2mP'.format(rec.tx_pkts)
]);
rxData.push({
label: ['%s: %%1024.2mB'.format(rec[col] || _('other')), cell],
value: rec.rx_bytes
});
txData.push({
label: ['%s: %%1024.2mB'.format(rec[col] || _('other')), cell],
value: rec.tx_bytes
});
}
cbi_update_table(tooltip.lastElementChild, rows);
this.pie(tooltip.querySelector('#bubble-pie1'), rxData);
this.pie(tooltip.querySelector('#bubble-pie2'), txData);
var mac = key.toUpperCase();
var name = hostInfo.hasOwnProperty(mac) ? hostInfo[mac].name : null;
if (!name)
for (var i = 0; i < detailData.length; i++)
if ((name = hostNames[detailData[i].ip]) !== undefined)
break;
if (mac !== '00:00:00:00:00:00') {
this.kpi(tooltip.querySelector('#bubble-hostname'), name);
this.kpi(tooltip.querySelector('#bubble-vendor'), this.oui(mac));
}
else {
this.kpi(tooltip.querySelector('#bubble-hostname'));
this.kpi(tooltip.querySelector('#bubble-vendor'));
}
var rect = node.getBoundingClientRect(), x, y;
if ('ontouchstart' in window || window.innerWidth <= 992) {
var vpHeight = Math.max(document.documentElement.clientHeight, window.innerHeight || 0),
scrollFrom = window.pageYOffset,
scrollTo = scrollFrom + rect.top - vpHeight * 0.5,
start = null;
tooltip.style.top = (rect.top + rect.height + window.pageYOffset) + 'px';
tooltip.style.left = 0;
var scrollStep = function(timestamp) {
if (!start)
start = timestamp;
var duration = Math.max(timestamp - start, 1);
if (duration < 100) {
document.body.scrollTop = scrollFrom + (scrollTo - scrollFrom) * (duration / 100);
window.requestAnimationFrame(scrollStep);
}
else {
document.body.scrollTop = scrollTo;
}
};
window.requestAnimationFrame(scrollStep);
}
else {
x = rect.left + rect.width + window.pageXOffset,
y = rect.top + window.pageYOffset;
if ((y + tooltip.offsetHeight) > (window.innerHeight + window.pageYOffset))
y -= ((y + tooltip.offsetHeight) - (window.innerHeight + window.pageYOffset));
tooltip.style.top = y + 'px';
tooltip.style.left = x + 'px';
}
return false;
},
setupCharts: function() {
Chart.defaults.global.customTooltips = L.bind(function(tooltip) {
var tooltipEl = document.getElementById('chartjs-tooltip');
if (!tooltipEl) {
tooltipEl = document.createElement('div');
tooltipEl.setAttribute('id', 'chartjs-tooltip');
document.body.appendChild(tooltipEl);
}
if (!tooltip) {
if (tooltipEl.row)
tooltipEl.row.style.backgroundColor = '';
tooltipEl.style.opacity = 0;
return;
}
var pos = this.off(tooltip.chart.canvas);
tooltipEl.className = tooltip.yAlign;
tooltipEl.innerHTML = tooltip.text[0];
tooltipEl.style.opacity = 1;
tooltipEl.style.left = pos[0] + tooltip.x + 'px';
tooltipEl.style.top = pos[1] + tooltip.y - tooltip.caretHeight - tooltip.caretPadding + 'px';
var row = findParent(tooltip.text[1], '.tr'),
hue = tooltip.text[2];
if (row && !isNaN(hue)) {
row.style.backgroundColor = 'hsl(%u, 100%%, 80%%)'.format(hue);
tooltipEl.row = row;
}
}, this);
Chart.defaults.global.tooltipFontSize = 10;
Chart.defaults.global.tooltipTemplate = function(tip) {
tip.label[0] = tip.label[0].format(tip.value);
return tip.label;
};
this.renderHostData();
this.renderLayer7Data();
this.renderIPv6Data();
},
handleDownload: function(type, group, order) {
var args = [ 'download', '-f', type ];
if (group)
args.push('-g', group);
if (order)
args.push('-o', order);
return fs.exec_direct('/usr/libexec/nlbwmon-action', args, 'blob').then(function(blob) {
var data = blob.slice(0, blob.size, (type == 'csv') ? 'text/csv' : 'application/json'),
name = 'nlbwmon-data.%s'.format(type),
url = window.URL.createObjectURL(data),
link = E('a', { 'style': 'display:none', 'href': url, 'download': name });
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
window.URL.revokeObjectURL(url);
}).catch(function(err) {
ui.addNotification(null, E('p', [ _('Failed to download traffic data: %s').format(err.message) ]));
});
},
handleCommit: function() {
return fs.exec('/usr/libexec/nlbwmon-action', [ 'commit' ]).then(function(res) {
if (res.code != 0)
throw new Error(res.stderr || res.stdout);
window.location.reload(true);
}).catch(function(err) {
ui.addNotification(null, E('p', [ _('Failed to commit database: %s').format(err.message) ]));
});
},
render: function() {
document.addEventListener('tooltip-open', L.bind(function(ev) {
this.renderHostDetail(ev.detail.target, ev.target);
}, this));
if ('ontouchstart' in window) {
document.addEventListener('touchstart', function(ev) {
var tooltip = document.querySelector('.cbi-tooltip');
if (tooltip === ev.target || tooltip.contains(ev.target))
return;
ui.hideTooltip(ev);
});
}
var node = E([], [
E('link', { 'rel': 'stylesheet', 'href': L.resource('view/nlbw.css') }),
E('script', {
'type': 'text/javascript',
'src': L.resource('nlbw.chart.min.js'),
'load': L.bind(this.setupCharts, this)
}),
E('h2', [ _('Netlink Bandwidth Monitor') ]),
this.renderPeriods(),
E('div', [
E('div', { 'class': 'cbi-section', 'data-tab': 'traffic', 'data-tab-title': _('Traffic Distribution') }, [
E('div', { 'class': 'head' }, [
E('div', { 'class': 'pie' }, [
E('label', [ _('Traffic / Host') ]),
E('canvas', { 'id': 'traf-pie', 'width': 200, 'height': 200 })
]),
E('div', { 'class': 'pie' }, [
E('label', [ _('Connections / Host') ]),
E('canvas', { 'id': 'conn-pie', 'width': 200, 'height': 200 })
]),
E('div', { 'class': 'kpi' }, [
E('ul', [
E('li', _('<big id="host-total">0</big> hosts')),
E('li', _('<big id="rx-total">0</big> download')),
E('li', _('<big id="tx-total">0</big> upload')),
E('li', _('<big id="conn-total">0</big> connections'))
])
])
]),
E('div', { 'class': 'table', 'id': 'host-data' }, [
E('div', { 'class': 'tr table-titles' }, [
E('div', { 'class': 'th left hostname' }, [ _('Host') ]),
E('div', { 'class': 'th right' }, [ _('MAC') ]),
E('div', { 'class': 'th right' }, [ _('Connections') ]),
E('div', { 'class': 'th right' }, [ _('Download (Bytes)') ]),
E('div', { 'class': 'th right' }, [ _('Download (Packets)') ]),
E('div', { 'class': 'th right' }, [ _('Upload (Bytes)') ]),
E('div', { 'class': 'th right' }, [ _('Upload (Packets)') ]),
]),
E('div', { 'class': 'tr placeholder' }, [
E('div', { 'class': 'td' }, [
E('em', { 'class': 'spinning' }, [ _('Collecting data...') ])
])
])
])
]),
E('div', { 'class': 'cbi-section', 'data-tab': 'layer7', 'data-tab-title': _('Application Protocols') }, [
E('div', { 'class': 'head' }, [
E('div', { 'class': 'pie' }, [
E('label', [ _('Download / Application') ]),
E('canvas', { 'id': 'layer7-rx-pie', 'width': 200, 'height': 200 })
]),
E('div', { 'class': 'pie' }, [
E('label', [ _('Upload / Application') ]),
E('canvas', { 'id': 'layer7-tx-pie', 'width': 200, 'height': 200 })
]),
E('div', { 'class': 'kpi' }, [
E('ul', [
E('li', _('<big id="layer7-total">0</big> different application protocols')),
E('li', _('<big id="layer7-most-rx">0</big> cause the most download')),
E('li', _('<big id="layer7-most-tx">0</big> cause the most upload')),
E('li', _('<big id="layer7-most-conn">0</big> cause the most connections'))
])
])
]),
E('div', { 'class': 'table', 'id': 'layer7-data' }, [
E('div', { 'class': 'tr table-titles' }, [
E('div', { 'class': 'th left' }, [ _('Application') ]),
E('div', { 'class': 'th right' }, [ _('Connections') ]),
E('div', { 'class': 'th right' }, [ _('Download (Bytes)') ]),
E('div', { 'class': 'th right' }, [ _('Download (Packets)') ]),
E('div', { 'class': 'th right' }, [ _('Upload (Bytes)') ]),
E('div', { 'class': 'th right' }, [ _('Upload (Packets)') ]),
]),
E('div', { 'class': 'tr placeholder' }, [
E('div', { 'class': 'td' }, [
E('em', { 'class': 'spinning' }, [ _('Collecting data...') ])
])
])
])
]),
E('div', { 'class': 'cbi-section', 'data-tab': 'ipv6', 'data-tab-title': _('IPv6') }, [
E('div', { 'class': 'head' }, [
E('div', { 'class': 'pie' }, [
E('label', [ _('IPv4 vs. IPv6') ]),
E('canvas', { 'id': 'ipv6-share-pie', 'width': 200, 'height': 200 })
]),
E('div', { 'class': 'pie' }, [
E('label', [ _('Dualstack enabled hosts') ]),
E('canvas', { 'id': 'ipv6-hosts-pie', 'width': 200, 'height': 200 })
]),
E('div', { 'class': 'kpi' }, [
E('ul', [
E('li', _('<big id="ipv6-hosts">0%</big> IPv6 support rate among hosts')),
E('li', _('<big id="ipv6-share">0%</big> of the total traffic is IPv6')),
E('li', _('<big id="ipv6-rx">0B</big> total IPv6 download')),
E('li', _('<big id="ipv6-tx">0B</big> total IPv6 upload'))
])
])
]),
E('div', { 'class': 'table', 'id': 'ipv6-data' }, [
E('div', { 'class': 'tr table-titles' }, [
E('div', { 'class': 'th left' }, [ _('Host') ]),
E('div', { 'class': 'th right' }, [ _('MAC') ]),
E('div', { 'class': 'th double right hide-xs' }, [ _('Family') ]),
E('div', { 'class': 'th double right' }, [ _('Download (Bytes)') ]),
E('div', { 'class': 'th double right' }, [ _('Download (Packets)') ]),
E('div', { 'class': 'th double right' }, [ _('Upload (Bytes)') ]),
E('div', { 'class': 'th double right' }, [ _('Upload (Packets)') ]),
]),
E('div', { 'class': 'tr placeholder' }, [
E('div', { 'class': 'td' }, [
E('em', { 'class': 'spinning' }, [ _('Collecting data...') ])
])
])
])
]),
E('div', { 'class': 'cbi-section', 'data-tab': 'export', 'data-tab-title': _('Export') }, [
E('ul', [
E('li', [
E('a', {
'href': '#',
'click': ui.createHandlerFn(this, 'handleDownload', 'csv', 'mac', '-rx,-tx')
}, [ _('CSV, grouped by MAC') ])
]),
E('li', [
E('a', {
'href': '#',
'click': ui.createHandlerFn(this, 'handleDownload', 'csv', 'ip', '-rx,-tx')
}, [ _('CSV, grouped by IP') ])
]),
E('li', [
E('a', {
'href': '#',
'click': ui.createHandlerFn(this, 'handleDownload', 'csv', 'layer7', '-rx,-tx')
}, [ _('CSV, grouped by protocol') ])
]),
E('li', [
E('a', {
'href': '#',
'click': ui.createHandlerFn(this, 'handleDownload', 'json', null, null)
}, [ _('JSON dump') ])
])
])
])
])
]);
ui.tabs.initTabGroup(node.lastElementChild.childNodes);
return node;
},
handleSave: null,
handleSaveApply: null,
handleReset: null
});

View file

@ -1,227 +0,0 @@
-- Copyright 2017 Jo-Philipp Wich <jo@mein.io>
-- Licensed to the public under the Apache License 2.0.
module("luci.controller.nlbw", package.seeall)
function index()
entry({"admin", "nlbw"}, firstchild(), _("Bandwidth Monitor"), 80).acl_depends = { "luci-app-nlbwmon" }
entry({"admin", "nlbw", "display"}, template("nlbw/display"), _("Display"), 1)
entry({"admin", "nlbw", "config"}, cbi("nlbw/config"), _("Configuration"), 2)
entry({"admin", "nlbw", "backup"}, template("nlbw/backup"), _("Backup"), 3)
entry({"admin", "nlbw", "data"}, call("action_data"), nil, 4)
entry({"admin", "nlbw", "list"}, call("action_list"), nil, 5)
entry({"admin", "nlbw", "ptr"}, call("action_ptr"), nil, 6).leaf = true
entry({"admin", "nlbw", "download"}, call("action_download"), nil, 7)
entry({"admin", "nlbw", "restore"}, post("action_restore"), nil, 8)
entry({"admin", "nlbw", "commit"}, call("action_commit"), nil, 9)
end
local function exec(cmd, args, writer)
local os = require "os"
local nixio = require "nixio"
local fdi, fdo = nixio.pipe()
local pid = nixio.fork()
if pid > 0 then
fdo:close()
while true do
local buffer = fdi:read(2048)
if not buffer or #buffer == 0 then
break
end
if writer then
writer(buffer)
end
end
nixio.waitpid(pid)
elseif pid == 0 then
nixio.dup(fdo, nixio.stdout)
fdi:close()
fdo:close()
nixio.exece(cmd, args, nil)
nixio.stdout:close()
os.exit(1)
end
end
function action_data()
local http = require "luci.http"
local types = {
csv = "text/csv",
json = "application/json"
}
local args = { }
local mtype = http.formvalue("type") or "json"
local delim = http.formvalue("delim") or ","
local period = http.formvalue("period")
local group_by = http.formvalue("group_by")
local order_by = http.formvalue("order_by")
if types[mtype] then
args[#args+1] = "-c"
args[#args+1] = mtype
else
http.status(400, "Unsupported type")
return
end
if delim and #delim > 0 then
args[#args+1] = "-s%s" % delim
end
if period and #period > 0 then
args[#args+1] = "-t"
args[#args+1] = period
end
if group_by and #group_by > 0 then
args[#args+1] = "-g"
args[#args+1] = group_by
end
if order_by and #order_by > 0 then
args[#args+1] = "-o"
args[#args+1] = order_by
end
http.prepare_content(types[mtype])
http.header("Content-Disposition", "attachment; filename=\"data.%s\"" % mtype)
exec("/usr/sbin/nlbw", args, http.write)
end
function action_list()
local http = require "luci.http"
local fd = io.popen("/usr/sbin/nlbw -c list")
local periods = { }
if fd then
while true do
local period = fd:read("*l")
if not period then
break
end
periods[#periods+1] = period
end
fd:close()
end
http.prepare_content("application/json")
http.write_json(periods)
end
function action_ptr(...)
local http = require "luci.http"
local util = require "luci.util"
http.prepare_content("application/json")
http.write_json(util.ubus("network.rrdns", "lookup", {
addrs = {...}, timeout = 3000
}))
end
function action_download()
local nixio = require "nixio"
local http = require "luci.http"
local sys = require "luci.sys"
local uci = require "luci.model.uci".cursor()
local dir = uci:get_first("nlbwmon", "nlbwmon", "database_directory")
or "/var/lib/nlbwmon"
if dir and nixio.fs.stat(dir, "type") == "dir" then
local n = "nlbwmon-backup-%s-%s.tar.gz"
%{ sys.hostname(), os.date("%Y-%m-%d") }
http.prepare_content("application/octet-stream")
http.header("Content-Disposition", "attachment; filename=\"%s\"" % n)
exec("/bin/tar", { "-C", dir, "-c", "-z", ".", "-f", "-" }, http.write)
else
http.status(500, "Unable to find database directory")
end
end
function action_restore()
local nixio = require "nixio"
local http = require "luci.http"
local i18n = require "luci.i18n"
local tpl = require "luci.template"
local uci = require "luci.model.uci".cursor()
local tmp = "/tmp/nlbw-restore.tar.gz"
local dir = uci:get_first("nlbwmon", "nlbwmon", "database_directory")
or "/var/lib/nlbwmon"
local fp
http.setfilehandler(
function(meta, chunk, eof)
if not fp and meta and meta.name == "archive" then
fp = io.open(tmp, "w")
end
if fp and chunk then
fp:write(chunk)
end
if fp and eof then
fp:close()
end
end)
local files = { }
local tar = io.popen("/bin/tar -tzf %s" % tmp, "r")
if tar then
while true do
local file = tar:read("*l")
if not file then
break
elseif file:match("^%d%d%d%d%d%d%d%d%.db%.gz$") or
file:match("^%./%d%d%d%d%d%d%d%d%.db%.gz$") then
files[#files+1] = file
end
end
tar:close()
end
if #files == 0 then
http.status(500, "Internal Server Error")
tpl.render("nlbw/backup", {
message = i18n.translate("Invalid or empty backup archive")
})
return
end
local output = { }
exec("/etc/init.d/nlbwmon", { "stop" })
exec("/bin/mkdir", { "-p", dir })
exec("/bin/tar", { "-C", dir, "-vxzf", tmp, unpack(files) },
function(chunk) output[#output+1] = chunk:match("%S+") end)
exec("/bin/rm", { "-f", tmp })
exec("/etc/init.d/nlbwmon", { "start" })
tpl.render("nlbw/backup", {
message = i18n.translatef(
"The following database files have been restored: %s",
table.concat(output, ", "))
})
end
function action_commit()
local http = require "luci.http"
local disp = require "luci.dispatcher"
http.redirect(disp.build_url("admin/nlbw/display"))
exec("/usr/sbin/nlbw", { "-c", "commit" })
end

View file

@ -1,215 +0,0 @@
-- Copyright 2017 Jo-Philipp Wich <jo@mein.io>
-- Licensed to the public under the Apache License 2.0.
local utl = require "luci.util"
local sys = require "luci.sys"
local fs = require "nixio.fs"
local ip = require "luci.ip"
local nw = require "luci.model.network"
local s, m, period, warning, date, days, interval, ifaces, subnets, limit, prealloc, compress, generations, commit, refresh, directory, protocols
m = Map("nlbwmon", translate("Netlink Bandwidth Monitor - Configuration"),
translate("The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic accounting program keeping track of bandwidth usage per host and protocol."))
nw.init(luci.model.uci.cursor_state())
s = m:section(TypedSection, "nlbwmon")
s.anonymous = true
s.addremove = false
s:tab("general", translate("General Settings"))
s:tab("advanced", translate("Advanced Settings"))
s:tab("protocol", translate("Protocol Mapping"),
translate("Protocol mappings to distinguish traffic types per host, one mapping per line. The first value specifies the IP protocol, the second value the port number and the third column is the name of the mapped protocol."))
period = s:taboption("general", ListValue, "_period", translate("Accounting period"),
translate("Choose \"Day of month\" to restart the accounting period monthly on a specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the accounting period exactly every N days, beginning at a given date."))
period:value("relative", translate("Day of month"))
period:value("absolute", translate("Fixed interval"))
period.write = function(self, cfg, val)
if period:formvalue(cfg) == "relative" then
m:set(cfg, "database_interval", interval:formvalue(cfg))
else
m:set(cfg, "database_interval", "%s/%s" %{
date:formvalue(cfg),
days:formvalue(cfg)
})
end
end
period.cfgvalue = function(self, cfg)
local val = m:get(cfg, "database_interval") or ""
if val:match("^%d%d%d%d%-%d%d%-%d%d/%d+$") then
return "absolute"
end
return "relative"
end
warning = s:taboption("general", DummyValue, "_warning", translate("Warning"))
warning.default = translatef("Changing the accounting interval type will invalidate existing databases!<br /><strong><a href=\"%s\">Download backup</a></strong>.", luci.dispatcher.build_url("admin/nlbw/backup"))
warning.rawhtml = true
if (m.uci:get_first("nlbwmon", "nlbwmon", "database_interval") or ""):match("^%d%d%d%d-%d%d-%d%d/%d+$") then
warning:depends("_period", "relative")
else
warning:depends("_period", "absolute")
end
interval = s:taboption("general", Value, "_interval", translate("Due date"),
translate("Day of month to restart the accounting period. Use negative values to count towards the end of month, e.g. \"-5\" to specify the 27th of July or the 24th of February."))
interval.datatype = "or(range(1,31),range(-31,-1))"
interval.placeholder = "1"
interval:value("1", translate("1 - Restart every 1st of month"))
interval:value("-1", translate("-1 - Restart every last day of month"))
interval:value("-7", translate("-7 - Restart a week before end of month"))
interval.rmempty = false
interval:depends("_period", "relative")
interval.write = period.write
interval.cfgvalue = function(self, cfg)
local val = tonumber(m:get(cfg, "database_interval"))
return val and tostring(val)
end
date = s:taboption("general", Value, "_date", translate("Start date"),
translate("Start date of the first accounting period, e.g. begin of ISP contract."))
date.datatype = "dateyyyymmdd"
date.placeholder = "2016-03-15"
date.rmempty = false
date:depends("_period", "absolute")
date.write = period.write
date.cfgvalue = function(self, cfg)
local val = m:get(cfg, "database_interval") or ""
return (val:match("^(%d%d%d%d%-%d%d%-%d%d)/%d+$"))
end
days = s:taboption("general", Value, "_days", translate("Interval"),
translate("Length of accounting interval in days."))
days.datatype = "min(1)"
days.placeholder = "30"
days.rmempty = false
days:depends("_period", "absolute")
days.write = period.write
days.cfgvalue = function(self, cfg)
local val = m:get(cfg, "database_interval") or ""
return (val:match("^%d%d%d%d%-%d%d%-%d%d/(%d+)$"))
end
ifaces = s:taboption("general", Value, "_ifaces", translate("Local interfaces"),
translate("Only conntrack streams from or to any of these networks are counted."))
ifaces.template = "cbi/network_netlist"
ifaces.widget = "checkbox"
ifaces.nocreate = true
ifaces.cfgvalue = function(self, cfg)
return m:get(cfg, "local_network")
end
ifaces.write = function(self, cfg)
local item
local items = {}
for item in utl.imatch(subnets:formvalue(cfg)) do
items[#items+1] = item
end
for item in utl.imatch(ifaces:formvalue(cfg)) do
items[#items+1] = item
end
m:set(cfg, "local_network", items)
end
subnets = s:taboption("general", DynamicList, "_subnets", translate("Local subnets"),
translate("Only conntrack streams from or to any of these subnets are counted."))
subnets.datatype = "ipaddr"
subnets.cfgvalue = function(self, cfg)
local subnet
local subnets = {}
for subnet in utl.imatch(m:get(cfg, "local_network")) do
subnet = ip.new(subnet)
subnets[#subnets+1] = subnet and subnet:string()
end
return subnets
end
subnets.write = ifaces.write
limit = s:taboption("advanced", Value, "database_limit", translate("Maximum entries"),
translate("The maximum amount of entries that should be put into the database, setting the limit to 0 will allow databases to grow indefinitely."))
limit.datatype = "uinteger"
limit.placeholder = "10000"
prealloc = s:taboption("advanced", Flag, "database_prealloc", translate("Preallocate database"),
translate("Whether to preallocate the maximum possible database size in memory. This is mainly useful for memory constrained systems which might not be able to satisfy memory allocation after longer uptime periods."))
prealloc:depends({["database_limit"] = "0", ["!reverse"] = true })
compress = s:taboption("advanced", Flag, "database_compress", translate("Compress database"),
translate("Whether to gzip compress archive databases. Compressing the database files makes accessing old data slightly slower but helps to reduce storage requirements."))
compress.default = compress.enabled
generations = s:taboption("advanced", Value, "database_generations", translate("Stored periods"),
translate("Maximum number of accounting periods to keep, use zero to keep databases forever."))
generations.datatype = "uinteger"
generations.placeholder = "10"
commit = s:taboption("advanced", Value, "commit_interval", translate("Commit interval"),
translate("Interval at which the temporary in-memory database is committed to the persistent database directory."))
commit.placeholder = "24h"
commit:value("24h", translate("24h - least flash wear at the expense of data loss risk"))
commit:value("12h", translate("12h - compromise between risk of data loss and flash wear"))
commit:value("10m", translate("10m - frequent commits at the expense of flash wear"))
commit:value("60s", translate("60s - commit minutely, useful for non-flash storage"))
refresh = s:taboption("advanced", Value, "refresh_interval", translate("Refresh interval"),
translate("Interval at which traffic counters of still established connections are refreshed from netlink information."))
refresh.placeholder = "30s"
refresh:value("30s", translate("30s - refresh twice per minute for reasonably current stats"))
refresh:value("5m", translate("5m - rarely refresh to avoid frequently clearing conntrack counters"))
directory = s:taboption("advanced", Value, "database_directory", translate("Database directory"),
translate("Database storage directory. One file per accounting period will be placed into this directory."))
directory.placeholder = "/var/lib/nlbwmon"
protocols = s:taboption("protocol", TextValue, "_protocols")
protocols.rows = 50
protocols.cfgvalue = function(self, cfg)
return fs.readfile("/usr/share/nlbwmon/protocols")
end
protocols.write = function(self, cfg, value)
fs.writefile("/usr/share/nlbwmon/protocols", (value or ""):gsub("\r\n", "\n"))
end
protocols.remove = protocols.write
return m

View file

@ -1,33 +0,0 @@
<%#
Copyright 2017 Jo-Philipp Wich <jo@mein.io>
Licensed to the public under the Apache License 2.0.
-%>
<%+header%>
<h2 name="content"><%:Netlink Bandwidth Monitor - Backup / Restore %></h2>
<fieldset class="cbi-section">
<legend><%:Restore Database Backup%></legend>
<p>
<form method="POST" action="<%=url("admin/nlbw/restore")%>" enctype="multipart/form-data">
<input type="hidden" name="token" value="<%=token%>" />
<input type="file" name="archive" accept="application/gzip,.gz" />
<input type="submit" value="<%:Restore%>" class="cbi-button cbi-button-apply" />
</form>
<% if message then %>
<div class="alert-message"><%=message%></div>
<% end %>
</p>
<legend><%:Download Database Backup%></legend>
<p>
<form method="GET" action="<%=url("admin/nlbw/download")%>">
<input type="submit" value="<%:Generate Backup%>" class="cbi-button cbi-button-link" />
</form>
</p>
</fieldset>
<%+footer%>

View file

@ -1,189 +0,0 @@
<%#
Copyright 2017-2018 Jo-Philipp Wich <jo@mein.io>
Licensed to the public under the Apache License 2.0.
-%>
<%+header%>
<link rel="stylesheet" href="<%=resource%>/view/nlbw.css" />
<script type="text/javascript" src="<%=resource%>/nlbw.chart.min.js"></script>
<script type="text/javascript" src="<%=resource%>/view/nlbw.js"></script>
<h2 name="content"><%:Netlink Bandwidth Monitor%></h2>
<p>
<%:Select accounting period:%>
<select id="nlbw.period" style="display:none"></select>
</p>
<hr />
<div>
<div class="cbi-section" data-tab="traffic" data-tab-title="<%:Traffic Distribution%>">
<div class="head">
<div class="pie">
<label><%:Traffic / Host%></label>
<canvas id="traf-pie" width="200" height="200"></canvas>
</div>
<div class="pie">
<label><%:Connections / Host%></label>
<canvas id="conn-pie" width="200" height="200"></canvas>
</div>
<div class="kpi">
<ul>
<li><%_<big id="host-total">0</big> hosts%></li>
<li><%_<big id="rx-total">0</big> download%></li>
<li><%_<big id="tx-total">0</big> upload%></li>
<li><%_<big id="conn-total">0</big> connections%></li>
</ul>
</div>
</div>
<div class="table" id="host-data">
<div class="tr table-titles">
<div class="th left hostname"><%:Host%></div>
<div class="th right"><%:MAC%></div>
<div class="th right"><%:Connections%></div>
<div class="th right"><%:Download (Bytes)%></div>
<div class="th right"><%:Download (Packets)%></div>
<div class="th right"><%:Upload (Bytes)%></div>
<div class="th right"><%:Upload (Packets)%></div>
</div>
<div class="tr placeholder">
<div class="td">
<em class="spinning"><%:Collecting data...%></em>
</div>
</div>
</div>
</div>
<div class="cbi-section" data-tab="layer7" data-tab-title="<%:Application Protocols%>">
<div class="head">
<div class="pie">
<label><%:Download / Application%></label>
<canvas id="layer7-rx-pie" width="200" height="200"></canvas>
</div>
<div class="pie">
<label><%:Upload / Application%></label>
<canvas id="layer7-tx-pie" width="200" height="200"></canvas>
</div>
<div class="kpi">
<ul>
<li><%_<big id="layer7-total">0</big> different application protocols%></li>
<li><%_<big id="layer7-most-rx">0</big> cause the most download%></li>
<li><%_<big id="layer7-most-tx">0</big> cause the most upload%></li>
<li><%_<big id="layer7-most-conn">0</big> cause the most connections%></li>
</ul>
</div>
</div>
<div class="table" id="layer7-data">
<div class="tr table-titles">
<div class="th left"><%:Application%></div>
<div class="th right"><%:Connections%></div>
<div class="th right"><%:Download (Bytes)%></div>
<div class="th right"><%:Download (Packets)%></div>
<div class="th right"><%:Upload (Bytes)%></div>
<div class="th right"><%:Upload (Packets)%></div>
</div>
<div class="tr placeholder">
<div class="td">
<em class="spinning"><%:Collecting data...%></em>
</div>
</div>
</div>
</div>
<div class="cbi-section" data-tab="ipv6" data-tab-title="<%:IPv6%>">
<div class="head">
<div class="pie">
<label><%:IPv4 vs. IPv6%></label>
<canvas id="ipv6-share-pie" width="200" height="200"></canvas>
</div>
<div class="pie">
<label><%:Dualstack enabled hosts%></label>
<canvas id="ipv6-hosts-pie" width="200" height="200"></canvas>
</div>
<div class="kpi">
<ul>
<li><%_<big id="ipv6-hosts">0%</big> IPv6 support rate among hosts%></li>
<li><%_<big id="ipv6-share">0%</big> of the total traffic is IPv6%></li>
<li><%_<big id="ipv6-rx">0B</big> total IPv6 download%></li>
<li><%_<big id="ipv6-tx">0B</big> total IPv6 upload%></li>
</ul>
</div>
</div>
<div class="table" id="ipv6-data">
<div class="tr table-titles">
<div class="th left"><%:Host%></div>
<div class="th right"><%:MAC%></div>
<div class="th double right hide-xs"><%:Family%></div>
<div class="th double right"><%:Download (Bytes)%></div>
<div class="th double right"><%:Download (Packets)%></div>
<div class="th double right"><%:Upload (Bytes)%></div>
<div class="th double right"><%:Upload (Packets)%></div>
</div>
<div class="tr placeholder">
<div class="td">
<em class="spinning"><%:Collecting data...%></em>
</div>
</div>
</div>
</div>
<div class="cbi-section" data-tab="export" data-tab-title="<%:Export%>">
<ul>
<li><a href="<%=url('admin/nlbw/data')%>?type=csv&#38;group_by=mac&#38;order_by=-rx,-tx"><%:CSV, grouped by MAC%></a></li>
<li><a href="<%=url('admin/nlbw/data')%>?type=csv&#38;group_by=ip&#38;order_by=-rx,-tx"><%:CSV, grouped by IP%></a></li>
<li><a href="<%=url('admin/nlbw/data')%>?type=csv&#38;group_by=layer7&#38;order_by=-rx,-tx"><%:CSV, grouped by protocol%></a></li>
<li><a href="<%=url('admin/nlbw/data')%>?type=json"><%:JSON dump%></a></li>
</ul>
</div>
</div>
<script type="text/javascript">//<![CDATA[
var hostInfo = <%=luci.util.serialize_json(luci.sys.net.host_hints())%>;
XHR.get(L.url('admin/nlbw/list'), null, function(xhr, res) {
if (res !== null && typeof(res) === 'object' && res.length > 0) {
trafficPeriods = res;
renderPeriods();
}
xhr.open('GET', 'https://raw.githubusercontent.com/jow-/oui-database/master/oui.json', true);
xhr.onreadystatechange = function() {
if (xhr.readyState === 4) {
try { res = JSON.parse(xhr.responseText); }
catch(e) { res = null; }
if (res !== null && typeof(res) === 'object' && (res.length % 3) === 0)
ouiData = res;
fetchData('');
}
};
xhr.send(null);
});
document.addEventListener('tooltip-open', function(ev) {
renderHostDetail.call(ev.detail.target, ev.target);
});
if ('ontouchstart' in window) {
document.addEventListener('touchstart', function(ev) {
var tooltip = document.querySelector('.cbi-tooltip');
if (tooltip === ev.target || tooltip.contains(ev.target))
return;
L.hideTooltip(ev);
});
}
//]]></script>
<%+footer%>

View file

@ -10,515 +10,547 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -10,515 +10,547 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.0-dev\n" "X-Generator: Weblate 4.0-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Sestan recollint dades…" msgstr "Sestan recollint dades…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Configuració" msgstr "Configuració"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "Amfitrió" msgstr "Amfitrió"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -10,515 +10,547 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Pokročilá nastavení" msgstr "Pokročilá nastavení"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "Zálohovat" msgstr "Zálohovat"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Shromažďování údajů…" msgstr "Shromažďování údajů…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Nastavení" msgstr "Nastavení"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "Připojení" msgstr "Připojení"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "Adresář databáze" msgstr "Adresář databáze"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "Stáhnout" msgstr "Stáhnout"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "Obecné nastavení" msgstr "Obecné nastavení"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "Hostitel" msgstr "Hostitel"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "Protokol" msgstr "Protokol"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "Obnovit" msgstr "Obnovit"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "Zdrojová IP adresa" msgstr "Zdrojová IP adresa"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "Nahrát" msgstr "Nahrát"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "Varování" msgstr "Varování"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -10,151 +10,152 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.0.2-dev\n" "X-Generator: Weblate 4.0.2-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "%d IPv4-only Hosts" msgstr "%d IPv4-only Hosts"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "%d IPv6-only Hosts" msgstr "%d IPv6-only Hosts"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "%d Dualstack-Hosts" msgstr "%d Dualstack-Hosts"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "%s und %s" msgstr "%s und %s"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "%s, %s und %s" msgstr "%s, %s und %s"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "-1 - Neustart jeden letzten Tag des Monats" msgstr "-1 - Neustart jeden letzten Tag des Monats"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "-7 - Neustart eine Woche vor Monatsende" msgstr "-7 - Neustart eine Woche vor Monatsende"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "1 - Neustart jeden ersten Tag des Monats" msgstr "1 - Neustart jeden ersten Tag des Monats"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "10min - häufigereres Sichern auf Kosten von Flashspeicher-Abnutzung" msgstr "10min - häufigereres Sichern auf Kosten von Flashspeicher-Abnutzung"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "12h - Kompromiss zwischen Datenverlust und Flashspeicher-Abnutzung" msgstr "12h - Kompromiss zwischen Datenverlust und Flashspeicher-Abnutzung"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
"24h - geringste Flashspeicherabnutzung auf Kosten erhöhtem Datenverlustrisiko" "24h - geringste Flashspeicherabnutzung auf Kosten erhöhtem Datenverlustrisiko"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "30s - Aktualisiere alle 30s für angemessen aktuelle Statistiken" msgstr "30s - Aktualisiere alle 30s für angemessen aktuelle Statistiken"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
"5min - selten aktualisieren um die conntrack-Zähler nicht so häufig " "5min - selten aktualisieren um die conntrack-Zähler nicht so häufig "
"zurückzusetzen" "zurückzusetzen"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "60s - minütlich sichern, sinnvoll für nicht-Flashspeicher" msgstr "60s - minütlich sichern, sinnvoll für nicht-Flashspeicher"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "<big id=\"conn-total\">0</big> Verbindungen" msgstr "<big id=\"conn-total\">0</big> Verbindungen"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "<big id=\"host-total\">0</big> Hosts" msgstr "<big id=\"host-total\">0</big> Hosts"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "<big id=\"ipv6-hosts\">0%</big> IPv6-Unterstützungsrate unter den Hosts" msgstr ""
"<big id=\"ipv6-hosts\">0%</big> IPv6-Unterstützungsrate unter den Hosts"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "<big id=\"ipv6-rx\">0B</big> IPv6-Download insgesamt" msgstr "<big id=\"ipv6-rx\">0B</big> IPv6-Download insgesamt"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "<big id=\"ipv6-share\">0%</big> des gesamten Datenverkehrs ist IPv6" msgstr "<big id=\"ipv6-share\">0%</big> des gesamten Datenverkehrs ist IPv6"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "<big id=\"ipv6-tx\">0B</big> IPv6-Upload insgesamt" msgstr "<big id=\"ipv6-tx\">0B</big> IPv6-Upload insgesamt"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
"<big id=\"layer7-most-conn\">0</big> verursachen die meisten Verbindungen" "<big id=\"layer7-most-conn\">0</big> verursachen die meisten Verbindungen"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "<big id=\"layer7-most-rx\">0</big> verursachste den meisten Download" msgstr "<big id=\"layer7-most-rx\">0</big> verursachste den meisten Download"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "<big id=\"layer7-most-tx\">0</big> verursachen den meisten Upload" msgstr "<big id=\"layer7-most-tx\">0</big> verursachen den meisten Upload"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "<big id=\"layer7-total\">0</big> verschiedene Anwendungsprotokolle" msgstr "<big id=\"layer7-total\">0</big> verschiedene Anwendungsprotokolle"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "<big id=\"rx-total\">0</big> herunterladen" msgstr "<big id=\"rx-total\">0</big> herunterladen"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "<big id=\"tx-total\">0</big> Upload" msgstr "<big id=\"tx-total\">0</big> Upload"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "Berechnungszeitraum" msgstr "Berechnungszeitraum"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Erweiterte Einstellungen" msgstr "Erweiterte Einstellungen"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "Anwendung" msgstr "Anwendung"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "Anwendungsprotokolle" msgstr "Anwendungsprotokolle"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "Sichern" msgstr "Sichern"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "Bandbreitenmonitor" msgstr "Bandbreitenmonitor"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "CSV, gruppiert nach IP" msgstr "CSV, gruppiert nach IP"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "CSV, gruppiert nach MAC" msgstr "CSV, gruppiert nach MAC"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "CSV, gruppiert nach Protokoll" msgstr "CSV, gruppiert nach Protokoll"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
@ -162,49 +163,49 @@ msgstr ""
"Das wechseln des Berechnungszeitraum-Typs wird alle existierenden Datebanken " "Das wechseln des Berechnungszeitraum-Typs wird alle existierenden Datebanken "
"löschen!<br /><strong><a href=\"%s\">Backup sichern</a></strong>." "löschen!<br /><strong><a href=\"%s\">Backup sichern</a></strong>."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Sammle Daten..." msgstr "Sammle Daten..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "Sicherungsintervall" msgstr "Sicherungsintervall"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "Komprimiere Datenbank" msgstr "Komprimiere Datenbank"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguration" msgstr "Konfiguration"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "Verb." msgstr "Verb."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "Verbindungen" msgstr "Verbindungen"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "Verbindungen / Host" msgstr "Verbindungen / Host"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "Datenbankverzeichnis" msgstr "Datenbankverzeichnis"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
@ -212,11 +213,11 @@ msgstr ""
"Datenbank-Verzeichnis. Für jeden Berechnungszeitraum wird eine Datei " "Datenbank-Verzeichnis. Für jeden Berechnungszeitraum wird eine Datei "
"angelegt." "angelegt."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "Tag des Monats" msgstr "Tag des Monats"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
@ -226,105 +227,127 @@ msgstr ""
"werden vom Monatsende her interpretiert, z.B. \"-5\" für den 27. Juli oder " "werden vom Monatsende her interpretiert, z.B. \"-5\" für den 27. Juli oder "
"24. Februar." "24. Februar."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "Anzeige" msgstr "Anzeige"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
#, fuzzy
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "Down. (Bytes)" msgstr "Down. (Bytes)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "Down. (Pkg.)" msgstr "Down. (Pkg.)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "Herunterladen" msgstr "Herunterladen"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
#, fuzzy
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "Download (Bytes)" msgstr "Download (Bytes)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "Download (Pakete)" msgstr "Download (Pakete)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "Download / Anwendung" msgstr "Download / Anwendung"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "Datenbank-Backup sichern" msgstr "Datenbank-Backup sichern"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "Hosts mit Dualstack-IPs" msgstr "Hosts mit Dualstack-IPs"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "Fälligkeitsdatum" msgstr "Fälligkeitsdatum"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "Exportieren" msgstr "Exportieren"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "Familie" msgstr "Familie"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "Festes Intervall" msgstr "Festes Intervall"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "Neu Laden erzwingen…" msgstr "Neu Laden erzwingen…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "Allgemeine Einstellungen" msgstr "Allgemeine Einstellungen"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "Erzeuge Backup" msgstr "Erzeuge Backup"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "Host" msgstr "Host"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "Hostnamen: <big id=\"bubble-hostname\">example.org</big>" msgstr "Hostnamen: <big id=\"bubble-hostname\">example.org</big>"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "IPv4 zu IPv6" msgstr "IPv4 zu IPv6"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "Intervall" msgstr "Intervall"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
@ -332,7 +355,7 @@ msgstr ""
"Zeitintervall nach dem die in-Memory-Datenbank periodisch auf auf dem " "Zeitintervall nach dem die in-Memory-Datenbank periodisch auf auf dem "
"Festspeicher persistiert wird." "Festspeicher persistiert wird."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
@ -340,36 +363,36 @@ msgstr ""
"Zeitintervall für das periodische Aktualisieren der Traffic-Zähler " "Zeitintervall für das periodische Aktualisieren der Traffic-Zähler "
"bestehender Verbindungen anhand der netlink-Daten." "bestehender Verbindungen anhand der netlink-Daten."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr "Ungültiges oder leeres Backup Archiv"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "JSON-Dump" msgstr "JSON-Dump"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "Länge des Berechnungszeitraums in Tagen." msgstr "Länge des Berechnungszeitraums in Tagen."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "Lokale Schnittstellen" msgstr "Lokale Schnittstellen"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "Lokale Subnetze" msgstr "Lokale Subnetze"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "Maximale Einträge" msgstr "Maximale Einträge"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
@ -377,167 +400,178 @@ msgstr ""
"Höchstzahl an Abrechnungszeiträumen, die behalten werden sollen, 0 steht für " "Höchstzahl an Abrechnungszeiträumen, die behalten werden sollen, 0 steht für "
"unbeschränkt." "unbeschränkt."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "Netlink-Bandbreitenmonitor" msgstr "Netlink-Bandbreitenmonitor"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "Netlink-Bandbreitenmonitor Sichern/Wiederherstellen" msgstr "Netlink-Bandbreitenmonitor Sichern/Wiederherstellen"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "Netlink-Bandbreitenmonitor - Konfiguration" msgstr "Netlink-Bandbreitenmonitor - Konfiguration"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "Noch keine Daten aufgezeichnet." msgstr "Noch keine Daten aufgezeichnet."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "Protokoll" msgstr "Protokoll"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "Wiederherstellen" msgstr "Wiederherstellen"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "Quell IP" msgstr "Quell IP"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "Startdatum" msgstr "Startdatum"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "Die folgenden Datenbank Dateien wurden wiederhergestellt: %s" msgstr "Die folgenden Datenbank Dateien wurden wiederhergestellt:"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "Hochladen" msgstr "Hochladen"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "Warnung" msgstr "Warnung"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""
#~ msgid "Invalid or empty backup archive"
#~ msgstr "Ungültiges oder leeres Backup Archiv"

View file

@ -10,515 +10,547 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "Αντίγραφο ασφαλείας" msgstr "Αντίγραφο ασφαλείας"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Συλλογή δεδομένων..." msgstr "Συλλογή δεδομένων..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Διαμόρφωση" msgstr "Διαμόρφωση"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -4,515 +4,547 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -13,158 +13,158 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11.1\n" "X-Generator: Weblate 3.11.1\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "%d hosts solo IPv4" msgstr "%d hosts solo IPv4"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "%d hosts solo IPv6" msgstr "%d hosts solo IPv6"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "%d hosts de doble pila" msgstr "%d hosts de doble pila"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "%s y %s" msgstr "%s y %s"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "%s, %s y %s" msgstr "%s, %s y %s"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "-1 - Reiniciar cada último día del mes" msgstr "-1 - Reiniciar cada último día del mes"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "-7 - Reiniciar una semana antes de fin de mes" msgstr "-7 - Reiniciar una semana antes de fin de mes"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "1 - Reiniciar cada 1 del mes" msgstr "1 - Reiniciar cada 1 del mes"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "10m - frecuentes cometidos a expensas del desgaste del flash" msgstr "10m - frecuentes cometidos a expensas del desgaste del flash"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
"12h - compromiso entre el riesgo de pérdida de datos y el desgaste por " "12h - compromiso entre el riesgo de pérdida de datos y el desgaste por "
"destello" "destello"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
"24h - menor desgaste del flash a expensas del riesgo de pérdida de datos" "24h - menor desgaste del flash a expensas del riesgo de pérdida de datos"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
"30s - actualice dos veces por minuto para obtener estadísticas " "30s - actualice dos veces por minuto para obtener estadísticas "
"razonablemente actuales" "razonablemente actuales"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
"5m - rara vez se actualiza para evitar el borrado frecuente de los " "5m - rara vez se actualiza para evitar el borrado frecuente de los "
"contadores de conntrack" "contadores de conntrack"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "60s - cometa minuciosamente, útil para almacenamiento sin flash" msgstr "60s - cometa minuciosamente, útil para almacenamiento sin flash"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "<big id=\"conn-total\">0</big> conexiones" msgstr "<big id=\"conn-total\">0</big> conexiones"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "<big id=\"host-total\">0</big> hosts" msgstr "<big id=\"host-total\">0</big> hosts"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
"<big id=\"ipv6-hosts\">0%</big> tasa de compatibilidad de IPv6 entre los " "<big id=\"ipv6-hosts\">0%</big> tasa de compatibilidad de IPv6 entre los "
"hosts" "hosts"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "<big id=\"ipv6-rx\">0B</big> descarga total de IPv6" msgstr "<big id=\"ipv6-rx\">0B</big> descarga total de IPv6"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "<big id=\"ipv6-share\">0%</big> del tráfico total es IPv6" msgstr "<big id=\"ipv6-share\">0%</big> del tráfico total es IPv6"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "<big id=\"ipv6-tx\">0B</big> carga total de IPv6" msgstr "<big id=\"ipv6-tx\">0B</big> carga total de IPv6"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
"<big id=\"layer7-most-conn\">0</big> causa la mayoría de las conexiones" "<big id=\"layer7-most-conn\">0</big> causa la mayoría de las conexiones"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
"<big id=\"layer7-most-rx\">0</big> es la causa de la descarga más grande" "<big id=\"layer7-most-rx\">0</big> es la causa de la descarga más grande"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "<big id=\"layer7-most-tx\">0</big> causa la mayor carga" msgstr "<big id=\"layer7-most-tx\">0</big> causa la mayor carga"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "<big id=\"layer7-total\">0</big> diferentes protocolos de aplicación" msgstr "<big id=\"layer7-total\">0</big> diferentes protocolos de aplicación"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "<big id=\"rx-total\">0</big> de descarga" msgstr "<big id=\"rx-total\">0</big> de descarga"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "<big id=\"tx-total\">0</big> de subida" msgstr "<big id=\"tx-total\">0</big> de subida"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "Período contable" msgstr "Período contable"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Configuración avanzada" msgstr "Configuración avanzada"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "Aplicación" msgstr "Aplicación"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "Protocolos de aplicación" msgstr "Protocolos de aplicación"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "Copia de seguridad" msgstr "Copia de seguridad"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "Monitor de ancho de banda" msgstr "Monitor de ancho de banda"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "CSV, agrupados por IP" msgstr "CSV, agrupados por IP"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "CSV, agrupados por MAC" msgstr "CSV, agrupados por MAC"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "CSV, agrupados por protocolo" msgstr "CSV, agrupados por protocolo"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
@ -173,7 +173,7 @@ msgstr ""
"existentes!<br /><strong><a href=\"%s\">Descargar copia de seguridad</a></" "existentes!<br /><strong><a href=\"%s\">Descargar copia de seguridad</a></"
"strong>." "strong>."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
@ -184,42 +184,42 @@ msgstr ""
"reiniciar el período contable exactamente cada N días, comenzando en una " "reiniciar el período contable exactamente cada N días, comenzando en una "
"fecha determinada." "fecha determinada."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Recolectando datos…" msgstr "Recolectando datos…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "Intervalo de compromiso" msgstr "Intervalo de compromiso"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "Comprimir la base de datos" msgstr "Comprimir la base de datos"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Configuración" msgstr "Configuración"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "Conexiones." msgstr "Conexiones."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "Conexiones" msgstr "Conexiones"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "Conexiones / Host" msgstr "Conexiones / Host"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "Directorio de la base de datos" msgstr "Directorio de la base de datos"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
@ -227,11 +227,11 @@ msgstr ""
"Directorio de almacenamiento de base de datos. Un archivo por período " "Directorio de almacenamiento de base de datos. Un archivo por período "
"contable se colocará en este directorio." "contable se colocará en este directorio."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "Dia del mes" msgstr "Dia del mes"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
@ -241,103 +241,127 @@ msgstr ""
"contar hacia el final del mes, p. Ej. \"-5\" para especificar el 27 de julio " "contar hacia el final del mes, p. Ej. \"-5\" para especificar el 27 de julio "
"o el 24 de febrero." "o el 24 de febrero."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "Monitor" msgstr "Monitor"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "Desc. (Bytes)" msgstr "Desc. (Bytes)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "Desc. (Paqs.)" msgstr "Desc. (Paqs.)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "Descargar" msgstr "Descargar"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "Descarga (Bytes)" msgstr "Descarga (Bytes)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "Descarga (Paquetes)" msgstr "Descarga (Paquetes)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "Descargar / Aplicación" msgstr "Descargar / Aplicación"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "Descargar copia de seguridad de la base de datos" msgstr "Descargar copia de seguridad de la base de datos"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "Hosts habilitados para DualStack" msgstr "Hosts habilitados para DualStack"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "Fecha de vencimiento" msgstr "Fecha de vencimiento"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "Exportar" msgstr "Exportar"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "Familia" msgstr "Familia"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "Intervalo fijo" msgstr "Intervalo fijo"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "Forzar reinicio…" msgstr "Forzar reinicio…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "Configuración general" msgstr "Configuración general"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "Generar copia de seguridad" msgstr "Generar copia de seguridad"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "Host" msgstr "Host"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "Nombre de host: <big id=\"bubble-hostname\">example.org</big>" msgstr "Nombre de host: <big id=\"bubble-hostname\">example.org</big>"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "IPv4 vs. IPv6" msgstr "IPv4 vs. IPv6"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "Intervalo" msgstr "Intervalo"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
@ -345,7 +369,7 @@ msgstr ""
"Intervalo en el que la base de datos temporal en memoria se confirma al " "Intervalo en el que la base de datos temporal en memoria se confirma al "
"directorio de base de datos persistente." "directorio de base de datos persistente."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
@ -353,36 +377,36 @@ msgstr ""
"Intervalo en el que los contadores de tráfico de las conexiones aún " "Intervalo en el que los contadores de tráfico de las conexiones aún "
"establecidas se actualizan desde la información del enlace de red." "establecidas se actualizan desde la información del enlace de red."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr "Archivo de copia de seguridad no válido o vacío"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "Volcado JSON" msgstr "Volcado JSON"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "Duración del intervalo contable en días." msgstr "Duración del intervalo contable en días."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "Interfaces locales" msgstr "Interfaces locales"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "Subredes locales" msgstr "Subredes locales"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "Entradas máximas" msgstr "Entradas máximas"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
@ -390,49 +414,49 @@ msgstr ""
"Número máximo de períodos contables para mantener, use 0 para mantener las " "Número máximo de períodos contables para mantener, use 0 para mantener las "
"bases de datos para siempre." "bases de datos para siempre."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "Monitor de ancho de banda Netlink" msgstr "Monitor de ancho de banda Netlink"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "Monitor de ancho de banda Netlink - Copia de seguridad / Restauración" msgstr "Monitor de ancho de banda Netlink - Copia de seguridad / Restauración"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "Monitor de ancho de banda Netlink - Configuración" msgstr "Monitor de ancho de banda Netlink - Configuración"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "No hay datos registrados todavía." msgstr "No hay datos registrados todavía."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
"Solo se cuentan los flujos de conexión desde o hacia cualquiera de estas " "Solo se cuentan los flujos de conexión desde o hacia cualquiera de estas "
"redes." "redes."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
"Solo se cuentan los flujos de conexión desde o hacia cualquiera de estas " "Solo se cuentan los flujos de conexión desde o hacia cualquiera de estas "
"subredes." "subredes."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "Pre-ubicar la base de datos" msgstr "Pre-ubicar la base de datos"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "Protocolo" msgstr "Protocolo"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "Mapeo de protocolos" msgstr "Mapeo de protocolos"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
@ -443,41 +467,45 @@ msgstr ""
"valor, el número de puerto y la tercera columna es el nombre del protocolo " "valor, el número de puerto y la tercera columna es el nombre del protocolo "
"asignado." "asignado."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "Intervalo de actualización" msgstr "Intervalo de actualización"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "Restaurar" msgstr "Restaurar"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "Restaurar la copia de seguridad de la base de datos" msgstr "Restaurar la copia de seguridad de la base de datos"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "Seleccione el período contable:" msgstr "Seleccione el período contable:"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "IP de origen" msgstr "IP de origen"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "Fecha de inicio" msgstr "Fecha de inicio"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
"Fecha de inicio del primer período contable, por ejemplo, inicio del " "Fecha de inicio del primer período contable, por ejemplo, inicio del "
"contrato ISP." "contrato ISP."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "Periodos almacenados" msgstr "Periodos almacenados"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
@ -486,11 +514,11 @@ msgstr ""
"contabilidad de tráfico ligero y eficiente que realiza un seguimiento del " "contabilidad de tráfico ligero y eficiente que realiza un seguimiento del "
"uso de ancho de banda por host y protocolo." "uso de ancho de banda por host y protocolo."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "Los siguientes archivos de base de datos han sido restaurados: %s" msgstr "Los siguientes archivos de base de datos han sido restaurados:"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
@ -499,51 +527,55 @@ msgstr ""
"estableciendo el límite en 0, permitirá que las bases de datos crezcan " "estableciendo el límite en 0, permitirá que las bases de datos crezcan "
"indefinidamente." "indefinidamente."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "Tráfico / Host" msgstr "Tráfico / Host"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "Distribución del tráfico" msgstr "Distribución del tráfico"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "Sub. (Bytes)" msgstr "Sub. (Bytes)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "Sub. (Paq.)" msgstr "Sub. (Paq.)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "Subir" msgstr "Subir"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "Subida (Bytes)" msgstr "Subida (Bytes)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "Subida (Paquetes)" msgstr "Subida (Paquetes)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "Subir / Aplicación" msgstr "Subir / Aplicación"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "Proveedor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "Proveedor: <big id=\"bubble-vendor\">Example Corp.</big>"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "Advertencia" msgstr "Advertencia"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
@ -553,7 +585,7 @@ msgstr ""
"archivos de la base de datos hace que el acceso a los datos antiguos sea un " "archivos de la base de datos hace que el acceso a los datos antiguos sea un "
"poco más lento, pero ayuda a reducir los requisitos de almacenamiento." "poco más lento, pero ayuda a reducir los requisitos de almacenamiento."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
@ -564,16 +596,19 @@ msgstr ""
"memoria que pueden no ser capaces de satisfacer la asignación de memoria " "memoria que pueden no ser capaces de satisfacer la asignación de memoria "
"después de períodos de tiempo de funcionamiento más largos." "después de períodos de tiempo de funcionamiento más largos."
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "Sin tráfico" msgstr "Sin tráfico"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "Otro" msgstr "Otro"
#~ msgid "Invalid or empty backup archive"
#~ msgstr "Archivo de copia de seguridad no válido o vacío"

View file

@ -10,515 +10,547 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.0-dev\n" "X-Generator: Weblate 4.0-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "%d hôtes IPv4 uniquement" msgstr "%d hôtes IPv4 uniquement"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "%d hôtes IPv6 uniquement" msgstr "%d hôtes IPv6 uniquement"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "%s et %s" msgstr "%s et %s"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "%s, %s et %s" msgstr "%s, %s et %s"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "-1 - Redémarrez tous les derniers jours du mois" msgstr "-1 - Redémarrez tous les derniers jours du mois"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "-7 - Redémarrer une semaine avant la fin du mois" msgstr "-7 - Redémarrer une semaine avant la fin du mois"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "1 - Redémarrez tous les 1er du mois" msgstr "1 - Redémarrez tous les 1er du mois"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Paramètres avancés" msgstr "Paramètres avancés"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "Sauvegarder" msgstr "Sauvegarder"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Récupération des données…" msgstr "Récupération des données…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Configuration" msgstr "Configuration"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "Répertoire de la base de données" msgstr "Répertoire de la base de données"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "Télécharger" msgstr "Télécharger"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "Paramètres généraux" msgstr "Paramètres généraux"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "Hôte" msgstr "Hôte"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "Protocole" msgstr "Protocole"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "Restaurer" msgstr "Restaurer"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "Adresse IP source" msgstr "Adresse IP source"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "Téléverser" msgstr "Téléverser"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "Avertissement" msgstr "Avertissement"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -4,515 +4,547 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -10,515 +10,547 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -10,153 +10,153 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.10\n" "X-Generator: Weblate 3.10\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "%d csak IPv4-es gép" msgstr "%d csak IPv4-es gép"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "%d csak IPv6-os gép" msgstr "%d csak IPv6-os gép"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "%d kettős protokollcsomagú gép" msgstr "%d kettős protokollcsomagú gép"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "%s és %s" msgstr "%s és %s"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "%s, %s és %s" msgstr "%s, %s és %s"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "-1 újraindítás minden hónap utolsó napján" msgstr "-1 újraindítás minden hónap utolsó napján"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "-7 egy hét újraindítása a hónap vége előtt" msgstr "-7 egy hét újraindítása a hónap vége előtt"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "1 újraindítás minden hónap első napján" msgstr "1 újraindítás minden hónap első napján"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "10 perc gyakori véglegesítések a flash-használat rovására" msgstr "10 perc gyakori véglegesítések a flash-használat rovására"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
"12 óra kompromisszum az adatvesztési kockázat és a flash-használat között" "12 óra kompromisszum az adatvesztési kockázat és a flash-használat között"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
"24 óra a legkevesebb flash-használat az adatvesztési kockázat rovására" "24 óra a legkevesebb flash-használat az adatvesztési kockázat rovására"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
"30 másodperc frissítés percenként kétszer az észszerűen aktuális " "30 másodperc frissítés percenként kétszer az észszerűen aktuális "
"statisztikákhoz" "statisztikákhoz"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
"5 perc ritka frissítés a kapcsolatkövető számlálók gyakori törlésének " "5 perc ritka frissítés a kapcsolatkövető számlálók gyakori törlésének "
"elkerüléséhez" "elkerüléséhez"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "60 másodperc véglegesítés percenként, nem flash tárolóknál hasznos" msgstr "60 másodperc véglegesítés percenként, nem flash tárolóknál hasznos"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "<big id=\"conn-total\">0</big> kapcsolat" msgstr "<big id=\"conn-total\">0</big> kapcsolat"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "<big id=\"host-total\">0</big> gép" msgstr "<big id=\"host-total\">0</big> gép"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "<big id=\"ipv6-hosts\">0%</big> IPv6 támogatási arány a gépek között" msgstr "<big id=\"ipv6-hosts\">0%</big> IPv6 támogatási arány a gépek között"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "<big id=\"ipv6-rx\">0B</big> teljes IPv6 letöltés" msgstr "<big id=\"ipv6-rx\">0B</big> teljes IPv6 letöltés"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "A teljes forgalom <big id=\"ipv6-share\">0%</big>-a IPv6" msgstr "A teljes forgalom <big id=\"ipv6-share\">0%</big>-a IPv6"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "<big id=\"ipv6-tx\">0B</big> teljes IPv6 feltöltés" msgstr "<big id=\"ipv6-tx\">0B</big> teljes IPv6 feltöltés"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "<big id=\"layer7-most-conn\">0</big> okozza a legtöbb kapcsolatot" msgstr "<big id=\"layer7-most-conn\">0</big> okozza a legtöbb kapcsolatot"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "<big id=\"layer7-most-rx\">0</big> okozza a legtöbb letöltést" msgstr "<big id=\"layer7-most-rx\">0</big> okozza a legtöbb letöltést"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "<big id=\"layer7-most-tx\">0</big> okozza a legtöbb feltöltést" msgstr "<big id=\"layer7-most-tx\">0</big> okozza a legtöbb feltöltést"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "<big id=\"layer7-total\">0</big> különböző alkalmazásprotokoll" msgstr "<big id=\"layer7-total\">0</big> különböző alkalmazásprotokoll"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "<big id=\"rx-total\">0</big> letöltés" msgstr "<big id=\"rx-total\">0</big> letöltés"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "<big id=\"tx-total\">0</big> feltöltés" msgstr "<big id=\"tx-total\">0</big> feltöltés"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "Elszámolási időszak" msgstr "Elszámolási időszak"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Speciális beállítások" msgstr "Speciális beállítások"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "Alkalmazás" msgstr "Alkalmazás"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "Alkalmazásprotokollok" msgstr "Alkalmazásprotokollok"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "Biztonsági mentés" msgstr "Biztonsági mentés"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "Sávszélesség megfigyelő" msgstr "Sávszélesség megfigyelő"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "CSV, IP szerint csoportosítva" msgstr "CSV, IP szerint csoportosítva"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "CSV, MAC szerint csoportosítva" msgstr "CSV, MAC szerint csoportosítva"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "CSV, protokoll szerint csoportosítva" msgstr "CSV, protokoll szerint csoportosítva"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
@ -165,7 +165,7 @@ msgstr ""
"meglévő adatbázist!<br /><strong><a href=\"%s\">Biztonsági mentés letöltése</" "meglévő adatbázist!<br /><strong><a href=\"%s\">Biztonsági mentés letöltése</"
"a></strong>." "a></strong>."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
@ -176,42 +176,42 @@ msgstr ""
"„Rögzített időköz˝ lehetőséget az elszámolási időszak pontosan N naponként " "„Rögzített időköz˝ lehetőséget az elszámolási időszak pontosan N naponként "
"történő újraindításához, kezdve egy adott dátumnál." "történő újraindításához, kezdve egy adott dátumnál."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Adatok összegyűjtése…" msgstr "Adatok összegyűjtése…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "Véglegesítési időköz" msgstr "Véglegesítési időköz"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "Adatbázis tömörítése" msgstr "Adatbázis tömörítése"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Beállítás" msgstr "Beállítás"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "Kapcs." msgstr "Kapcs."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "Kapcsolatok" msgstr "Kapcsolatok"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "Kapcsolatok / gép" msgstr "Kapcsolatok / gép"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "Adatbáziskönyvtár" msgstr "Adatbáziskönyvtár"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
@ -219,11 +219,11 @@ msgstr ""
"Adatbázis tárolókönyvtár. Elszámolási időszakonként egy fájl lesz elhelyezve " "Adatbázis tárolókönyvtár. Elszámolási időszakonként egy fájl lesz elhelyezve "
"ebbe a könyvtárba." "ebbe a könyvtárba."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "Hónap napja" msgstr "Hónap napja"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
@ -233,103 +233,127 @@ msgstr ""
"értékeket a hónap végétől való számoláshoz, például a „-5” július 27. vagy " "értékeket a hónap végétől való számoláshoz, például a „-5” július 27. vagy "
"február 24. napját határozza meg." "február 24. napját határozza meg."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "Megjelenítés" msgstr "Megjelenítés"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "Le. (byte)" msgstr "Le. (byte)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "Le. (csom.)" msgstr "Le. (csom.)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "Letöltés" msgstr "Letöltés"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "Letöltés (bájt)" msgstr "Letöltés (bájt)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "Letöltés (csomagok)" msgstr "Letöltés (csomagok)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "Letöltés / alkalmazás" msgstr "Letöltés / alkalmazás"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "Adatbázis biztonsági mentés letöltése" msgstr "Adatbázis biztonsági mentés letöltése"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "Kétvermes engedélyezett gépek" msgstr "Kétvermes engedélyezett gépek"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "Határidő" msgstr "Határidő"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "Exportálás" msgstr "Exportálás"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "Család" msgstr "Család"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "Rögzített időköz" msgstr "Rögzített időköz"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "Újratöltés kényszerítése…" msgstr "Újratöltés kényszerítése…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "Általános beállítások" msgstr "Általános beállítások"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "Biztonsági mentés előállítása" msgstr "Biztonsági mentés előállítása"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "Gép" msgstr "Gép"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "Gépnév: <big id=\"bubble-hostname\">example.org</big>" msgstr "Gépnév: <big id=\"bubble-hostname\">example.org</big>"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "IPv4 ↔ IPv6" msgstr "IPv4 ↔ IPv6"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "Időköz" msgstr "Időköz"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
@ -337,7 +361,7 @@ msgstr ""
"Az időköz, amelyben a memóriában lévő átmeneti adatbázis véglegesítve lesz " "Az időköz, amelyben a memóriában lévő átmeneti adatbázis véglegesítve lesz "
"az állandó adatbázis-könyvtárba." "az állandó adatbázis-könyvtárba."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
@ -345,36 +369,36 @@ msgstr ""
"Az időköz, amelyben a még kiépített kapcsolatok forgalomszámlálói frissítve " "Az időköz, amelyben a még kiépített kapcsolatok forgalomszámlálói frissítve "
"lesznek a hálózati kapcsolat információiból." "lesznek a hálózati kapcsolat információiból."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr "Érvénytelen vagy üres biztonsági mentés archívum"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "JSON kiírás" msgstr "JSON kiírás"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "Elszámolási időköz hossza napokban." msgstr "Elszámolási időköz hossza napokban."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "Helyi csatolók" msgstr "Helyi csatolók"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "Helyi alhálózatok" msgstr "Helyi alhálózatok"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "Legtöbb bejegyzés" msgstr "Legtöbb bejegyzés"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
@ -382,51 +406,51 @@ msgstr ""
"A megtartandó elszámolási időszakok legnagyobb száma. Használjon nullát az " "A megtartandó elszámolási időszakok legnagyobb száma. Használjon nullát az "
"adatbázis örökre való megtartásához." "adatbázis örökre való megtartásához."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "Hálózati kapcsolat sávszélesség megfigyelő" msgstr "Hálózati kapcsolat sávszélesség megfigyelő"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
"Hálózati kapcsolat sávszélesség megfigyelő biztonsági mentés és " "Hálózati kapcsolat sávszélesség megfigyelő biztonsági mentés és "
"visszaállítás" "visszaállítás"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "Hálózati kapcsolat sávszélesség megfigyelő beállítások" msgstr "Hálózati kapcsolat sávszélesség megfigyelő beállítások"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "Még nincsenek adatok rögzítve." msgstr "Még nincsenek adatok rögzítve."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
"Csak azok a kapcsolatkövető adatfolyamok lesznek beleszámolva, amelyek ezen " "Csak azok a kapcsolatkövető adatfolyamok lesznek beleszámolva, amelyek ezen "
"hálózatok bármelyikébe vagy bármelyikéből érkeznek." "hálózatok bármelyikébe vagy bármelyikéből érkeznek."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
"Csak azok a kapcsolatkövető adatfolyamok lesznek beleszámolva, amelyek ezen " "Csak azok a kapcsolatkövető adatfolyamok lesznek beleszámolva, amelyek ezen "
"alhálózatok bármelyikébe vagy bármelyikéből érkeznek." "alhálózatok bármelyikébe vagy bármelyikéből érkeznek."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "Adatbázis előre lefoglalása" msgstr "Adatbázis előre lefoglalása"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "Protokoll" msgstr "Protokoll"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "Protokoll-leképezés" msgstr "Protokoll-leképezés"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
@ -437,41 +461,45 @@ msgstr ""
"az IP protokollt, a második érték a portszámot és a harmadik oszlop a " "az IP protokollt, a második érték a portszámot és a harmadik oszlop a "
"leképezett protokoll neve." "leképezett protokoll neve."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "Frissítési időköz" msgstr "Frissítési időköz"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "Visszaállítás" msgstr "Visszaállítás"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "Adatbázis biztonsági mentésének visszaállítása" msgstr "Adatbázis biztonsági mentésének visszaállítása"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "Elszámolási időszak kiválasztása:" msgstr "Elszámolási időszak kiválasztása:"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "Forrás IP" msgstr "Forrás IP"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "Kezdődátum" msgstr "Kezdődátum"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
"Az első elszámolási időszak kezdődátuma, például egy internetszolgáltatóval " "Az első elszámolási időszak kezdődátuma, például egy internetszolgáltatóval "
"kötött szerződés kezdete." "kötött szerződés kezdete."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "Tárolt időszakok" msgstr "Tárolt időszakok"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
@ -480,11 +508,11 @@ msgstr ""
"hatékony forgalomelszámoló program, amely figyelemmel kíséri a sávszélesség-" "hatékony forgalomelszámoló program, amely figyelemmel kíséri a sávszélesség-"
"használatot gépenként és protokollonként." "használatot gépenként és protokollonként."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "A következő adatbázisfájlok lettek visszaállítva: %s" msgstr "A következő adatbázisfájlok lettek visszaállítva:"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
@ -492,51 +520,55 @@ msgstr ""
"A bejegyzések legnagyobb száma, amit be kell tenni az adatbázisba. A korlát " "A bejegyzések legnagyobb száma, amit be kell tenni az adatbázisba. A korlát "
"0-ra állítása az adatbázisok korlátlan növekedését teszi lehetővé." "0-ra állítása az adatbázisok korlátlan növekedését teszi lehetővé."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "Forgalom / gép" msgstr "Forgalom / gép"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "Forgalomelosztás" msgstr "Forgalomelosztás"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "Fel. (bájt)" msgstr "Fel. (bájt)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "Fel. (csom.)" msgstr "Fel. (csom.)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "Feltöltés" msgstr "Feltöltés"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "Feltöltés (bájt)" msgstr "Feltöltés (bájt)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "Feltöltés (csomagok)" msgstr "Feltöltés (csomagok)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "Feltöltés / alkalmazás" msgstr "Feltöltés / alkalmazás"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "Gyártó: <big id=\"bubble-vendor\">Példa Kft.</big>" msgstr "Gyártó: <big id=\"bubble-vendor\">Példa Kft.</big>"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "Figyelmeztetés" msgstr "Figyelmeztetés"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
@ -546,7 +578,7 @@ msgstr ""
"tömörítése a régi adatokhoz való hozzáférést kicsit lassabbá teszi, de segít " "tömörítése a régi adatokhoz való hozzáférést kicsit lassabbá teszi, de segít "
"csökkenteni a tárolási szükségleteket." "csökkenteni a tárolási szükségleteket."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
@ -557,16 +589,19 @@ msgstr ""
"esetleg nem képesek kielégíteni a memórialefoglalást hosszabb működési " "esetleg nem képesek kielégíteni a memórialefoglalást hosszabb működési "
"időszakok után." "időszakok után."
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "nincs forgalom" msgstr "nincs forgalom"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "egyéb" msgstr "egyéb"
#~ msgid "Invalid or empty backup archive"
#~ msgstr "Érvénytelen vagy üres biztonsági mentés archívum"

View file

@ -10,515 +10,547 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.0-dev\n" "X-Generator: Weblate 4.0-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Impostazioni Avanzate" msgstr "Impostazioni Avanzate"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "Backup" msgstr "Backup"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Raccolta dati..." msgstr "Raccolta dati..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Configurazione" msgstr "Configurazione"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "Impostazioni Generali" msgstr "Impostazioni Generali"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "Host" msgstr "Host"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "Protocollo" msgstr "Protocollo"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -13,147 +13,147 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.11\n" "X-Generator: Weblate 3.11\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "%d IPv4 限定ホスト" msgstr "%d IPv4 限定ホスト"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "%d IPv6 限定ホスト" msgstr "%d IPv6 限定ホスト"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "%d デュアルスタック ホスト" msgstr "%d デュアルスタック ホスト"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "%s, %s" msgstr "%s, %s"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "%s, %s, %s" msgstr "%s, %s, %s"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "-1 - 月の最終日" msgstr "-1 - 月の最終日"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "-7 - 月の最終日の一週間前" msgstr "-7 - 月の最終日の一週間前"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "1 - 毎月1日" msgstr "1 - 毎月1日"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "10m - フラッシュ媒体への負荷が高い頻繁なコミット10分" msgstr "10m - フラッシュ媒体への負荷が高い頻繁なコミット10分"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "12h - データ消失リスクとフラッシュ媒体への負荷の妥協点12時間" msgstr "12h - データ消失リスクとフラッシュ媒体への負荷の妥協点12時間"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "24h - データ消失リスクは高いがフラッシュ媒体への負荷は最小24時間" msgstr "24h - データ消失リスクは高いがフラッシュ媒体への負荷は最小24時間"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "30s - 現在の状態の把握に適切な1分間に2回のリフレッシュ30秒" msgstr "30s - 現在の状態の把握に適切な1分間に2回のリフレッシュ30秒"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "5m - conntrack カウンターの頻繁なクリアを防ぐ、低頻度のリフレッシュ" msgstr "5m - conntrack カウンターの頻繁なクリアを防ぐ、低頻度のリフレッシュ"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "60秒 - 1分毎のコミット、非フラッシュ ストレージに有用" msgstr "60秒 - 1分毎のコミット、非フラッシュ ストレージに有用"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "<big id=\"conn-total\">0</big> 接続数" msgstr "<big id=\"conn-total\">0</big> 接続数"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "<big id=\"host-total\">0</big> ホスト数" msgstr "<big id=\"host-total\">0</big> ホスト数"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "<big id=\"ipv6-hosts\">0%</big> 全ホスト中の IPv6 サポート比率" msgstr "<big id=\"ipv6-hosts\">0%</big> 全ホスト中の IPv6 サポート比率"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "<big id=\"ipv6-rx\">0B</big> IPv6 総ダウンロード" msgstr "<big id=\"ipv6-rx\">0B</big> IPv6 総ダウンロード"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "<big id=\"ipv6-share\">0%</big> 全トラフィック中の IPv6 の割合" msgstr "<big id=\"ipv6-share\">0%</big> 全トラフィック中の IPv6 の割合"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "<big id=\"ipv6-tx\">0B</big> IPv6 総アップロード" msgstr "<big id=\"ipv6-tx\">0B</big> IPv6 総アップロード"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "<big id=\"layer7-most-conn\">0</big> 接続数上位" msgstr "<big id=\"layer7-most-conn\">0</big> 接続数上位"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "<big id=\"layer7-most-rx\">0</big> ダウンロード上位" msgstr "<big id=\"layer7-most-rx\">0</big> ダウンロード上位"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "<big id=\"layer7-most-tx\">0</big> アップロード上位" msgstr "<big id=\"layer7-most-tx\">0</big> アップロード上位"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "<big id=\"layer7-total\">0</big> アプリケーション プロトコル数" msgstr "<big id=\"layer7-total\">0</big> アプリケーション プロトコル数"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "<big id=\"rx-total\">0</big> ダウンロード" msgstr "<big id=\"rx-total\">0</big> ダウンロード"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "<big id=\"tx-total\">0</big> アップロード" msgstr "<big id=\"tx-total\">0</big> アップロード"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "収集期間" msgstr "収集期間"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "詳細設定" msgstr "詳細設定"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "アプリケーション" msgstr "アプリケーション"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "アプリケーション プロトコル" msgstr "アプリケーション プロトコル"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "バックアップ" msgstr "バックアップ"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "帯域幅モニター" msgstr "帯域幅モニター"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "CSVIP によるグループ化)" msgstr "CSVIP によるグループ化)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "CSVMAC によるグループ化)" msgstr "CSVMAC によるグループ化)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "CSVプロトコルによるグループ化" msgstr "CSVプロトコルによるグループ化"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
@ -161,7 +161,7 @@ msgstr ""
"既存のデータベースと互換性の無い収集期間の形式が選択されました。<br /" "既存のデータベースと互換性の無い収集期間の形式が選択されました。<br /"
"><strong><a href=\"%s\">バックアップのダウンロード</a></strong>" "><strong><a href=\"%s\">バックアップのダウンロード</a></strong>"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
@ -171,42 +171,42 @@ msgstr ""
"毎月3日。設定した日数毎にデータの収集を行うには、\"特定の間隔\" を選択しま" "毎月3日。設定した日数毎にデータの収集を行うには、\"特定の間隔\" を選択しま"
"す。後者の場合、指定された日付から開始されます。" "す。後者の場合、指定された日付から開始されます。"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "コミット間隔" msgstr "コミット間隔"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "データベースの圧縮" msgstr "データベースの圧縮"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "設定" msgstr "設定"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "接続数" msgstr "接続数"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "接続数" msgstr "接続数"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "ホスト毎の接続数" msgstr "ホスト毎の接続数"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "データベース ディレクトリ" msgstr "データベース ディレクトリ"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
@ -214,11 +214,11 @@ msgstr ""
"データベースの保存先ディレクトリです。計測期間あたり 1 つのファイルがこのディ" "データベースの保存先ディレクトリです。計測期間あたり 1 つのファイルがこのディ"
"レクトリに配置されます。" "レクトリに配置されます。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "月間" msgstr "月間"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
@ -227,103 +227,127 @@ msgstr ""
"月の中で新たな収集期間を開始する日です。月の最終日からの日数をマイナス値で指" "月の中で新たな収集期間を開始する日です。月の最終日からの日数をマイナス値で指"
"定することができます(例: 7月27日または2月24日は \"-5\")。" "定することができます(例: 7月27日または2月24日は \"-5\")。"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "表示" msgstr "表示"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "ダウンロード / アプリケーション" msgstr "ダウンロード / アプリケーション"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "データベース バックアップのダウンロード" msgstr "データベース バックアップのダウンロード"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "デュアルスタック ホスト" msgstr "デュアルスタック ホスト"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "期日" msgstr "期日"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "エクスポート" msgstr "エクスポート"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "IP 種別" msgstr "IP 種別"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "特定の間隔" msgstr "特定の間隔"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "強制リロード..." msgstr "強制リロード..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "全般設定" msgstr "全般設定"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "バックアップの作成" msgstr "バックアップの作成"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "ホスト" msgstr "ホスト"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "ホスト名: <big id=\"bubble-hostname\">example.org</big>" msgstr "ホスト名: <big id=\"bubble-hostname\">example.org</big>"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "IPv4 及び IPv6" msgstr "IPv4 及び IPv6"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "間隔" msgstr "間隔"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
@ -331,7 +355,7 @@ msgstr ""
"メモリー上の一時的なデータベースから、永続的なデータベース ディレクトリへのコ" "メモリー上の一時的なデータベースから、永続的なデータベース ディレクトリへのコ"
"ミットを実行する間隔です。" "ミットを実行する間隔です。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
@ -339,36 +363,36 @@ msgstr ""
"確立中の接続のトラフィック カウンターが netlink 情報によりリフレッシュされる" "確立中の接続のトラフィック カウンターが netlink 情報によりリフレッシュされる"
"間隔です。" "間隔です。"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr "無効または空のバックアップ アーカイブです。"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "JSON ダンプ" msgstr "JSON ダンプ"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "収集期間の日数です。" msgstr "収集期間の日数です。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "ローカル インターフェース" msgstr "ローカル インターフェース"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "ローカル サブネット" msgstr "ローカル サブネット"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "最大件数" msgstr "最大件数"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
@ -376,46 +400,46 @@ msgstr ""
"計測データを保持する、収集期間の最大個数です。 '0' を設定した場合、全データを" "計測データを保持する、収集期間の最大個数です。 '0' を設定した場合、全データを"
"保持します。" "保持します。"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "Netlink Bandwidth Monitor" msgstr "Netlink Bandwidth Monitor"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "Netlink Bandwidth Monitor - バックアップ / 復元" msgstr "Netlink Bandwidth Monitor - バックアップ / 復元"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "Netlink Bandwidth Monitor - 設定" msgstr "Netlink Bandwidth Monitor - 設定"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "まだデータがありません。" msgstr "まだデータがありません。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
"選択されたネットワークにおける conntrack ストリームのみが計測されます。" "選択されたネットワークにおける conntrack ストリームのみが計測されます。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "設定されたサブネットにおける conntrack ストリームのみが計測されます。" msgstr "設定されたサブネットにおける conntrack ストリームのみが計測されます。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "データベースの事前割当" msgstr "データベースの事前割当"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "プロトコル" msgstr "プロトコル"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "プロトコル マッピング" msgstr "プロトコル マッピング"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
@ -426,39 +450,43 @@ msgstr ""
"目の値はポート番号、3つ目はマッピングされたプロトコルの名前をそれぞれ表しま" "目の値はポート番号、3つ目はマッピングされたプロトコルの名前をそれぞれ表しま"
"す。" "す。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "リフレッシュ間隔" msgstr "リフレッシュ間隔"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "復元" msgstr "復元"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "データベースの復元" msgstr "データベースの復元"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "収集期間を選択:" msgstr "収集期間を選択:"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "アクセス元 IP" msgstr "アクセス元 IP"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "開始日" msgstr "開始日"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "初回のデータ収集の開始日です(例: ISP 契約の開始日)。" msgstr "初回のデータ収集の開始日です(例: ISP 契約の開始日)。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "保存期間" msgstr "保存期間"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
@ -466,11 +494,11 @@ msgstr ""
"Netlink Bandwidth Monitor (nlbwmon) は、軽量かつ、ホストやプロトコル毎に帯域" "Netlink Bandwidth Monitor (nlbwmon) は、軽量かつ、ホストやプロトコル毎に帯域"
"幅使用量の追跡を行う効率的なトラフィック計測プログラムです。" "幅使用量の追跡を行う効率的なトラフィック計測プログラムです。"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "次のデータベース ファイルが復元されました: %s" msgstr "次のデータベース ファイルが復元されました:"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
@ -478,51 +506,55 @@ msgstr ""
"データベースに保管される最大件数です。 '0' を設定した場合、制限無しのデータ" "データベースに保管される最大件数です。 '0' を設定した場合、制限無しのデータ"
"ベースの増大を許可します。" "ベースの増大を許可します。"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "ホスト毎のトラフィック" msgstr "ホスト毎のトラフィック"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "トラフィック内訳" msgstr "トラフィック内訳"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "アップロード / アプリケーション" msgstr "アップロード / アプリケーション"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "ベンダ: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "ベンダ: <big id=\"bubble-vendor\">Example Corp.</big>"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "警告" msgstr "警告"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
@ -532,27 +564,30 @@ msgstr ""
"いデータへのアクセスが多少遅くなりますが、ストレージ使用量の低減に役立ちま" "いデータへのアクセスが多少遅くなりますが、ストレージ使用量の低減に役立ちま"
"す。" "す。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "トラフィック無し" msgstr "トラフィック無し"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "その他" msgstr "その他"
#~ msgid "Invalid or empty backup archive"
#~ msgstr "無効または空のバックアップ アーカイブです。"
#~ msgid "Down. (Bytes / Pkts.)" #~ msgid "Down. (Bytes / Pkts.)"
#~ msgstr "ダウンロードBytes / Pkts." #~ msgstr "ダウンロードBytes / Pkts."

View file

@ -10,515 +10,547 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.0.2-dev\n" "X-Generator: Weblate 4.0.2-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "고급 설정" msgstr "고급 설정"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -10,515 +10,547 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "प्रगत सेटिंग्ज" msgstr "प्रगत सेटिंग्ज"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "डेटा संकलित करीत आहे ..." msgstr "डेटा संकलित करीत आहे ..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "कॉन्फिगरेशन" msgstr "कॉन्फिगरेशन"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "डाउनलोड" msgstr "डाउनलोड"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "सामान्य सेटिंग्ज" msgstr "सामान्य सेटिंग्ज"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "प्रोटोकॉल" msgstr "प्रोटोकॉल"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "स्त्रोत आयपी" msgstr "स्त्रोत आयपी"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -10,515 +10,547 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Mengumpul data..." msgstr "Mengumpul data..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -10,515 +10,547 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Samler inn data…" msgstr "Samler inn data…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -11,149 +11,149 @@ msgstr ""
"|| n%100>=20) ? 1 : 2;\n" "|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "%d hosty tylko z IPv4" msgstr "%d hosty tylko z IPv4"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "%d hosty tylko z IPv6" msgstr "%d hosty tylko z IPv6"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "%d hosty dualstack" msgstr "%d hosty dualstack"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "%s i %s" msgstr "%s i %s"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "%s, %s i %s" msgstr "%s, %s i %s"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "-1- Restart ostatniego dnia miesiąca" msgstr "-1- Restart ostatniego dnia miesiąca"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "-7- Restart tydzień przed końcem miesiąca" msgstr "-7- Restart tydzień przed końcem miesiąca"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "-1- Restart pierwszego dnia miesiąca" msgstr "-1- Restart pierwszego dnia miesiąca"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "10m - częsty zapis kosztem zużycia pamięci flash" msgstr "10m - częsty zapis kosztem zużycia pamięci flash"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "12h - kompromis między utratą danych a zużyciem pamięci flash" msgstr "12h - kompromis między utratą danych a zużyciem pamięci flash"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "24h - najmniejsze zużycie pamięci flash, kosztem utraty danych" msgstr "24h - najmniejsze zużycie pamięci flash, kosztem utraty danych"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
"30s - odświeżanie dwa razy na minutę dla racjonalnie aktualnych statystyk" "30s - odświeżanie dwa razy na minutę dla racjonalnie aktualnych statystyk"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
"5m - rzadkie odświeżanie aby unikać częstego czyszczenia licznika conntrack" "5m - rzadkie odświeżanie aby unikać częstego czyszczenia licznika conntrack"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "60s - częsty zapis, przydatny dla pamięci non-flash" msgstr "60s - częsty zapis, przydatny dla pamięci non-flash"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "<big id=\"conn-total\">0</big> połączenia" msgstr "<big id=\"conn-total\">0</big> połączenia"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "<big id=\"host-total\">0</big> hostów" msgstr "<big id=\"host-total\">0</big> hostów"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "<big id=\"ipv6-hosts\">0%</big> Obsługa protokołu IPv6 wśród hostów" msgstr "<big id=\"ipv6-hosts\">0%</big> Obsługa protokołu IPv6 wśród hostów"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "<big id=\"ipv6-rx\">0B</big> całkowite pobieranie IPv6" msgstr "<big id=\"ipv6-rx\">0B</big> całkowite pobieranie IPv6"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "<big id=\"ipv6-share\">0%</big> z całego ruchu sieciowego IPv6" msgstr "<big id=\"ipv6-share\">0%</big> z całego ruchu sieciowego IPv6"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "<big id=\"ipv6-tx\">0B</big> całkowite wysyłanie IPv6" msgstr "<big id=\"ipv6-tx\">0B</big> całkowite wysyłanie IPv6"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "<big id=\"layer7-most-conn\">0</big> powoduje najwięcej połączeń" msgstr "<big id=\"layer7-most-conn\">0</big> powoduje najwięcej połączeń"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "<big id=\"layer7-most-rx\">0</big> powoduje najwięcej pobierań" msgstr "<big id=\"layer7-most-rx\">0</big> powoduje najwięcej pobierań"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "<big id=\"layer7-most-tx\">0</big> powoduje najwięcej wysyłań" msgstr "<big id=\"layer7-most-tx\">0</big> powoduje najwięcej wysyłań"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "<big id=\"layer7-total\">0</big> różne protokoły aplikacji" msgstr "<big id=\"layer7-total\">0</big> różne protokoły aplikacji"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "<big id=\"rx-total\">0</big> pobieranie" msgstr "<big id=\"rx-total\">0</big> pobieranie"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "<big id=\"tx-total\">0</big> wysyłanie" msgstr "<big id=\"tx-total\">0</big> wysyłanie"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "Okres rozliczeniowy" msgstr "Okres rozliczeniowy"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Ustawienia zaawansowane" msgstr "Ustawienia zaawansowane"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "Aplikacja" msgstr "Aplikacja"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "Protokoły aplikacji" msgstr "Protokoły aplikacji"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "Kopia zapasowa" msgstr "Kopia zapasowa"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "Monitor przepustowości" msgstr "Monitor przepustowości"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "CSV, pogrupowane według adresów IP" msgstr "CSV, pogrupowane według adresów IP"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "CSV, pogrupowane według MAC" msgstr "CSV, pogrupowane według MAC"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "CSV, pogrupowane według protokołów" msgstr "CSV, pogrupowane według protokołów"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
@ -161,7 +161,7 @@ msgstr ""
"Zmiana typu interwału rozliczeniowego spowoduje unieważnienie istniejących " "Zmiana typu interwału rozliczeniowego spowoduje unieważnienie istniejących "
"baz danych!<br /><strong><a href=\"%s\">Pobierz kopię zapasową</a></strong>." "baz danych!<br /><strong><a href=\"%s\">Pobierz kopię zapasową</a></strong>."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
@ -171,42 +171,42 @@ msgstr ""
"miesiąc w określonym dniu, np. co 3. Wybierz \"Ustalony interwał\" aby " "miesiąc w określonym dniu, np. co 3. Wybierz \"Ustalony interwał\" aby "
"zrestartować okres rozliczeniowy dokładnie co N dni, począwszy od danej daty." "zrestartować okres rozliczeniowy dokładnie co N dni, począwszy od danej daty."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Trwa zbieranie danych..." msgstr "Trwa zbieranie danych..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "Interwał zapisu" msgstr "Interwał zapisu"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "Kompresuj baze danych" msgstr "Kompresuj baze danych"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguracja" msgstr "Konfiguracja"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "Połączenia" msgstr "Połączenia"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "Połączenia" msgstr "Połączenia"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "Połączenia/Host" msgstr "Połączenia/Host"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "Katalog bazy danych" msgstr "Katalog bazy danych"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
@ -214,11 +214,11 @@ msgstr ""
"Katalog przechowywania bazy danych. Jeden plik na okres rozliczeniowy " "Katalog przechowywania bazy danych. Jeden plik na okres rozliczeniowy "
"zostanie umieszczony w tym katalogu." "zostanie umieszczony w tym katalogu."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "Dzień miesiąca" msgstr "Dzień miesiąca"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
@ -228,103 +228,127 @@ msgstr ""
"ujemne należy stosować do liczenia pod koniec miesiąca, np. \"-5\", aby " "ujemne należy stosować do liczenia pod koniec miesiąca, np. \"-5\", aby "
"określić 27 lipca lub 24 lutego." "określić 27 lipca lub 24 lutego."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "Wyświetl" msgstr "Wyświetl"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "Pobieranie (Bajty)" msgstr "Pobieranie (Bajty)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "Pobieranie (Pakiety)" msgstr "Pobieranie (Pakiety)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "Pobieranie" msgstr "Pobieranie"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "Pobieranie (Bajty)" msgstr "Pobieranie (Bajty)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "Pobieranie (Pakiety)" msgstr "Pobieranie (Pakiety)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "Pobieranie/Aplikacja" msgstr "Pobieranie/Aplikacja"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "Pobierz kopię zapasową bazy danych" msgstr "Pobierz kopię zapasową bazy danych"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "Hosty z włączoną funkcją dualstack" msgstr "Hosty z włączoną funkcją dualstack"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "Termin ważności" msgstr "Termin ważności"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "Eksportuj" msgstr "Eksportuj"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "Rodzina" msgstr "Rodzina"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "Ustalony interwał" msgstr "Ustalony interwał"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "Wymuś przeładowanie…" msgstr "Wymuś przeładowanie…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "Ustawienia główne" msgstr "Ustawienia główne"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "Generuj kopię zapasową" msgstr "Generuj kopię zapasową"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "Host" msgstr "Host"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "Nazwa hosta: <big id=\"bubble-hostname\">example.org</big>" msgstr "Nazwa hosta: <big id=\"bubble-hostname\">example.org</big>"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "IPv4 vs. IPv6" msgstr "IPv4 vs. IPv6"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "Interwał" msgstr "Interwał"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
@ -332,7 +356,7 @@ msgstr ""
"Odstęp czasu, w którym tymczasowa baza danych w pamięci jest przekazywana do " "Odstęp czasu, w którym tymczasowa baza danych w pamięci jest przekazywana do "
"stałego katalogu bazy danych." "stałego katalogu bazy danych."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
@ -340,36 +364,36 @@ msgstr ""
"Odstęp czasowy, w którym liczniki ruchu nadal ustanowionych połączeń są " "Odstęp czasowy, w którym liczniki ruchu nadal ustanowionych połączeń są "
"odświeżane z informacji o połączeniu sieciowym." "odświeżane z informacji o połączeniu sieciowym."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr "Nieprawidłowe lub puste archiwum kopii zapasowej"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "Zrzut JSON" msgstr "Zrzut JSON"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "Długość interwału księgowania w dniach." msgstr "Długość interwału księgowania w dniach."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "Interfejsy lokalne" msgstr "Interfejsy lokalne"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "Podsieci lokalne" msgstr "Podsieci lokalne"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "Maksymalna liczba wpisów" msgstr "Maksymalna liczba wpisów"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
@ -377,47 +401,48 @@ msgstr ""
"Maksymalna liczba okresów rozliczeniowych do zachowania, użyj zera do " "Maksymalna liczba okresów rozliczeniowych do zachowania, użyj zera do "
"zachowania baz danych na zawsze." "zachowania baz danych na zawsze."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "Monitor wykorzystania łącza internetowego" msgstr "Monitor wykorzystania łącza internetowego"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "Monitor wykorzystania łącza internetowego - Kopia zapasowa/Przywracanie" msgstr ""
"Monitor wykorzystania łącza internetowego - Kopia zapasowa/Przywracanie"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "Monitor wykorzystania łącza internetowego - Konfiguracja" msgstr "Monitor wykorzystania łącza internetowego - Konfiguracja"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "Nie zarejestrowano jeszcze żadnych danych." msgstr "Nie zarejestrowano jeszcze żadnych danych."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
"Liczone są tylko strumienie conntrack z lub do którejkolwiek z tych sieci." "Liczone są tylko strumienie conntrack z lub do którejkolwiek z tych sieci."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
"Liczone są tylko strumienie conntrack z lub do którejkolwiek z tych podsieci." "Liczone są tylko strumienie conntrack z lub do którejkolwiek z tych podsieci."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "Prealokuj bazę danych" msgstr "Prealokuj bazę danych"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "Protokół" msgstr "Protokół"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "Mapowanie protokołów" msgstr "Mapowanie protokołów"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
@ -427,41 +452,45 @@ msgstr ""
"na linię. Pierwsza wartość określa protokół IP, druga numer portu, a trzecia " "na linię. Pierwsza wartość określa protokół IP, druga numer portu, a trzecia "
"nazwę mapowanego protokołu." "nazwę mapowanego protokołu."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "Częstotliwość odświeżania" msgstr "Częstotliwość odświeżania"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "Przywróć" msgstr "Przywróć"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "Przywracanie kopii zapasowej bazy danych" msgstr "Przywracanie kopii zapasowej bazy danych"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "Wybierz okres rozliczeniowy:" msgstr "Wybierz okres rozliczeniowy:"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "Źródłowy adres IP" msgstr "Źródłowy adres IP"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "Data rozpoczęcia" msgstr "Data rozpoczęcia"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
"Data rozpoczęcia pierwszego okresu rozliczeniowego, np. początek umowy z " "Data rozpoczęcia pierwszego okresu rozliczeniowego, np. początek umowy z "
"dostawcą usług internetowych." "dostawcą usług internetowych."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "Przechowywane okresy" msgstr "Przechowywane okresy"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
@ -470,11 +499,11 @@ msgstr ""
"programem do księgowania ruchu, śledzącym wykorzystanie przepustowości " "programem do księgowania ruchu, śledzącym wykorzystanie przepustowości "
"hostów i protokołów." "hostów i protokołów."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "Przywrócono następujące pliki bazy danych: %s" msgstr "Przywrócono następujące pliki bazy danych:"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
@ -482,51 +511,55 @@ msgstr ""
"Maksymalna liczba wpisów, które powinny zostać wprowadzone do bazy danych, " "Maksymalna liczba wpisów, które powinny zostać wprowadzone do bazy danych, "
"przy ustawieniu limitu na 0, pozwoli bazom danych na nieograniczony wzrost." "przy ustawieniu limitu na 0, pozwoli bazom danych na nieograniczony wzrost."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "Ruch sieciowy/Host" msgstr "Ruch sieciowy/Host"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "Dystrybucja ruchu" msgstr "Dystrybucja ruchu"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "Wysyłanie (Bajty)" msgstr "Wysyłanie (Bajty)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "Wysyłanie (Pakiety)" msgstr "Wysyłanie (Pakiety)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "Wyślij" msgstr "Wyślij"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "Wysyłanie (Bajty)" msgstr "Wysyłanie (Bajty)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "Wysyłanie (Pakiety)" msgstr "Wysyłanie (Pakiety)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "Wysyłanie/Aplikacja" msgstr "Wysyłanie/Aplikacja"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "Producent: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "Producent: <big id=\"bubble-vendor\">Example Corp.</big>"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "Ostrzeżenie" msgstr "Ostrzeżenie"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
@ -536,7 +569,7 @@ msgstr ""
"powoduje, że dostęp do starych danych jest nieco wolniejszy, ale redukuje " "powoduje, że dostęp do starych danych jest nieco wolniejszy, ale redukuje "
"zapotrzebowanie na pamięć masową." "zapotrzebowanie na pamięć masową."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
@ -547,16 +580,19 @@ msgstr ""
"nie być w stanie zaspokoić alokacji pamięci po dłuższych okresach " "nie być w stanie zaspokoić alokacji pamięci po dłuższych okresach "
"bezawaryjnej pracy." "bezawaryjnej pracy."
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "brak ruchu sieciowego" msgstr "brak ruchu sieciowego"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "inny" msgstr "inny"
#~ msgid "Invalid or empty backup archive"
#~ msgstr "Nieprawidłowe lub puste archiwum kopii zapasowej"

View file

@ -10,151 +10,151 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.10-dev\n" "X-Generator: Weblate 3.10-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "%d hosts somente no IPv4" msgstr "%d hosts somente no IPv4"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "%d hosts somente no IPv6" msgstr "%d hosts somente no IPv6"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "%d de hosts dual-stack" msgstr "%d de hosts dual-stack"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "%s e %s" msgstr "%s e %s"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "%s, %s e %s" msgstr "%s, %s e %s"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "-1 - Reiniciar no último dia do mês" msgstr "-1 - Reiniciar no último dia do mês"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "-7 - Reiniciar uma semana antes do fim do mês" msgstr "-7 - Reiniciar uma semana antes do fim do mês"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "1 - Reiniciar a cada 1º dia do mês" msgstr "1 - Reiniciar a cada 1º dia do mês"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "10m - commits frequentes à custa do desgaste do flash" msgstr "10m - commits frequentes à custa do desgaste do flash"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "12h - compromisso entre risco de perda de dados e desgaste do flash" msgstr "12h - compromisso entre risco de perda de dados e desgaste do flash"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "24h - menor desgaste do flash à custa do risco de perda de dados" msgstr "24h - menor desgaste do flash à custa do risco de perda de dados"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
"30s - atualizar duas vezes por minuto para estatísticas razoavelmente atuais" "30s - atualizar duas vezes por minuto para estatísticas razoavelmente atuais"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
"5m - atualizar raramente para evitar a limpeza frequente de contadores de " "5m - atualizar raramente para evitar a limpeza frequente de contadores de "
"conntrack" "conntrack"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "60s - commit minuciosamente, útil para armazenamentos sem flash" msgstr "60s - commit minuciosamente, útil para armazenamentos sem flash"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "<big id=\"conn-total\">0</big> conexões" msgstr "<big id=\"conn-total\">0</big> conexões"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "<big id=\"host-total\">0</big> hosts" msgstr "<big id=\"host-total\">0</big> hosts"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "<big id=\"ipv6-hosts\">0%</big> Taxa de suporte IPv6 entre hosts" msgstr "<big id=\"ipv6-hosts\">0%</big> Taxa de suporte IPv6 entre hosts"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "<big id=\"ipv6-rx\">0B</big> descarregamento IPv6 total" msgstr "<big id=\"ipv6-rx\">0B</big> descarregamento IPv6 total"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "<big id=\"ipv6-share\">0%</big> do tráfego total é IPv6" msgstr "<big id=\"ipv6-share\">0%</big> do tráfego total é IPv6"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "<big id=\"ipv6-tx\">0B</big> envio IPv6 total" msgstr "<big id=\"ipv6-tx\">0B</big> envio IPv6 total"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "<big id=\"layer7-most-conn\">0</big> causam a maioria das conexões" msgstr "<big id=\"layer7-most-conn\">0</big> causam a maioria das conexões"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
"<big id=\"layer7-most-rx\">0</big> causam o maior número de descarregamentos" "<big id=\"layer7-most-rx\">0</big> causam o maior número de descarregamentos"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "<big id=\"layer7-most-tx\">0</big> causam o maior número de envios" msgstr "<big id=\"layer7-most-tx\">0</big> causam o maior número de envios"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "<big id=\"layer7-total\">0</big> protocolos de aplicação diferentes" msgstr "<big id=\"layer7-total\">0</big> protocolos de aplicação diferentes"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "<big id=\"rx-total\">0</big> descarregamento" msgstr "<big id=\"rx-total\">0</big> descarregamento"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "<big id=\"tx-total\">0</big> envio" msgstr "<big id=\"tx-total\">0</big> envio"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "Período contábil" msgstr "Período contábil"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Definições Avançadas" msgstr "Definições Avançadas"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "Aplicação" msgstr "Aplicação"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "Protocolos de Aplicação" msgstr "Protocolos de Aplicação"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "Backup" msgstr "Backup"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "Monitor de Largura de Banda" msgstr "Monitor de Largura de Banda"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "CSV, agrupado por IP" msgstr "CSV, agrupado por IP"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "CSV, agrupado por MAC" msgstr "CSV, agrupado por MAC"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "CSV, agrupado por protocolo" msgstr "CSV, agrupado por protocolo"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
@ -163,7 +163,7 @@ msgstr ""
"dados existentes!<br /><strong><a href=\"%s\">Descarregar backup</a></" "dados existentes!<br /><strong><a href=\"%s\">Descarregar backup</a></"
"strong>." "strong>."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
@ -174,42 +174,42 @@ msgstr ""
"para reiniciar o período contábil exatamente a cada N dias, começando numa " "para reiniciar o período contábil exatamente a cada N dias, começando numa "
"determinada data." "determinada data."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "A recolher dados..." msgstr "A recolher dados..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "Intervalo de commit" msgstr "Intervalo de commit"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "Comprimir banco de dados" msgstr "Comprimir banco de dados"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Configuração" msgstr "Configuração"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "Con." msgstr "Con."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "Ligações" msgstr "Ligações"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "Conexões / Host" msgstr "Conexões / Host"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "Diretório da base de dados" msgstr "Diretório da base de dados"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
@ -217,11 +217,11 @@ msgstr ""
"Diretório de armazenamento de banco de dados. Um ficheiro por período " "Diretório de armazenamento de banco de dados. Um ficheiro por período "
"contábil estará neste diretório." "contábil estará neste diretório."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "Dia do mês" msgstr "Dia do mês"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
@ -231,103 +231,127 @@ msgstr ""
"contar para o final do mês, por exemplo \"-5\" para especificar o dia 27 de " "contar para o final do mês, por exemplo \"-5\" para especificar o dia 27 de "
"julho ou o dia 24 de fevereiro." "julho ou o dia 24 de fevereiro."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "Mostrar" msgstr "Mostrar"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "Desc. (Bytes)" msgstr "Desc. (Bytes)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "Desc. (Pcts.)" msgstr "Desc. (Pcts.)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "Descarregar" msgstr "Descarregar"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "Descarregamento (Bytes)" msgstr "Descarregamento (Bytes)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "Descarregamento (Pacotes)" msgstr "Descarregamento (Pacotes)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "Descarregamento / Aplicação" msgstr "Descarregamento / Aplicação"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "Descarregar Backup de Base de Dados" msgstr "Descarregar Backup de Base de Dados"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "Hosts com dualstack ativado" msgstr "Hosts com dualstack ativado"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "Data limite" msgstr "Data limite"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "Exportação" msgstr "Exportação"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "Família" msgstr "Família"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "Intervalo fixo" msgstr "Intervalo fixo"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "Regarregar forçadamente…" msgstr "Regarregar forçadamente…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "Configurações Gerais" msgstr "Configurações Gerais"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "Gerar backup" msgstr "Gerar backup"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "Host" msgstr "Host"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "Nome do Host: <big id=\"bubble-hostname\">exemplo.org</big>" msgstr "Nome do Host: <big id=\"bubble-hostname\">exemplo.org</big>"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "IPv4 contra IPv6" msgstr "IPv4 contra IPv6"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "Intervalo" msgstr "Intervalo"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
@ -335,7 +359,7 @@ msgstr ""
"Intervalo no qual o banco de dados na memória temporário é enviado para o " "Intervalo no qual o banco de dados na memória temporário é enviado para o "
"diretório do banco de dados persistente." "diretório do banco de dados persistente."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
@ -343,36 +367,36 @@ msgstr ""
"Intervalo no qual os contadores de tráfego de conexões ainda estabelecidas " "Intervalo no qual os contadores de tráfego de conexões ainda estabelecidas "
"são atualizados a partir de informações netlink." "são atualizados a partir de informações netlink."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr "Arquivo de backup inválido ou vazio"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "Despejo de JSON" msgstr "Despejo de JSON"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "Duração do intervalo contábil em dias." msgstr "Duração do intervalo contábil em dias."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "Interfaces locais" msgstr "Interfaces locais"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "Subredes locais" msgstr "Subredes locais"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "Quantidade máxima de entradas" msgstr "Quantidade máxima de entradas"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
@ -380,49 +404,49 @@ msgstr ""
"Quantidade máxima de períodos contáveis a manter, use zero para manter " "Quantidade máxima de períodos contáveis a manter, use zero para manter "
"bancos de dados para sempre." "bancos de dados para sempre."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "Monitor de Largura de Banda Netlink" msgstr "Monitor de Largura de Banda Netlink"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "Monitor de Largura de Banda Netlink - Backup / Restauração" msgstr "Monitor de Largura de Banda Netlink - Backup / Restauração"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "Monitor de Largura de Banda Netlink - Configuração" msgstr "Monitor de Largura de Banda Netlink - Configuração"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "Ainda não há dados registados." msgstr "Ainda não há dados registados."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
"Somente os fluxos de conntrack de ou para qualquer uma dessas redes são " "Somente os fluxos de conntrack de ou para qualquer uma dessas redes são "
"contados." "contados."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
"Somente fluxos de conntrack de ou para qualquer uma dessas sub-redes são " "Somente fluxos de conntrack de ou para qualquer uma dessas sub-redes são "
"contados." "contados."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "Pré-alocar banco de dados" msgstr "Pré-alocar banco de dados"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "Protocolo" msgstr "Protocolo"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "Mapeamento de Protocolos" msgstr "Mapeamento de Protocolos"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
@ -432,41 +456,45 @@ msgstr ""
"mapeamento por linha. O primeiro valor especifica o protocolo IP, o segundo " "mapeamento por linha. O primeiro valor especifica o protocolo IP, o segundo "
"valor o número da porta e a terceira coluna é o nome do protocolo mapeado." "valor o número da porta e a terceira coluna é o nome do protocolo mapeado."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "Intervalo de atualização" msgstr "Intervalo de atualização"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "Restauração" msgstr "Restauração"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "Restaurar o Backup do Banco de Dados" msgstr "Restaurar o Backup do Banco de Dados"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "Selecionar período contábil:" msgstr "Selecionar período contábil:"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "IP de origem" msgstr "IP de origem"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "Data de início" msgstr "Data de início"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
"Data de início do primeiro período contábil, por exemplo, início do contrato " "Data de início do primeiro período contábil, por exemplo, início do contrato "
"com o provedor." "com o provedor."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "Períodos armazenados" msgstr "Períodos armazenados"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
@ -475,11 +503,11 @@ msgstr ""
"um programa de contabilidade de tráfego leve e eficiente que controla o uso " "um programa de contabilidade de tráfego leve e eficiente que controla o uso "
"da largura de banda por host e protocolo." "da largura de banda por host e protocolo."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "Os ficheiros de banco de dados seguintes foram restaurados: %s" msgstr "Os ficheiros de banco de dados seguintes foram restaurados:"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
@ -488,51 +516,55 @@ msgstr ""
"configurando o limite p ara 0 permitirá que as bases de dados cresçam " "configurando o limite p ara 0 permitirá que as bases de dados cresçam "
"indefinidamente." "indefinidamente."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "Tráfego / Host" msgstr "Tráfego / Host"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "Distribuição do Tráfego" msgstr "Distribuição do Tráfego"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "Acima. (Bytes)" msgstr "Acima. (Bytes)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "Acima. (Pcts.)" msgstr "Acima. (Pcts.)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "Enviar" msgstr "Enviar"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "Envio (Bytes)" msgstr "Envio (Bytes)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "Envio (Pacotes)" msgstr "Envio (Pacotes)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "Envio / Aplicação" msgstr "Envio / Aplicação"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "Fornecedor: <big id=\"bubble-vendor\">Corp. Exemplo</big>" msgstr "Fornecedor: <big id=\"bubble-vendor\">Corp. Exemplo</big>"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "Aviso" msgstr "Aviso"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
@ -542,7 +574,7 @@ msgstr ""
"ficheiros de banco de dados torna o acesso aos dados antigos um pouco mais " "ficheiros de banco de dados torna o acesso aos dados antigos um pouco mais "
"lento, mas ajuda a reduzir os requisitos de armazenamento." "lento, mas ajuda a reduzir os requisitos de armazenamento."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
@ -553,16 +585,19 @@ msgstr ""
"não ser capazes de satisfazer a alocação de memória após períodos de " "não ser capazes de satisfazer a alocação de memória após períodos de "
"atividade mais longos." "atividade mais longos."
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "nenhum tráfego" msgstr "nenhum tráfego"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "outro" msgstr "outro"
#~ msgid "Invalid or empty backup archive"
#~ msgstr "Arquivo de backup inválido ou vazio"

View file

@ -10,159 +10,159 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.10-dev\n" "X-Generator: Weblate 3.10-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "%d apenas hosts IPV4" msgstr "%d apenas hosts IPV4"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "%d apenas hosts IPv6" msgstr "%d apenas hosts IPv6"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "%d hosts com pilha dupla" msgstr "%d hosts com pilha dupla"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "%s e %s" msgstr "%s e %s"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "%s, %s e %s" msgstr "%s, %s e %s"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "-1 - Reiniciar todos os últimos dias do mês" msgstr "-1 - Reiniciar todos os últimos dias do mês"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "-7 - Reiniciar uma semana antes do fim do mês" msgstr "-7 - Reiniciar uma semana antes do fim do mês"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "1 - Reiniciar a cada 1º dia do mês" msgstr "1 - Reiniciar a cada 1º dia do mês"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "10m - commits frequentes à custa do desgaste da memória flash" msgstr "10m - commits frequentes à custa do desgaste da memória flash"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
"12h - compromisso entre risco de perda de dados e desgaste da memória flash" "12h - compromisso entre risco de perda de dados e desgaste da memória flash"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
"24h - menor desgaste da memória flash à custa do risco de perda de dados" "24h - menor desgaste da memória flash à custa do risco de perda de dados"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
"30s - atualizar duas vezes por minuto para manter as estatísticas " "30s - atualizar duas vezes por minuto para manter as estatísticas "
"razoavelmente atuais" "razoavelmente atuais"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
"5m - atualizar raramente para evitar a limpeza frequente dos contadores " "5m - atualizar raramente para evitar a limpeza frequente dos contadores "
"conntrack" "conntrack"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
"60s - realizar um commit por minuto, útil para armazenamento sem memória " "60s - realizar um commit por minuto, útil para armazenamento sem memória "
"flash" "flash"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "<big id=\"conn-total\">0</big> conexões" msgstr "<big id=\"conn-total\">0</big> conexões"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "<big id=\"host-total\">0</big> hosts" msgstr "<big id=\"host-total\">0</big> hosts"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
"<big id=\"ipv6-hosts\">0%</big> Taxa de compatibilidade IPv6 entre os hosts" "<big id=\"ipv6-hosts\">0%</big> Taxa de compatibilidade IPv6 entre os hosts"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "<big id=\"ipv6-rx\">0B</big> total de downloads IPv6" msgstr "<big id=\"ipv6-rx\">0B</big> total de downloads IPv6"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "<big id=\"ipv6-share\">0%</big> do tráfego total é IPv6" msgstr "<big id=\"ipv6-share\">0%</big> do tráfego total é IPv6"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "<big id=\"ipv6-tx\">0B</big> upload IPv6 total" msgstr "<big id=\"ipv6-tx\">0B</big> upload IPv6 total"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "<big id=\"layer7-most-conn\">0</big> causou a maioria das conexões" msgstr "<big id=\"layer7-most-conn\">0</big> causou a maioria das conexões"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
"<big id=\"layer7-most-rx\">0</big> causou a maioria da quantidade de " "<big id=\"layer7-most-rx\">0</big> causou a maioria da quantidade de "
"downloads" "downloads"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
"<big id=\"layer7-most-tx\">0</big> causou a maioria da quantidade de uploads" "<big id=\"layer7-most-tx\">0</big> causou a maioria da quantidade de uploads"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "<big id=\"layer7-total\">0</big> protocolos de diferentes aplicativos" msgstr "<big id=\"layer7-total\">0</big> protocolos de diferentes aplicativos"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "<big id=\"rx-total\">0</big> download" msgstr "<big id=\"rx-total\">0</big> download"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "<big id=\"tx-total\">0</big> upload" msgstr "<big id=\"tx-total\">0</big> upload"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "Período contábil" msgstr "Período contábil"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Configurações Avançadas" msgstr "Configurações Avançadas"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "Aplicação" msgstr "Aplicação"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "Protocolos de aplicação" msgstr "Protocolos de aplicação"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "Cópia de Segurança" msgstr "Cópia de Segurança"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "Monitor da Largura de Banda" msgstr "Monitor da Largura de Banda"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "CSV, agrupado por IP" msgstr "CSV, agrupado por IP"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "CSV, agrupado por MAC" msgstr "CSV, agrupado por MAC"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "CSV, agrupados por protocolo" msgstr "CSV, agrupados por protocolo"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
@ -170,7 +170,7 @@ msgstr ""
"Alterar o tipo de intervalo de contabilização invalida as bases de dados " "Alterar o tipo de intervalo de contabilização invalida as bases de dados "
"existentes!<br /><strong><a href=\"%s\">Download backup</a></strong>." "existentes!<br /><strong><a href=\"%s\">Download backup</a></strong>."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
@ -181,42 +181,42 @@ msgstr ""
"\" para reiniciar o período contábil exatamente a cada N dias, começando em " "\" para reiniciar o período contábil exatamente a cada N dias, começando em "
"uma data determinada." "uma data determinada."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Coletando dados..." msgstr "Coletando dados..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "Intervalo de commit" msgstr "Intervalo de commit"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "Comprimir o banco de dados" msgstr "Comprimir o banco de dados"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Configuração" msgstr "Configuração"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "Conn." msgstr "Conn."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "Conexões" msgstr "Conexões"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "Conexões / Host" msgstr "Conexões / Host"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "Diretório do Banco de Dados" msgstr "Diretório do Banco de Dados"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
@ -224,11 +224,11 @@ msgstr ""
"O diretório de armazenamento de banco de dados. Um arquivo por período " "O diretório de armazenamento de banco de dados. Um arquivo por período "
"contábil será colocado neste diretório." "contábil será colocado neste diretório."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "Dia do mês" msgstr "Dia do mês"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
@ -238,103 +238,127 @@ msgstr ""
"contar no final do mês, por exemplo \"-5\" para especificar o dia 27 de " "contar no final do mês, por exemplo \"-5\" para especificar o dia 27 de "
"Julho ou o dia 24 de Fevereiro." "Julho ou o dia 24 de Fevereiro."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "Exibir" msgstr "Exibir"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "Down. (Bytes)" msgstr "Down. (Bytes)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "Down. (Pcts.)" msgstr "Down. (Pcts.)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "Download" msgstr "Download"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "Download (Bytes)" msgstr "Download (Bytes)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "Download (Pacotes)" msgstr "Download (Pacotes)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "Download / Aplicação" msgstr "Download / Aplicação"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "Fazer Download da Cópia de Segurança do Banco de Dados" msgstr "Fazer Download da Cópia de Segurança do Banco de Dados"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "Hosts com pilha dupla ativada" msgstr "Hosts com pilha dupla ativada"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "Data de vencimento" msgstr "Data de vencimento"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "Exportar" msgstr "Exportar"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "Família" msgstr "Família"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "Intervalo fixo" msgstr "Intervalo fixo"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "Impor o recarregamento…" msgstr "Impor o recarregamento…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "Configurações Gerais" msgstr "Configurações Gerais"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "Gerar Cópia de Segurança" msgstr "Gerar Cópia de Segurança"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "Host" msgstr "Host"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "Nome do host: <big id=\"bubble-hostname\">example.org</big>" msgstr "Nome do host: <big id=\"bubble-hostname\">example.org</big>"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "IPv4 contra IPv6" msgstr "IPv4 contra IPv6"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "Intervalo" msgstr "Intervalo"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
@ -342,7 +366,7 @@ msgstr ""
"Intervalo no qual o banco de dados temporário na memória é enviado para o " "Intervalo no qual o banco de dados temporário na memória é enviado para o "
"diretório do banco de dados persistente." "diretório do banco de dados persistente."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
@ -350,36 +374,36 @@ msgstr ""
"Intervalo no qual os contadores de tráfego de conexões ainda estabelecidas " "Intervalo no qual os contadores de tráfego de conexões ainda estabelecidas "
"são atualizados a partir das informações do netlink." "são atualizados a partir das informações do netlink."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr "O arquivo da cópia de segurança está inválido ou vazio"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "Despejo JSON" msgstr "Despejo JSON"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "Duração do intervalo contábil em dias." msgstr "Duração do intervalo contábil em dias."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "Interfaces locais" msgstr "Interfaces locais"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "Subredes locais" msgstr "Subredes locais"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "Quantidade máxima de entradas" msgstr "Quantidade máxima de entradas"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
@ -387,49 +411,49 @@ msgstr ""
"Quantidade máxima de períodos contábeis a serem mantidos, use zero para " "Quantidade máxima de períodos contábeis a serem mantidos, use zero para "
"manter os bancos de dados para sempre." "manter os bancos de dados para sempre."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "Monitor da Largura de Banda Netlink" msgstr "Monitor da Largura de Banda Netlink"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "Monitor da Largura de Banda Netlink - Cópia de Segurança / Restauração" msgstr "Monitor da Largura de Banda Netlink - Cópia de Segurança / Restauração"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "Monitor da Largura de Banda Netlink - Configuração" msgstr "Monitor da Largura de Banda Netlink - Configuração"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "Ainda não há dados registrados." msgstr "Ainda não há dados registrados."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
"Somente os fluxos conntrack de ou para qualquer uma dessas redes são " "Somente os fluxos conntrack de ou para qualquer uma dessas redes são "
"contabilizados." "contabilizados."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
"Somente fluxos conntrack de ou para qualquer uma destas sub-redes são " "Somente fluxos conntrack de ou para qualquer uma destas sub-redes são "
"contabilizados." "contabilizados."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "Pré-alocar o banco de dados" msgstr "Pré-alocar o banco de dados"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "Protocolo" msgstr "Protocolo"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "Mapeamento de Protocolos" msgstr "Mapeamento de Protocolos"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
@ -440,41 +464,45 @@ msgstr ""
"protocolo IP, o segundo valor o número da porta e a terceira coluna é o nome " "protocolo IP, o segundo valor o número da porta e a terceira coluna é o nome "
"do protocolo mapeado." "do protocolo mapeado."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "Intervalo de atualização" msgstr "Intervalo de atualização"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "Restauração" msgstr "Restauração"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "Restaurar a Cópia de Segurança do Banco de Dados" msgstr "Restaurar a Cópia de Segurança do Banco de Dados"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "Selecione o período contábil:" msgstr "Selecione o período contábil:"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "IP de Origem" msgstr "IP de Origem"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "Data de Início" msgstr "Data de Início"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
"Data de início do primeiro período contábil, por exemplo, início do contrato " "Data de início do primeiro período contábil, por exemplo, início do contrato "
"com o provedor de internet." "com o provedor de internet."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "Períodos de armazenamento" msgstr "Períodos de armazenamento"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
@ -483,11 +511,11 @@ msgstr ""
"contabilidade de tráfego leve e eficiente que controla o uso da largura de " "contabilidade de tráfego leve e eficiente que controla o uso da largura de "
"banda por host e protocolo." "banda por host e protocolo."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "Os seguintes arquivos de banco de dados foram restaurados: %s" msgstr "Os seguintes arquivos de banco de dados foram restaurados:"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
@ -496,51 +524,55 @@ msgstr ""
"fixando o limite em 0, permitirá que as bases de dados cresçam " "fixando o limite em 0, permitirá que as bases de dados cresçam "
"indefinidamente." "indefinidamente."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "Tráfego / Host" msgstr "Tráfego / Host"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "Distribuição de Tráfego" msgstr "Distribuição de Tráfego"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "Up. (Bytes)" msgstr "Up. (Bytes)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "Up. (Pcts.)" msgstr "Up. (Pcts.)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "Envio" msgstr "Envio"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "Envio (Bytes)" msgstr "Envio (Bytes)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "Envio (Pacotes)" msgstr "Envio (Pacotes)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "Envio / Aplicação" msgstr "Envio / Aplicação"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "Vendedor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "Vendedor: <big id=\"bubble-vendor\">Example Corp.</big>"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "Alerta" msgstr "Alerta"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
@ -550,7 +582,7 @@ msgstr ""
"arquivos de banco de dados torna o acesso aos dados antigos um pouco mais " "arquivos de banco de dados torna o acesso aos dados antigos um pouco mais "
"lentos, porém ajuda a reduzir o espaço de armazenamento." "lentos, porém ajuda a reduzir o espaço de armazenamento."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
@ -561,16 +593,19 @@ msgstr ""
"serem capazes de satisfazer a alocação de memória após períodos de atividade " "serem capazes de satisfazer a alocação de memória após períodos de atividade "
"mais longos." "mais longos."
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "nenhum tráfego" msgstr "nenhum tráfego"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "Outros" msgstr "Outros"
#~ msgid "Invalid or empty backup archive"
#~ msgstr "O arquivo da cópia de segurança está inválido ou vazio"

View file

@ -11,515 +11,547 @@ msgstr ""
"20)) ? 1 : 2;\n" "20)) ? 1 : 2;\n"
"X-Generator: Weblate 4.0-dev\n" "X-Generator: Weblate 4.0-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Setări avansate" msgstr "Setări avansate"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Colectare date..." msgstr "Colectare date..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Configurare" msgstr "Configurare"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "Setări generale" msgstr "Setări generale"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -16,151 +16,151 @@ msgstr ""
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "%d только IPv4 хост(а, ов)" msgstr "%d только IPv4 хост(а, ов)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "%d только IPv6 хост(а, ов)" msgstr "%d только IPv6 хост(а, ов)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "%d хост(а, ов) с двумя стеками" msgstr "%d хост(а, ов) с двумя стеками"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "%s и %s" msgstr "%s и %s"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "%s, %s и %s" msgstr "%s, %s и %s"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "-1 — Перезапуск каждый последний день месяца" msgstr "-1 — Перезапуск каждый последний день месяца"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "-7 — Перезапуск за неделю до конца месяца" msgstr "-7 — Перезапуск за неделю до конца месяца"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "1 — Перезапуск 1-го числа каждого месяца" msgstr "1 — Перезапуск 1-го числа каждого месяца"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "10m — частое сохранение, повышенный износ флеш памяти" msgstr "10m — частое сохранение, повышенный износ флеш памяти"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "12h — компромисс между риском потери данных и нагрузкой на флеш память" msgstr "12h — компромисс между риском потери данных и нагрузкой на флеш память"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "24h — наименьшая нагрузка на флеш память, но есть риск потери данных" msgstr "24h — наименьшая нагрузка на флеш память, но есть риск потери данных"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
"30s — обновлять два раза в минуту для поддержания актуальной текущей " "30s — обновлять два раза в минуту для поддержания актуальной текущей "
"статистики" "статистики"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
"5m — редкое обновление, для предотвращения частой очистки счётчиков conntrack" "5m — редкое обновление, для предотвращения частой очистки счётчиков conntrack"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "60s — ежеминутное сохранение, подходит для не флеш накопителей" msgstr "60s — ежеминутное сохранение, подходит для не флеш накопителей"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "<big id=\"conn-total\">0</big> соединений" msgstr "<big id=\"conn-total\">0</big> соединений"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "<big id=\"host-total\">0</big> хост(а, ов)" msgstr "<big id=\"host-total\">0</big> хост(а, ов)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "<big id=\"ipv6-hosts\">0%</big> скорости хостов через IPv6" msgstr "<big id=\"ipv6-hosts\">0%</big> скорости хостов через IPv6"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "<big id=\"ipv6-rx\">0B</big> всего скачано по IPv6" msgstr "<big id=\"ipv6-rx\">0B</big> всего скачано по IPv6"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "<big id=\"ipv6-share\">0%</big> от общего трафика — IPv6" msgstr "<big id=\"ipv6-share\">0%</big> от общего трафика — IPv6"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "<big id=\"ipv6-tx\">0B</big> всего загружено по IPv6" msgstr "<big id=\"ipv6-tx\">0B</big> всего загружено по IPv6"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
"<big id=\"layer7-most-conn\">0</big> создают наибольшее число соединений" "<big id=\"layer7-most-conn\">0</big> создают наибольшее число соединений"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "<big id=\"layer7-most-rx\">0</big> создают наибольший объём скачивания" msgstr "<big id=\"layer7-most-rx\">0</big> создают наибольший объём скачивания"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "<big id=\"layer7-most-tx\">0</big> создают наибольший объём загрузки" msgstr "<big id=\"layer7-most-tx\">0</big> создают наибольший объём загрузки"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "<big id=\"layer7-total\">0</big> различных протоколов" msgstr "<big id=\"layer7-total\">0</big> различных протоколов"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "<big id=\"rx-total\">0</big> скачано" msgstr "<big id=\"rx-total\">0</big> скачано"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "<big id=\"tx-total\">0</big> загружено" msgstr "<big id=\"tx-total\">0</big> загружено"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "Отчётный период" msgstr "Отчётный период"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Дополнительные настройки" msgstr "Дополнительные настройки"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "Приложение" msgstr "Приложение"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "Прикладные протоколы" msgstr "Прикладные протоколы"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "Резервная копия" msgstr "Резервная копия"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "Мониторинг трафика" msgstr "Мониторинг трафика"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "CSV, сгруппированный по IP-адресам" msgstr "CSV, сгруппированный по IP-адресам"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "CSV, сгруппированный по MAC-адресам" msgstr "CSV, сгруппированный по MAC-адресам"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "CSV, сгруппированный по протоколам" msgstr "CSV, сгруппированный по протоколам"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
@ -168,53 +168,53 @@ msgstr ""
"Изменение типа отчётного периода сделает недействительными существующие базы " "Изменение типа отчётного периода сделает недействительными существующие базы "
"данных!<br /><strong><a href=\"%s\">Скачать резервную копию</a></strong>." "данных!<br /><strong><a href=\"%s\">Скачать резервную копию</a></strong>."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
"Выберите «День месяца» для ежемесячного перезапуска отчётного периода в " "Выберите «День месяца» для ежемесячного перезапуска отчётного периода в "
"конкретное число месяца, например каждое 3-е число месяца.<br />Выберите «" "конкретное число месяца, например каждое 3-е число месяца.<br />Выберите "
"Фиксированный интервал», чтобы перезапускать отчётный период через каждые N " "«Фиксированный интервал», чтобы перезапускать отчётный период через каждые N "
"дней, начиная с заданной даты." "дней, начиная с заданной даты."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Сбор данных..." msgstr "Сбор данных..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "Интервал сохранения" msgstr "Интервал сохранения"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "Сжатие базы данных" msgstr "Сжатие базы данных"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Конфигурация" msgstr "Конфигурация"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "Соед." msgstr "Соед."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "Соединения" msgstr "Соединения"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "Соединения / Хост" msgstr "Соединения / Хост"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "Папка базы данных" msgstr "Папка базы данных"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
@ -222,11 +222,11 @@ msgstr ""
"Папка хранения базы данных. В данной папке сохраняется по одному файлу за " "Папка хранения базы данных. В данной папке сохраняется по одному файлу за "
"отчётный период." "отчётный период."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "День месяца" msgstr "День месяца"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
@ -236,103 +236,127 @@ msgstr ""
"значения для отсчёта с конца месяца, например, «-5», чтобы указать 27-е июля " "значения для отсчёта с конца месяца, например, «-5», чтобы указать 27-е июля "
"или 24-е февраля." "или 24-е февраля."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "Отобразить" msgstr "Отобразить"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "Скач. (байты)" msgstr "Скач. (байты)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "Скач. (пакеты)" msgstr "Скач. (пакеты)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "Скачивание" msgstr "Скачивание"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "Скачивание (байты)" msgstr "Скачивание (байты)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "Скачивание (пакеты)" msgstr "Скачивание (пакеты)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "Скачивание / Приложение" msgstr "Скачивание / Приложение"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "Скачать резервную копию базы данных" msgstr "Скачать резервную копию базы данных"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "Хосты с двумя стеками" msgstr "Хосты с двумя стеками"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "Срок" msgstr "Срок"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "Экспорт" msgstr "Экспорт"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "Семейство" msgstr "Семейство"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "Фиксированный интервал" msgstr "Фиксированный интервал"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "Принудительный перезапуск…" msgstr "Принудительный перезапуск…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "Основные настройки" msgstr "Основные настройки"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "Создать резервную копию" msgstr "Создать резервную копию"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "Хост" msgstr "Хост"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "Имя хоста: <big id=\"bubble-hostname\">example.org</big>" msgstr "Имя хоста: <big id=\"bubble-hostname\">example.org</big>"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "IPv4 против IPv6" msgstr "IPv4 против IPv6"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "Интервал" msgstr "Интервал"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
@ -340,7 +364,7 @@ msgstr ""
"Интервал, через который временная база данных в оперативной памяти " "Интервал, через который временная база данных в оперативной памяти "
"сохраняется в папку постоянной базы данных." "сохраняется в папку постоянной базы данных."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
@ -348,36 +372,36 @@ msgstr ""
"Интервал обновления счётчиков трафика установленных соединений из информации " "Интервал обновления счётчиков трафика установленных соединений из информации "
"netlink." "netlink."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr "Неверный или пустой архив резервной копии"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "Дамп JSON" msgstr "Дамп JSON"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "Продолжительность учётного интервала в днях." msgstr "Продолжительность учётного интервала в днях."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "Локальные интерфейсы" msgstr "Локальные интерфейсы"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "Локальные подсети" msgstr "Локальные подсети"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "Максимальное количество записей" msgstr "Максимальное количество записей"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
@ -385,45 +409,45 @@ msgstr ""
"Максимальное количество отчётных периодов для хранения. Установка значения " "Максимальное количество отчётных периодов для хранения. Установка значения "
"«0» позволяет хранить все периоды постоянно." "«0» позволяет хранить все периоды постоянно."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "Netlink мониторинг трафика" msgstr "Netlink мониторинг трафика"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "Netlink мониторинг трафика - Резервная копия / Восстановление" msgstr "Netlink мониторинг трафика - Резервная копия / Восстановление"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "Netlink мониторинг трафика - Настройка" msgstr "Netlink мониторинг трафика - Настройка"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "Данные еще не записаны." msgstr "Данные еще не записаны."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "Отслеживаются только соединения из или в любую из этих сетей." msgstr "Отслеживаются только соединения из или в любую из этих сетей."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "Отслеживаются только соединения из или в любую из этих подсетей." msgstr "Отслеживаются только соединения из или в любую из этих подсетей."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "Выделить память для базы данных" msgstr "Выделить память для базы данных"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "Протокол" msgstr "Протокол"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "Сопоставление протоколов" msgstr "Сопоставление протоколов"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
@ -433,41 +457,45 @@ msgstr ""
"сопоставление протокола на строку. Первое значение определяет номер IP-" "сопоставление протокола на строку. Первое значение определяет номер IP-"
"протокола, второе значение — номер порта, третье — имя протокола." "протокола, второе значение — номер порта, третье — имя протокола."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "Интервал обновления" msgstr "Интервал обновления"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "Восстановить" msgstr "Восстановить"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "Восстановление базы данных из резервной копии" msgstr "Восстановление базы данных из резервной копии"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "Выберите отчётный период:" msgstr "Выберите отчётный период:"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "IP-адрес источника" msgstr "IP-адрес источника"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "Дата начала" msgstr "Дата начала"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
"Дата начала первого отчётного периода, например, дата заключения договора с " "Дата начала первого отчётного периода, например, дата заключения договора с "
"провайдером." "провайдером."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "Сохранённые периоды" msgstr "Сохранённые периоды"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
@ -476,11 +504,11 @@ msgstr ""
"учёта трафика, позволяющая отслеживать использование полосы пропускания " "учёта трафика, позволяющая отслеживать использование полосы пропускания "
"канала для каждого хоста и/или протокола." "канала для каждого хоста и/или протокола."
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "Восстановлены следующие файлы базы данных: %s" msgstr "Восстановлены следующие файлы базы данных:"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
@ -488,51 +516,55 @@ msgstr ""
"Максимальное количество записей, которые может быть помещено в базу данных. " "Максимальное количество записей, которые может быть помещено в базу данных. "
"Значение «0» позволит базе данных расти бесконечно." "Значение «0» позволит базе данных расти бесконечно."
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "Трафик / Хост" msgstr "Трафик / Хост"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "Распределение трафика" msgstr "Распределение трафика"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "Загр. (байты)" msgstr "Загр. (байты)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "Загр. (пакеты)" msgstr "Загр. (пакеты)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "Загрузка" msgstr "Загрузка"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "Загрузка (байты)" msgstr "Загрузка (байты)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "Загрузка (пакеты)" msgstr "Загрузка (пакеты)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "Загрузка / Приложение" msgstr "Загрузка / Приложение"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "Производитель: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "Производитель: <big id=\"bubble-vendor\">Example Corp.</big>"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "Внимание" msgstr "Внимание"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
@ -542,7 +574,7 @@ msgstr ""
"базы данных сделает доступ к старым данным немного медленнее, но поможет " "базы данных сделает доступ к старым данным немного медленнее, но поможет "
"снизить требования к хранилищу." "снизить требования к хранилищу."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
@ -553,20 +585,23 @@ msgstr ""
"памяти, которые могут быть не в состоянии выделить необходимый объем памяти " "памяти, которые могут быть не в состоянии выделить необходимый объем памяти "
"после долгой бесперебойной работы." "после долгой бесперебойной работы."
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "нет трафика" msgstr "нет трафика"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "другие" msgstr "другие"
#~ msgid "Invalid or empty backup archive"
#~ msgstr "Неверный или пустой архив резервной копии"
#~ msgid "Down. (Bytes / Pkts.)" #~ msgid "Down. (Bytes / Pkts.)"
#~ msgstr "Внутр. (Bytes / Pkts.)" #~ msgstr "Внутр. (Bytes / Pkts.)"

View file

@ -10,515 +10,547 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.0-dev\n" "X-Generator: Weblate 4.0-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Pokročilé nastavenia" msgstr "Pokročilé nastavenia"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "Záloha" msgstr "Záloha"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Zbieram dáta..." msgstr "Zbieram dáta..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Konfigurácia" msgstr "Konfigurácia"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "Pripojenia" msgstr "Pripojenia"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "Všeobecné nastavenia" msgstr "Všeobecné nastavenia"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "Protokol" msgstr "Protokol"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "Obnoviť" msgstr "Obnoviť"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "Odovzdať" msgstr "Odovzdať"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "Upozornenie" msgstr "Upozornenie"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -10,515 +10,547 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Avancerade inställningar" msgstr "Avancerade inställningar"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "Säkerhetskopiera" msgstr "Säkerhetskopiera"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Samlar in data..." msgstr "Samlar in data..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Konfiguration" msgstr "Konfiguration"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "Anslutningar" msgstr "Anslutningar"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "Visa" msgstr "Visa"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "Ladda ner" msgstr "Ladda ner"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "Generella inställningar" msgstr "Generella inställningar"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "Värd" msgstr "Värd"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "Protokoll" msgstr "Protokoll"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "Återställ" msgstr "Återställ"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "Varning" msgstr "Varning"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -1,515 +1,547 @@
msgid "" msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8" msgstr "Content-Type: text/plain; charset=UTF-8"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -10,515 +10,547 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Veri alınıyor..." msgstr "Veri alınıyor..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -11,515 +11,547 @@ msgstr ""
"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Додаткові параметри" msgstr "Додаткові параметри"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "Резервне копіювання" msgstr "Резервне копіювання"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Збирання даних..." msgstr "Збирання даних..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "Конфігурація" msgstr "Конфігурація"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "Підключення" msgstr "Підключення"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "Директорія бази даних" msgstr "Директорія бази даних"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "Завантажити" msgstr "Завантажити"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "Загальні параметри" msgstr "Загальні параметри"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "Вузол" msgstr "Вузол"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "Протокол" msgstr "Протокол"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "Відновлення" msgstr "Відновлення"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "Відвантажити" msgstr "Відвантажити"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "Застереження" msgstr "Застереження"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -10,515 +10,547 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.11-dev\n" "X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
"accounting period exactly every N days, beginning at a given date." "accounting period exactly every N days, beginning at a given date."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "Đang lấy dữ liệu..." msgstr "Đang lấy dữ liệu..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
"24th of February." "24th of February."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "Giao thức" msgstr "Giao thức"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
"number and the third column is the name of the mapped protocol." "number and the third column is the name of the mapped protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
"requirements." "requirements."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
"satisfy memory allocation after longer uptime periods." "satisfy memory allocation after longer uptime periods."
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "" msgstr ""

View file

@ -13,147 +13,147 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.11\n" "X-Generator: Weblate 3.11\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "%d 台仅 IPv4 主机" msgstr "%d 台仅 IPv4 主机"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "%d 台仅 IPv6 主机" msgstr "%d 台仅 IPv6 主机"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "%d 台双协议栈主机" msgstr "%d 台双协议栈主机"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "%s 和 %s" msgstr "%s 和 %s"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "%s%s 和 %s" msgstr "%s%s 和 %s"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "-1 - 每月的最后一天重新开始" msgstr "-1 - 每月的最后一天重新开始"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "-7 - 每月底前一周重新开始" msgstr "-7 - 每月底前一周重新开始"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "1 - 每月的第一天重新开始" msgstr "1 - 每月的第一天重新开始"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "10m - 频繁提交,闪存损耗的开销也增大" msgstr "10m - 频繁提交,闪存损耗的开销也增大"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "12h - 平衡统计数据丢失的风险以及闪存使用寿命" msgstr "12h - 平衡统计数据丢失的风险以及闪存使用寿命"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "24h - 以数据丢失风险的代价换取最小的闪存损耗" msgstr "24h - 以数据丢失风险的代价换取最小的闪存损耗"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "30s - 每分钟刷新二次以获得较准确的当前统计值" msgstr "30s - 每分钟刷新二次以获得较准确的当前统计值"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "5m - 较少刷新以避免频繁清除连接跟踪计数器" msgstr "5m - 较少刷新以避免频繁清除连接跟踪计数器"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "60s - 每分钟提交,适用于非闪存类型存储" msgstr "60s - 每分钟提交,适用于非闪存类型存储"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "连接:<big id=\"conn-total\">0</big>" msgstr "连接:<big id=\"conn-total\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "主机:<big id=\"host-total\">0</big>" msgstr "主机:<big id=\"host-total\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "支持 IPv6 的主机比例:<big id=\"ipv6-hosts\">0%</big>" msgstr "支持 IPv6 的主机比例:<big id=\"ipv6-hosts\">0%</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "IPv6 总下载量:<big id=\"ipv6-rx\">0B</big>" msgstr "IPv6 总下载量:<big id=\"ipv6-rx\">0B</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "IPv6 流量比例:<big id=\"ipv6-share\">0%</big>" msgstr "IPv6 流量比例:<big id=\"ipv6-share\">0%</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "IPv6 总上传量:<big id=\"ipv6-tx\">0B</big>" msgstr "IPv6 总上传量:<big id=\"ipv6-tx\">0B</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "连接数最多的协议:<big id=\"layer7-most-conn\">0</big>" msgstr "连接数最多的协议:<big id=\"layer7-most-conn\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "下载量最大的协议:<big id=\"layer7-most-rx\">0</big>" msgstr "下载量最大的协议:<big id=\"layer7-most-rx\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "上传量最大的协议:<big id=\"layer7-most-tx\">0</big>" msgstr "上传量最大的协议:<big id=\"layer7-most-tx\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "应用层协议计数:<big id=\"layer7-total\">0</big>" msgstr "应用层协议计数:<big id=\"layer7-total\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "下载:<big id=\"rx-total\">0</big>" msgstr "下载:<big id=\"rx-total\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "上传:<big id=\"tx-total\">0</big>" msgstr "上传:<big id=\"tx-total\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "统计周期" msgstr "统计周期"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "高级设置" msgstr "高级设置"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "应用层" msgstr "应用层"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "应用层协议" msgstr "应用层协议"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "备份" msgstr "备份"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "带宽监控" msgstr "带宽监控"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "CSV按 IP 分组" msgstr "CSV按 IP 分组"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "CSV按 MAC 分组" msgstr "CSV按 MAC 分组"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "CSV按协议分组" msgstr "CSV按协议分组"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
@ -161,7 +161,7 @@ msgstr ""
"更改统计周期类型会使现有数据库无效!<br /><strong><a href=\"%s\">下载备份</" "更改统计周期类型会使现有数据库无效!<br /><strong><a href=\"%s\">下载备份</"
"a></strong>。" "a></strong>。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
@ -170,52 +170,52 @@ msgstr ""
"选择“每月的某一天”来设置统计周期的重启时间,例如:每个月的第 3 天。选择“固定" "选择“每月的某一天”来设置统计周期的重启时间,例如:每个月的第 3 天。选择“固定"
"周期”来设置从给定日期开始每 N 天重启统计周期。" "周期”来设置从给定日期开始每 N 天重启统计周期。"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "正在收集数据…" msgstr "正在收集数据…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "提交间隔" msgstr "提交间隔"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "压缩数据库" msgstr "压缩数据库"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "配置" msgstr "配置"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "连接" msgstr "连接"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "连接" msgstr "连接"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "连接 / 主机" msgstr "连接 / 主机"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "数据库目录" msgstr "数据库目录"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "数据库存储目录。每个“统计周期”的文件将被放到这个目录中。" msgstr "数据库存储目录。每个“统计周期”的文件将被放到这个目录中。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "每月的某一天" msgstr "每月的某一天"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
@ -224,188 +224,212 @@ msgstr ""
"每个月重启统计周期的日期。使用负数表示从月底开始计算,例如:\"-5\" 可以表示7" "每个月重启统计周期的日期。使用负数表示从月底开始计算,例如:\"-5\" 可以表示7"
"月27号或者2月24号。" "月27号或者2月24号。"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "显示" msgstr "显示"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "下载量(字节)" msgstr "下载量(字节)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "下载量(包)" msgstr "下载量(包)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "下载" msgstr "下载"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "下载量(字节)" msgstr "下载量(字节)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "下载量(包)" msgstr "下载量(包)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "下载 / 应用层协议" msgstr "下载 / 应用层协议"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "下载数据库备份" msgstr "下载数据库备份"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "双协议栈主机" msgstr "双协议栈主机"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "重置日期" msgstr "重置日期"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "导出" msgstr "导出"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "协议簇" msgstr "协议簇"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "固定周期" msgstr "固定周期"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "强制重新加载…" msgstr "强制重新加载…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "常规设置" msgstr "常规设置"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "生成备份" msgstr "生成备份"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "主机" msgstr "主机"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "主机名:<big id=\"bubble-hostname\">example.org</big>" msgstr "主机名:<big id=\"bubble-hostname\">example.org</big>"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "IPv4" msgstr "IPv4"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "IPv4 与 IPv6" msgstr "IPv4 与 IPv6"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "周期" msgstr "周期"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "将内存中的临时数据库提交到持久性数据库目录的间隔时间。" msgstr "将内存中的临时数据库提交到持久性数据库目录的间隔时间。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "从 netlink 信息中刷新“已建立连接”的流量计数器的间隔时间。" msgstr "从 netlink 信息中刷新“已建立连接”的流量计数器的间隔时间。"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr "备份存档无效或为空"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "JSON 输出" msgstr "JSON 输出"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "统计周期(天)。" msgstr "统计周期(天)。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "本地接口" msgstr "本地接口"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "本地子网" msgstr "本地子网"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "最大条目" msgstr "最大条目"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "保留的统计周期数据库的最大数量,设置 0 表示不限制。" msgstr "保留的统计周期数据库的最大数量,设置 0 表示不限制。"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "网络带宽监视器" msgstr "网络带宽监视器"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "网络带宽监视器 - 备份 / 恢复" msgstr "网络带宽监视器 - 备份 / 恢复"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "网络带宽监视器 - 配置" msgstr "网络带宽监视器 - 配置"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "暂无数据记录。" msgstr "暂无数据记录。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "仅统计来自或目标为这些网络接口的连接流量。" msgstr "仅统计来自或目标为这些网络接口的连接流量。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "仅统计来自或目标为这些子网的连接流量。" msgstr "仅统计来自或目标为这些子网的连接流量。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "预分配数据库" msgstr "预分配数据库"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "协议" msgstr "协议"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "协议映射" msgstr "协议映射"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
@ -414,39 +438,43 @@ msgstr ""
"协议映射用于区分流量类型,每行一条。第一个值指定 IP 协议类型,第二个值是端口" "协议映射用于区分流量类型,每行一条。第一个值指定 IP 协议类型,第二个值是端口"
"号,第三个值是映射的协议名称。" "号,第三个值是映射的协议名称。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "刷新间隔" msgstr "刷新间隔"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "恢复" msgstr "恢复"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "恢复数据库备份" msgstr "恢复数据库备份"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "选择统计周期:" msgstr "选择统计周期:"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "源 IP" msgstr "源 IP"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "起始日期" msgstr "起始日期"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "第一个统计周期的起始日期例如ISP 合约的起始日期。" msgstr "第一个统计周期的起始日期例如ISP 合约的起始日期。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "储存周期" msgstr "储存周期"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
@ -454,61 +482,65 @@ msgstr ""
"网络带宽监视器nlbwmon是一个轻量、高效的流量统计程序可以统计每个主机和协" "网络带宽监视器nlbwmon是一个轻量、高效的流量统计程序可以统计每个主机和协"
"议的带宽使用情况。" "议的带宽使用情况。"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "以下数据库文件已恢复:%s" msgstr "以下数据库文件已恢复:"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "数据库中的最大条目数量, 设置为 0 将允许数据库无限增长。" msgstr "数据库中的最大条目数量, 设置为 0 将允许数据库无限增长。"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "流量 / 主机" msgstr "流量 / 主机"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "流量分布" msgstr "流量分布"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "上传量(字节)" msgstr "上传量(字节)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "上传量(包)" msgstr "上传量(包)"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "上传" msgstr "上传"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "上传量(字节)" msgstr "上传量(字节)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "上传量(包)" msgstr "上传量(包)"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "上传 / 应用层协议" msgstr "上传 / 应用层协议"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "供应商:<big id=\"bubble-vendor\">Example Corp.</big>" msgstr "供应商:<big id=\"bubble-vendor\">Example Corp.</big>"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "警告" msgstr "警告"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
@ -517,7 +549,7 @@ msgstr ""
"是否使用 gzip 压缩数据库存档。压缩数据库文件会使访问旧数据稍微慢一些,但有助" "是否使用 gzip 压缩数据库存档。压缩数据库文件会使访问旧数据稍微慢一些,但有助"
"于减少存储占用空间。" "于减少存储占用空间。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
@ -526,20 +558,23 @@ msgstr ""
"是否预先分配数据库最大可能占用的内存大小。这主要适用于内存较小系统,这些系统" "是否预先分配数据库最大可能占用的内存大小。这主要适用于内存较小系统,这些系统"
"在长时间运行之后可能无法满足数据库的内存需求。" "在长时间运行之后可能无法满足数据库的内存需求。"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "无流量数据" msgstr "无流量数据"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "其他" msgstr "其他"
#~ msgid "Invalid or empty backup archive"
#~ msgstr "备份存档无效或为空"
#~ msgid "Down. (Bytes / Pkts.)" #~ msgid "Down. (Bytes / Pkts.)"
#~ msgstr "下载(字节 / 数据包)" #~ msgstr "下载(字节 / 数据包)"

View file

@ -13,147 +13,147 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.0-dev\n" "X-Generator: Weblate 4.0-dev\n"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:661 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:550
msgid "%d IPv4-only hosts" msgid "%d IPv4-only hosts"
msgstr "%d 臺僅 IPv4 主機" msgstr "%d 臺僅 IPv4 主機"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:668 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:557
msgid "%d IPv6-only hosts" msgid "%d IPv6-only hosts"
msgstr "%d 臺僅 IPv6 主機" msgstr "%d 臺僅 IPv6 主機"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:675 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:564
msgid "%d dual-stack hosts" msgid "%d dual-stack hosts"
msgstr "%d 臺雙協議棧主機" msgstr "%d 臺雙協議棧主機"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:71 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114
msgid "%s and %s" msgid "%s and %s"
msgstr "%s 和 %s" msgstr "%s 和 %s"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112
msgid "%s, %s and %s" msgid "%s, %s and %s"
msgstr "%s%s 和 %s" msgstr "%s%s 和 %s"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:68 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93
msgid "-1 - Restart every last day of month" msgid "-1 - Restart every last day of month"
msgstr "-1 - 每月的最後一天重新開始" msgstr "-1 - 每月的最後一天重新開始"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:69 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94
msgid "-7 - Restart a week before end of month" msgid "-7 - Restart a week before end of month"
msgstr "-7 - 每月底前一週重新開始" msgstr "-7 - 每月底前一週重新開始"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:67 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92
msgid "1 - Restart every 1st of month" msgid "1 - Restart every 1st of month"
msgstr "1 - 每月的第一天重新開始" msgstr "1 - 每月的第一天重新開始"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:183 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158
msgid "10m - frequent commits at the expense of flash wear" msgid "10m - frequent commits at the expense of flash wear"
msgstr "10m - 頻繁提交,快閃記憶體損耗的開銷也增大" msgstr "10m - 頻繁提交,快閃記憶體損耗的開銷也增大"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:182 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157
msgid "12h - compromise between risk of data loss and flash wear" msgid "12h - compromise between risk of data loss and flash wear"
msgstr "12h - 平衡統計資料丟失的風險以及快閃記憶體使用壽命" msgstr "12h - 平衡統計資料丟失的風險以及快閃記憶體使用壽命"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:181 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156
msgid "24h - least flash wear at the expense of data loss risk" msgid "24h - least flash wear at the expense of data loss risk"
msgstr "24h - 以資料丟失風險的代價換取最小的快閃記憶體損耗" msgstr "24h - 以資料丟失風險的代價換取最小的快閃記憶體損耗"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:191 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163
msgid "30s - refresh twice per minute for reasonably current stats" msgid "30s - refresh twice per minute for reasonably current stats"
msgstr "30s - 每分鐘重新整理二次以獲得較準確的當前統計值" msgstr "30s - 每分鐘重新整理二次以獲得較準確的當前統計值"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:192 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164
msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgid "5m - rarely refresh to avoid frequently clearing conntrack counters"
msgstr "5m - 較少重新整理以避免頻繁清除連線跟蹤計數器" msgstr "5m - 較少重新整理以避免頻繁清除連線跟蹤計數器"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:184 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159
msgid "60s - commit minutely, useful for non-flash storage" msgid "60s - commit minutely, useful for non-flash storage"
msgstr "60s - 每分鐘提交,適用於非快閃記憶體型別儲存" msgstr "60s - 每分鐘提交,適用於非快閃記憶體型別儲存"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:40 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839
msgid "<big id=\"conn-total\">0</big> connections" msgid "<big id=\"conn-total\">0</big> connections"
msgstr "連線:<big id=\"conn-total\">0</big>" msgstr "連線:<big id=\"conn-total\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:37 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836
msgid "<big id=\"host-total\">0</big> hosts" msgid "<big id=\"host-total\">0</big> hosts"
msgstr "主機:<big id=\"host-total\">0</big>" msgstr "主機:<big id=\"host-total\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:114 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915
msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts"
msgstr "支援 IPv6 的主機比例:<big id=\"ipv6-hosts\">0%</big>" msgstr "支援 IPv6 的主機比例:<big id=\"ipv6-hosts\">0%</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:116 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917
msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download"
msgstr "IPv6 總下載量:<big id=\"ipv6-rx\">0B</big>" msgstr "IPv6 總下載量:<big id=\"ipv6-rx\">0B</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:115 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:916
msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6"
msgstr "IPv6 流量比例:<big id=\"ipv6-share\">0%</big>" msgstr "IPv6 流量比例:<big id=\"ipv6-share\">0%</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:117 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918
msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload"
msgstr "IPv6 總上傳量:<big id=\"ipv6-tx\">0B</big>" msgstr "IPv6 總上傳量:<big id=\"ipv6-tx\">0B</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:79 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:879
msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections"
msgstr "連線數最多的協議:<big id=\"layer7-most-conn\">0</big>" msgstr "連線數最多的協議:<big id=\"layer7-most-conn\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:77 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877
msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgid "<big id=\"layer7-most-rx\">0</big> cause the most download"
msgstr "下載量最大的協議:<big id=\"layer7-most-rx\">0</big>" msgstr "下載量最大的協議:<big id=\"layer7-most-rx\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:78 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:878
msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload"
msgstr "上傳量最大的協議:<big id=\"layer7-most-tx\">0</big>" msgstr "上傳量最大的協議:<big id=\"layer7-most-tx\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:76 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:876
msgid "<big id=\"layer7-total\">0</big> different application protocols" msgid "<big id=\"layer7-total\">0</big> different application protocols"
msgstr "應用層協議計數:<big id=\"layer7-total\">0</big>" msgstr "應用層協議計數:<big id=\"layer7-total\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:38 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837
msgid "<big id=\"rx-total\">0</big> download" msgid "<big id=\"rx-total\">0</big> download"
msgstr "下載:<big id=\"rx-total\">0</big>" msgstr "下載:<big id=\"rx-total\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:39 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838
msgid "<big id=\"tx-total\">0</big> upload" msgid "<big id=\"tx-total\">0</big> upload"
msgstr "上傳:<big id=\"tx-total\">0</big>" msgstr "上傳:<big id=\"tx-total\">0</big>"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63
msgid "Accounting period" msgid "Accounting period"
msgstr "統計週期" msgstr "統計週期"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:21 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "進階設定" msgstr "進階設定"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:85 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886
msgid "Application" msgid "Application"
msgstr "應用層" msgstr "應用層"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862
msgid "Application Protocols" msgid "Application Protocols"
msgstr "應用層協議" msgstr "應用層協議"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:10 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:33
msgid "Backup" msgid "Backup"
msgstr "備份" msgstr "備份"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:7 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3
msgid "Bandwidth Monitor" msgid "Bandwidth Monitor"
msgstr "頻寬監控" msgstr "頻寬監控"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:142 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953
msgid "CSV, grouped by IP" msgid "CSV, grouped by IP"
msgstr "CSV按 IP 分組" msgstr "CSV按 IP 分組"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:141 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:947
msgid "CSV, grouped by MAC" msgid "CSV, grouped by MAC"
msgstr "CSV按 MAC 分組" msgstr "CSV按 MAC 分組"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:143 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:959
msgid "CSV, grouped by protocol" msgid "CSV, grouped by protocol"
msgstr "CSV按協議分組" msgstr "CSV按協議分組"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76
msgid "" msgid ""
"Changing the accounting interval type will invalidate existing databases!" "Changing the accounting interval type will invalidate existing databases!"
"<br /><strong><a href=\"%s\">Download backup</a></strong>." "<br /><strong><a href=\"%s\">Download backup</a></strong>."
@ -161,7 +161,7 @@ msgstr ""
"更改統計週期型別會使現有資料庫無效!<br /><strong><a href=\"%s\">下載備份</" "更改統計週期型別會使現有資料庫無效!<br /><strong><a href=\"%s\">下載備份</"
"a></strong>。" "a></strong>。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64
msgid "" msgid ""
"Choose \"Day of month\" to restart the accounting period monthly on a " "Choose \"Day of month\" to restart the accounting period monthly on a "
"specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the "
@ -170,52 +170,52 @@ msgstr ""
"選擇“每月的某一天”來設定統計週期的重啟時間,例如:每個月的第 3 天。選擇“固定" "選擇“每月的某一天”來設定統計週期的重啟時間,例如:每個月的第 3 天。選擇“固定"
"週期”來設定從給定日期開始每 N 天重啟統計週期。" "週期”來設定從給定日期開始每 N 天重啟統計週期。"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:56 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:856
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:94 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:895
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:133 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:935
msgid "Collecting data..." msgid "Collecting data..."
msgstr "收集資料中..." msgstr "收集資料中..."
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:177 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154
msgid "Commit interval" msgid "Commit interval"
msgstr "提交間隔" msgstr "提交間隔"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:164 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148
msgid "Compress database" msgid "Compress database"
msgstr "壓縮資料庫" msgstr "壓縮資料庫"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:9 #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:24
msgid "Configuration" msgid "Configuration"
msgstr "配置" msgstr "配置"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:302 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615
msgid "Conn." msgid "Conn."
msgstr "連線" msgstr "連線"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:48 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:848
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:86 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:887
msgid "Connections" msgid "Connections"
msgstr "連線數" msgstr "連線數"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:31 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:830
msgid "Connections / Host" msgid "Connections / Host"
msgstr "連線 / 主機" msgstr "連線 / 主機"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:195 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166
msgid "Database directory" msgid "Database directory"
msgstr "資料庫目錄" msgstr "資料庫目錄"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:196 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167
msgid "" msgid ""
"Database storage directory. One file per accounting period will be placed " "Database storage directory. One file per accounting period will be placed "
"into this directory." "into this directory."
msgstr "資料庫儲存目錄。每個“統計週期”的檔案將被放到這個目錄中。" msgstr "資料庫儲存目錄。每個“統計週期”的檔案將被放到這個目錄中。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72
msgid "Day of month" msgid "Day of month"
msgstr "每月的某一天" msgstr "每月的某一天"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:63 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84
msgid "" msgid ""
"Day of month to restart the accounting period. Use negative values to count " "Day of month to restart the accounting period. Use negative values to count "
"towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "towards the end of month, e.g. \"-5\" to specify the 27th of July or the "
@ -224,188 +224,212 @@ msgstr ""
"每個月重啟統計週期的日期。使用負數表示從月底開始計算,例如:\"-5\" 可以表示7" "每個月重啟統計週期的日期。使用負數表示從月底開始計算,例如:\"-5\" 可以表示7"
"月27號或者2月24號。" "月27號或者2月24號。"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:8 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24
msgid "Dismiss"
msgstr ""
#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:15
msgid "Display" msgid "Display"
msgstr "顯示" msgstr "顯示"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:303 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616
msgid "Down. (Bytes)" msgid "Down. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:304 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:617
msgid "Down. (Pkts.)" msgid "Down. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:285 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:598
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:49 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:87 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:888
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:126 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928
msgid "Download (Bytes)" msgid "Download (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:50 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:889
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:127 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929
msgid "Download (Packets)" msgid "Download (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:65 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865
msgid "Download / Application" msgid "Download / Application"
msgstr "下載 / 應用層協議" msgstr "下載 / 應用層協議"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:25 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:58
msgid "Download Database Backup" msgid "Download Database Backup"
msgstr "下載資料庫備份" msgstr "下載資料庫備份"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:108 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909
msgid "Dualstack enabled hosts" msgid "Dualstack enabled hosts"
msgstr "雙協議棧主機" msgstr "雙協議棧主機"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:62 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83
msgid "Due date" msgid "Due date"
msgstr "重置日期" msgstr "重置日期"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:139 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:941
msgid "Export" msgid "Export"
msgstr "匯出" msgstr "匯出"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:125 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:791
msgid "Failed to commit database: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45
msgid "Failed to download backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:780
msgid "Failed to download traffic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28
msgid "Failed to restore backup archive: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927
msgid "Family" msgid "Family"
msgstr "協議簇" msgstr "協議簇"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:29 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73
msgid "Fixed interval" msgid "Fixed interval"
msgstr "固定週期" msgstr "固定週期"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:476 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:367
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:534 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:424
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:639 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:528
msgid "Force reload…" msgid "Force reload…"
msgstr "強制重新載入…" msgstr "強制重新載入…"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:20 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59
msgid "General Settings" msgid "General Settings"
msgstr "基本設定" msgstr "基本設定"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:28 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:62
msgid "Generate Backup" msgid "Generate Backup"
msgstr "生成備份" msgstr "生成備份"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:46 #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:123 msgid "Grant UCI access for luci-app-nlbwmon"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:846
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:925
msgid "Host" msgid "Host"
msgstr "主機" msgstr "主機"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:294 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607
msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>"
msgstr "主機名:<big id=\"bubble-hostname\">example.org</big>" msgstr "主機名:<big id=\"bubble-hostname\">example.org</big>"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:624 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:513
msgid "IPv4" msgid "IPv4"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:103 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:904
msgid "IPv4 vs. IPv6" msgid "IPv4 vs. IPv6"
msgstr "IPv4 與 IPv6" msgstr "IPv4 與 IPv6"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:625 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:514
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:100 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:901
msgid "IPv6" msgid "IPv6"
msgstr "IPv6" msgstr "IPv6"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:95 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108
msgid "Interval" msgid "Interval"
msgstr "週期" msgstr "週期"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:178 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155
msgid "" msgid ""
"Interval at which the temporary in-memory database is committed to the " "Interval at which the temporary in-memory database is committed to the "
"persistent database directory." "persistent database directory."
msgstr "將記憶體中的臨時資料庫提交到永續性資料庫目錄的間隔時間。" msgstr "將記憶體中的臨時資料庫提交到永續性資料庫目錄的間隔時間。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:188 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162
msgid "" msgid ""
"Interval at which traffic counters of still established connections are " "Interval at which traffic counters of still established connections are "
"refreshed from netlink information." "refreshed from netlink information."
msgstr "從 netlink 資訊中重新整理“已建立連線”的流量計數器的間隔時間。" msgstr "從 netlink 資訊中重新整理“已建立連線”的流量計數器的間隔時間。"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:197 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:965
msgid "Invalid or empty backup archive"
msgstr "備份存檔無效或為空"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:144
msgid "JSON dump" msgid "JSON dump"
msgstr "JSON 輸出" msgstr "JSON 輸出"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:96 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109
msgid "Length of accounting interval in days." msgid "Length of accounting interval in days."
msgstr "統計週期(天)。" msgstr "統計週期(天)。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:110 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120
msgid "Local interfaces" msgid "Local interfaces"
msgstr "本地介面" msgstr "本地介面"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:134 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129
msgid "Local subnets" msgid "Local subnets"
msgstr "本地子網" msgstr "本地子網"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:47 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:847
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:124 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:926
msgid "MAC" msgid "MAC"
msgstr "MAC" msgstr "MAC"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:152 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76
msgid "Malformed data received"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141
msgid "Maximum entries" msgid "Maximum entries"
msgstr "最大條目" msgstr "最大條目"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:171 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152
msgid "" msgid ""
"Maximum number of accounting periods to keep, use zero to keep databases " "Maximum number of accounting periods to keep, use zero to keep databases "
"forever." "forever."
msgstr "保留的統計週期數據庫的最大數量,設定 0 表示不限制。" msgstr "保留的統計週期數據庫的最大數量,設定 0 表示不限制。"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818
msgid "Netlink Bandwidth Monitor" msgid "Netlink Bandwidth Monitor"
msgstr "網路頻寬監視器" msgstr "網路頻寬監視器"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:9 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51
msgid "Netlink Bandwidth Monitor - Backup / Restore" msgid "Netlink Bandwidth Monitor - Backup / Restore"
msgstr "網路頻寬監視器 - 備份 / 恢復" msgstr "網路頻寬監視器 - 備份 / 恢復"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52
msgid "Netlink Bandwidth Monitor - Configuration" msgid "Netlink Bandwidth Monitor - Configuration"
msgstr "網路頻寬監視器 - 配置" msgstr "網路頻寬監視器 - 配置"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:475 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:363
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:533 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:423
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:638 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:527
msgid "No data recorded yet." msgid "No data recorded yet."
msgstr "暫無資料記錄。" msgstr "暫無資料記錄。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:111 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121
msgid "Only conntrack streams from or to any of these networks are counted." msgid "Only conntrack streams from or to any of these networks are counted."
msgstr "僅統計來自或目標為這些網路介面的連線流量。" msgstr "僅統計來自或目標為這些網路介面的連線流量。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:135 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130
msgid "Only conntrack streams from or to any of these subnets are counted." msgid "Only conntrack streams from or to any of these subnets are counted."
msgstr "僅統計來自或目標為這些子網的連線流量。" msgstr "僅統計來自或目標為這些子網的連線流量。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:158 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144
msgid "Preallocate database" msgid "Preallocate database"
msgstr "預分配資料庫" msgstr "預分配資料庫"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:451 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339
msgid "Protocol" msgid "Protocol"
msgstr "協議" msgstr "協議"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:22 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "Protocol Mapping" msgid "Protocol Mapping"
msgstr "協議對映" msgstr "協議對映"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61
msgid "" msgid ""
"Protocol mappings to distinguish traffic types per host, one mapping per " "Protocol mappings to distinguish traffic types per host, one mapping per "
"line. The first value specifies the IP protocol, the second value the port " "line. The first value specifies the IP protocol, the second value the port "
@ -414,39 +438,43 @@ msgstr ""
"協議對映用於區分流量型別,每行一條。第一個值指定 IP 協議型別,第二個值是埠" "協議對映用於區分流量型別,每行一條。第一個值指定 IP 協議型別,第二個值是埠"
"號,第三個值是對映的協議名稱。" "號,第三個值是對映的協議名稱。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:187 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161
msgid "Refresh interval" msgid "Refresh interval"
msgstr "重新整理間隔" msgstr "重新整理間隔"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:17 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:56
msgid "Restore" msgid "Restore"
msgstr "恢復" msgstr "恢復"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/backup.htm:12 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52
msgid "Restore Database Backup" msgid "Restore Database Backup"
msgstr "恢復資料庫備份" msgstr "恢復資料庫備份"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:16 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20
msgid "Restore complete"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285
msgid "Select accounting period:" msgid "Select accounting period:"
msgstr "選擇統計週期:" msgstr "選擇統計週期:"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:446 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334
msgid "Source IP" msgid "Source IP"
msgstr "源 IP" msgstr "源 IP"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:80 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96
msgid "Start date" msgid "Start date"
msgstr "起始日期" msgstr "起始日期"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:81 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:97
msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgid "Start date of the first accounting period, e.g. begin of ISP contract."
msgstr "第一個統計週期的起始日期例如ISP 合約的起始日期。" msgstr "第一個統計週期的起始日期例如ISP 合約的起始日期。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:170 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151
msgid "Stored periods" msgid "Stored periods"
msgstr "儲存週期" msgstr "儲存週期"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:13 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53
msgid "" msgid ""
"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic "
"accounting program keeping track of bandwidth usage per host and protocol." "accounting program keeping track of bandwidth usage per host and protocol."
@ -454,61 +482,65 @@ msgstr ""
"網路頻寬監視器nlbwmon是一個輕量、高效的流量統計程式可以統計每個主機和協" "網路頻寬監視器nlbwmon是一個輕量、高效的流量統計程式可以統計每個主機和協"
"議的頻寬使用情況。" "議的頻寬使用情況。"
#: applications/luci-app-nlbwmon/luasrc/controller/nlbw.lua:216 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21
msgid "The following database files have been restored: %s" msgid "The following database files have been restored:"
msgstr "以下資料庫檔案已恢復:%s" msgstr "以下資料庫檔案已恢復:"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:153 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142
msgid "" msgid ""
"The maximum amount of entries that should be put into the database, setting " "The maximum amount of entries that should be put into the database, setting "
"the limit to 0 will allow databases to grow indefinitely." "the limit to 0 will allow databases to grow indefinitely."
msgstr "資料庫中的最大條目數量, 設定為 0 將允許資料庫無限增長。" msgstr "資料庫中的最大條目數量, 設定為 0 將允許資料庫無限增長。"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:26 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825
msgid "Traffic / Host" msgid "Traffic / Host"
msgstr "流量 / 主機" msgstr "流量 / 主機"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:23 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:822
msgid "Traffic Distribution" msgid "Traffic Distribution"
msgstr "流量分佈" msgstr "流量分佈"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:305 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92
msgid "Unable to fetch traffic statistic data: %s"
msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:618
msgid "Up. (Bytes)" msgid "Up. (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:306 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:619
msgid "Up. (Pkts.)" msgid "Up. (Pkts.)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:289 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:602
msgid "Upload" msgid "Upload"
msgstr "上傳" msgstr "上傳"
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:89 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:128 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930
msgid "Upload (Bytes)" msgid "Upload (Bytes)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:52 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:90 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:891
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:129 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931
msgid "Upload (Packets)" msgid "Upload (Packets)"
msgstr "" msgstr ""
#: applications/luci-app-nlbwmon/luasrc/view/nlbw/display.htm:70 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:870
msgid "Upload / Application" msgid "Upload / Application"
msgstr "上傳 / 應用層協議" msgstr "上傳 / 應用層協議"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:295 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:608
msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>"
msgstr "供應商:<big id=\"bubble-vendor\">Example Corp.</big>" msgstr "供應商:<big id=\"bubble-vendor\">Example Corp.</big>"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:51 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75
msgid "Warning" msgid "Warning"
msgstr "警告" msgstr "警告"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:165 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149
msgid "" msgid ""
"Whether to gzip compress archive databases. Compressing the database files " "Whether to gzip compress archive databases. Compressing the database files "
"makes accessing old data slightly slower but helps to reduce storage " "makes accessing old data slightly slower but helps to reduce storage "
@ -517,7 +549,7 @@ msgstr ""
"是否使用 gzip 壓縮資料庫存檔。壓縮資料庫檔案會使訪問舊資料稍微慢一些,但有助" "是否使用 gzip 壓縮資料庫存檔。壓縮資料庫檔案會使訪問舊資料稍微慢一些,但有助"
"於減少儲存佔用空間。" "於減少儲存佔用空間。"
#: applications/luci-app-nlbwmon/luasrc/model/cbi/nlbw/config.lua:159 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145
msgid "" msgid ""
"Whether to preallocate the maximum possible database size in memory. This is " "Whether to preallocate the maximum possible database size in memory. This is "
"mainly useful for memory constrained systems which might not be able to " "mainly useful for memory constrained systems which might not be able to "
@ -526,20 +558,23 @@ msgstr ""
"是否預先分配資料庫最大可能佔用的記憶體大小。這主要適用於記憶體較小系統,這些" "是否預先分配資料庫最大可能佔用的記憶體大小。這主要適用於記憶體較小系統,這些"
"系統在長時間執行之後可能無法滿足資料庫的記憶體需求。" "系統在長時間執行之後可能無法滿足資料庫的記憶體需求。"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:88 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130
msgid "no traffic" msgid "no traffic"
msgstr "無流量資料" msgstr "無流量資料"
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:315 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:327 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:394
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:332 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:407
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:447 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:412
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:504 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:517 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:640
#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js:522 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:645
msgid "other" msgid "other"
msgstr "其他" msgstr "其他"
#~ msgid "Invalid or empty backup archive"
#~ msgstr "備份存檔無效或為空"
#~ msgid "Down. (Bytes / Pkts.)" #~ msgid "Down. (Bytes / Pkts.)"
#~ msgstr "下載(位元組 / 資料包)" #~ msgstr "下載(位元組 / 資料包)"

View file

@ -0,0 +1,117 @@
#!/bin/sh
case "$1" in
backup)
dbdir=$(uci -q get nlbwmon.@nlbwmon[0].database_directory)
if [ ! -d "${dbdir:-/var/lib/nlbwmon}" ]; then
echo "Unable to locate database directory" >&2
exit 1
fi
exec /bin/tar -C "${dbdir:-/var/lib/nlbwmon}" -c -z . -f -
;;
commit)
exec /usr/sbin/nlbw -c commit
;;
download)
shift
type=json
delim=,
period=
group_by=
order_by=
while [ -n "$1" ]; do
case "$1" in
-f)
case "$2" in
csv|json) type=$2 ;;
*) echo "Invalid data format" >&2; exit 1 ;;
esac
shift
;;
-s)
case "$2" in
?) delim=$2 ;;
*) echo "Invalid delimitter" >&2; exit 1 ;;
esac
shift
;;
-t)
case "$2" in
[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]) period=$2 ;;
*) echo "Invalid period" >&2; exit 1 ;;
esac
shift
;;
-g|-o)
case "$1:$2" in
-g:?*) group_by=$2 ;;
-o:?*) order_by=$2 ;;
*) echo "Argument required for $1" >&2; exit 1 ;;
esac
shift
;;
*)
echo "Unknown option $1" >&2
exit 1
;;
esac
shift
done
exec /usr/sbin/nlbw -c $type -s$delim \
${period:+-t $period} \
${group_by:+-g "$group_by"} \
${order_by:+-o "$order_by"}
;;
periods)
for date in $(/usr/sbin/nlbw -c list); do
case "$date" in
[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9])
res="${res:+$res, }\"$date\""
;;
esac
done
printf '{ "periods": [ %s ] }' "$res"
;;
restore)
if [ ! -f /tmp/nlbw-restore.tar.gz ]; then
echo "Unable to locate archive to restore" >&2
exit 1
fi
dbdir=$(uci -q get nlbwmon.@nlbwmon[0].database_directory)
files=$(/bin/tar -tzf /tmp/nlbw-restore.tar.gz | grep -E '^(\./)?[0-9]{8}\.db(\.gz)?$' | tr '\n' ' ')
if [ -z "$files" ]; then
echo "Invalid or empty backup archive" >&2
exit 1
fi
/etc/init.d/nlbwmon stop
/bin/mkdir -p "${dbdir:-/var/lib/nlbwmon}"
for file in $(/bin/tar -C "${dbdir:-/var/lib/nlbwmon}" -vxzf /tmp/nlbw-restore.tar.gz $files); do
res="${res:+$res, }\"${file#./}\""
done
/bin/rm -f /tmp/nlbw-restore.tar.gz
/etc/init.d/nlbwmon start
printf '{ "restored": [ %s ] }' "$res"
;;
*)
echo "Usage: $0 {commit|download|periods|restore}" >&2
exit 1
;;
esac

View file

@ -0,0 +1,40 @@
{
"admin/nlbw": {
"title": "Bandwidth Monitor",
"order": 80,
"action": {
"type": "firstchild"
},
"depends": {
"acl": [ "luci-app-nlbwmon" ],
"uci": { "nlbwmon": true }
}
},
"admin/nlbw/display": {
"title": "Display",
"order": 1,
"action": {
"type": "view",
"path": "nlbw/display"
}
},
"admin/nlbw/config": {
"title": "Configuration",
"order": 2,
"action": {
"type": "view",
"path": "nlbw/config"
}
},
"admin/nlbw/backup": {
"title": "Backup",
"order": 3,
"action": {
"type": "view",
"path": "nlbw/backup"
}
}
}

View file

@ -2,9 +2,31 @@
"luci-app-nlbwmon": { "luci-app-nlbwmon": {
"description": "Grant UCI access for luci-app-nlbwmon", "description": "Grant UCI access for luci-app-nlbwmon",
"read": { "read": {
"cgi-io": [ "exec" ],
"file": {
"/proc/sys/kernel/hostname": [ "read" ],
"/usr/libexec/nlbwmon-action backup": [ "exec" ],
"/usr/libexec/nlbwmon-action download *": [ "exec" ],
"/usr/libexec/nlbwmon-action periods": [ "exec" ],
"/usr/share/nlbwmon/protocols": [ "read" ]
},
"ubus": {
"file": [ "read" ],
"luci-rpc": [ "getHostHints" ],
"network.rrdns": [ "lookup" ]
},
"uci": [ "nlbwmon" ] "uci": [ "nlbwmon" ]
}, },
"write": { "write": {
"file": {
"/tmp/nlbw-restore.tar.gz": [ "write" ],
"/usr/libexec/nlbwmon-action commit": [ "exec" ],
"/usr/libexec/nlbwmon-action restore": [ "exec" ],
"/usr/share/nlbwmon/protocols": [ "write" ]
},
"ubus": {
"file": [ "write" ]
},
"uci": [ "nlbwmon" ] "uci": [ "nlbwmon" ]
} }
} }