diff options
Diffstat (limited to 'applications/luci-app-nlbwmon')
38 files changed, 4728 insertions, 3906 deletions
diff --git a/applications/luci-app-nlbwmon/Makefile b/applications/luci-app-nlbwmon/Makefile index c4b83e807c..d53452c3f0 100644 --- a/applications/luci-app-nlbwmon/Makefile +++ b/applications/luci-app-nlbwmon/Makefile @@ -1,7 +1,7 @@ include $(TOPDIR)/rules.mk LUCI_TITLE:=Netlink based bandwidth accounting -LUCI_DEPENDS:=+luci-compat +nlbwmon +LUCI_DEPENDS:=+luci-base +nlbwmon include ../../luci.mk diff --git a/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js b/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js index 3f0a4c969f..bdebf296ea 100644 --- a/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js +++ b/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js @@ -102,6 +102,9 @@ return view.extend({ return m ? m[1] : null; }; + o.validate = function(section_id, value) { + return /^[0-9]{4}-[0-9]{2}-[0-9]{2}$/.exec(value) ? true : _('Require a valid date in the form "YYYY-MM-DD"'); + }; o.write = writePeriod; o.depends('_period', 'absolute'); diff --git a/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js b/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js index 4e2e759db6..dcb2c4e707 100644 --- a/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js +++ b/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js @@ -333,15 +333,15 @@ return view.extend({ 'data-col': 'ip', 'data-tooltip': _('Source IP') }, (mac !== '00:00:00:00:00:00') ? mac : _('other')), - E('a', { + [ rec.conns, 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) + }, '%1000.2m'.format(rec.conns)) ], + [ rec.rx_bytes, '%1024.2mB'.format(rec.rx_bytes) ], + [ rec.rx_pkts, '%1000.2mP'.format(rec.rx_pkts) ], + [ rec.tx_bytes, '%1024.2mB'.format(rec.tx_bytes) ], + [ rec.tx_pkts, '%1000.2mP'.format(rec.tx_pkts) ] ]); trafData.push({ @@ -389,11 +389,11 @@ return view.extend({ 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) + [ rec.conns, '%1000m'.format(rec.conns) ], + [ rec.rx_bytes, '%1024.2mB'.format(rec.rx_bytes) ], + [ rec.rx_pkts, '%1000.2mP'.format(rec.rx_pkts) ], + [ rec.tx_bytes, '%1024.2mB'.format(rec.tx_bytes) ], + [ rec.tx_pkts, '%1000.2mP'.format(rec.tx_pkts) ] ]); rxData.push({ @@ -501,16 +501,41 @@ return view.extend({ 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) : '-') ] + [ + 0, + E([], [ + E('span', _('IPv4')), + E('span', _('IPv6')) + ]) + ], + [ + (rec4 ? rec4.rx_bytes : 0) + (rec6 ? rec6.rx_bytes : 0), + E([], [ + E('span', rec4 ? '%1024.2mB'.format(rec4.rx_bytes) : '-'), + E('span', rec6 ? '%1024.2mB'.format(rec6.rx_bytes) : '-') + ]) + ], + [ + (rec4 ? rec4.rx_pkts : 0) + (rec6 ? rec6.rx_pkts : 0), + E([], [ + E('span', rec4 ? '%1000.2mP'.format(rec4.rx_pkts) : '-'), + E('span', rec6 ? '%1000.2mP'.format(rec6.rx_pkts) : '-') + ]) + ], + [ + (rec4 ? rec4.tx_bytes : 0) + (rec6 ? rec6.tx_bytes : 0), + E([], [ + E('span', rec4 ? '%1024.2mB'.format(rec4.tx_bytes) : '-'), + E('span', rec6 ? '%1024.2mB'.format(rec6.tx_bytes) : '-') + ]) + ], + [ + (rec4 ? rec4.tx_pkts : 0) + (rec6 ? rec6.tx_pkts : 0), + E([], [ + E('span', rec4 ? '%1000.2mP'.format(rec4.tx_pkts) : '-'), + E('span', rec6 ? '%1000.2mP'.format(rec6.tx_pkts) : '-') + ]) + ] ]); } @@ -617,11 +642,11 @@ return view.extend({ 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) + [ rec.conns, '%1000.2m'.format(rec.conns) ], + [ rec.rx_bytes, '%1024.2mB'.format(rec.rx_bytes) ], + [ rec.rx_pkts, '%1000.2mP'.format(rec.rx_pkts) ], + [ rec.tx_bytes, '%1024.2mB'.format(rec.tx_bytes) ], + [ rec.tx_pkts, '%1000.2mP'.format(rec.tx_pkts) ] ]); rxData.push({ diff --git a/applications/luci-app-nlbwmon/po/ar/nlbwmon.po b/applications/luci-app-nlbwmon/po/ar/nlbwmon.po index 31cbfa2a3c..f0dd1270b2 100644 --- a/applications/luci-app-nlbwmon/po/ar/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/ar/nlbwmon.po @@ -11,15 +11,15 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 4.5.1-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -43,75 +43,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -123,11 +123,11 @@ msgstr "" msgid "Advanced Settings" msgstr "إعدادات متقدمة" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -152,17 +152,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "جمع البيانات..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -170,24 +170,24 @@ msgstr "" msgid "Configuration" msgstr "إعدادات" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "روابط" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -212,32 +212,32 @@ msgstr "إلغاء" msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "تنزيل" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -245,7 +245,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -253,19 +253,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -273,7 +273,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -281,7 +281,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -289,9 +289,9 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -307,70 +307,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "ضيف" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -378,17 +378,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -402,19 +402,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -433,10 +433,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "إعادة" @@ -465,7 +469,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -479,17 +483,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -497,36 +501,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "تحميل" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -534,14 +538,14 @@ msgstr "" msgid "Warning" msgstr "تحذير" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -556,8 +560,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/bg/nlbwmon.po b/applications/luci-app-nlbwmon/po/bg/nlbwmon.po index 9ec6e7a208..53193cef3c 100644 --- a/applications/luci-app-nlbwmon/po/bg/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/bg/nlbwmon.po @@ -1,24 +1,24 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-09-27 22:36+0000\n" -"Last-Translator: Iskren Mihaylov <iskren.mihaylov91@gmail.com>\n" +"PO-Revision-Date: 2023-03-18 11:40+0000\n" +"Last-Translator: Zi <znlambov@gmail.com>\n" "Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/bg/>\n" "Language: bg\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.9-dev\n" +"X-Generator: Weblate 4.16.2-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" -msgstr "" +msgstr "%d IPv4 хоста" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -42,75 +42,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Advanced Settings" msgstr "Разширени настройки" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -151,17 +151,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Събиране данни..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -169,24 +169,24 @@ msgstr "" msgid "Configuration" msgstr "Конфигурация" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Връзки" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -211,32 +211,32 @@ msgstr "Затвори" msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -252,19 +252,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -288,9 +288,9 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -306,70 +306,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -377,17 +377,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -401,19 +401,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -432,10 +432,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "" @@ -464,7 +468,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -478,17 +482,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -496,36 +500,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -533,14 +537,14 @@ msgstr "" msgid "Warning" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -555,8 +559,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/bn_BD/nlbwmon.po b/applications/luci-app-nlbwmon/po/bn_BD/nlbwmon.po index d62fc85322..6d3d09c3d9 100644 --- a/applications/luci-app-nlbwmon/po/bn_BD/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/bn_BD/nlbwmon.po @@ -10,15 +10,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -42,75 +42,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Advanced Settings" msgstr "উন্নত সেটিংস" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -151,17 +151,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -169,24 +169,24 @@ msgstr "" msgid "Configuration" msgstr "কনফিগারেশন" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -211,32 +211,32 @@ msgstr "বাতিল" msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -252,19 +252,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -288,9 +288,9 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -306,70 +306,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "" @@ -377,17 +377,17 @@ msgstr "" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -401,19 +401,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -432,10 +432,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "" @@ -464,7 +468,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -478,17 +482,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -496,36 +500,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -533,14 +537,14 @@ msgstr "" msgid "Warning" msgstr "সতর্কতা" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -555,8 +559,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/ca/nlbwmon.po b/applications/luci-app-nlbwmon/po/ca/nlbwmon.po index 2c97c402e3..68feb18509 100644 --- a/applications/luci-app-nlbwmon/po/ca/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/ca/nlbwmon.po @@ -10,15 +10,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -42,75 +42,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Advanced Settings" msgstr "Configuració avançada" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -151,17 +151,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "S’estan recollint dades…" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -169,24 +169,24 @@ msgstr "" msgid "Configuration" msgstr "Configuració" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -211,32 +211,32 @@ msgstr "Oblida-ho" msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -252,19 +252,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -288,9 +288,9 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -306,70 +306,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Amfitrió" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -377,17 +377,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -401,19 +401,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -432,10 +432,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "" @@ -464,7 +468,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -478,17 +482,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -496,36 +500,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -533,14 +537,14 @@ msgstr "" msgid "Warning" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -555,8 +559,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/cs/nlbwmon.po b/applications/luci-app-nlbwmon/po/cs/nlbwmon.po index 41b76f6f76..4faf0164d7 100644 --- a/applications/luci-app-nlbwmon/po/cs/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/cs/nlbwmon.po @@ -1,24 +1,24 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-04-09 08:04+0000\n" -"Last-Translator: Pavel Pernička <pernicka.pa@gmail.com>\n" +"PO-Revision-Date: 2023-03-23 17:49+0000\n" +"Last-Translator: David Rapaň <david@rapan.cz>\n" "Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/cs/>\n" "Language: cs\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.6-dev\n" +"X-Generator: Weblate 4.16.2-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d hosti pouze s IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -42,75 +42,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Advanced Settings" msgstr "Pokročilá nastavení" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -151,17 +151,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Shromažďování údajů…" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -169,24 +169,24 @@ msgstr "" msgid "Configuration" msgstr "Nastavení" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Připojení" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "Adresář databáze" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -205,38 +205,38 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24 msgid "Dismiss" -msgstr "" +msgstr "Zahodit" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:16 msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "Stáhnout" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -252,19 +252,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -288,9 +288,9 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -306,70 +306,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Hostitel" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -377,17 +377,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -401,19 +401,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -432,10 +432,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "Obnovit" @@ -464,7 +468,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -478,17 +482,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -496,36 +500,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "Nahrát" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -533,14 +537,14 @@ msgstr "" msgid "Warning" msgstr "Varování" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -555,8 +559,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/da/nlbwmon.po b/applications/luci-app-nlbwmon/po/da/nlbwmon.po index 03e62356c4..5faacbbdf6 100644 --- a/applications/luci-app-nlbwmon/po/da/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/da/nlbwmon.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-11-14 17:23+0000\n" +"PO-Revision-Date: 2023-04-24 17:51+0000\n" "Last-Translator: drax red <drax@outlook.dk>\n" "Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/da/>\n" @@ -8,17 +8,17 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.9.1-dev\n" +"X-Generator: Weblate 4.18-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d Værter, der kun er iPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -42,75 +42,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Advanced Settings" msgstr "Avancerede indstillinger" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -151,17 +151,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Indsamler data..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -169,24 +169,24 @@ msgstr "" msgid "Configuration" msgstr "Konfiguration" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Forbindelser" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "Databasemappe" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -211,32 +211,32 @@ msgstr "Afvis" msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -252,19 +252,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -280,17 +280,17 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" -msgstr "" +msgstr "Familie" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73 msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -306,70 +306,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Vært" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -377,17 +377,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -401,19 +401,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -432,13 +432,17 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" -msgstr "" +msgstr "Gendan" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52 msgid "Restore Database Backup" @@ -464,7 +468,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -478,17 +482,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -496,36 +500,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -533,14 +537,14 @@ msgstr "" msgid "Warning" msgstr "Advarsel" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -555,8 +559,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/de/nlbwmon.po b/applications/luci-app-nlbwmon/po/de/nlbwmon.po index 5d8113d610..890a84e490 100644 --- a/applications/luci-app-nlbwmon/po/de/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/de/nlbwmon.po @@ -1,24 +1,24 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-10-20 05:26+0000\n" -"Last-Translator: Andreas Götz <agoetz@tdt.de>\n" +"PO-Revision-Date: 2023-08-20 12:46+0000\n" +"Last-Translator: Felix Baumann <felix.bau@gmx.de>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/de/>\n" "Language: de\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.3.1-dev\n" +"X-Generator: Weblate 5.0-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d IPv4-only Hosts" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "%d IPv6-only Hosts" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "%d Dualstack-Hosts" @@ -42,83 +42,82 @@ msgstr "-7 - Neustart eine Woche vor Monatsende" msgid "1 - Restart every 1st of month" msgstr "1 - Neustart jeden ersten Tag des Monats" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "10min - häufigeres Sichern auf Kosten von Flashspeicher-Abnutzung" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" "12h - Kompromiss zwischen Datenverlustrisiko und Flashspeicher-Abnutzung" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" "24h - geringste Flashspeicherabnutzung auf Kosten von erhöhtem " "Datenverlustrisiko" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "30s - Aktualisiere alle 30s für ausreichend aktuelle Statistiken" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" "5min - selten aktualisieren, um die conntrack-Zähler nicht so häufig " "zurückzusetzen" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "60s - minütlich sichern, sinnvoll für nicht-Flashspeicher" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "<big id=\"conn-total\">0</big> Verbindungen" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "<big id=\"host-total\">0</big> Hosts" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "<big id=\"ipv6-rx\">0B</big> IPv6-Download insgesamt" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "<big id=\"ipv6-tx\">0B</big> IPv6-Upload insgesamt" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" "<big id=\"layer7-most-conn\">0</big> verursachen die meisten Verbindungen" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "<big id=\"layer7-most-rx\">0</big> verursacht den meisten Download" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "<big id=\"layer7-most-tx\">0</big> verursachen den meisten Upload" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" -msgstr "" -"<big id=\"layer7-total\">0</big> verschiedene Anwendungsprotokolle</big>" +msgstr "<big id=\"layer7-total\">0</big> verschiedene Anwendungsprotokolle" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "<big id=\"rx-total\">0</big> Download" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "<big id=\"tx-total\">0</big> Upload" @@ -130,11 +129,11 @@ msgstr "Berechnungszeitraum" msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "Anwendung" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "Anwendungsprotokolle" @@ -166,17 +165,17 @@ msgstr "" "\"Festes Intervall\", um den Abrechnungszeitraum genau alle N Tage ab einem " "bestimmten Datum neu zu starten." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Sammle Daten..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "Sicherungsintervall" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "Komprimiere Datenbank" @@ -184,24 +183,24 @@ msgstr "Komprimiere Datenbank" msgid "Configuration" msgstr "Konfiguration" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "Verb." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Verbindungen" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "Verbindungen / Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "Datenbankverzeichnis" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -231,32 +230,32 @@ msgstr "Verwerfen" msgid "Display" msgstr "Anzeige" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "Down. (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "Down. (Pkg.)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "Download" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "Download (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "Download (Pakete)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "Download / Anwendung" @@ -264,7 +263,7 @@ msgstr "Download / Anwendung" msgid "Download Database Backup" msgstr "Datenbank-Backup herunterladen" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "Hosts mit Dualstack-IPs" @@ -272,19 +271,19 @@ msgstr "Hosts mit Dualstack-IPs" msgid "Due date" msgstr "Fälligkeitsdatum" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" -msgstr "" +msgstr "Speicherauszug (JSON)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "Exportieren" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "Datenbank-Commit schlug fehl: %s" @@ -292,7 +291,7 @@ msgstr "Datenbank-Commit schlug fehl: %s" msgid "Failed to download backup archive: %s" msgstr "Backuparchiv konnte nicht geladen werden: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "Datenverkehr konnte nicht geladen werden: %s" @@ -300,7 +299,7 @@ msgstr "Datenverkehr konnte nicht geladen werden: %s" msgid "Failed to restore backup archive: %s" msgstr "Backuparchiv konnte nicht wiederhergestellt werden: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "Familie" @@ -308,9 +307,9 @@ msgstr "Familie" msgid "Fixed interval" msgstr "Festes Intervall" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "Neu Laden erzwingen…" @@ -326,45 +325,45 @@ msgstr "Erzeuge Backup" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "Gewähre UCI Zugriff auf luci-app-nlbwmon" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" -msgstr "" +msgstr "Gruppiert per IP (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" -msgstr "" +msgstr "Gruppiert per MAC (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" -msgstr "" +msgstr "Gruppiert per Protokoll (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "Hostname: <big id=\"bubble-hostname\">example.org</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "IPv4 zu IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "Intervall" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." @@ -372,7 +371,7 @@ msgstr "" "Zeitintervall, nach dem die in-Memory-Datenbank periodisch auf auf dem " "Festspeicher persistiert wird." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." @@ -380,20 +379,20 @@ msgstr "" "Zeitintervall für das periodische Aktualisieren der Traffic-Zähler " "bestehender Verbindungen anhand der netlink-Daten." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "Länge des Berechnungszeitraums in Tagen." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "Lokale Schnittstellen" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "Lokale Subnetze" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -401,11 +400,11 @@ msgstr "MAC" msgid "Malformed data received" msgstr "Fehlerhafte Daten empfangen" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "Maximale Einträge" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." @@ -413,7 +412,7 @@ msgstr "" "Höchstzahl an Abrechnungszeiträumen, die behalten werden sollen, 0 steht für " "unbeschränkt." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "Netlink-Bandbreitenmonitor" @@ -427,21 +426,21 @@ msgstr "Netlink-Bandbreitenmonitor - Konfiguration" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "Noch keine Daten aufgezeichnet." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" "Es werden nur Conntrack-Streams von oder zu einem dieser Netzwerke gezählt." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" "Es werden nur Conntrack-Streams von oder zu einem dieser Subnetze gezählt." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "Datenbank vorab zuordnen" @@ -464,10 +463,14 @@ msgstr "" "Wert die Portnummer und die dritte Spalte den Namen des zugeordneten " "Protokolls." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "Aktualisierungsintervall" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "Erfordert ein gültiges Datum im Format \"JJJJ-MM-TT\"" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "Wiederherstellen" @@ -497,7 +500,7 @@ msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" "Startdatum der ersten Abrechnungsperiode, z.B. Beginn des ISP-Vertrags." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "Gespeicherte Zeiträume" @@ -514,7 +517,7 @@ msgstr "" msgid "The following database files have been restored:" msgstr "Die folgenden Datenbank Dateien wurden wiederhergestellt:" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." @@ -523,11 +526,11 @@ msgstr "" "sollen. Wenn das Limit auf 0 gesetzt wird, können Datenbanken unbegrenzt " "wachsen." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "Datenverkehr / Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "Datenverkehrsaufteilung" @@ -535,36 +538,36 @@ msgstr "Datenverkehrsaufteilung" msgid "Unable to fetch traffic statistic data: %s" msgstr "Netzverkehr-Statistiken konnten nicht geladen werden: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "Up. (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "Up. (Pkts.)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "Upload" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "Upload (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "Upload (Pakete)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "Upload / Anwendung" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "Anbieter: <big id=\"bubble-vendor\">Beispiel Corp.</big>" @@ -572,7 +575,7 @@ msgstr "Anbieter: <big id=\"bubble-vendor\">Beispiel Corp.</big>" msgid "Warning" msgstr "Warnung" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " @@ -582,7 +585,7 @@ msgstr "" "Komprimieren der Datenbankdateien wird der Zugriff auf alte Daten etwas " "langsamer, der Speicherbedarf wird jedoch reduziert." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -601,9 +604,9 @@ msgstr "kein Datenverkehr" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "anderes" diff --git a/applications/luci-app-nlbwmon/po/el/nlbwmon.po b/applications/luci-app-nlbwmon/po/el/nlbwmon.po index 524982fc56..0b246df61d 100644 --- a/applications/luci-app-nlbwmon/po/el/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/el/nlbwmon.po @@ -1,24 +1,24 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-01-23 03:57+0000\n" -"Last-Translator: Savvas Sfantos <savvassfa@gmail.com>\n" +"PO-Revision-Date: 2022-05-15 17:04+0000\n" +"Last-Translator: MarioK239 <marios.k239@gmail.com>\n" "Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/el/>\n" "Language: el\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.5-dev\n" +"X-Generator: Weblate 4.13-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -42,75 +42,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Advanced Settings" msgstr "Ρυθμίσεις για προχωρημένους" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -151,17 +151,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Συλλογή δεδομένων..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -169,24 +169,24 @@ msgstr "" msgid "Configuration" msgstr "Διαμόρφωση" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -211,32 +211,32 @@ msgstr "" msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -252,19 +252,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -288,9 +288,9 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -306,70 +306,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" -msgstr "" +msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -377,17 +377,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -401,25 +401,25 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339 msgid "Protocol" -msgstr "" +msgstr "Πρωτόκολλο" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61 msgid "Protocol Mapping" @@ -432,10 +432,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "" @@ -464,7 +468,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -478,17 +482,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -496,36 +500,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -533,14 +537,14 @@ msgstr "" msgid "Warning" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -555,8 +559,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/en/nlbwmon.po b/applications/luci-app-nlbwmon/po/en/nlbwmon.po index c992c9bb6b..53a2fd470d 100644 --- a/applications/luci-app-nlbwmon/po/en/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/en/nlbwmon.po @@ -1,24 +1,24 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-01-07 17:03+0000\n" -"Last-Translator: Liao junchao <liaojunchao@outlook.com>\n" +"PO-Revision-Date: 2023-11-30 14:34+0000\n" +"Last-Translator: rygle <pittos@post.com>\n" "Language-Team: English <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/en/>\n" "Language: en\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.4.1-dev\n" +"X-Generator: Weblate 5.3-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -42,75 +42,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Advanced Settings" msgstr "Advanced Settings" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -151,17 +151,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -169,24 +169,24 @@ msgstr "" msgid "Configuration" msgstr "Configuration" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -211,32 +211,32 @@ msgstr "" msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -252,19 +252,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -288,15 +288,15 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59 msgid "General Settings" -msgstr "" +msgstr "General Settings" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:64 msgid "Generate Backup" @@ -306,70 +306,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "" @@ -377,17 +377,17 @@ msgstr "" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -401,19 +401,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -432,10 +432,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "" @@ -464,7 +468,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -478,17 +482,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -496,36 +500,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -533,14 +537,14 @@ msgstr "" msgid "Warning" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -555,8 +559,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/es/nlbwmon.po b/applications/luci-app-nlbwmon/po/es/nlbwmon.po index 6aa91a3495..eda9f67c72 100644 --- a/applications/luci-app-nlbwmon/po/es/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/es/nlbwmon.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-08-10 19:02+0000\n" -"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"PO-Revision-Date: 2023-08-20 12:46+0000\n" +"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/es/>\n" "Language: es\n" @@ -11,17 +11,17 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.8-dev\n" +"X-Generator: Weblate 5.0-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d hosts solo IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "%d hosts solo IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "%d hosts de doble pila" @@ -45,86 +45,86 @@ msgstr "-7 - Reiniciar una semana antes de fin de mes" msgid "1 - Restart every 1st of month" msgstr "1 - Reiniciar cada 1 del mes" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "10m - frecuentes cometidos a expensas del desgaste del flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" "12h - compromiso entre el riesgo de pérdida de datos y el desgaste por " "destello" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" "24h - menor desgaste del flash a expensas del riesgo de pérdida de datos" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" "30s - actualice dos veces por minuto para obtener estadísticas " "razonablemente actuales" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" "5m - rara vez se actualiza para evitar el borrado frecuente de los " "contadores de conntrack" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "60s - cometa minuciosamente, útil para almacenamiento sin flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "<big id=\"conn-total\">0</big> conexiones" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "<big id=\"host-total\">0</big> hosts" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" "<big id=\"ipv6-hosts\">0%</big> tasa de compatibilidad de IPv6 entre los " "hosts" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "<big id=\"ipv6-rx\">0B</big> descarga total de IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "<big id=\"ipv6-tx\">0B</big> carga total de IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" "<big id=\"layer7-most-conn\">0</big> causa la mayoría de las conexiones" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" "<big id=\"layer7-most-rx\">0</big> es la causa de la descarga más grande" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "<big id=\"layer7-most-tx\">0</big> causa la mayor carga" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "<big id=\"layer7-total\">0</big> diferentes protocolos de aplicación" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "<big id=\"rx-total\">0</big> de descarga" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "<big id=\"tx-total\">0</big> de subida" @@ -134,13 +134,13 @@ msgstr "Período contable" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60 msgid "Advanced Settings" -msgstr "Configuración avanzada" +msgstr "Ajustes avanzados" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "Aplicación" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "Protocolos de aplicación" @@ -172,17 +172,17 @@ msgstr "" "reiniciar el período contable exactamente cada N días, comenzando en una " "fecha determinada." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Recolectando datos…" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "Intervalo de compromiso" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "Comprimir la base de datos" @@ -190,24 +190,24 @@ msgstr "Comprimir la base de datos" msgid "Configuration" msgstr "Configuración" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "Conexiones." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Conexiones" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "Conexiones / Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "Directorio de la base de datos" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -237,32 +237,32 @@ msgstr "Descartar" msgid "Display" msgstr "Monitor" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "Desc. (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "Desc. (Paqs.)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "Descargar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "Descarga (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "Descarga (Paquetes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "Descargar / Aplicación" @@ -270,7 +270,7 @@ msgstr "Descargar / Aplicación" msgid "Download Database Backup" msgstr "Descargar copia de seguridad de la base de datos" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "Hosts habilitados para DualStack" @@ -278,20 +278,19 @@ msgstr "Hosts habilitados para DualStack" msgid "Due date" msgstr "Fecha de vencimiento" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 -#, fuzzy +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" -msgstr "Vertedero (JSON)" +msgstr "Volcado (JSON)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "Exportar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "Error al confirmar la base de datos: %s" @@ -299,7 +298,7 @@ msgstr "Error al confirmar la base de datos: %s" msgid "Failed to download backup archive: %s" msgstr "Error al descargar el archivo de copia de seguridad: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "Error al descargar datos de tráfico: %s" @@ -307,7 +306,7 @@ msgstr "Error al descargar datos de tráfico: %s" msgid "Failed to restore backup archive: %s" msgstr "Error al restaurar el archivo de copia de seguridad: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "Familia" @@ -315,9 +314,9 @@ msgstr "Familia" msgid "Fixed interval" msgstr "Intervalo fijo" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "Forzar reinicio…" @@ -333,45 +332,45 @@ msgstr "Generar copia de seguridad" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "Conceder acceso UCI para luci-app-nlbwmon" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "Agrupados por IP (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "Agrupados por MAC (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "Agrupados por protocolo (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <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/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "IPv4 vs. IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "Intervalo" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." @@ -379,7 +378,7 @@ msgstr "" "Intervalo en el que la base de datos temporal en memoria se confirma al " "directorio de base de datos persistente." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." @@ -387,20 +386,20 @@ msgstr "" "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." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "Duración del intervalo contable en días." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "Interfaces locales" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "Subredes locales" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -408,11 +407,11 @@ msgstr "MAC" msgid "Malformed data received" msgstr "Datos malformados recibidos" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "Entradas máximas" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." @@ -420,7 +419,7 @@ msgstr "" "Número máximo de períodos contables para mantener, use 0 para mantener las " "bases de datos para siempre." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "Monitor de ancho de banda Netlink" @@ -434,23 +433,23 @@ msgstr "Monitor de ancho de banda Netlink - Configuración" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "No hay datos registrados todavía." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" "Solo se cuentan los flujos de conexión desde o hacia cualquiera de estas " "redes." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" "Solo se cuentan los flujos de conexión desde o hacia cualquiera de estas " "subredes." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "Pre-ubicar la base de datos" @@ -473,10 +472,14 @@ msgstr "" "valor, el número de puerto y la tercera columna es el nombre del protocolo " "asignado." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "Intervalo de actualización" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "Requiere una fecha válida con la forma \"AAAA-MM-DD\"" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "Restaurar" @@ -507,7 +510,7 @@ msgstr "" "Fecha de inicio del primer período contable, por ejemplo, inicio del " "contrato ISP." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "Periodos almacenados" @@ -524,7 +527,7 @@ msgstr "" msgid "The following database files have been restored:" msgstr "Los siguientes archivos de base de datos han sido restaurados:" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." @@ -533,11 +536,11 @@ msgstr "" "estableciendo el límite en 0, permitirá que las bases de datos crezcan " "indefinidamente." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "Tráfico / Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "Distribución del tráfico" @@ -545,36 +548,36 @@ msgstr "Distribución del tráfico" msgid "Unable to fetch traffic statistic data: %s" msgstr "No se pueden recuperar datos estadísticos de tráfico: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "Sub. (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "Sub. (Paq.)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "Cargar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "Subida (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "Subida (Paquetes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "Subir / Aplicación" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "Proveedor: <big id=\"bubble-vendor\">Example Corp.</big>" @@ -582,7 +585,7 @@ msgstr "Proveedor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Warning" msgstr "Advertencia" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " @@ -592,7 +595,7 @@ msgstr "" "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." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -611,9 +614,9 @@ msgstr "Sin tráfico" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "Otro" diff --git a/applications/luci-app-nlbwmon/po/fi/nlbwmon.po b/applications/luci-app-nlbwmon/po/fi/nlbwmon.po index d986b60160..379fc2ec97 100644 --- a/applications/luci-app-nlbwmon/po/fi/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/fi/nlbwmon.po @@ -1,24 +1,24 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-11-12 18:41+0000\n" -"Last-Translator: Hannu Nyman <hannu.nyman@iki.fi>\n" +"PO-Revision-Date: 2022-04-21 23:00+0000\n" +"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/fi/>\n" "Language: fi\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.9.1-dev\n" +"X-Generator: Weblate 4.12-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d vain IPv4-isäntää" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "%d vain IPv6-isäntää" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "%d IPv4+IPv6-isäntää" @@ -42,81 +42,81 @@ msgstr "-7 - Käynnistä uudelleen viikkoa ennen kuun loppua" msgid "1 - Restart every 1st of month" msgstr "1 - Käynnistä uudelleen joka kuukauden 1. päivä" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "10m - tiheä tallentaminen flashin kulumisen kustannuksella" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" "12h - kompromissi tietojen menettämisriskin ja flashin kulumisen välillä" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "24h - vähiten flash-kulumista tietojen menetysriskin kustannuksella" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" "30s - päivitä kahdesti minuutissa kohtuullisen ajankohtaisten tilastojen " "saamiseksi." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" "5m - päivitä harvoin, jotta vältetään conntrack-laskurien tyhjentäminen " "usein." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" "60s - tallenna joka minuutti, hyödyllinen ei-flash-tallennustilan kanssa" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "<big id=\"conn-total\">0</big> yhteyttä" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "<big id=\"host-total\">0</big> isäntää" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "<big id=\"ipv6-hosts\">0%</big> IPv6-tuen osuus isäntien keskuudessa" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "<big id=\"ipv6-rx\">0B</big> IPv6-lataus yhteensä" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "<big id=\"ipv6-share\">0 %</big> koko liikenteestä on IPv6-liikennettä" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "<big id=\"layer7-most-conn\">0</big> aiheuttaa eniten yhteyksiä" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "<big id=\"layer7-most-rx\">0</big> aiheuttaa eniten latauksia" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -128,11 +128,11 @@ msgstr "" msgid "Advanced Settings" msgstr "Lisäasetukset" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -157,17 +157,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Kerätään tietoja…" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -175,24 +175,24 @@ msgstr "" msgid "Configuration" msgstr "Kokoonpano" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Yhteydet" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" -msgstr "" +msgstr "Tietokantahakemisto" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -217,32 +217,32 @@ msgstr "Hylkää" msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "Lataa" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -250,7 +250,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -258,19 +258,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -278,7 +278,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -286,7 +286,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -294,15 +294,15 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59 msgid "General Settings" -msgstr "Yleisasetukset" +msgstr "Yleiset asetukset" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:64 msgid "Generate Backup" @@ -312,70 +312,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Palvelin" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -383,17 +383,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -407,19 +407,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -438,10 +438,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "Palauta" @@ -460,7 +464,7 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334 msgid "Source IP" -msgstr "" +msgstr "Lähde-IP" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96 msgid "Start date" @@ -470,7 +474,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -484,17 +488,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -502,36 +506,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "Lähetä" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -539,14 +543,14 @@ msgstr "" msgid "Warning" msgstr "Varoitus" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -561,8 +565,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/fr/nlbwmon.po b/applications/luci-app-nlbwmon/po/fr/nlbwmon.po index 1d8e140242..2179a82b8d 100644 --- a/applications/luci-app-nlbwmon/po/fr/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/fr/nlbwmon.po @@ -1,26 +1,26 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-11-14 12:48+0000\n" -"Last-Translator: David Elie-Dit-Cosaque <david.elieditcosaque@gmail.com>\n" +"PO-Revision-Date: 2023-06-18 10:26+0000\n" +"Last-Translator: viking76 <liaudetgael@gmail.com>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/fr/>\n" "Language: fr\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.4-dev\n" +"X-Generator: Weblate 4.18.1\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d hôtes IPv4 uniquement" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "%d hôtes IPv6 uniquement" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" -msgstr "" +msgstr "%d hôtes double-pile" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114 msgid "%s and %s" @@ -42,86 +42,86 @@ msgstr "-7 - Redémarrer une semaine avant la fin du mois" msgid "1 - Restart every 1st of month" msgstr "1 - Redémarrez tous les 1er du mois" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" "10m - sauvegardes fréquentes au détriment de l'usure de la mémoire flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" "12h - compromis entre le risque de perte de données et l'usure de la mémoire " "flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" "24h - usure de la mémoire flash minimale mais risque plus élevé de perte de " "données" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" "30s - rafraîchissement deux fois par minutes pour des statistiques " "raisonnablement mises a jours" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" "5m - rafraîchissement long pour éviter de vider les compteurs conntrack " "souvent" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" "60s - sauvegarde toutes les minutes, utile pour les medium de stockages non " "flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" -msgstr "" +msgstr "<big id=\"conn-total\">0</big> connexions" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" -msgstr "" +msgstr "<big id=\"host-total\">0</big> hôtes" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" -msgstr "" +msgstr "<big id=\"ipv6-hosts\">0%</big> Taux de support IPv6 parmi les hôtes" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" -msgstr "" +msgstr "<big id=\"ipv6-rx\">0B</big> téléchargement IPv6 total" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" -msgstr "" +msgstr "<big id=\"ipv6-share\">0%</big> du traffic total est en IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -133,11 +133,11 @@ msgstr "" msgid "Advanced Settings" msgstr "Paramètres avancés" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" -msgstr "" +msgstr "Application" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -162,17 +162,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Récupération des données…" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -180,32 +180,34 @@ msgstr "" msgid "Configuration" msgstr "Configuration" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." -msgstr "" +msgstr "Conn." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" -msgstr "" +msgstr "Connexions" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "Répertoire de la base de données" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." msgstr "" +"Répertoire de stockage de la base de données. Un fichier par période " +"comptable sera placé dans ce répertoire." #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72 msgid "Day of month" -msgstr "" +msgstr "Jour du mois" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84 msgid "" @@ -220,34 +222,34 @@ msgstr "Annuler" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:16 msgid "Display" -msgstr "" +msgstr "Affichage" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "Télécharger" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -255,7 +257,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -263,19 +265,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" -msgstr "" +msgstr "Exporter" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "Erreur d'envoi dans database : %s" @@ -283,7 +285,7 @@ msgstr "Erreur d'envoi dans database : %s" msgid "Failed to download backup archive: %s" msgstr "Erreur de telechargement du backup-archive : %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "Erreur de téléchargement traffic data : %s" @@ -291,17 +293,17 @@ msgstr "Erreur de téléchargement traffic data : %s" msgid "Failed to restore backup archive: %s" msgstr "Echec de restauration du backup-archive : %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" -msgstr "" +msgstr "Famille" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73 msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -311,76 +313,80 @@ msgstr "Paramètres généraux" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:64 msgid "Generate Backup" -msgstr "" +msgstr "Générer une sauvegarde" #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3 msgid "Grant UCI access for luci-app-nlbwmon" msgstr "Grant UCI access pour luci-app-nlbwmon" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Hôte" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" -msgstr "" +msgstr "Nom d’hôte : <big id=\"bubble-hostname\">example.org</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" -msgstr "" +msgstr "Intervalle" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" +"Intervalle auquel la base de données temporaire en mémoire est validée dans " +"le répertoire de base de données persistant." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" +"Intervalle auquel les compteurs de trafic des connexions encore établies " +"sont actualisés à partir des informations relatives aux liaisons réseau." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" -msgstr "" +msgstr "Interfaces locales" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" -msgstr "" +msgstr "Sous-réseaux locaux" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -388,17 +394,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "Donnée corrompu recu" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -412,19 +418,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -443,8 +449,12 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" +msgstr "Intervalle d’actualisation" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 @@ -475,7 +485,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -489,54 +499,54 @@ msgstr "" msgid "The following database files have been restored:" msgstr "Les fichiers de base de données suivants ont été restaurés :" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" -msgstr "" +msgstr "Trafic / Hôte" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" -msgstr "" +msgstr "Distribution du trafic" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92 msgid "Unable to fetch traffic statistic data: %s" msgstr "Impossible d'obtenir des données statistiques sur le trafic : %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "Téléverser" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -544,14 +554,14 @@ msgstr "" msgid "Warning" msgstr "Avertissement" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -566,8 +576,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" -msgstr "" +msgstr "autre" diff --git a/applications/luci-app-nlbwmon/po/he/nlbwmon.po b/applications/luci-app-nlbwmon/po/he/nlbwmon.po index 5164346e1f..323ed175fd 100644 --- a/applications/luci-app-nlbwmon/po/he/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/he/nlbwmon.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-01-15 22:31+0000\n" +"PO-Revision-Date: 2023-09-07 08:58+0000\n" "Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" "Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/he/>\n" @@ -9,17 +9,17 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " "n % 10 == 0) ? 2 : 3));\n" -"X-Generator: Weblate 4.5-dev\n" +"X-Generator: Weblate 5.0.1-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -43,75 +43,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -123,11 +123,11 @@ msgstr "" msgid "Advanced Settings" msgstr "הגדרות מתקדמות" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -152,17 +152,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "נאספים נתונים…" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -170,24 +170,24 @@ msgstr "" msgid "Configuration" msgstr "הגדרות" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -212,32 +212,32 @@ msgstr "התעלמות" msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -245,7 +245,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -253,19 +253,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -273,7 +273,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -281,7 +281,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -289,15 +289,15 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59 msgid "General Settings" -msgstr "" +msgstr "הגדרות כלליות" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:64 msgid "Generate Backup" @@ -307,70 +307,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "" @@ -378,17 +378,17 @@ msgstr "" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -402,25 +402,25 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339 msgid "Protocol" -msgstr "" +msgstr "פרוטוקול" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61 msgid "Protocol Mapping" @@ -433,10 +433,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "" @@ -455,93 +459,97 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334 msgid "Source IP" -msgstr "" +msgstr "IP של המקור" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96 msgid "Start date" -msgstr "" +msgstr "תאריך התחלה" #: 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." -msgstr "" +msgstr "תאריך התחלת תקופת החשבון הראשונה, כלומר: תחילת חוזה עם ספקית התקשורת." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" -msgstr "" +msgstr "תקופות מאוחסנות" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53 msgid "" "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "accounting program keeping track of bandwidth usage per host and protocol." msgstr "" +"מעקב תעבורת Netlink (nlbwmon) היא תוכנית חישוב תעבורה שעוקבת אחר צריכת " +"התעבורה לפי מארח ופרוטוקול." #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21 msgid "The following database files have been restored:" -msgstr "" +msgstr "קובץ מסד הנתונים הבא שוחזר:" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" +"כמות הרשומות המרבית שיש להציב במסד הנתונים. הגדרת המגבלה ל־0 תאפשר למסדי " +"הנתונים לגדול בלי סוף." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" -msgstr "" +msgstr "תעבורה / מארח" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" -msgstr "" +msgstr "פיזור תעבורה" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92 msgid "Unable to fetch traffic statistic data: %s" -msgstr "" +msgstr "לא ניתן למשוך את נתוני הסטטיסטיקה על התעבורה: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" -msgstr "" +msgstr "יוצאת. (בתים)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" -msgstr "" +msgstr "יוצאת. (מנות נתונים)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" -msgstr "" +msgstr "העלאה" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" -msgstr "" +msgstr "העלאה (בתים)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" -msgstr "" +msgstr "העלאה (מנות נתונים)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" -msgstr "" +msgstr "העלאה / יישום" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" -msgstr "" +msgstr "יצרן: <big id=\"bubble-vendor\">דוגמה בע״מ</big>" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75 msgid "Warning" -msgstr "" +msgstr "אזהרה" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -556,8 +564,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/hi/nlbwmon.po b/applications/luci-app-nlbwmon/po/hi/nlbwmon.po index 30ee09f336..3be72d51e2 100644 --- a/applications/luci-app-nlbwmon/po/hi/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/hi/nlbwmon.po @@ -10,15 +10,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -42,75 +42,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -151,17 +151,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -169,24 +169,24 @@ msgstr "" msgid "Configuration" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -211,32 +211,32 @@ msgstr "" msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -252,19 +252,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -288,9 +288,9 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -306,70 +306,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -377,17 +377,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -401,19 +401,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -432,10 +432,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "" @@ -464,7 +468,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -478,17 +482,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -496,36 +500,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -533,14 +537,14 @@ msgstr "" msgid "Warning" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -555,8 +559,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/hu/nlbwmon.po b/applications/luci-app-nlbwmon/po/hu/nlbwmon.po index ad7789f0af..a108bfff05 100644 --- a/applications/luci-app-nlbwmon/po/hu/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/hu/nlbwmon.po @@ -1,24 +1,24 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-08-12 12:55+0000\n" -"Last-Translator: Tudós Péter <tudi.sk@gmail.com>\n" +"PO-Revision-Date: 2023-10-06 08:29+0000\n" +"Last-Translator: Norbert Szentner <upd6la1j@duck.com>\n" "Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/hu/>\n" "Language: hu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.8-dev\n" +"X-Generator: Weblate 5.1-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d csak IPv4-es gép" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "%d csak IPv6-os gép" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "%d kettős protokollcsomagú gép" @@ -42,81 +42,81 @@ msgstr "-7 – egy hét újraindítása a hónap vége előtt" msgid "1 - Restart every 1st of month" msgstr "1 – újraindítás minden hónap első napján" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" "12 óra – kompromisszum az adatvesztési kockázat és a flash-használat között" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" "24 óra – a legkevesebb flash-használat az adatvesztési kockázat rovására" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" "30 másodperc – frissítés percenként kétszer az észszerűen aktuális " "statisztikákhoz" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" "5 perc – ritka frissítés a kapcsolatkövető számlálók gyakori törlésének " "elkerüléséhez" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "<big id=\"conn-total\">0</big> kapcsolat" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "<big id=\"host-total\">0</big> gép" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "<big id=\"ipv6-rx\">0B</big> teljes IPv6 letöltés" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "<big id=\"ipv6-tx\">0B</big> teljes IPv6 feltöltés" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "<big id=\"layer7-total\">0</big> különböző alkalmazásprotokoll" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "<big id=\"rx-total\">0</big> letöltés" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "<big id=\"tx-total\">0</big> feltöltés" @@ -125,14 +125,15 @@ msgid "Accounting period" msgstr "Elszámolási időszak" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60 +#, fuzzy msgid "Advanced Settings" msgstr "Haladó Beállítások" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "Alkalmazás" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "Alkalmazásprotokollok" @@ -164,17 +165,17 @@ msgstr "" "„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." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Adatok összegyűjtése…" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "Véglegesítési időköz" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "Adatbázis tömörítése" @@ -182,24 +183,24 @@ msgstr "Adatbázis tömörítése" msgid "Configuration" msgstr "Beállítás" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "Kapcs." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Kapcsolatok" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "Kapcsolatok / gép" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "Adatbáziskönyvtár" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -223,38 +224,38 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24 msgid "Dismiss" -msgstr "" +msgstr "Eltüntetés" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:16 msgid "Display" msgstr "Megjelenítés" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "Le. (byte)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "Le. (csom.)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "Letöltés" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "Letöltés (bájt)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "Letöltés (csomagok)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "Letöltés / alkalmazás" @@ -262,7 +263,7 @@ msgstr "Letöltés / alkalmazás" msgid "Download Database Backup" msgstr "Adatbázis biztonsági mentés letöltése" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "Kétvermes engedélyezett gépek" @@ -270,19 +271,19 @@ msgstr "Kétvermes engedélyezett gépek" msgid "Due date" msgstr "Határidő" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "Exportálás" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -290,7 +291,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -298,7 +299,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "Család" @@ -306,9 +307,9 @@ msgstr "Család" msgid "Fixed interval" msgstr "Rögzített időköz" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "Újratöltés kényszerítése…" @@ -324,45 +325,45 @@ msgstr "Biztonsági mentés előállítása" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Gép" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <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/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "IPv4 ↔ IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "Időköz" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." @@ -370,7 +371,7 @@ msgstr "" "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." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." @@ -378,20 +379,20 @@ msgstr "" "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." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "Elszámolási időköz hossza napokban." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "Helyi csatolók" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "Helyi alhálózatok" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -399,11 +400,11 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "Legtöbb bejegyzés" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." @@ -411,7 +412,7 @@ msgstr "" "A megtartandó elszámolási időszakok legnagyobb száma. Használjon nullát az " "adatbázis örökre való megtartásához." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "Hálózati kapcsolat sávszélesség megfigyelő" @@ -427,23 +428,23 @@ msgstr "Hálózati kapcsolat sávszélesség megfigyelő – beállítások" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "Még nincsenek adatok rögzítve." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" "Csak azok a kapcsolatkövető adatfolyamok lesznek beleszámolva, amelyek ezen " "hálózatok bármelyikébe vagy bármelyikéből érkeznek." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" "Csak azok a kapcsolatkövető adatfolyamok lesznek beleszámolva, amelyek ezen " "alhálózatok bármelyikébe vagy bármelyikéből érkeznek." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "Adatbázis előre lefoglalása" @@ -466,10 +467,14 @@ msgstr "" "az IP protokollt, a második érték a portszámot és a harmadik oszlop a " "leképezett protokoll neve." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "Frissítési időköz" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "Visszaállítás" @@ -500,7 +505,7 @@ msgstr "" "Az első elszámolási időszak kezdődátuma, például egy internetszolgáltatóval " "kötött szerződés kezdete." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "Tárolt időszakok" @@ -517,7 +522,7 @@ msgstr "" msgid "The following database files have been restored:" msgstr "A következő adatbázisfájlok lettek visszaállítva:" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." @@ -525,11 +530,11 @@ msgstr "" "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é." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "Forgalom / gép" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "Forgalomelosztás" @@ -537,36 +542,36 @@ msgstr "Forgalomelosztás" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "Fel. (bájt)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "Fel. (csom.)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "Feltöltés" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "Feltöltés (bájt)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "Feltöltés (csomagok)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "Feltöltés / alkalmazás" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "Gyártó: <big id=\"bubble-vendor\">Példa Kft.</big>" @@ -574,7 +579,7 @@ msgstr "Gyártó: <big id=\"bubble-vendor\">Példa Kft.</big>" msgid "Warning" msgstr "Figyelmeztetés" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " @@ -584,7 +589,7 @@ msgstr "" "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." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -603,9 +608,9 @@ msgstr "nincs forgalom" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "egyéb" diff --git a/applications/luci-app-nlbwmon/po/it/nlbwmon.po b/applications/luci-app-nlbwmon/po/it/nlbwmon.po index 49fc029fb2..81aa2d8ef6 100644 --- a/applications/luci-app-nlbwmon/po/it/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/it/nlbwmon.po @@ -1,116 +1,116 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-09-15 08:34+0000\n" -"Last-Translator: pisquan8 <cimurro@outlook.de>\n" +"PO-Revision-Date: 2023-09-10 12:33+0000\n" +"Last-Translator: Random <random-r@users.noreply.hosted.weblate.org>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/it/>\n" "Language: it\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.9-dev\n" +"X-Generator: Weblate 5.0.1-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d solo host IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" -msgstr "" +msgstr "%d host solo IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" -msgstr "" +msgstr "%d host dual-stack" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114 msgid "%s and %s" -msgstr "" +msgstr "%s e %s" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112 msgid "%s, %s and %s" -msgstr "" +msgstr "%s, %s e %s" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93 msgid "-1 - Restart every last day of month" -msgstr "" +msgstr "-1 - Riavvia ogni ultimo giorno del mese" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94 msgid "-7 - Restart a week before end of month" -msgstr "" +msgstr "-7 - Riavvia una settimana prima della fine del mese" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92 msgid "1 - Restart every 1st of month" -msgstr "" +msgstr "1 - Riavvia ogni primo giorno del mese" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -120,13 +120,13 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60 msgid "Advanced Settings" -msgstr "Impostazioni Avanzate" +msgstr "Impostazioni avanzate" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -151,17 +151,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." -msgstr "Raccolta dati..." +msgstr "Raccolta dei dati..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -169,24 +169,24 @@ msgstr "" msgid "Configuration" msgstr "Configurazione" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Connessioni" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -209,34 +209,34 @@ msgstr "Chiudi" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:16 msgid "Display" -msgstr "" +msgstr "Display" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "Download" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -252,19 +252,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -280,23 +280,23 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" -msgstr "" +msgstr "Famiglia" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73 msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59 msgid "General Settings" -msgstr "Impostazioni Generali" +msgstr "Impostazioni generali" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:64 msgid "Generate Backup" @@ -306,70 +306,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -377,17 +377,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -401,19 +401,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -432,10 +432,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "Ripristina" @@ -464,7 +468,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -478,17 +482,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -496,51 +500,51 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "Upload" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75 msgid "Warning" -msgstr "" +msgstr "Avviso" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -555,8 +559,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/ja/nlbwmon.po b/applications/luci-app-nlbwmon/po/ja/nlbwmon.po index 61880fd73e..3baceb5a0d 100644 --- a/applications/luci-app-nlbwmon/po/ja/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/ja/nlbwmon.po @@ -13,15 +13,15 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.4-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d IPv4 限定ホスト" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "%d IPv6 限定ホスト" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "%d デュアルスタック ホスト" @@ -45,75 +45,75 @@ msgstr "-7 - 月の最終日の一週間前" msgid "1 - Restart every 1st of month" msgstr "1 - 毎月1日" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "10m - フラッシュ媒体への負荷が高い頻繁なコミット(10分)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "12h - データ消失リスクとフラッシュ媒体への負荷の妥協点(12時間)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "24h - データ消失リスクは高いがフラッシュ媒体への負荷は最小(24時間)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "30s - 現在の状態の把握に適切な1分間に2回のリフレッシュ(30秒)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "5m - conntrack カウンターの頻繁なクリアを防ぐ、低頻度のリフレッシュ" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "60秒 - 1分毎のコミット、非フラッシュ ストレージに有用" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "<big id=\"conn-total\">0</big> 接続数" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "<big id=\"host-total\">0</big> ホスト数" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "<big id=\"ipv6-hosts\">0%</big> 全ホスト中の IPv6 サポート比率" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "<big id=\"ipv6-rx\">0B</big> IPv6 総ダウンロード" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "<big id=\"ipv6-share\">0%</big> 全トラフィック中の IPv6 の割合" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "<big id=\"ipv6-tx\">0B</big> IPv6 総アップロード" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "<big id=\"layer7-most-conn\">0</big> 接続数上位" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "<big id=\"layer7-most-rx\">0</big> ダウンロード上位" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "<big id=\"layer7-most-tx\">0</big> アップロード上位" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "<big id=\"layer7-total\">0</big> アプリケーション プロトコル数" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "<big id=\"rx-total\">0</big> ダウンロード" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "<big id=\"tx-total\">0</big> アップロード" @@ -125,11 +125,11 @@ msgstr "収集期間" msgid "Advanced Settings" msgstr "詳細設定" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "アプリケーション" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "アプリケーション プロトコル" @@ -159,17 +159,17 @@ msgstr "" "毎月3日)。設定した日数毎にデータの収集を行うには、\"特定の間隔\" を選択しま" "す。後者の場合、指定された日付から開始されます。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "データを収集中..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "コミット間隔" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "データベースの圧縮" @@ -177,24 +177,24 @@ msgstr "データベースの圧縮" msgid "Configuration" msgstr "設定" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "接続数" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "接続数" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "ホスト毎の接続数" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "データベース・ディレクトリ" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -223,32 +223,32 @@ msgstr "閉じる" msgid "Display" msgstr "表示" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "ダウンロード(バイト)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "ダウンロード(パケット)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "ダウンロード" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "ダウンロード(バイト)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "ダウンロード(パケット)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "ダウンロード / アプリケーション" @@ -256,7 +256,7 @@ msgstr "ダウンロード / アプリケーション" msgid "Download Database Backup" msgstr "データベース バックアップのダウンロード" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "デュアルスタック ホスト" @@ -264,19 +264,19 @@ msgstr "デュアルスタック ホスト" msgid "Due date" msgstr "期日" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "エクスポート" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "データベースのコミットに失敗しました: %s" @@ -284,7 +284,7 @@ msgstr "データベースのコミットに失敗しました: %s" msgid "Failed to download backup archive: %s" msgstr "バックアップ・アーカイブのダウンロードに失敗しました: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "トラフィック・データのダウンロードに失敗しました: %s" @@ -292,7 +292,7 @@ msgstr "トラフィック・データのダウンロードに失敗しました msgid "Failed to restore backup archive: %s" msgstr "バックアップ・アーカイブのリストアに失敗しました: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "IP 種別" @@ -300,9 +300,9 @@ msgstr "IP 種別" msgid "Fixed interval" msgstr "特定の間隔" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "強制リロード…" @@ -318,45 +318,45 @@ msgstr "バックアップの作成" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "luci-app-nlbwmonにUCIアクセスを許可" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "ホスト" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <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/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "IPv4 及び IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "間隔" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." @@ -364,7 +364,7 @@ msgstr "" "メモリー上の一時的なデータベースから、永続的なデータベース ディレクトリへのコ" "ミットを実行する間隔です。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." @@ -372,20 +372,20 @@ msgstr "" "確立中の接続のトラフィック カウンターが netlink 情報によりリフレッシュされる" "間隔です。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "収集期間の日数です。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "ローカル インターフェース" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "ローカル サブネット" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -393,11 +393,11 @@ msgstr "MAC" msgid "Malformed data received" msgstr "不正なデータを受信しました" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "最大件数" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." @@ -405,7 +405,7 @@ msgstr "" "計測データを保持する、収集期間の最大個数です。 '0' を設定した場合、全データを" "保持します。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "Netlink 帯域幅モニター" @@ -419,20 +419,20 @@ msgstr "Netlink Bandwidth Monitor - 設定" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "まだデータがありません。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" "選択されたネットワークにおける conntrack ストリームのみが計測されます。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "設定されたサブネットにおける conntrack ストリームのみが計測されます。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "データベースの事前割当" @@ -455,10 +455,14 @@ msgstr "" "目の値はポート番号、3つ目はマッピングされたプロトコルの名前をそれぞれ表しま" "す。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "リフレッシュ間隔" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "復元" @@ -487,7 +491,7 @@ msgstr "開始日" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "初回のデータ収集の開始日です(例: ISP 契約の開始日)。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "保存期間" @@ -503,7 +507,7 @@ msgstr "" msgid "The following database files have been restored:" msgstr "次のデータベース ファイルが復元されました:" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." @@ -511,11 +515,11 @@ msgstr "" "データベースに保管される最大件数です。 '0' を設定した場合、制限なしのデータ" "ベースの増大を許可します。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "ホスト毎のトラフィック" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "トラフィック内訳" @@ -523,36 +527,36 @@ msgstr "トラフィック内訳" msgid "Unable to fetch traffic statistic data: %s" msgstr "トラフィック統計データを取得できません: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "アップロード(バイト)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "アップロード(パケット)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "アップロード" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "アップロード(バイト)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "アップロード(パケット)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "アップロード / アプリケーション" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "ベンダ: <big id=\"bubble-vendor\">Example Corp.</big>" @@ -560,7 +564,7 @@ msgstr "ベンダ: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Warning" msgstr "警告" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " @@ -570,7 +574,7 @@ msgstr "" "いデータへのアクセスが多少遅くなりますが、ストレージ使用量の低減に役立ちま" "す。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -588,9 +592,9 @@ msgstr "トラフィックなし" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "その他" diff --git a/applications/luci-app-nlbwmon/po/ko/nlbwmon.po b/applications/luci-app-nlbwmon/po/ko/nlbwmon.po index 7cd035599a..76ca17bb41 100644 --- a/applications/luci-app-nlbwmon/po/ko/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/ko/nlbwmon.po @@ -1,24 +1,24 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-01-17 20:54+0000\n" -"Last-Translator: ANTEGRAL <antegral@antegral.net>\n" +"PO-Revision-Date: 2023-10-04 03:38+0000\n" +"Last-Translator: Wonchul Kang <teshi85@gmail.com>\n" "Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/ko/>\n" "Language: ko\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.5-dev\n" +"X-Generator: Weblate 5.1-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -42,75 +42,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Advanced Settings" msgstr "고급 설정" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -151,17 +151,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "데이터 수집 중..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -169,24 +169,24 @@ msgstr "" msgid "Configuration" msgstr "설정" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -205,38 +205,38 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24 msgid "Dismiss" -msgstr "" +msgstr "닫기" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:16 msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -252,19 +252,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -288,9 +288,9 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -306,70 +306,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" -msgstr "" +msgstr "호스트" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" -msgstr "" +msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -377,17 +377,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -401,25 +401,25 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339 msgid "Protocol" -msgstr "" +msgstr "프로토콜" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61 msgid "Protocol Mapping" @@ -432,10 +432,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "" @@ -464,7 +468,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -478,17 +482,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -496,51 +500,51 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75 msgid "Warning" -msgstr "" +msgstr "경고" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -555,8 +559,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/lt/nlbwmon.po b/applications/luci-app-nlbwmon/po/lt/nlbwmon.po new file mode 100644 index 0000000000..0ad04c41ae --- /dev/null +++ b/applications/luci-app-nlbwmon/po/lt/nlbwmon.po @@ -0,0 +1,570 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2023-12-02 18:04+0000\n" +"Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n" +"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsnlbwmon/lt/>\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > " +"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? " +"1 : 2);\n" +"X-Generator: Weblate 5.3-dev\n" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 +msgid "%d IPv4-only hosts" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 +msgid "%d IPv6-only hosts" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 +msgid "%d dual-stack hosts" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114 +msgid "%s and %s" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112 +msgid "%s, %s and %s" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93 +msgid "-1 - Restart every last day of month" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94 +msgid "-7 - Restart a week before end of month" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92 +msgid "1 - Restart every 1st of month" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +msgid "10m - frequent commits at the expense of flash wear" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 +msgid "12h - compromise between risk of data loss and flash wear" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +msgid "24h - least flash wear at the expense of data loss risk" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +msgid "30s - refresh twice per minute for reasonably current stats" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +msgid "60s - commit minutely, useful for non-flash storage" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 +msgid "<big id=\"conn-total\">0</big> connections" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 +msgid "<big id=\"host-total\">0</big> hosts" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 +msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 +msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 +msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 +msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 +msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 +msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 +msgid "<big id=\"layer7-total\">0</big> different application protocols" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 +msgid "<big id=\"rx-total\">0</big> download" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 +msgid "<big id=\"tx-total\">0</big> upload" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63 +msgid "Accounting period" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60 +msgid "Advanced Settings" +msgstr "Pažangūs nustatymai" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +msgid "Application" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +msgid "Application Protocols" +msgstr "" + +#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:34 +msgid "Backup" +msgstr "Atkūrimas/Sukurti atsarginę kopiją" + +#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3 +msgid "Bandwidth Monitor" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76 +msgid "" +"Changing the accounting interval type will invalidate existing databases!" +"<br /><strong><a href=\"%s\">Download backup</a></strong>." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64 +msgid "" +"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." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +msgid "Collecting data..." +msgstr "Renkama informacija (data)..." + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +msgid "Commit interval" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +msgid "Compress database" +msgstr "" + +#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:25 +msgid "Configuration" +msgstr "Konfigūravimas" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 +msgid "Conn." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 +msgid "Connections" +msgstr "Prisijungimai" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 +msgid "Connections / Host" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 +msgid "Database directory" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 +msgid "" +"Database storage directory. One file per accounting period will be placed " +"into this directory." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72 +msgid "Day of month" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84 +msgid "" +"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." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24 +msgid "Dismiss" +msgstr "Nepaisyti" + +#: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:16 +msgid "Display" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 +msgid "Down. (Bytes)" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 +msgid "Down. (Pkts.)" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 +msgctxt "Traffic counter" +msgid "Download" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 +msgid "Download (Bytes)" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 +msgid "Download (Packets)" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 +msgid "Download / Application" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:59 +msgid "Download Database Backup" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 +msgid "Dualstack enabled hosts" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83 +msgid "Due date" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 +msgid "Dump (JSON)" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 +msgid "Export" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 +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:793 +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:954 +msgid "Family" +msgstr "Šeima" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73 +msgid "Fixed interval" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 +msgid "Force reload…" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59 +msgid "General Settings" +msgstr "Bendri nustatymai" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:64 +msgid "Generate Backup" +msgstr "" + +#: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3 +msgid "Grant UCI access for luci-app-nlbwmon" +msgstr "Suteikti „UCI“ prieigą – „luci-app-nlbwmon“" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 +msgid "Grouped by IP (CSV)" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 +msgid "Grouped by MAC (CSV)" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 +msgid "Grouped by protocol (CSV)" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 +msgid "Host" +msgstr "Skleidėjas/P.k – vedėjas" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 +msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 +msgid "IPv4" +msgstr "„IPv4“" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +msgid "IPv4 vs. IPv6" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +msgid "IPv6" +msgstr "„IPv6“" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 +msgid "Interval" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +msgid "" +"Interval at which the temporary in-memory database is committed to the " +"persistent database directory." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 +msgid "" +"Interval at which traffic counters of still established connections are " +"refreshed from netlink information." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 +msgid "Length of accounting interval in days." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 +msgid "Local interfaces" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 +msgid "Local subnets" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +msgid "MAC" +msgstr "„MAC“" + +#: 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:144 +msgid "Maximum entries" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +msgid "" +"Maximum number of accounting periods to keep, use zero to keep databases " +"forever." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 +msgid "Netlink Bandwidth Monitor" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51 +msgid "Netlink Bandwidth Monitor - Backup / Restore" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52 +msgid "Netlink Bandwidth Monitor - Configuration" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 +msgid "No data recorded yet." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 +msgid "Only conntrack streams from or to any of these networks are counted." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 +msgid "Only conntrack streams from or to any of these subnets are counted." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 +msgid "Preallocate database" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339 +msgid "Protocol" +msgstr "Protokolas" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61 +msgid "Protocol Mapping" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61 +msgid "" +"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." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +msgid "Refresh interval" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 +msgid "Restore" +msgstr "Atkurti" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52 +msgid "Restore Database Backup" +msgstr "" + +#: 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:" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334 +msgid "Source IP" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96 +msgid "Start date" +msgstr "" + +#: 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." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +msgid "Stored periods" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53 +msgid "" +"The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " +"accounting program keeping track of bandwidth usage per host and protocol." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21 +msgid "The following database files have been restored:" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +msgid "" +"The maximum amount of entries that should be put into the database, setting " +"the limit to 0 will allow databases to grow indefinitely." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 +msgid "Traffic / Host" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 +msgid "Traffic Distribution" +msgstr "" + +#: 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:631 +msgid "Up. (Bytes)" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 +msgid "Up. (Pkts.)" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 +msgctxt "Traffic counter" +msgid "Upload" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 +msgid "Upload (Bytes)" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 +msgid "Upload (Packets)" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 +msgid "Upload / Application" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 +msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75 +msgid "Warning" +msgstr "Įspėjimas" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +msgid "" +"Whether to gzip compress archive databases. Compressing the database files " +"makes accessing old data slightly slower but helps to reduce storage " +"requirements." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +msgid "" +"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." +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130 +msgid "no traffic" +msgstr "" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 +msgid "other" +msgstr "" diff --git a/applications/luci-app-nlbwmon/po/mr/nlbwmon.po b/applications/luci-app-nlbwmon/po/mr/nlbwmon.po index 14fdc1961a..e67af82757 100644 --- a/applications/luci-app-nlbwmon/po/mr/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/mr/nlbwmon.po @@ -10,15 +10,15 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.3-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -42,75 +42,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Advanced Settings" msgstr "प्रगत सेटिंग्ज" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -151,17 +151,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "डेटा संकलित करीत आहे ..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -169,24 +169,24 @@ msgstr "" msgid "Configuration" msgstr "कॉन्फिगरेशन" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -211,32 +211,32 @@ msgstr "डिसमिस करा" msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "डाउनलोड" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -252,19 +252,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -288,9 +288,9 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -306,70 +306,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -377,17 +377,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -401,19 +401,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -432,10 +432,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "" @@ -464,7 +468,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -478,17 +482,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -496,36 +500,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -533,14 +537,14 @@ msgstr "" msgid "Warning" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -555,8 +559,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/ms/nlbwmon.po b/applications/luci-app-nlbwmon/po/ms/nlbwmon.po index cff2567fd6..88ec0236fc 100644 --- a/applications/luci-app-nlbwmon/po/ms/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/ms/nlbwmon.po @@ -10,15 +10,15 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -42,75 +42,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Advanced Settings" msgstr "Tetapan Lanjutan" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -151,17 +151,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Mengumpul data..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -169,24 +169,24 @@ msgstr "" msgid "Configuration" msgstr "Konfigurasi" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -211,32 +211,32 @@ msgstr "" msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -252,19 +252,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -288,9 +288,9 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -306,70 +306,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -377,17 +377,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -401,19 +401,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -432,10 +432,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "" @@ -464,7 +468,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -478,17 +482,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -496,36 +500,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -533,14 +537,14 @@ msgstr "" msgid "Warning" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -555,8 +559,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/nb_NO/nlbwmon.po b/applications/luci-app-nlbwmon/po/nb_NO/nlbwmon.po index dd7227c4c9..c10d88109f 100644 --- a/applications/luci-app-nlbwmon/po/nb_NO/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/nb_NO/nlbwmon.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-04-04 07:26+0000\n" +"PO-Revision-Date: 2023-06-20 14:47+0000\n" "Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" "Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/nb_NO/>\n" @@ -8,17 +8,17 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.6-dev\n" +"X-Generator: Weblate 4.18.1\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -42,75 +42,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Advanced Settings" msgstr "Avanserte innstillinger" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -151,17 +151,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Samler inn data…" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -169,24 +169,24 @@ msgstr "" msgid "Configuration" msgstr "Oppsett" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -205,38 +205,38 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24 msgid "Dismiss" -msgstr "" +msgstr "Avslå" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:16 msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "Last ned" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -252,19 +252,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -288,9 +288,9 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -306,70 +306,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" -msgstr "" +msgstr "Vert" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -377,17 +377,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -401,19 +401,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -432,10 +432,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "" @@ -464,7 +468,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -478,17 +482,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -496,52 +500,52 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 #, fuzzy msgctxt "Traffic counter" msgid "Upload" msgstr "Last opp" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75 msgid "Warning" -msgstr "" +msgstr "Advarsel" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -556,8 +560,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/pl/nlbwmon.po b/applications/luci-app-nlbwmon/po/pl/nlbwmon.po index bcb42caf12..7a29483c8f 100644 --- a/applications/luci-app-nlbwmon/po/pl/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/pl/nlbwmon.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-06-22 17:33+0000\n" +"PO-Revision-Date: 2023-11-07 22:37+0000\n" "Last-Translator: Matthaiks <kitynska@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/pl/>\n" @@ -9,17 +9,17 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.7.1-dev\n" +"X-Generator: Weblate 5.2-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d hosty tylko z IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "%d hosty tylko z IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "%d hosty dualstack" @@ -43,77 +43,77 @@ msgstr "-7- Restart tydzień przed końcem miesiąca" msgid "1 - Restart every 1st of month" msgstr "-1- Restart pierwszego dnia miesiąca" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "10m - częsty zapis kosztem zużycia pamięci flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "12h - kompromis między utratą danych a zużyciem pamięci flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "24h - najmniejsze zużycie pamięci flash, kosztem utraty danych" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" "30s - odświeżanie dwa razy na minutę dla racjonalnie aktualnych statystyk" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" "5m - rzadkie odświeżanie aby unikać częstego czyszczenia licznika conntrack" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "60s - częsty zapis, przydatny dla pamięci non-flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "<big id=\"conn-total\">0</big> połączenia" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "<big id=\"host-total\">0</big> hostów" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "<big id=\"ipv6-rx\">0B</big> całkowite pobieranie IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "<big id=\"ipv6-tx\">0B</big> całkowite wysyłanie IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 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ń" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "<big id=\"layer7-most-rx\">0</big> powoduje najwięcej pobierań" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 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ń" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "<big id=\"layer7-total\">0</big> różne protokoły aplikacji" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "<big id=\"rx-total\">0</big> pobieranie" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "<big id=\"tx-total\">0</big> wysyłanie" @@ -125,11 +125,11 @@ msgstr "Okres rozliczeniowy" msgid "Advanced Settings" msgstr "Ustawienia zaawansowane" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "Aplikacja" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "Protokoły aplikacji" @@ -159,17 +159,17 @@ msgstr "" "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." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Trwa zbieranie danych..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "Interwał zapisu" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "Kompresuj baze danych" @@ -177,24 +177,24 @@ msgstr "Kompresuj baze danych" msgid "Configuration" msgstr "Konfiguracja" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "Połączenia" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Połączenia" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "Połączenia/Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "Katalog bazy danych" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -218,38 +218,38 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24 msgid "Dismiss" -msgstr "Odrzuć" +msgstr "Zamknij" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:16 msgid "Display" msgstr "Wyświetl" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "Pobieranie (Bajty)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "Pobieranie (Pakiety)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "Pobieranie" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "Pobieranie (Bajty)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "Pobieranie (Pakiety)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "Pobieranie/Aplikacja" @@ -257,7 +257,7 @@ msgstr "Pobieranie/Aplikacja" msgid "Download Database Backup" msgstr "Pobierz kopię zapasową bazy danych" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "Hosty z włączoną funkcją dualstack" @@ -265,19 +265,19 @@ msgstr "Hosty z włączoną funkcją dualstack" msgid "Due date" msgstr "Termin ważności" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "Zrzuć (JSON)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "Eksportuj" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "Nie można zatwierdzić bazy danych: %s" @@ -285,7 +285,7 @@ msgstr "Nie można zatwierdzić bazy danych: %s" msgid "Failed to download backup archive: %s" msgstr "Nie można pobrać archiwum kopii zapasowej: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "Nie można pobrać danych o ruchu: %s" @@ -293,7 +293,7 @@ msgstr "Nie można pobrać danych o ruchu: %s" msgid "Failed to restore backup archive: %s" msgstr "Nie można przywrócić archiwum kopii zapasowej: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "Rodzina" @@ -301,9 +301,9 @@ msgstr "Rodzina" msgid "Fixed interval" msgstr "Ustalony interwał" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "Wymuś przeładowanie…" @@ -317,47 +317,47 @@ msgstr "Generuj kopię zapasową" #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3 msgid "Grant UCI access for luci-app-nlbwmon" -msgstr "Udziel dostępu UCI do luci-app-nlbwmon" +msgstr "Przyznaj luci-app-nlbwmon dostęp do UCI" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "Pogrupowane według IP (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "Pogrupowane według MAC (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "Pogrupowane według protokołu (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <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/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "IPv4 vs. IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "Interwał" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." @@ -365,7 +365,7 @@ msgstr "" "Odstęp czasu, w którym tymczasowa baza danych w pamięci jest przekazywana do " "stałego katalogu bazy danych." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." @@ -373,20 +373,20 @@ msgstr "" "Odstęp czasowy, w którym liczniki ruchu nadal ustanowionych połączeń są " "odświeżane z informacji o połączeniu sieciowym." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "Długość interwału księgowania w dniach." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "Interfejsy lokalne" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "Podsieci lokalne" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -394,11 +394,11 @@ msgstr "MAC" msgid "Malformed data received" msgstr "Otrzymano zniekształcone dane" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "Maksymalna liczba wpisów" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." @@ -406,7 +406,7 @@ msgstr "" "Maksymalna liczba okresów rozliczeniowych do zachowania, użyj zera do " "zachowania baz danych na zawsze." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "Monitor wykorzystania łącza internetowego" @@ -421,21 +421,21 @@ msgstr "Monitor wykorzystania łącza internetowego - Konfiguracja" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "Nie zarejestrowano jeszcze żadnych danych." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" "Liczone są tylko strumienie conntrack z lub do którejkolwiek z tych sieci." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" "Liczone są tylko strumienie conntrack z lub do którejkolwiek z tych podsieci." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "Prealokuj bazę danych" @@ -457,10 +457,14 @@ msgstr "" "na linię. Pierwsza wartość określa protokół IP, druga numer portu, a trzecia " "nazwę mapowanego protokołu." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "Częstotliwość odświeżania" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "Wymagaj prawidłowej daty w postaci \"RRRR-MM-DD\"" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "Przywróć" @@ -491,7 +495,7 @@ msgstr "" "Data rozpoczęcia pierwszego okresu rozliczeniowego, np. początek umowy z " "dostawcą usług internetowych." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "Przechowywane okresy" @@ -508,7 +512,7 @@ msgstr "" msgid "The following database files have been restored:" msgstr "Przywrócono następujące pliki bazy danych:" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." @@ -516,11 +520,11 @@ msgstr "" "Maksymalna liczba wpisów, które powinny zostać wprowadzone do bazy danych, " "przy ustawieniu limitu na 0, pozwoli bazom danych na nieograniczony wzrost." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "Ruch sieciowy/Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "Dystrybucja ruchu" @@ -528,36 +532,36 @@ msgstr "Dystrybucja ruchu" msgid "Unable to fetch traffic statistic data: %s" msgstr "Nie można pobrać danych statystycznych ruchu: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "Wysyłanie (Bajty)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "Wysyłanie (Pakiety)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "Wysyłanie" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "Wysyłanie (Bajty)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "Wysyłanie (Pakiety)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "Wysyłanie/Aplikacja" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "Producent: <big id=\"bubble-vendor\">Example Corp.</big>" @@ -565,7 +569,7 @@ msgstr "Producent: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Warning" msgstr "Ostrzeżenie" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " @@ -575,7 +579,7 @@ msgstr "" "powoduje, że dostęp do starych danych jest nieco wolniejszy, ale redukuje " "zapotrzebowanie na pamięć masową." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -594,9 +598,9 @@ msgstr "brak ruchu sieciowego" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "inny" diff --git a/applications/luci-app-nlbwmon/po/pt/nlbwmon.po b/applications/luci-app-nlbwmon/po/pt/nlbwmon.po index 49ed26fa09..7defb4d330 100644 --- a/applications/luci-app-nlbwmon/po/pt/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/pt/nlbwmon.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-08-06 13:33+0000\n" +"PO-Revision-Date: 2023-04-01 22:39+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/pt/>\n" @@ -8,17 +8,17 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.8-dev\n" +"X-Generator: Weblate 4.17-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d hosts somente no IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "%d hosts somente no IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "%d de hosts dual-stack" @@ -42,79 +42,79 @@ msgstr "-7 - Reiniciar uma semana antes do fim do mês" msgid "1 - Restart every 1st of month" msgstr "1 - Reiniciar a cada 1º dia do mês" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "10m - commits frequentes à custa do desgaste do flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "12h - compromisso entre risco de perda de dados e desgaste do flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" "30s - atualizar duas vezes por minuto para estatísticas razoavelmente atuais" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" "5m - atualizar raramente para evitar a limpeza frequente de contadores de " "conntrack" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "60s - commit minuciosamente, útil para armazenamentos sem flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "<big id=\"conn-total\">0</big> conexões" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "<big id=\"host-total\">0</big> hosts" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "<big id=\"ipv6-rx\">0B</big> descarregamento IPv6 total" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "<big id=\"ipv6-tx\">0B</big> envio IPv6 total" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" "<big id=\"layer7-most-rx\">0</big> causam o maior número de descarregamentos" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "<big id=\"layer7-total\">0</big> protocolos de aplicação diferentes" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "<big id=\"rx-total\">0</big> descarregamento" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "<big id=\"tx-total\">0</big> envio" @@ -124,13 +124,13 @@ msgstr "Período contábil" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60 msgid "Advanced Settings" -msgstr "Definições Avançadas" +msgstr "Configurações avançadas" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "Aplicação" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "Protocolos de Aplicação" @@ -162,17 +162,17 @@ msgstr "" "para reiniciar o período contábil exatamente a cada N dias, começando numa " "determinada data." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "A recolher dados..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "Intervalo de commit" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "Comprimir banco de dados" @@ -180,24 +180,24 @@ msgstr "Comprimir banco de dados" msgid "Configuration" msgstr "Configuração" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "Con." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Ligações" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "Conexões / Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "Diretório da base de dados" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -227,32 +227,32 @@ msgstr "Dispensar" msgid "Display" msgstr "Mostrar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "Desc. (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "Desc. (Pcts.)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "Descarregar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "Descarregamento (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "Descarregamento (Pacotes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "Descarregamento / Aplicação" @@ -260,7 +260,7 @@ msgstr "Descarregamento / Aplicação" msgid "Download Database Backup" msgstr "Descarregar Backup de Base de Dados" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "Hosts com dualstack ativado" @@ -268,19 +268,19 @@ msgstr "Hosts com dualstack ativado" msgid "Due date" msgstr "Data limite" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "Despejo (JSON)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "Exportação" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "Falha ao realizar o commit na base de dados: %s" @@ -288,7 +288,7 @@ msgstr "Falha ao realizar o commit na base de dados: %s" msgid "Failed to download backup archive: %s" msgstr "Falha ao descarregar o arquivo de backup: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "Falha ao descarregar os dados de tráfego: %s" @@ -296,7 +296,7 @@ msgstr "Falha ao descarregar os dados de tráfego: %s" msgid "Failed to restore backup archive: %s" msgstr "Falha ao restaurar o arquivo de backup: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "Família" @@ -304,9 +304,9 @@ msgstr "Família" msgid "Fixed interval" msgstr "Intervalo fixo" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "Regarregar forçadamente…" @@ -322,45 +322,45 @@ msgstr "Gerar backup" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "Conceder acesso UCI ao luci-app-nlbwmon" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "Agrupado por IP (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "Agrupado por MAC (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "Agrupado por protocolo (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "Nome do Host: <big id=\"bubble-hostname\">exemplo.org</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "IPv4 contra IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "Intervalo" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." @@ -368,7 +368,7 @@ msgstr "" "Intervalo no qual o banco de dados na memória temporário é enviado para o " "diretório do banco de dados persistente." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." @@ -376,20 +376,20 @@ msgstr "" "Intervalo no qual os contadores de tráfego de conexões ainda estabelecidas " "são atualizados a partir de informações netlink." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "Duração do intervalo contábil em dias." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "Interfaces locais" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "Subredes locais" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -397,11 +397,11 @@ msgstr "MAC" msgid "Malformed data received" msgstr "Dados mal formados recebidos" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "Quantidade máxima de entradas" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." @@ -409,7 +409,7 @@ msgstr "" "Quantidade máxima de períodos contáveis a manter, use zero para manter " "bancos de dados para sempre." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "Monitor de Largura de Banda Netlink" @@ -423,23 +423,23 @@ msgstr "Monitor de Largura de Banda Netlink - Configuração" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "Ainda não há dados registados." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" "Somente os fluxos de conntrack de ou para qualquer uma dessas redes são " "contados." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" "Somente fluxos de conntrack de ou para qualquer uma dessas sub-redes são " "contados." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "Pré-alocar banco de dados" @@ -461,10 +461,14 @@ msgstr "" "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." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "Intervalo de atualização" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "Exige uma data válida no formato \"AAAA-MM-DD\"" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "Restauração" @@ -495,7 +499,7 @@ msgstr "" "Data de início do primeiro período contábil, por exemplo, início do contrato " "com o provedor." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "Períodos armazenados" @@ -512,7 +516,7 @@ msgstr "" msgid "The following database files have been restored:" msgstr "Os ficheiros de banco de dados seguintes foram restaurados:" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." @@ -521,11 +525,11 @@ msgstr "" "configurando o limite p ara 0 permitirá que as bases de dados cresçam " "indefinidamente." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "Tráfego / Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "Distribuição do Tráfego" @@ -533,36 +537,36 @@ msgstr "Distribuição do Tráfego" msgid "Unable to fetch traffic statistic data: %s" msgstr "Não foi possível buscar dados estatísticos de tráfego: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "Acima. (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "Acima. (Pcts.)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "Enviar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "Envio (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "Envio (Pacotes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "Envio / Aplicação" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "Fornecedor: <big id=\"bubble-vendor\">Corp. Exemplo</big>" @@ -570,7 +574,7 @@ msgstr "Fornecedor: <big id=\"bubble-vendor\">Corp. Exemplo</big>" msgid "Warning" msgstr "Aviso" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " @@ -580,7 +584,7 @@ msgstr "" "ficheiros de banco de dados torna o acesso aos dados antigos um pouco mais " "lento, mas ajuda a reduzir os requisitos de armazenamento." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -599,9 +603,9 @@ msgstr "nenhum tráfego" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "outro" diff --git a/applications/luci-app-nlbwmon/po/pt_BR/nlbwmon.po b/applications/luci-app-nlbwmon/po/pt_BR/nlbwmon.po index 7a0298f743..2158ca7b8b 100644 --- a/applications/luci-app-nlbwmon/po/pt_BR/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/pt_BR/nlbwmon.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-06-22 17:33+0000\n" +"PO-Revision-Date: 2023-03-08 10:38+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsnlbwmon/pt_BR/>\n" @@ -8,17 +8,17 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.7.1-dev\n" +"X-Generator: Weblate 4.16.2-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d apenas hosts IPV4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "%d apenas hosts IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "%d hosts com pilha dupla" @@ -42,87 +42,87 @@ msgstr "-7 - Reiniciar uma semana antes do fim do mês" msgid "1 - Restart every 1st of month" msgstr "1 - Reiniciar a cada 1º dia do mês" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "10m - commits frequentes à custa do desgaste da memória flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" "12h - compromisso entre risco de perda de dados e desgaste da memória flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" "24h - menor desgaste da memória flash à custa do risco de perda de dados" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" "30s - atualizar duas vezes por minuto para manter as estatísticas " "razoavelmente atuais" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" "5m - atualizar raramente para evitar a limpeza frequente dos contadores " "conntrack" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" "60s - realizar um commit por minuto, útil para armazenamento sem memória " "flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "<big id=\"conn-total\">0</big> conexões" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "<big id=\"host-total\">0</big> hosts" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" "<big id=\"ipv6-hosts\">0%</big> Taxa de compatibilidade IPv6 entre os hosts" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "<big id=\"ipv6-rx\">0B</big> total de downloads IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "<big id=\"ipv6-tx\">0B</big> upload IPv6 total" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 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" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" "<big id=\"layer7-most-rx\">0</big> causou a maioria da quantidade de " "downloads" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" "<big id=\"layer7-most-tx\">0</big> causou a maioria da quantidade de uploads" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "<big id=\"layer7-total\">0</big> protocolos de diferentes aplicativos" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "<big id=\"rx-total\">0</big> download" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "<big id=\"tx-total\">0</big> upload" @@ -132,13 +132,13 @@ msgstr "Período contábil" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60 msgid "Advanced Settings" -msgstr "Configurações Avançadas" +msgstr "Configurações avançadas" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "Aplicação" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "Protocolos de aplicação" @@ -165,21 +165,21 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" "Escolha o \"Dia do mês\" para reiniciar o período contábil mensalmente em " -"uma data específica, por exemplo, a cada 3 anos. Selecione \"Intervalo fixo" -"\" para reiniciar o período contábil exatamente a cada N dias, começando em " -"uma data determinada." +"uma data específica, por exemplo, a cada 3 anos. Selecione \"Intervalo " +"fixo\" para reiniciar o período contábil exatamente a cada N dias, começando " +"em uma data determinada." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Coletando dados..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "Intervalo de commit" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "Comprimir o banco de dados" @@ -187,24 +187,24 @@ msgstr "Comprimir o banco de dados" msgid "Configuration" msgstr "Configuração" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "Conn." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Conexões" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "Conexões / Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "Diretório do Banco de Dados" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -234,32 +234,32 @@ msgstr "Dispensar" msgid "Display" msgstr "Exibir" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "Down. (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "Down. (Pcts.)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "Download" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "Download (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "Download (Pacotes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "Download / Aplicação" @@ -267,7 +267,7 @@ msgstr "Download / Aplicação" msgid "Download Database Backup" msgstr "Fazer Download da Cópia de Segurança do Banco de Dados" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "Hosts com pilha dupla ativada" @@ -275,19 +275,19 @@ msgstr "Hosts com pilha dupla ativada" msgid "Due date" msgstr "Data de vencimento" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "Despejo (JSON)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "Exportar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "Falha ao realizar o commit na base de dados: %s" @@ -295,7 +295,7 @@ msgstr "Falha ao realizar o commit na base de dados: %s" msgid "Failed to download backup archive: %s" msgstr "O download do arquivo de backup falhou: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "O download dos dados de tráfico falhou: %s" @@ -303,7 +303,7 @@ msgstr "O download dos dados de tráfico falhou: %s" msgid "Failed to restore backup archive: %s" msgstr "A restauração do arquivo do backup falhou: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "Família" @@ -311,9 +311,9 @@ msgstr "Família" msgid "Fixed interval" msgstr "Intervalo fixo" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "Impor o recarregamento…" @@ -329,45 +329,45 @@ msgstr "Gerar Cópia de Segurança" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "Dar permissão de acesso UCI para luci-app-nlbwmon" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "Agrupado por IP (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "Agrupado por MAC (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "Agrupado por protocolo (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <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/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "IPv4 contra IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "Intervalo" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." @@ -375,7 +375,7 @@ msgstr "" "Intervalo no qual o banco de dados temporário na memória é enviado para o " "diretório do banco de dados persistente." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." @@ -383,20 +383,20 @@ msgstr "" "Intervalo no qual os contadores de tráfego de conexões ainda estabelecidas " "são atualizados a partir das informações do netlink." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "Duração do intervalo contábil em dias." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "Interfaces locais" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "Subredes locais" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -404,11 +404,11 @@ msgstr "MAC" msgid "Malformed data received" msgstr "Dados mal formados foram recebidos" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "Quantidade máxima de entradas" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." @@ -416,7 +416,7 @@ msgstr "" "Quantidade máxima de períodos contábeis a serem mantidos, use zero para " "manter os bancos de dados para sempre." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "Monitor da Largura de Banda Netlink" @@ -430,23 +430,23 @@ msgstr "Monitor da Largura de Banda Netlink - Configuração" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "Ainda não há dados registrados." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" "Somente os fluxos conntrack de ou para qualquer uma dessas redes são " "contabilizados." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" "Somente fluxos conntrack de ou para qualquer uma destas sub-redes são " "contabilizados." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "Pré-alocar o banco de dados" @@ -469,10 +469,14 @@ msgstr "" "protocolo IP, o segundo valor o número da porta e a terceira coluna é o nome " "do protocolo mapeado." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "Intervalo de atualização" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "É obrigatório o uso de uma data válida no formato \"AAAA-MM-DD\"" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "Restauração" @@ -503,7 +507,7 @@ msgstr "" "Data de início do primeiro período contábil, por exemplo, início do contrato " "com o provedor de internet." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "Períodos de armazenamento" @@ -520,7 +524,7 @@ msgstr "" msgid "The following database files have been restored:" msgstr "Os seguintes arquivos de banco de dados foram restaurados:" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." @@ -529,11 +533,11 @@ msgstr "" "fixando o limite em 0, permitirá que as bases de dados cresçam " "indefinidamente." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "Tráfego / Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "Distribuição de Tráfego" @@ -541,36 +545,36 @@ msgstr "Distribuição de Tráfego" msgid "Unable to fetch traffic statistic data: %s" msgstr "Não foi impossível resgatar os dados das estatísticas de trafego: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "Up. (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "Up. (Pcts.)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "Envio" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "Envio (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "Envio (Pacotes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "Envio / Aplicação" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "Vendedor: <big id=\"bubble-vendor\">Example Corp.</big>" @@ -578,7 +582,7 @@ msgstr "Vendedor: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Warning" msgstr "Alerta" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " @@ -588,7 +592,7 @@ msgstr "" "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." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -607,9 +611,9 @@ msgstr "nenhum tráfego" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "Outros" diff --git a/applications/luci-app-nlbwmon/po/ro/nlbwmon.po b/applications/luci-app-nlbwmon/po/ro/nlbwmon.po index 602333fa46..d600f7dd40 100644 --- a/applications/luci-app-nlbwmon/po/ro/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/ro/nlbwmon.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-11-15 14:07+0000\n" -"Last-Translator: Simona Iacob <s@zp1.net>\n" +"PO-Revision-Date: 2023-02-04 07:14+0000\n" +"Last-Translator: Mircea Vutcovici <mirceavutcovici@gmail.com>\n" "Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/ro/>\n" "Language: ro\n" @@ -9,17 +9,17 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -"X-Generator: Weblate 4.9.1-dev\n" +"X-Generator: Weblate 4.16-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" -msgstr "%d Gazde IPv4-only" +msgstr "%d gazde IPv4-only" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" -msgstr "%d Gazde numai IPv6" +msgstr "%d gazde numai IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "%d gazde dual-stack" @@ -43,94 +43,98 @@ msgstr "-7 - Reîncepeți cu o săptămână înainte de sfârșitul lunii" msgid "1 - Restart every 1st of month" msgstr "1 - Repornire în fiecare 1 a lunii" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "10m - angajări frecvente în detrimentul uzurii flash-ului" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "12h - compromis între riscul de pierdere a datelor și uzura flash-ului" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" "24h - uzură minimă a flash-ului în detrimentul riscului de pierdere a datelor" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" +"30s - reîmprospătare de două ori pe minut pentru statisticile actuale în mod " +"rezonabil" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" +"5m - reîmprospătați rar pentru a evita golirea frecventă a contoarelor " +"Conntrack" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" -msgstr "" +msgstr "60s - commit minuțios, util pentru stocare non-flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" -msgstr "" +msgstr "<big id=\"conn-total\">0</big> conexiuni" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" -msgstr "" +msgstr "<big id=\"host-total\">0</big> gazde" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" -msgstr "" +msgstr "<big id=\"ipv6-hosts\">0%</big> Rata de suport IPv6 în rândul gazdelor" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" -msgstr "" +msgstr "<big id=\"ipv6-rx\">0B</big> total descărcare IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" -msgstr "" +msgstr "<big id=\"ipv6-share\">0%</big> din traficul total este IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" -msgstr "" +msgstr "<big id=\"ipv6-tx\">0B</big> total încărcare IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" -msgstr "" +msgstr "<big id=\"layer7-most-conn\">0</big> provoacă cele mai multe conexiuni" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" -msgstr "" +msgstr "<big id=\"layer7-most-rx\">0</big> provoacă cele mai multe descărcări" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" -msgstr "" +msgstr "<big id=\"layer7-most-tx\">0</big> provoacă cea mai mare încărcare" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" -msgstr "" +msgstr "<big id=\"layer7-total\">0</big> diferite protocoale de aplicații" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" -msgstr "" +msgstr "<big id=\"rx-total\">0</big> descărcare" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" -msgstr "" +msgstr "<big id=\"tx-total\">0</big> încărcați" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63 msgid "Accounting period" -msgstr "" +msgstr "Perioada contabilă" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60 msgid "Advanced Settings" msgstr "Setări avansate" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" -msgstr "" +msgstr "Aplicație" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" -msgstr "" +msgstr "Protocoale de aplicare" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:34 msgid "Backup" @@ -138,13 +142,15 @@ msgstr "Backup" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3 msgid "Bandwidth Monitor" -msgstr "" +msgstr "Monitorizarea lățimii de bandă" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76 msgid "" "Changing the accounting interval type will invalidate existing databases!" "<br /><strong><a href=\"%s\">Download backup</a></strong>." msgstr "" +"Schimbarea tipului de interval de contabilitate va invalida bazele de date " +"existente!<br /><strong><a href=\"%s\">Descărcați backup</a></strong>." #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64 msgid "" @@ -152,51 +158,57 @@ msgid "" "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "accounting period exactly every N days, beginning at a given date." msgstr "" +"Alegeți \"Ziua lunii\" pentru a reporni lunar perioada contabilă la o " +"anumită dată, de exemplu, la fiecare 3 zile. Alegeți \"Interval fix\" pentru " +"a reporni perioada contabilă exact la fiecare N zile, începând de la o " +"anumită dată." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Colectare date..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" -msgstr "" +msgstr "Interval de angajament" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" -msgstr "" +msgstr "Comprimarea bazei de date" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:25 msgid "Configuration" msgstr "Configurație" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." -msgstr "" +msgstr "Conex." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Conexiuni" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" -msgstr "" +msgstr "Conexiuni / Gazdă" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "Directorul bazei de date" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." msgstr "" +"Director de stocare a bazei de date. În acest director va fi plasat câte un " +"fișier pentru fiecare perioadă contabilă." #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72 msgid "Day of month" -msgstr "" +msgstr "Ziua lunii" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84 msgid "" @@ -204,6 +216,9 @@ msgid "" "towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "24th of February." msgstr "" +"Ziua lunii în care se repornește perioada contabilă. Utilizați valori " +"negative pentru a număra spre sfârșitul lunii, de exemplu \"-5\" pentru a " +"specifica 27 iulie sau 24 februarie." #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24 msgid "Dismiss" @@ -211,90 +226,90 @@ msgstr "Închideți" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:16 msgid "Display" -msgstr "" +msgstr "Afișare" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" -msgstr "" +msgstr "Jos. (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" -msgstr "" +msgstr "Jos. (Pkts.)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" -msgstr "" +msgstr "Descărcați" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" -msgstr "" +msgstr "Descărcare (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" -msgstr "" +msgstr "Descărcare (Pachete)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" -msgstr "" +msgstr "Descărcare / Aplicație" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:59 msgid "Download Database Backup" -msgstr "" +msgstr "Descărcați Database Backup" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" -msgstr "" +msgstr "Gazde activate Dualstack" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83 msgid "Due date" -msgstr "" +msgstr "Data limită" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" -msgstr "" +msgstr "Descărcare (JSON)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" -msgstr "" +msgstr "Exportați" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" -msgstr "" +msgstr "Nu s-a reușit confirmarea bazei de date: %s" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45 msgid "Failed to download backup archive: %s" -msgstr "" +msgstr "Nu s-a reușit descărcarea arhivei de rezervă: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" -msgstr "" +msgstr "Nu s-a reușit descărcarea datelor de trafic: %s" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28 msgid "Failed to restore backup archive: %s" -msgstr "" +msgstr "Nu s-a reușit restaurarea arhivei de rezervă: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" -msgstr "" +msgstr "Familie" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73 msgid "Fixed interval" -msgstr "" +msgstr "Interval fix" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" -msgstr "" +msgstr "Reîncărcare forțată…" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59 msgid "General Settings" @@ -302,122 +317,132 @@ msgstr "Setări generale" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:64 msgid "Generate Backup" -msgstr "" +msgstr "Generarea de copii de rezervă" #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3 msgid "Grant UCI access for luci-app-nlbwmon" -msgstr "" +msgstr "Acordă acces UCI pentru luci-app-nlbwmon" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" -msgstr "" +msgstr "Grupate în funcție de IP (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" -msgstr "" +msgstr "Grupate după MAC (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" -msgstr "" +msgstr "Grupate în funcție de protocol (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" -msgstr "" +msgstr "Gazdă" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" -msgstr "" +msgstr "Numele gazdei: <big id=\"bubble-hostname\">example.org</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" -msgstr "" +msgstr "IPv4 vs. IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" -msgstr "" +msgstr "Intervalul" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" +"Intervalul la care baza de date temporară în memorie este transferată în " +"directorul bazei de date persistente." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" +"Intervalul la care contoarele de trafic ale conexiunilor încă stabilite sunt " +"reîmprospătate din informațiile netlink." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." -msgstr "" +msgstr "Durata intervalului de contabilizare în zile." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" -msgstr "" +msgstr "Interfețe locale" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" -msgstr "" +msgstr "Subrețele locale" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76 msgid "Malformed data received" -msgstr "" +msgstr "Date primite în formă defectuoasă" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" -msgstr "" +msgstr "Numărul maxim de intrări" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" +"Numărul maxim de perioade contabile care trebuie păstrate; utilizați zero " +"pentru a păstra bazele de date pentru totdeauna." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" -msgstr "" +msgstr "Monitor de lățime de bandă Netlink" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51 msgid "Netlink Bandwidth Monitor - Backup / Restore" -msgstr "" +msgstr "Netlink Monitorul lățimii de bandă - Backup / Restaurare" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52 msgid "Netlink Bandwidth Monitor - Configuration" -msgstr "" +msgstr "Netlink Bandwidth Monitor - Configurație" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." -msgstr "" +msgstr "Încă nu s-au înregistrat date." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" +"Sunt luate în considerare numai fluxurile de conntrack de la sau către " +"oricare dintre aceste rețele." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" +"Sunt luate în considerare numai fluxurile de conntrack de la sau către " +"oricare dintre aceste subrețele." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" -msgstr "" +msgstr "Prealocarea bazei de date" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339 msgid "Protocol" @@ -425,7 +450,7 @@ msgstr "Protocol" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61 msgid "Protocol Mapping" -msgstr "" +msgstr "Maparea protocolului" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61 msgid "" @@ -433,10 +458,18 @@ msgid "" "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." msgstr "" +"Mapping-uri de protocol pentru a distinge tipurile de trafic pentru fiecare " +"gazdă, câte un mapping pe linie. Prima valoare specifică protocolul IP, a " +"doua valoare numărul portului, iar a treia coloană este numele protocolului " +"mapat." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" -msgstr "" +msgstr "Interval de reîmprospătare" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "Necesită o dată valdiă în formatul \"YYYY-MM-DD\"" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" @@ -444,121 +477,135 @@ msgstr "Restaurează" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52 msgid "Restore Database Backup" -msgstr "" +msgstr "Restaurați copia de rezervă a bazei de date" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20 msgid "Restore complete" -msgstr "" +msgstr "Restaurare completă" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285 msgid "Select accounting period:" -msgstr "" +msgstr "Selectați perioada contabilă:" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334 msgid "Source IP" -msgstr "" +msgstr "Sursă IP" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96 msgid "Start date" -msgstr "" +msgstr "Data de începere" #: 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." msgstr "" +"Data de începere a primei perioade contabile, de exemplu, data de începere a " +"contractului ISP." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" -msgstr "" +msgstr "Perioadele stocate" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53 msgid "" "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "accounting program keeping track of bandwidth usage per host and protocol." msgstr "" +"Netlink Bandwidth Monitor (nlbwmon) este un program ușor și eficient de " +"contabilizare a traficului care ține evidența utilizării lățimii de bandă " +"pentru fiecare gazdă și protocol." #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21 msgid "The following database files have been restored:" -msgstr "" +msgstr "Următoarele fișiere ale bazei de date au fost restaurate:" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" +"Numărul maxim de intrări care ar trebui introduse în baza de date; dacă " +"setați limita la 0, bazele de date vor putea crește la nesfârșit." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" -msgstr "" +msgstr "Trafic / Gazdă" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" -msgstr "" +msgstr "Distribuția traficului" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92 msgid "Unable to fetch traffic statistic data: %s" -msgstr "" +msgstr "Imposibilitatea de a prelua date statistice de trafic: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" -msgstr "" +msgstr "Sus. (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" -msgstr "" +msgstr "Sus. (Puncte)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" -msgstr "" +msgstr "Încărcați" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" -msgstr "" +msgstr "Încărcare (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" -msgstr "" +msgstr "Încărcare (Pachete)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" -msgstr "" +msgstr "Încărcare / Aplicație" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" -msgstr "" +msgstr "Furnizor: <big id=\"bubble-vendor\">Example Corp.</big>" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75 msgid "Warning" -msgstr "" +msgstr "Avertisment" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" +"Dacă se recomandă comprimarea prin gzip a bazelor de date arhivate. " +"Comprimarea fișierelor bazelor de date face ca accesarea datelor vechi să " +"fie puțin mai lentă, dar ajută la reducerea cerințelor de stocare." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "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." msgstr "" +"Dacă se va prealoca în memorie dimensiunea maximă posibilă a bazei de date. " +"Acest lucru este util în principal pentru sistemele cu restricții de memorie " +"care ar putea să nu poată satisface alocarea de memorie după perioade mai " +"lungi de funcționare." #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130 msgid "no traffic" -msgstr "" +msgstr "fără trafic" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" -msgstr "" +msgstr "alte" diff --git a/applications/luci-app-nlbwmon/po/ru/nlbwmon.po b/applications/luci-app-nlbwmon/po/ru/nlbwmon.po index 4e7aef3d6a..7e922336f3 100644 --- a/applications/luci-app-nlbwmon/po/ru/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/ru/nlbwmon.po @@ -2,29 +2,29 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: nlbwmon\n" "POT-Creation-Date: 2018-01-21 19:45+0300\n" -"PO-Revision-Date: 2021-10-05 12:02+0000\n" -"Last-Translator: Darin Avdeyeva <yulyablack@inbox.lv>\n" +"PO-Revision-Date: 2023-11-08 14:51+0000\n" +"Last-Translator: Vintage Vintage <vintagepublic@gmail.com>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/ru/>\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.9-dev\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 5.2-dev\n" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d только IPv4 хост(а, ов)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "%d только IPv6 хост(а, ов)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "%d хост(а, ов) с двумя стеками" @@ -48,79 +48,79 @@ msgstr "-7 — Перезапуск за неделю до конца месяц msgid "1 - Restart every 1st of month" msgstr "1 — Перезапуск 1-го числа каждого месяца" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "10m — частое сохранение, повышенный износ флеш памяти" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "12h — компромисс между риском потери данных и нагрузкой на флеш память" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "24h — наименьшая нагрузка на флеш память, но есть риск потери данных" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" "30s — обновлять два раза в минуту для поддержания актуальной текущей " "статистики" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" "5m — редкое обновление, для предотвращения частой очистки счётчиков conntrack" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "60s — ежеминутное сохранение, подходит для не флеш накопителей" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "<big id=\"conn-total\">0</big> соединений" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "<big id=\"host-total\">0</big> хост(а, ов)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "<big id=\"ipv6-hosts\">0%</big> скорости хостов через IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "<big id=\"ipv6-rx\">0B</big> всего скачано по IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "<big id=\"ipv6-share\">0%</big> от общего трафика — IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "<big id=\"ipv6-tx\">0B</big> всего загружено по IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" "<big id=\"layer7-most-conn\">0</big> создают наибольшее число соединений" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "<big id=\"layer7-most-rx\">0</big> создают наибольший объём скачивания" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "<big id=\"layer7-most-tx\">0</big> создают наибольший объём загрузки" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "<big id=\"layer7-total\">0</big> различных протоколов" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "<big id=\"rx-total\">0</big> скачано" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "<big id=\"tx-total\">0</big> загружено" @@ -130,13 +130,13 @@ msgstr "Отчётный период" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60 msgid "Advanced Settings" -msgstr "Дополнительные настройки" +msgstr "Расширенные настройки" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "Протокол" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "Прикладные протоколы" @@ -167,17 +167,17 @@ msgstr "" "«Фиксированный интервал», чтобы перезапускать отчётный период через каждые N " "дней, начиная с заданной даты." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Сбор данных..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "Интервал сохранения" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "Сжатие базы данных" @@ -185,24 +185,24 @@ msgstr "Сжатие базы данных" msgid "Configuration" msgstr "Конфигурация" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "Соед." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Соединения" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "Соединения / Хост" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "Папка базы данных" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -232,32 +232,32 @@ msgstr "Закрыть" msgid "Display" msgstr "Показать" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "Скач. (байты)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "Скач. (пакеты)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "Скачано" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "Скачано (байты)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "Скачано (пакеты)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "Скачано / Протокол" @@ -265,7 +265,7 @@ msgstr "Скачано / Протокол" msgid "Download Database Backup" msgstr "Скачать резервную копию базы данных" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "Хосты с двумя стеками" @@ -273,19 +273,19 @@ msgstr "Хосты с двумя стеками" msgid "Due date" msgstr "Срок" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "Дамп (JSON)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "Экспорт" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "Не удалось зафиксировать базу данных: %s" @@ -293,7 +293,7 @@ msgstr "Не удалось зафиксировать базу данных: %s msgid "Failed to download backup archive: %s" msgstr "Не удалось загрузить архив резервной копии: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "Не удалось загрузить данные о трафике: %s" @@ -301,7 +301,7 @@ msgstr "Не удалось загрузить данные о трафике: % msgid "Failed to restore backup archive: %s" msgstr "Не удалось восстановить архив резервной копии: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "Семейство" @@ -309,15 +309,15 @@ msgstr "Семейство" msgid "Fixed interval" msgstr "Фиксированный интервал" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "Принудительная перезагрузка…" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59 msgid "General Settings" -msgstr "Общие настройки" +msgstr "Основные настройки" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:64 msgid "Generate Backup" @@ -327,45 +327,45 @@ msgstr "Создать резервную копию" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "Предоставить UCI доступ для luci-app-nlbwmon" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "Группировка по IP (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "Группировка по MAC (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "Группировка по протоколу (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" -msgstr "Хост" +msgstr "Устройство" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <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/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "IPv4 vs. IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "Интервал" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." @@ -373,7 +373,7 @@ msgstr "" "Интервал, через который временная база данных в оперативной памяти " "сохраняется в папку постоянной базы данных." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." @@ -381,20 +381,20 @@ msgstr "" "Интервал обновления счётчиков трафика установленных соединений из информации " "netlink." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "Продолжительность учётного интервала в днях." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "Локальные интерфейсы" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "Локальные подсети" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -402,11 +402,11 @@ msgstr "MAC" msgid "Malformed data received" msgstr "Получены некорректные данные" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "Максимальное количество записей" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." @@ -414,33 +414,33 @@ msgstr "" "Максимальное количество отчётных периодов для хранения. Установка значения " "«0» позволяет хранить все периоды постоянно." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" -msgstr "Netlink мониторинг трафика" +msgstr "Мониторинг трафика" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51 msgid "Netlink Bandwidth Monitor - Backup / Restore" -msgstr "Netlink мониторинг трафика - Резервная копия / Восстановление" +msgstr "Мониторинг трафика - Резервная копия / Восстановление" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52 msgid "Netlink Bandwidth Monitor - Configuration" -msgstr "Netlink мониторинг трафика - Настройка" +msgstr "Мониторинг трафика - Настройка" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "Данные еще не записаны." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "Отслеживаются только соединения из или в любую из этих сетей." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "Отслеживаются только соединения из или в любую из этих подсетей." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "Выделить память для базы данных" @@ -462,10 +462,14 @@ msgstr "" "сопоставление протокола на строку. Первое значение определяет номер IP-" "протокола, второе значение — номер порта, третье — имя протокола." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "Интервал обновления" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "Требуется корректная дата в формате \"ГГГГ-ММ-ДД\"" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "Восстановить" @@ -496,7 +500,7 @@ msgstr "" "Дата начала первого отчётного периода, например, дата заключения договора с " "провайдером." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "Сохранённые периоды" @@ -505,15 +509,15 @@ msgid "" "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "accounting program keeping track of bandwidth usage per host and protocol." msgstr "" -"Netlink мониторинг трафика (nlbwmon) — это легкая и эффективная программа " -"учёта трафика, позволяющая отслеживать использование полосы пропускания " -"канала для каждого хоста и/или протокола." +"Мониторинг трафика (nlbwmon) — это легкая и эффективная программа учёта " +"трафика, позволяющая отслеживать использование полосы пропускания канала для " +"каждого хоста и/или протокола." #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21 msgid "The following database files have been restored:" msgstr "Восстановлены следующие файлы базы данных:" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." @@ -521,11 +525,11 @@ msgstr "" "Максимальное количество записей, которые может быть помещено в базу данных. " "Значение «0» позволит базе данных расти бесконечно." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "Трафик / Хост" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "Распределение трафика" @@ -533,36 +537,36 @@ msgstr "Распределение трафика" msgid "Unable to fetch traffic statistic data: %s" msgstr "Невозможно получить данные статистики по трафику: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "Загр. (байты)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "Загр. (пакеты)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "Загружено" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "Загружено (байты)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "Загружено (пакеты)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "Загружено / Протокол" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "Производитель: <big id=\"bubble-vendor\">Example Corp.</big>" @@ -570,7 +574,7 @@ msgstr "Производитель: <big id=\"bubble-vendor\">Example Corp.</big msgid "Warning" msgstr "Внимание" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " @@ -580,7 +584,7 @@ msgstr "" "данных сделает доступ к старым данным немного медленнее, но поможет снизить " "требования к хранилищу." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -599,9 +603,9 @@ msgstr "нет трафика" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "другие" diff --git a/applications/luci-app-nlbwmon/po/sk/nlbwmon.po b/applications/luci-app-nlbwmon/po/sk/nlbwmon.po index 5c4408de46..dbda122b24 100644 --- a/applications/luci-app-nlbwmon/po/sk/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/sk/nlbwmon.po @@ -1,24 +1,24 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-08-03 19:09+0000\n" -"Last-Translator: Marek Ľach <graweeld@googlemail.com>\n" +"PO-Revision-Date: 2023-09-03 01:39+0000\n" +"Last-Translator: MaycoH <hudec.marian@hotmail.com>\n" "Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/sk/>\n" "Language: sk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.8-dev\n" +"X-Generator: Weblate 5.0.1-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d iba IPv4 hostia" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -42,75 +42,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -122,11 +122,11 @@ msgstr "" msgid "Advanced Settings" msgstr "Pokročilé nastavenia" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -151,17 +151,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Zbieram dáta..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -169,24 +169,24 @@ msgstr "" msgid "Configuration" msgstr "Konfigurácia" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Pripojenia" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" -msgstr "" +msgstr "Adresár databázy" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -211,32 +211,32 @@ msgstr "Zahodiť" msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -252,19 +252,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -288,9 +288,9 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -306,70 +306,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Hostiteľ" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -377,17 +377,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -401,19 +401,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -432,10 +432,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "Obnoviť" @@ -464,7 +468,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -478,17 +482,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -496,36 +500,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "Odovzdať" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -533,14 +537,14 @@ msgstr "" msgid "Warning" msgstr "Upozornenie" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -555,8 +559,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/sv/nlbwmon.po b/applications/luci-app-nlbwmon/po/sv/nlbwmon.po index f275576ee7..0eb556e9d1 100644 --- a/applications/luci-app-nlbwmon/po/sv/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/sv/nlbwmon.po @@ -1,134 +1,134 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-05-19 13:17+0000\n" -"Last-Translator: Stefan Tamas <tamas79@gmail.com>\n" +"PO-Revision-Date: 2022-12-06 15:41+0000\n" +"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/sv/>\n" "Language: sv\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.7-dev\n" +"X-Generator: Weblate 4.15-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d IPv4-Endast värdar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" -msgstr "" +msgstr "%d IPv6-värdar endast" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114 msgid "%s and %s" -msgstr "" +msgstr "%s och %s" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112 msgid "%s, %s and %s" -msgstr "" +msgstr "%s, %s och %s" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93 msgid "-1 - Restart every last day of month" -msgstr "" +msgstr "-1 - Starta om sista dagen i varje månad" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94 msgid "-7 - Restart a week before end of month" -msgstr "" +msgstr "-7 - Starta om en vecka i slutet av månaden" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92 msgid "1 - Restart every 1st of month" -msgstr "" +msgstr "1 - Starta om 1:a dagen i månaden" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" -msgstr "" +msgstr "30s - uppdatera 2 gånger per minut för någorlunda aktuell statistik" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" -msgstr "" +msgstr "<big id=\"conn-total\">0</big> anslutningar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" -msgstr "" +msgstr "<big id=\"host-total\">0</big> värdar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" -msgstr "" +msgstr "<big id=\"ipv6-share\">0%</big> av den totala trafiken är IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" -msgstr "" +msgstr "<big id=\"layer7-most-conn\">0</big> orsakar de flesta anslutningarna" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" -msgstr "" +msgstr "<big id=\"rx-total\">0</big> hämtning" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" -msgstr "" +msgstr "<big id=\"tx-total\">0</big>uppladdning" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63 msgid "Accounting period" -msgstr "" +msgstr "Räkneperiod" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60 msgid "Advanced Settings" msgstr "Avancerade inställningar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" -msgstr "" +msgstr "Applikation" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" -msgstr "" +msgstr "Protokoll för applikationen" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:34 msgid "Backup" @@ -151,42 +151,42 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Samlar in data..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" -msgstr "" +msgstr "Komprimera databas" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:25 msgid "Configuration" msgstr "Konfiguration" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Anslutningar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -211,32 +211,32 @@ msgstr "Avfärda" msgid "Display" msgstr "Visa" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "Nedladdning" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -252,19 +252,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -280,7 +280,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -288,9 +288,9 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -306,70 +306,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Värd" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -377,17 +377,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -401,19 +401,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -432,10 +432,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "Återställ" @@ -464,7 +468,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -478,17 +482,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -496,36 +500,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -533,14 +537,14 @@ msgstr "" msgid "Warning" msgstr "Varning" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -555,8 +559,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/templates/nlbwmon.pot b/applications/luci-app-nlbwmon/po/templates/nlbwmon.pot index 3e0fdeec00..411e1db7b3 100644 --- a/applications/luci-app-nlbwmon/po/templates/nlbwmon.pot +++ b/applications/luci-app-nlbwmon/po/templates/nlbwmon.pot @@ -1,15 +1,15 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -33,75 +33,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -113,11 +113,11 @@ msgstr "" msgid "Advanced Settings" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -142,17 +142,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -160,24 +160,24 @@ msgstr "" msgid "Configuration" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -202,32 +202,32 @@ msgstr "" msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -235,7 +235,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -243,19 +243,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -263,7 +263,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -271,7 +271,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -279,9 +279,9 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -297,70 +297,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "" @@ -368,17 +368,17 @@ msgstr "" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -392,19 +392,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -423,10 +423,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "" @@ -455,7 +459,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -469,17 +473,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -487,36 +491,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -524,14 +528,14 @@ msgstr "" msgid "Warning" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -546,8 +550,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/tr/nlbwmon.po b/applications/luci-app-nlbwmon/po/tr/nlbwmon.po index 700f5c7d76..b8caa177c0 100644 --- a/applications/luci-app-nlbwmon/po/tr/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/tr/nlbwmon.po @@ -1,24 +1,24 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-07-05 20:29+0000\n" -"Last-Translator: ToldYouThat <itoldyouthat@protonmail.com>\n" +"PO-Revision-Date: 2023-01-22 17:57+0000\n" +"Last-Translator: Oğuz Ersen <oguz@ersen.moe>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/tr/>\n" "Language: tr\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.8-dev\n" +"X-Generator: Weblate 4.15.1\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d sadece IPv4 cihazlar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "%d sadece IPv6 cihazlar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "%d ikili-küme destekli cihazlar" @@ -42,79 +42,79 @@ msgstr "-7 - Ay bitiminden bir hafta önce yeniden başlat" msgid "1 - Restart every 1st of month" msgstr "1 - Her ayın 1'inde yeniden başlat" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "10dk - Bellek ömrü pahasına sık yedekleme" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "12sa - Bellek ömrü ve veri kaybı arasında denge" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "24sa - Veri kaybı pahasına uzun bellek ömrü" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "30sn - oldukça güncel istatistikler için dakikada iki kez yenileme" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" "5dk - bağlantı takip sayaçlarının sık sıfırlanmasını önlemek için seyrek " "yenileme" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" "60sn - dakika başı yedekleme, flash tabanlı olmayan depolama için kullanışlı" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "<big id=\"conn-total\">0</big> bağlantı(lar)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "<big id=\"host-total\">0</big> cihaz(lar)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" "<big id=\"ipv6-hosts\">0%</big> cihazlar arasında IPv6 destekleme oranı" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "<big id=\"ipv6-rx\">0B</big> toplam IPv6 indirme" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "<big id=\"ipv6-share\">0%</big> IPv6'nın toplam trafikteki oranı" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "<big id=\"ipv6-tx\">0B</big> toplam IPv6 yükleme" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "<big id=\"layer7-most-conn\">0</big> en çok bağlantı yapan" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "<big id=\"layer7-most-rx\">0</big> en çok indirme yapan" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "<big id=\"layer7-most-tx\">0</big> en çok yükleme yapan" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "<big id=\"layer7-total\">0</big> farklı uygulama protokolü" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "<big id=\"rx-total\">0</big> indirme" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "<big id=\"tx-total\">0</big> yükleme" @@ -126,11 +126,11 @@ msgstr "Hesaplama dönemi" msgid "Advanced Settings" msgstr "Gelişmiş Ayarlar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "Uygulama" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "Bağlantı Protokolleri" @@ -160,17 +160,17 @@ msgstr "" "Gününü\" seçin, örn. her ayın 3'ü. Hesaplama dönemini belirli bir tarihten " "başlayarak, her X günde bir yenilemek için ise \"Sabit aralık\" ı seçin." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Veriler toplanıyor..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "Yedekleme aralığı" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "Veritabanını sıkıştır" @@ -178,24 +178,24 @@ msgstr "Veritabanını sıkıştır" msgid "Configuration" msgstr "Yapılandırma" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "Bğlnt." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Bağlantılar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "Bağlantılar / Cihaz" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "Veritabanı dizini" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -225,32 +225,32 @@ msgstr "Kapat" msgid "Display" msgstr "Görüntüle" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "İndr. (Bayt)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "İndr. (Pktlr.)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "İndir" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "İndirme (Bayt)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "İndirme (Paketler)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "İndirme / Uygulama" @@ -258,7 +258,7 @@ msgstr "İndirme / Uygulama" msgid "Download Database Backup" msgstr "Veritabanı Yedeği İndirme" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "İkili-küme destekli cihazlar" @@ -266,19 +266,19 @@ msgstr "İkili-küme destekli cihazlar" msgid "Due date" msgstr "Bitiş tarihi" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "Döküm (JSON)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "Dışa aktar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "Veritabanı yedekleme başarısız: %s" @@ -286,7 +286,7 @@ msgstr "Veritabanı yedekleme başarısız: %s" msgid "Failed to download backup archive: %s" msgstr "Yedek arşivini indirme başarısız: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "Trafik verisini indirme başarısız: %s" @@ -294,7 +294,7 @@ msgstr "Trafik verisini indirme başarısız: %s" msgid "Failed to restore backup archive: %s" msgstr "Yedek arşivini geri yükleme başarısız: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "Aile" @@ -302,9 +302,9 @@ msgstr "Aile" msgid "Fixed interval" msgstr "Sabit aralık" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "Yeniden yüklemeye zorla…" @@ -320,45 +320,45 @@ msgstr "Yedek Oluştur" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "luci-app-nlbwmon için UCI erişimi verin" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "IP'ye göre gruplandırılmış (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "MAC'e göre gruplandırılmış (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "Protokole göre gruplandırılmış (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Ana bilgisayar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "Ana bilgisayar adı: <big id=\"bubble-hostname\">example.org</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "IPv4 vs. IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "Aralık" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." @@ -366,7 +366,7 @@ msgstr "" "Geçici bellekteki veritabanının kalıcı veritabanı dizinine kaydedildiği " "aralık." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." @@ -374,20 +374,20 @@ msgstr "" "Kurulu olan bağlantıların sayaçlarının netlink bilgilerinden sıfırlanma " "aralığı." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "Gün olarak hesaplama aralığı uzunluğu." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "Yerel arayüzler" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "Yerel alt ağlar" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -395,11 +395,11 @@ msgstr "MAC" msgid "Malformed data received" msgstr "Alınan hatalı veriler" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "Azami giriş" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." @@ -407,7 +407,7 @@ msgstr "" "Tutulacak maksimum hesaplama dönemi sayısı, veritabanlarını sonsuza kadar " "saklamak için sıfırı kullanın." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "Netlink Bant Genişliği İzleyici" @@ -421,23 +421,23 @@ msgstr "Netlink Bant Genişliği İzleyici - Yapılandırma" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "Henüz veri kaydedilmedi." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" "Yalnızca bu ağlardan gelen veya bu ağlardan herhangi birine giden bağlantı " "akışları sayılır." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" "Yalnızca bu alt ağlardan gelen veya bu alt ağlardan herhangi birine giden " "bağlantı akışları sayılır." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "Önceden tahsis veritabanı" @@ -459,10 +459,14 @@ msgstr "" "etmek için protokol eşlemeleri. İlk değer IP protokolünü belirtir, ikinci " "değer bağlantı noktası numarasını ve üçüncü sütun eşlenen protokolün adıdır." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "Yenileme aralığı" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "\"YYYY-AA-GG\" biçiminde geçerli bir tarih gerektirir" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "Geri yükle" @@ -492,7 +496,7 @@ msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" "İlk hesap döneminin başlangıç tarihi, örn. ISP sözleşmesinin başlangıcı." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "Saklanan dönemler" @@ -509,7 +513,7 @@ msgstr "" msgid "The following database files have been restored:" msgstr "Aşağıdaki veritabanı dosyaları geri yüklendi:" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." @@ -517,11 +521,11 @@ msgstr "" "Veritabanına girilmesi gereken maksimum girdi miktarı, sınırın 0 olarak " "ayarlanması veritabanlarının süresiz olarak büyümesine izin verecektir." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "Trafik / Cihaz" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "Trafik Dağılımı" @@ -529,36 +533,36 @@ msgstr "Trafik Dağılımı" msgid "Unable to fetch traffic statistic data: %s" msgstr "Trafik istatistikleri verileri alınamıyor: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "Yükl. (Bayt)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "Yükl. (Pktlr.)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "Yükleme" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "Yükl. (Bayt)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "Yükleme (Paketler)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "Yükleme / Uygulama" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "Üretici: <big id=\"bubble-vendor\">Example Corp.</big>" @@ -566,7 +570,7 @@ msgstr "Üretici: <big id=\"bubble-vendor\">Example Corp.</big>" msgid "Warning" msgstr "Uyarı" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " @@ -576,7 +580,7 @@ msgstr "" "sıkıştırılması, eski verilere erişimi biraz yavaşlatır, ancak depolama " "gereksinimlerini azaltmaya yardımcı olur." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -594,9 +598,9 @@ msgstr "trafik yok" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "diğer" diff --git a/applications/luci-app-nlbwmon/po/uk/nlbwmon.po b/applications/luci-app-nlbwmon/po/uk/nlbwmon.po index 77ded9316b..9ca7bc2067 100644 --- a/applications/luci-app-nlbwmon/po/uk/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/uk/nlbwmon.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-11-04 17:37+0000\n" -"Last-Translator: Paul Dee <itsascambutmailmeanyway+weblate@gmail.com>\n" +"PO-Revision-Date: 2022-08-28 15:37+0000\n" +"Last-Translator: Vlad <vladhmail@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/uk/>\n" "Language: uk\n" @@ -9,17 +9,17 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.9-dev\n" +"X-Generator: Weblate 4.14.1-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" -msgstr "" +msgstr "%d тільки IPv4 хост(а, ів)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "" @@ -43,75 +43,75 @@ msgstr "" msgid "1 - Restart every 1st of month" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "" @@ -123,11 +123,11 @@ msgstr "" msgid "Advanced Settings" msgstr "Додаткові налаштування" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "" @@ -152,17 +152,17 @@ msgid "" "accounting period exactly every N days, beginning at a given date." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Збирання даних..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "" @@ -170,24 +170,24 @@ msgstr "" msgid "Configuration" msgstr "Конфігурація" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "Підключення" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "Директорія бази даних" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -212,32 +212,32 @@ msgstr "Закрити" msgid "Display" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "Завантажити" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "" @@ -245,7 +245,7 @@ msgstr "" msgid "Download Database Backup" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "" @@ -253,19 +253,19 @@ msgstr "" msgid "Due date" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "" @@ -273,7 +273,7 @@ msgstr "" msgid "Failed to download backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "" @@ -281,7 +281,7 @@ msgstr "" msgid "Failed to restore backup archive: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "" @@ -289,9 +289,9 @@ msgstr "" msgid "Fixed interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "" @@ -307,70 +307,70 @@ msgstr "" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "Вузол" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -378,17 +378,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "" @@ -402,19 +402,19 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "" @@ -433,10 +433,14 @@ msgid "" "number and the third column is the name of the mapped protocol." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "Відновлення" @@ -465,7 +469,7 @@ msgstr "" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "" @@ -479,17 +483,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "" @@ -497,36 +501,36 @@ msgstr "" msgid "Unable to fetch traffic statistic data: %s" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "Відвантажити" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "" @@ -534,14 +538,14 @@ msgstr "" msgid "Warning" msgstr "Застереження" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -556,8 +560,8 @@ msgstr "" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "" diff --git a/applications/luci-app-nlbwmon/po/vi/nlbwmon.po b/applications/luci-app-nlbwmon/po/vi/nlbwmon.po index 4892a42ca7..1efd4049d0 100644 --- a/applications/luci-app-nlbwmon/po/vi/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/vi/nlbwmon.po @@ -1,148 +1,151 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-11-21 12:21+0000\n" -"Last-Translator: Darias <DariasLuc@gmail.com>\n" +"PO-Revision-Date: 2023-06-21 08:39+0000\n" +"Last-Translator: Quy <haonguyen93056@gmail.com>\n" "Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsnlbwmon/vi/>\n" "Language: vi\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.4-dev\n" +"X-Generator: Weblate 4.18.1\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" -msgstr "" +msgstr "%d máy chủ chỉ dùngIPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" -msgstr "" +msgstr "%d máy chủ chỉ IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" -msgstr "" +msgstr "%d máy chủ dual-stack" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:114 msgid "%s and %s" -msgstr "" +msgstr "%s và %s" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:112 msgid "%s, %s and %s" -msgstr "" +msgstr "%s, %s và %s" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:93 msgid "-1 - Restart every last day of month" -msgstr "" +msgstr "-1 - Khởi động lại vào cuối mỗi tháng" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:94 msgid "-7 - Restart a week before end of month" -msgstr "" +msgstr "-7 - Khởi động lại một tuần trước cuối tháng" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:92 msgid "1 - Restart every 1st of month" -msgstr "" +msgstr "1 - Khởi động lại vào ngày 1 mỗi tháng" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" -msgstr "" +msgstr "10m - thực hiện các commit thường xuyên đồng thời tiêu tốn flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" -msgstr "" +msgstr "12h - sự thỏa hiệp giữa rủi ro mất dữ liệu và tiêu tốn flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" -msgstr "" +msgstr "24h - tiêu tốn ít flash nhất nhưng có nguy cơ mất dữ liệu" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" -msgstr "" +msgstr "30s - làm mới hai lần mỗi phút để có thông tin hiện tại hợp lý" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" -msgstr "" +msgstr "5m - hiếm khi làm mới để tránh xóa số liệu conntrack thường xuyên" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "" +"60s - thực hiện commit hàng phút, hữu ích cho lưu trữ không sử dụng flash" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" -msgstr "" +msgstr "<big id=\"conn-total\">0</big> kết nối" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" -msgstr "" +msgstr "<big id=\"host-total\">0</big> máy chủ" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" -msgstr "" +msgstr "<big id=\"ipv6-hosts\">0%</big> tỷ lệ hỗ trợ IPv6 trong số máy chủ" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" -msgstr "" +msgstr "<big id=\"ipv6-rx\">0B</big> tổng tải xuống IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" -msgstr "" +msgstr "<big id=\"ipv6-share\">0%</big> tổng lưu lượng là IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" -msgstr "" +msgstr "<big id=\"ipv6-tx\">0B</big> tổng tải lên IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" -msgstr "" +msgstr "<big id=\"layer7-most-conn\">0</big> gây ra nhiều kết nối nhất" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" -msgstr "" +msgstr "<big id=\"layer7-most-rx\">0</big> gây ra nhiều tải xuống nhất" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" -msgstr "" +msgstr "<big id=\"layer7-most-tx\">0</big> gây ra nhiều tải lên nhất" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" -msgstr "" +msgstr "<big id=\"layer7-total\">0</big> giao thức ứng dụng khác nhau" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" -msgstr "" +msgstr "<big id=\"rx-total\">0</big> tải xuống" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" -msgstr "" +msgstr "<big id=\"tx-total\">0</big> tải lên" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:63 msgid "Accounting period" -msgstr "" +msgstr "Kỳ tính toán" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:60 msgid "Advanced Settings" msgstr "Cài đặt nâng cao" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" -msgstr "" +msgstr "Ứng dụng" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" -msgstr "" +msgstr "Giao thức Ứng dụng" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:34 msgid "Backup" -msgstr "" +msgstr "Sao lưu" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:3 msgid "Bandwidth Monitor" -msgstr "" +msgstr "Bộ giám sát băng thông" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:76 msgid "" "Changing the accounting interval type will invalidate existing databases!" "<br /><strong><a href=\"%s\">Download backup</a></strong>." msgstr "" +"Thay đổi loại khoảng thời gian tính toán sẽ làm hủy bỏ cơ sở dữ liệu hiện " +"có!<br /><strong><a href=\"%s\">Tải về bản sao lưu</a></strong>." #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:64 msgid "" @@ -150,51 +153,57 @@ msgid "" "specific date, e.g. every 3rd. Choose \"Fixed interval\" to restart the " "accounting period exactly every N days, beginning at a given date." msgstr "" +"Chọn \"Ngày trong tháng\" để khởi động lại kỳ tính toán hàng tháng vào một " +"ngày cụ thể, ví dụ: ngày thứ 3 hàng tháng. Chọn \"Khoảng thời gian cố định\" " +"để khởi động lại kỳ tính toán chính xác hàng N ngày, bắt đầu từ một ngày đã " +"cho." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "Đang lấy dữ liệu..." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" -msgstr "" +msgstr "Khoảng thời gian thực hiện commit" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" -msgstr "" +msgstr "Nén cơ sở dữ liệu" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:25 msgid "Configuration" msgstr "Cấu hình" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." -msgstr "" +msgstr "Conn." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" -msgstr "" +msgstr "Kết nối" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" -msgstr "" +msgstr "Kết nối / Máy chủ" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" -msgstr "" +msgstr "Thư mục cơ sở dữ liệu" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." msgstr "" +"Thư mục lưu trữ cơ sở dữ liệu. Một tệp tin cho mỗi kỳ tính toán sẽ được đặt " +"vào thư mục này." #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:72 msgid "Day of month" -msgstr "" +msgstr "Ngày trong tháng" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:84 msgid "" @@ -202,220 +211,232 @@ msgid "" "towards the end of month, e.g. \"-5\" to specify the 27th of July or the " "24th of February." msgstr "" +"Ngày trong tháng để khởi động lại kỳ tính toán. Sử dụng giá trị âm để đếm từ " +"cuối tháng, ví dụ: \"-5\" để chỉ định ngày 27 tháng 7 hoặc ngày 24 tháng 2." #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:24 msgid "Dismiss" -msgstr "" +msgstr "Bỏ qua" #: applications/luci-app-nlbwmon/root/usr/share/luci/menu.d/luci-app-nlbwmon.json:16 msgid "Display" -msgstr "" +msgstr "Hiển thị" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" -msgstr "" +msgstr "Tải xuống (Byte)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" -msgstr "" +msgstr "Tải xuống (Gói tin)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" -msgstr "" +msgstr "Tải xuống" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" -msgstr "" +msgstr "Tải xuống (Byte)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" -msgstr "" +msgstr "Tải xuống (Gói tin)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" -msgstr "" +msgstr "Tải xuống / Ứng dụng" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:59 msgid "Download Database Backup" -msgstr "" +msgstr "Tải xuống Bản sao lưu cơ sở dữ liệu" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" -msgstr "" +msgstr "Máy chủ hỗ trợ Dualstack" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:83 msgid "Due date" -msgstr "" +msgstr "Ngày đáo hạn" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" -msgstr "" +msgstr "Xuất (JSON)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" -msgstr "" +msgstr "Xuất" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" -msgstr "" +msgstr "Không thể thực hiện commit cơ sở dữ liệu: %s" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:45 msgid "Failed to download backup archive: %s" -msgstr "" +msgstr "Không thể tải xuống bản sao lưu lưu trữ: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" -msgstr "" +msgstr "Không thể tải xuống dữ liệu lưu lượng: %s" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:28 msgid "Failed to restore backup archive: %s" -msgstr "" +msgstr "Không thể khôi phục bản sao lưu lưu trữ: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" -msgstr "" +msgstr "Gia đình" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73 msgid "Fixed interval" -msgstr "" +msgstr "Khoảng thời gian cố định" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" -msgstr "" +msgstr "Buộc tải lại…" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:59 msgid "General Settings" -msgstr "" +msgstr "Các cài đặt chung" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:64 msgid "Generate Backup" -msgstr "" +msgstr "Tạo Bản sao lưu" #: applications/luci-app-nlbwmon/root/usr/share/rpcd/acl.d/luci-app-nlbwmon.json:3 msgid "Grant UCI access for luci-app-nlbwmon" -msgstr "" +msgstr "Cấp quyền truy cập UCI cho luci-app-nlbwmon" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" -msgstr "" +msgstr "Nhóm theo IP (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" -msgstr "" +msgstr "Nhóm theo MAC (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" -msgstr "" +msgstr "Nhóm theo giao thức (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" -msgstr "" +msgstr "Host" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <big id=\"bubble-hostname\">example.org</big>" -msgstr "" +msgstr "Tên máy chủ: <big id=\"bubble-hostname\">example.org</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" -msgstr "" +msgstr "IPv4 so với IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" -msgstr "" +msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" -msgstr "" +msgstr "Khoảng thời gian" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "" +"Khoảng thời gian mà cơ sở dữ liệu tạm thời trong bộ nhớ được commit vào thư " +"mục cơ sở dữ liệu lưu trữ." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "" +"Khoảng thời gian mà bộ đếm lưu lượng của các kết nối đã được thiết lập vẫn " +"còn được làm mới từ thông tin netlink." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." -msgstr "" +msgstr "Độ dài của kỳ tính toán tính bằng ngày." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" -msgstr "" +msgstr "Giao diện cục bộ" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" -msgstr "" +msgstr "Mạng con cục bộ" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:76 msgid "Malformed data received" -msgstr "" +msgstr "Dữ liệu nhận được không hợp lệ" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" -msgstr "" +msgstr "Số lượng tối đa các mục nhập" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "" +"Số lượng kỳ tính toán tối đa để giữ, sử dụng số 0 để giữ cơ sở dữ liệu mãi " +"mãi." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" -msgstr "" +msgstr "Bộ giám sát băng thông Netlink" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:51 msgid "Netlink Bandwidth Monitor - Backup / Restore" -msgstr "" +msgstr "Bộ giám sát băng thông Netlink - Sao lưu / Khôi phục" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:52 msgid "Netlink Bandwidth Monitor - Configuration" -msgstr "" +msgstr "Bộ giám sát băng thông Netlink - Cấu hình" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." -msgstr "" +msgstr "Chưa có dữ liệu được ghi lại." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "" +"Chỉ có những luồng conntrack từ hoặc tới bất kỳ mạng nào trong số này mới " +"được tính." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "" +"Chỉ có những luồng conntrack từ hoặc tới bất kỳ mạng con nào trong số này " +"mới được tính." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" -msgstr "" +msgstr "Cấp phát trước cơ sở dữ liệu" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:339 msgid "Protocol" @@ -423,7 +444,7 @@ msgstr "Giao thức" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61 msgid "Protocol Mapping" -msgstr "" +msgstr "Ánh xạ giao thức" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:61 msgid "" @@ -431,132 +452,151 @@ msgid "" "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." msgstr "" +"Các ánh xạ giao thức để phân biệt các loại lưu lượng cho mỗi máy chủ, một " +"ánh xạ cho mỗi dòng. Giá trị đầu tiên xác định giao thức IP, giá trị thứ hai " +"là số cổng và cột thứ ba là tên giao thức được ánh xạ." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" -msgstr "" +msgstr "Khoảng thời gian làm mới" + +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "Yêu cầu một ngày hợp lệ trong định dạng \"YYYY-MM-DD\"" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" -msgstr "" +msgstr "Khôi phục" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:52 msgid "Restore Database Backup" -msgstr "" +msgstr "Khôi phục sao lưu cơ sở dữ liệu" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:20 msgid "Restore complete" -msgstr "" +msgstr "Khôi phục hoàn tất" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:285 msgid "Select accounting period:" -msgstr "" +msgstr "Chọn kỳ tính toán:" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:334 msgid "Source IP" -msgstr "" +msgstr "IP nguồn" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:96 msgid "Start date" -msgstr "" +msgstr "Ngày bắt đầu" #: 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." msgstr "" +"Ngày bắt đầu của kỳ tính toán đầu tiên, ví dụ như bắt đầu hợp đồng với nhà " +"cung cấp dịch vụ Internet." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" -msgstr "" +msgstr "Các kỳ đã lưu" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:53 msgid "" "The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic " "accounting program keeping track of bandwidth usage per host and protocol." msgstr "" +"Bộ giám sát băng thông Netlink (nlbwmon) là một chương trình tính toán lưu " +"lượng nhẹ, hiệu quả theo dõi việc sử dụng băng thông cho mỗi máy chủ và giao " +"thức." #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:21 msgid "The following database files have been restored:" -msgstr "" +msgstr "Các tệp cơ sở dữ liệu sau đã được khôi phục:" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "" +"Số lượng tối đa các mục nhập nên được đặt vào cơ sở dữ liệu, đặt giới hạn là " +"0 sẽ cho phép cơ sở dữ liệu tăng lên vô hạn." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" -msgstr "" +msgstr "Lưu lượng / Máy chủ" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" -msgstr "" +msgstr "Phân phối lưu lượng" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:92 msgid "Unable to fetch traffic statistic data: %s" -msgstr "" +msgstr "Không thể lấy dữ liệu thống kê lưu lượng: %s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" -msgstr "" +msgstr "Lên. (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" -msgstr "" +msgstr "Lên. (Gói)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" -msgstr "" +msgstr "Tải lên" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" -msgstr "" +msgstr "Tải lên (Bytes)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" -msgstr "" +msgstr "Tải lên (Gói)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" -msgstr "" +msgstr "Tải lên / Ứng dụng" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" -msgstr "" +msgstr "Nhà cung cấp: <big id=\"bubble-vendor\">Công ty Mẫu.</big>" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:75 msgid "Warning" -msgstr "" +msgstr "Cảnh báo" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " "requirements." msgstr "" +"Cho phép nén gzip cơ sở dữ liệu lưu trữ. Nén các tệp cơ sở dữ liệu làm cho " +"việc truy cập dữ liệu cũ chậm hơn một chút nhưng giúp giảm yêu cầu lưu trữ." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "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." msgstr "" +"Cho phép cấp phát trước kích thước cơ sở dữ liệu tối đa có thể trong bộ nhớ. " +"Điều này hữu ích chủ yếu cho các hệ thống hạn chế bộ nhớ có thể không thể " +"đáp ứng việc cấp phát bộ nhớ sau thời gian hoạt động liên tục dài." #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:130 msgid "no traffic" -msgstr "" +msgstr "không có lưu lượng" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:335 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" -msgstr "" +msgstr "khác" diff --git a/applications/luci-app-nlbwmon/po/zh_Hans/nlbwmon.po b/applications/luci-app-nlbwmon/po/zh_Hans/nlbwmon.po index 8f376cc8ce..0c93636318 100644 --- a/applications/luci-app-nlbwmon/po/zh_Hans/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/zh_Hans/nlbwmon.po @@ -3,25 +3,25 @@ # msgid "" msgstr "" -"PO-Revision-Date: 2021-06-22 17:33+0000\n" -"Last-Translator: Eric <spice2wolf@gmail.com>\n" +"PO-Revision-Date: 2023-04-01 09:21+0000\n" +"Last-Translator: Eric <hamburger2048@users.noreply.hosted.weblate.org>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsnlbwmon/zh_Hans/>\n" "Language: zh_Hans\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.7.1-dev\n" +"X-Generator: Weblate 4.17-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d 台仅 IPv4 主机" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "%d 台仅 IPv6 主机" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "%d 台双协议栈主机" @@ -45,75 +45,75 @@ msgstr "-7 - 每月底前一周重新开始" msgid "1 - Restart every 1st of month" msgstr "1 - 每月的第一天重新开始" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "10m - 频繁提交,闪存损耗的开销也增大" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "12h - 平衡统计数据丢失的风险以及闪存使用寿命" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "24h - 以数据丢失风险的代价换取最小的闪存损耗" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "30s - 每分钟刷新二次以获得较准确的当前统计值" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "5m - 较少刷新以避免频繁清除连接跟踪计数器" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "60s - 每分钟提交,适用于非闪存类型存储" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "连接:<big id=\"conn-total\">0</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "主机:<big id=\"host-total\">0</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "支持 IPv6 的主机比例:<big id=\"ipv6-hosts\">0%</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "IPv6 总下载量:<big id=\"ipv6-rx\">0B</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "IPv6 流量比例:<big id=\"ipv6-share\">0%</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "IPv6 总上传量:<big id=\"ipv6-tx\">0B</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "连接数最多的协议:<big id=\"layer7-most-conn\">0</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "下载量最大的协议:<big id=\"layer7-most-rx\">0</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "上传量最大的协议:<big id=\"layer7-most-tx\">0</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "应用层协议计数:<big id=\"layer7-total\">0</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "下载:<big id=\"rx-total\">0</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "上传:<big id=\"tx-total\">0</big>" @@ -125,11 +125,11 @@ msgstr "统计周期" msgid "Advanced Settings" msgstr "高级设置" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "应用层" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "应用层协议" @@ -158,17 +158,17 @@ msgstr "" "选择“每月的某一天”来设置统计周期的重启时间,例如:每个月的第 3 天。选择“固定" "周期”来设置从给定日期开始每 N 天重启统计周期。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "正在收集数据…" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "提交间隔" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "压缩数据库" @@ -176,24 +176,24 @@ msgstr "压缩数据库" msgid "Configuration" msgstr "配置" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." -msgstr "连接" +msgstr "连接." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "连接" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "连接 / 主机" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "数据库目录" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -220,32 +220,32 @@ msgstr "关闭" msgid "Display" msgstr "显示" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "下载量(字节)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "下载量(包)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "下载" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "下载量(字节)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "下载量(包)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "下载 / 应用层协议" @@ -253,7 +253,7 @@ msgstr "下载 / 应用层协议" msgid "Download Database Backup" msgstr "下载数据库备份" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "双协议栈主机" @@ -261,19 +261,19 @@ msgstr "双协议栈主机" msgid "Due date" msgstr "重置日期" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "转储 (JSON)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "导出" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "数据库提交失败,该数据库名称为:%s" @@ -281,7 +281,7 @@ msgstr "数据库提交失败,该数据库名称为:%s" msgid "Failed to download backup archive: %s" msgstr "备份存档下载失败,存档名称为:%s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "流量数据下载失败,数据名称为:%s" @@ -289,17 +289,17 @@ msgstr "流量数据下载失败,数据名称为:%s" msgid "Failed to restore backup archive: %s" msgstr "还原备份存档失败,存档名称为:%s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" -msgstr "协议簇" +msgstr "族" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:73 msgid "Fixed interval" msgstr "固定周期" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "强制重新加载…" @@ -315,70 +315,70 @@ msgstr "生成备份" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "授予UCI访问luci-app-nlbwmon的权限" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "按 IP 分组 (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "按 MAC 分组 (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "按协议分组 (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "主机" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <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/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "IPv4 与 IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "周期" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "将内存中的临时数据库提交到持久性数据库目录的间隔时间。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "从 netlink 信息中刷新“已建立连接”的流量计数器的间隔时间。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "统计周期(天)。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "本地接口" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "本地子网" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -386,17 +386,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "接收到畸形数据" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "最大条目" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "保留的统计周期数据库的最大数量,设置 0 表示不限制。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "网络带宽监视器" @@ -410,19 +410,19 @@ msgstr "网络带宽监视器 - 配置" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "暂无数据记录。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "仅统计来自或目标为这些网络接口的连接流量。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "仅统计来自或目标为这些子网的连接流量。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "预分配数据库" @@ -443,10 +443,14 @@ msgstr "" "协议映射用于区分流量类型,每行一条。第一个值指定 IP 协议类型,第二个值是端口" "号,第三个值是映射的协议名称。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "刷新间隔" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "需要格式为年月日 \"YYYY-MM-DD\" 的有效日期" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "恢复" @@ -475,7 +479,7 @@ msgstr "起始日期" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "第一个统计周期的起始日期,例如:ISP 合约的起始日期。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "储存周期" @@ -491,17 +495,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "以下数据库文件已恢复:" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "数据库中的最大条目数量, 设置为 0 将允许数据库无限增长。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "流量 / 主机" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "流量分布" @@ -509,36 +513,36 @@ msgstr "流量分布" msgid "Unable to fetch traffic statistic data: %s" msgstr "无法获取流量统计数据:%s" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "上传量(字节)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "上传量(包)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "上传" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "上传量(字节)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "上传量(包)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "上传 / 应用层协议" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "供应商:<big id=\"bubble-vendor\">Example Corp.</big>" @@ -546,7 +550,7 @@ msgstr "供应商:<big id=\"bubble-vendor\">Example Corp.</big>" msgid "Warning" msgstr "警告" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " @@ -555,7 +559,7 @@ msgstr "" "是否使用 gzip 压缩数据库存档。压缩数据库文件会使访问旧数据稍微慢一些,但有助" "于减少存储占用空间。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -572,9 +576,9 @@ msgstr "无流量数据" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "其他" diff --git a/applications/luci-app-nlbwmon/po/zh_Hant/nlbwmon.po b/applications/luci-app-nlbwmon/po/zh_Hant/nlbwmon.po index 2ddf46c29e..17a3092895 100644 --- a/applications/luci-app-nlbwmon/po/zh_Hant/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/zh_Hant/nlbwmon.po @@ -3,7 +3,7 @@ # msgid "" msgstr "" -"PO-Revision-Date: 2021-08-14 14:43+0000\n" +"PO-Revision-Date: 2023-03-15 14:40+0000\n" "Last-Translator: Hulen <shift0106@gmail.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsnlbwmon/zh_Hant/>\n" @@ -11,17 +11,17 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.8-dev\n" +"X-Generator: Weblate 4.16.2-dev\n" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:538 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:563 msgid "%d IPv4-only hosts" msgstr "%d 台主機(僅 IPv4)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:545 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:570 msgid "%d IPv6-only hosts" msgstr "%d 台主機(僅 IPv6)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:552 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:577 msgid "%d dual-stack hosts" msgstr "%d 台主機(雙堆疊)" @@ -45,75 +45,75 @@ msgstr "-7-每月倒數第七天重新啟動" msgid "1 - Restart every 1st of month" msgstr "1-每月的第一天重新啟動" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 msgid "10m - frequent commits at the expense of flash wear" msgstr "10m-頻繁地提交,可能會加劇快閃記憶體的耗損" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:160 msgid "12h - compromise between risk of data loss and flash wear" msgstr "12h-資料丟失風險和快閃記憶體耗損之間的折衷" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:156 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 msgid "24h - least flash wear at the expense of data loss risk" msgstr "24h-以資料丟失風險為代價延長快閃記憶體壽命" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:163 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 msgid "30s - refresh twice per minute for reasonably current stats" msgstr "30s-每分鐘重新整理 2 次來得到最新的統計資料" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 msgid "5m - rarely refresh to avoid frequently clearing conntrack counters" msgstr "5m-少量重新整理以避免頻繁清除 conntrack 計數器" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:159 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 msgid "60s - commit minutely, useful for non-flash storage" msgstr "60s-每分鐘提交,適用於非快閃記憶體儲存資料" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:827 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 msgid "<big id=\"conn-total\">0</big> connections" msgstr "連線數:<big id=\"conn-total\">0</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:824 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:849 msgid "<big id=\"host-total\">0</big> hosts" msgstr "主機數:<big id=\"host-total\">0</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:917 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:942 msgid "<big id=\"ipv6-hosts\">0%</big> IPv6 support rate among hosts" msgstr "支援 IPv6 主機的比率:<big id=\"ipv6-hosts\">0%</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:919 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:944 msgid "<big id=\"ipv6-rx\">0B</big> total IPv6 download" msgstr "IPv6 總下載量:<big id=\"ipv6-rx\">0B</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:918 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:943 msgid "<big id=\"ipv6-share\">0%</big> of the total traffic is IPv6" msgstr "IPv6 總流量比率:<big id=\"ipv6-share\">0%</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:920 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 msgid "<big id=\"ipv6-tx\">0B</big> total IPv6 upload" msgstr "IPv6 總上傳量:<big id=\"ipv6-tx\">0B</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:874 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:899 msgid "<big id=\"layer7-most-conn\">0</big> cause the most connections" msgstr "連線數最多的協定:<big id=\"layer7-most-conn\">0</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:872 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:897 msgid "<big id=\"layer7-most-rx\">0</big> cause the most download" msgstr "下載量最大的協定:<big id=\"layer7-most-rx\">0</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:873 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 msgid "<big id=\"layer7-most-tx\">0</big> cause the most upload" msgstr "上傳量最大的協定:<big id=\"layer7-most-tx\">0</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:871 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:896 msgid "<big id=\"layer7-total\">0</big> different application protocols" msgstr "應用層協定數:<big id=\"layer7-total\">0</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:825 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:850 msgid "<big id=\"rx-total\">0</big> download" msgstr "下載量:<big id=\"rx-total\">0</big>" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:826 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:851 msgid "<big id=\"tx-total\">0</big> upload" msgstr "上傳量:<big id=\"tx-total\">0</big>" @@ -125,11 +125,11 @@ msgstr "統計週期" msgid "Advanced Settings" msgstr "進階設定" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:881 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 msgid "Application" msgstr "應用層協定" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:857 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 msgid "Application Protocols" msgstr "應用層協定" @@ -158,17 +158,17 @@ msgstr "" "選擇「一個月中的某天」來設定每月統計資料的重設日期(例如:每月 3 號);選擇" "「固定間隔時間」將容許您設定起始日期和間隔時間。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:844 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:937 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:869 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:915 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 msgid "Collecting data..." msgstr "正在收集資料中…" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:157 msgid "Commit interval" msgstr "提交間隔時間" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 msgid "Compress database" msgstr "壓縮資料庫" @@ -176,24 +176,24 @@ msgstr "壓縮資料庫" msgid "Configuration" msgstr "組態" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:603 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 msgid "Conn." -msgstr "連線數" +msgstr "連線數." -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:836 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:882 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:861 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:907 msgid "Connections" msgstr "連線數" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:818 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:843 msgid "Connections / Host" msgstr "連線數/主機" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:166 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:169 msgid "Database directory" msgstr "資料庫目錄" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:167 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:170 msgid "" "Database storage directory. One file per accounting period will be placed " "into this directory." @@ -220,32 +220,32 @@ msgstr "關閉" msgid "Display" msgstr "顯示" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:604 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:629 msgid "Down. (Bytes)" msgstr "下載量(位元組)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:605 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:630 msgid "Down. (Pkts.)" msgstr "下載量(封包)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:586 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:611 msgctxt "Traffic counter" msgid "Download" msgstr "下載" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:837 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:883 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:930 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:862 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:908 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:955 msgid "Download (Bytes)" msgstr "下載量(位元組)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:884 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:863 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:909 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:956 msgid "Download (Packets)" msgstr "下載量(封包)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 msgid "Download / Application" msgstr "下載量/協定" @@ -253,7 +253,7 @@ msgstr "下載量/協定" msgid "Download Database Backup" msgstr "下載資料庫備份" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:936 msgid "Dualstack enabled hosts" msgstr "雙堆疊主機" @@ -261,19 +261,19 @@ msgstr "雙堆疊主機" msgid "Due date" msgstr "重設日期" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:980 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1005 msgid "Dump (JSON)" msgstr "傾印 (JSON)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:950 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:967 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:976 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:985 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:975 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:983 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:992 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1001 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:1010 msgid "Export" msgstr "匯出" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:779 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:804 msgid "Failed to commit database: %s" msgstr "資料庫提交失敗(訊息:%s)" @@ -281,7 +281,7 @@ msgstr "資料庫提交失敗(訊息:%s)" msgid "Failed to download backup archive: %s" msgstr "備份歸檔下載失敗(訊息:%s)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:768 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:793 msgid "Failed to download traffic data: %s" msgstr "流量資料下載失敗(訊息:%s)" @@ -289,7 +289,7 @@ msgstr "流量資料下載失敗(訊息:%s)" msgid "Failed to restore backup archive: %s" msgstr "備份歸檔還原失敗(訊息:%s)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:929 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:954 msgid "Family" msgstr "位址族" @@ -297,9 +297,9 @@ msgstr "位址族" msgid "Fixed interval" msgstr "固定間隔時間" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:852 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:898 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:945 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:877 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:923 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:970 msgid "Force reload…" msgstr "強制重新載入……" @@ -315,70 +315,70 @@ msgstr "產生備份" msgid "Grant UCI access for luci-app-nlbwmon" msgstr "授予 luci-app-nlbwmon 擁有 UCI 存取的權限" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:962 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:987 msgid "Grouped by IP (CSV)" msgstr "依 IP 分組 (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:978 msgid "Grouped by MAC (CSV)" msgstr "依 MAC 分組 (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:971 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:996 msgid "Grouped by protocol (CSV)" msgstr "依協定分組 (CSV)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:834 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:927 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:859 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:952 msgid "Host" msgstr "主機" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:595 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:620 msgid "Hostname: <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/display.js:504 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:507 msgid "IPv4" -msgstr "IPv4" +msgstr "IPv4 地址" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:906 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:931 msgid "IPv4 vs. IPv6" msgstr "IPv4 與 IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:505 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:903 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:508 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:108 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:111 msgid "Interval" msgstr "間隔時間" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:158 msgid "" "Interval at which the temporary in-memory database is committed to the " "persistent database directory." msgstr "將記憶體中的臨時資料庫提交到永續性資料庫目錄的間隔時間。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:162 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:165 msgid "" "Interval at which traffic counters of still established connections are " "refreshed from netlink information." msgstr "Netlink 頻寬監視器重新整理「已建立連線的總流量」的間隔時間。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:109 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:112 msgid "Length of accounting interval in days." msgstr "重設統計的間隔天數。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:120 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:123 msgid "Local interfaces" msgstr "局部介面" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:129 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:132 msgid "Local subnets" msgstr "區域子網" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:928 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:860 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:953 msgid "MAC" msgstr "MAC" @@ -386,17 +386,17 @@ msgstr "MAC" msgid "Malformed data received" msgstr "接收到了錯誤的資料" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:141 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 msgid "Maximum entries" msgstr "最大項目數" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:155 msgid "" "Maximum number of accounting periods to keep, use zero to keep databases " "forever." msgstr "資料庫中要保留的統計資料的「最大週期數」,輸入「0」將永遠保留。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:806 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:831 msgid "Netlink Bandwidth Monitor" msgstr "Netlink 頻寬監視器" @@ -410,19 +410,19 @@ msgstr "Netlink 頻寬監視器-組態" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:362 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:416 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:517 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:542 msgid "No data recorded yet." msgstr "暫無資料記錄。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:121 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:124 msgid "Only conntrack streams from or to any of these networks are counted." msgstr "只統計來自或任何到達「這些網路」的 conntrack 流。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:130 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:133 msgid "Only conntrack streams from or to any of these subnets are counted." msgstr "只統計來自或任何到達「這些子網」的 conntrack 流。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:144 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:147 msgid "Preallocate database" msgstr "預先配置資料庫" @@ -443,10 +443,14 @@ msgstr "" "使用協定對映來區分流量類型,每行一條:第一個值規定「IP 協定號」,第二、三個值" "分別為「埠號」和對映的「協定名稱」。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:161 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:164 msgid "Refresh interval" msgstr "重新整理間隔" +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:106 +msgid "Require a valid date in the form \"YYYY-MM-DD\"" +msgstr "需要格式為年月日 \"YYYY-MM-DD\" 的有效日期" + #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/backup.js:57 msgid "Restore" msgstr "還原" @@ -475,7 +479,7 @@ msgstr "起始日期" msgid "Start date of the first accounting period, e.g. begin of ISP contract." msgstr "第一個統計週期的起始日期(例如:ISP 合約的起始日期)。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:151 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:154 msgid "Stored periods" msgstr "儲存週期" @@ -491,17 +495,17 @@ msgstr "" msgid "The following database files have been restored:" msgstr "已還原以下資料庫檔案:" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:142 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 msgid "" "The maximum amount of entries that should be put into the database, setting " "the limit to 0 will allow databases to grow indefinitely." msgstr "資料庫中儲存的最大項目數;設定限制為 \"0\" 將允許資料庫無限增長。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:813 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:838 msgid "Traffic / Host" msgstr "流量/主機" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:810 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:835 msgid "Traffic Distribution" msgstr "流量分配" @@ -509,36 +513,36 @@ msgstr "流量分配" msgid "Unable to fetch traffic statistic data: %s" msgstr "流量統計資料提取失敗(訊息:%s)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:606 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:631 msgid "Up. (Bytes)" msgstr "上傳量(位元組)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:607 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:632 msgid "Up. (Pkts.)" msgstr "上傳量(封包)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:590 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:615 msgctxt "Traffic counter" msgid "Upload" msgstr "上傳" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:839 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:885 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:932 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:864 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:910 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:957 msgid "Upload (Bytes)" msgstr "上傳量(位元組)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:840 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:886 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:933 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:911 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:958 msgid "Upload (Packets)" msgstr "上傳量(封包)" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:865 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:890 msgid "Upload / Application" msgstr "上傳量/協定" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:596 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:621 msgid "Vendor: <big id=\"bubble-vendor\">Example Corp.</big>" msgstr "供應商:<big id=\"bubble-vendor\">Example Corp.</big>" @@ -546,7 +550,7 @@ msgstr "供應商:<big id=\"bubble-vendor\">Example Corp.</big>" msgid "Warning" msgstr "警告" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:149 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:152 msgid "" "Whether to gzip compress archive databases. Compressing the database files " "makes accessing old data slightly slower but helps to reduce storage " @@ -555,7 +559,7 @@ msgstr "" "是否使用 Gzip 壓縮資料庫歸檔;這會使舊資料的存取稍微慢一些,但有助於節省儲存" "空間。" -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:145 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/config.js:148 msgid "" "Whether to preallocate the maximum possible database size in memory. This is " "mainly useful for memory constrained systems which might not be able to " @@ -572,9 +576,9 @@ msgstr "無流量" #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:388 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:401 #: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:406 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:616 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:628 -#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:633 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:641 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:653 +#: applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw/display.js:658 msgid "other" msgstr "其他" |