diff options
Diffstat (limited to 'applications/luci-app-vnstat2')
38 files changed, 4695 insertions, 0 deletions
diff --git a/applications/luci-app-vnstat2/Makefile b/applications/luci-app-vnstat2/Makefile new file mode 100644 index 0000000000..420bf548a4 --- /dev/null +++ b/applications/luci-app-vnstat2/Makefile @@ -0,0 +1,13 @@ +# This is free software, licensed under the Apache License, Version 2.0 + +include $(TOPDIR)/rules.mk + +LUCI_TITLE:=LuCI Support for vnStat 2 +LUCI_DEPENDS:=+luci-lib-jsonc +vnstat2 +vnstati2 + +PKG_LICENSE:=Apache-2.0 +PKG_MAINTAINER:=Jan Hoffmann <jan@3e8.eu> + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js b/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js new file mode 100644 index 0000000000..46781442a3 --- /dev/null +++ b/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js @@ -0,0 +1,113 @@ +// This is free software, licensed under the Apache License, Version 2.0 + +'use strict'; +'require view'; +'require fs'; +'require ui'; +'require uci'; +'require form'; +'require tools.widgets as widgets'; + +var isReadonlyView = !L.hasViewPermission() || null; + +return view.extend({ + handleDeleteModal: function(m, iface, ev) { + L.showModal(_('Delete interface <em>%h</em>').format(iface), [ + E('p', _('The interface will be removed from the database permanently. This cannot be undone.')), + E('div', { 'class': 'right' }, [ + E('div', { + 'class': 'btn', + 'click': L.hideModal + }, _('Cancel')), + ' ', + E('div', { + 'class': 'btn cbi-button-negative', + 'click': ui.createHandlerFn(this, 'handleDelete', m, iface) + }, _('Delete')) + ]) + ]); + }, + + handleDelete: function(m, iface, ev) { + return fs.exec('/usr/bin/vnstat', ['--remove', '-i', iface, '--force']) + .then(L.bind(m.render, m)) + .catch(function(e) { + ui.addNotification(null, E('p', e.message)); + }) + .finally(L.hideModal); + }, + + render: function() { + var m, s, o; + + m = new form.Map('vnstat', _('vnStat'), _('vnStat is a network traffic monitor for Linux that keeps a log of network traffic for the selected interface(s).')); + + s = m.section(form.TypedSection, 'vnstat', _('Interfaces')); + s.anonymous = true; + s.addremove = false; + + o = s.option(widgets.DeviceSelect, 'interface', _('Monitor interfaces'), _('The selected interfaces are automatically added to the vnStat database upon startup.')); + o.rmempty = true; + o.multiple = true; + o.noaliases = true; + o.nobridges = false; + o.noinactive = false; + o.nocreate = false; + + + o = s.option(form.DummyValue, '_database'); + + o.load = function(section_id) { + return fs.exec('/usr/bin/vnstat', ['--json', 'f', '1']).then(L.bind(function(result) { + var databaseInterfaces = []; + if (result.code == 0) { + var vnstatData = JSON.parse(result.stdout); + for (var i = 0; i < vnstatData.interfaces.length; i++) { + databaseInterfaces.push(vnstatData.interfaces[i].name); + } + } + + var configInterfaces = uci.get_first('vnstat', 'vnstat', 'interface') || []; + + this.interfaces = databaseInterfaces.filter(function(iface) { + return configInterfaces.indexOf(iface) == -1; + }); + }, this)); + }; + + o.render = L.bind(function(view, section_id) { + var table = E('div', { 'class': 'table' }, [ + E('div', { 'class': 'tr table-titles' }, [ + E('div', { 'class': 'th' }, _('Interface')), + E('div', { 'class': 'th right' }, _('Delete')) + ]) + ]); + + var rows = []; + + for (var i = 0; i < this.interfaces.length; i++) { + rows.push([ + this.interfaces[i], + E('button', { + 'class': 'btn cbi-button-remove', + 'click': ui.createHandlerFn(view, 'handleDeleteModal', m, this.interfaces[i]), + 'disabled': isReadonlyView + }, [ _('Delete…') ]) + ]); + } + + cbi_update_table(table, rows, E('em', _('No unconfigured interfaces found in database.'))); + + return E([], [ + E('h3', _('Unconfigured interfaces')), + E('div', { 'class': 'cbi-section-descr' }, + _('These interfaces are present in the vnStat database, but are not configured above.')), + table + ]); + }, o, this); + + + return m.render(); + } +}); + diff --git a/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js b/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js new file mode 100644 index 0000000000..fbe9d59337 --- /dev/null +++ b/applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js @@ -0,0 +1,74 @@ +// This is free software, licensed under the Apache License, Version 2.0 + +'use strict'; +'require view'; +'require fs'; +'require ui'; + +return view.extend({ + renderTab: function(ifaces, style, title) { + var tab = E('div', { + 'class': 'cbi-section', + 'data-tab': style, + 'data-tab-title': title + }, [ + E('p', {}, E('em', { 'class': 'spinning' }, [ _('Loading graphs…') ])) + ]); + + ifaces.forEach(function(iface) { + tab.appendChild(E('p', {}, E('img', { 'data-iface': iface, 'style': 'display:none' }))); + fs.exec_direct('/usr/bin/vnstati', [ '-'+style, '-i', iface, '-o', '-' ], 'blob').then(function(res) { + var img = tab.querySelector('img[data-iface="%s"]'.format(iface)); + img.src = URL.createObjectURL(res); + img.style.display = ''; + tab.firstElementChild.style.display = 'none'; + }); + }); + + return tab; + }, + + load: function() { + return fs.exec_direct('/usr/bin/vnstat', [ '--json', 'f', '1' ], 'text').then(function(res) { + var json = null; + + try { + json = JSON.parse(res) + } + catch(e) { + throw new Error(res.replace(/^Error: /, '')); + } + + return (L.isObject(json) ? L.toArray(json.interfaces) : []).map(function(iface) { + return iface.name; + }).sort(); + }).catch(function(err) { + ui.addNotification(null, E('p', { 'style': 'white-space:pre' }, [err])); + return []; + }); + }, + + render: function(ifaces) { + var view = E([], [ + E('h2', [_('vnStat Graphs')]), + E('div', ifaces.length ? [ + this.renderTab(ifaces, 's', _('Summary')), + this.renderTab(ifaces, 't', _('Top')), + this.renderTab(ifaces, '5', _('5 Minute')), + this.renderTab(ifaces, 'h', _('Hourly')), + this.renderTab(ifaces, 'd', _('Daily')), + this.renderTab(ifaces, 'm', _('Monthly')), + this.renderTab(ifaces, 'y', _('Yearly')) + ] : [ E('em', [_('No monitored interfaces have been found. Go to the configuration to enable monitoring for one or more interfaces.')]) ]) + ]); + + if (ifaces.length) + ui.tabs.initTabGroup(view.lastElementChild.childNodes); + + return view; + }, + + handleSave: null, + handleSaveApply: null, + handleReset: null +}); diff --git a/applications/luci-app-vnstat2/po/ar/vnstat2.po b/applications/luci-app-vnstat2/po/ar/vnstat2.po new file mode 100644 index 0000000000..72baf3ece6 --- /dev/null +++ b/applications/luci-app-vnstat2/po/ar/vnstat2.po @@ -0,0 +1,135 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-07-09 06:17+0000\n" +"Last-Translator: Mohammed Abu Hassan <medo94125@gmail.com>\n" +"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/ar/>\n" +"Language: ar\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 4.2-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "إلغاء" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/bg/vnstat2.po b/applications/luci-app-vnstat2/po/bg/vnstat2.po new file mode 100644 index 0000000000..83bbac40aa --- /dev/null +++ b/applications/luci-app-vnstat2/po/bg/vnstat2.po @@ -0,0 +1,128 @@ +msgid "" +msgstr "" +"Language: bg\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/bn_BD/vnstat2.po b/applications/luci-app-vnstat2/po/bn_BD/vnstat2.po new file mode 100644 index 0000000000..d87d781d45 --- /dev/null +++ b/applications/luci-app-vnstat2/po/bn_BD/vnstat2.po @@ -0,0 +1,128 @@ +msgid "" +msgstr "" +"Language: bn_BD\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/ca/vnstat2.po b/applications/luci-app-vnstat2/po/ca/vnstat2.po new file mode 100644 index 0000000000..af4013ceb2 --- /dev/null +++ b/applications/luci-app-vnstat2/po/ca/vnstat2.po @@ -0,0 +1,134 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-03-11 23:49+0000\n" +"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n" +"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/ca/>\n" +"Language: ca\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.0-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Configuració" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/cs/vnstat2.po b/applications/luci-app-vnstat2/po/cs/vnstat2.po new file mode 100644 index 0000000000..ae2307b279 --- /dev/null +++ b/applications/luci-app-vnstat2/po/cs/vnstat2.po @@ -0,0 +1,134 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-05-05 06:18+0000\n" +"Last-Translator: Dominik Lenoch <dlenoch@redhat.com>\n" +"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/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.1-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "Storno" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Nastavení" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "Rozhraní" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/de/vnstat2.po b/applications/luci-app-vnstat2/po/de/vnstat2.po new file mode 100644 index 0000000000..8859e244c5 --- /dev/null +++ b/applications/luci-app-vnstat2/po/de/vnstat2.po @@ -0,0 +1,134 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-08-18 20:33+0000\n" +"Last-Translator: Paul Spooren <mail@aparcar.org>\n" +"Language-Team: German <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/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.2-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "5 Minuten" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "Abbrechen" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Konfiguration" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "Täglich" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "Löschen" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "Schnittstelle <em>%h</em> löschen" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "Diagramme" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "Schnittstelle" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "Schnittstellen" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "Schnittstellen überwachen" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/el/vnstat2.po b/applications/luci-app-vnstat2/po/el/vnstat2.po new file mode 100644 index 0000000000..68bc4b7114 --- /dev/null +++ b/applications/luci-app-vnstat2/po/el/vnstat2.po @@ -0,0 +1,134 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-03-14 19:36+0000\n" +"Last-Translator: lamprakis <lamprakisa@yahoo.gr>\n" +"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/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.0-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "Ακύρωση" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Διαμόρφωση" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "Γραφικές παραστάσεις" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "Διεπαφή" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/en/vnstat2.po b/applications/luci-app-vnstat2/po/en/vnstat2.po new file mode 100644 index 0000000000..c9a5f6c0ea --- /dev/null +++ b/applications/luci-app-vnstat2/po/en/vnstat2.po @@ -0,0 +1,128 @@ +msgid "" +msgstr "" +"Language: en\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/es/vnstat2.po b/applications/luci-app-vnstat2/po/es/vnstat2.po new file mode 100644 index 0000000000..8d30ef2d92 --- /dev/null +++ b/applications/luci-app-vnstat2/po/es/vnstat2.po @@ -0,0 +1,147 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2020-05-02 15:56+0000\n" +"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/es/>\n" +"Language: es\n" +"MIME-Version: 1.0\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.1-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "5 minutos" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "Cancelar" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Configuración" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "Diariamente" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "Eliminar" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "Eliminar interfaz <em>%h</em>" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "Eliminar…" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "Conceder acceso a la aplicación vnstat2 de LuCI" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "Gráficos" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "Cada hora" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "Interfaz" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "Interfaces" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "Cargando gráficos…" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "Monitorear interfaces" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "Mensual" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" +"No se han encontrado interfaces monitoreadas. Vaya a la configuración para " +"activar el monitoreo de una o más interfaces." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "No se encontraron interfaces no configuradas en la base de datos." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "Resumen" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" +"La interfaz se eliminará de la base de datos de forma permanente. Esto no se " +"puede deshacer." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" +"Las interfaces seleccionadas se agregan automáticamente a la base de datos " +"vnStat al inicio." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" +"Estas interfaces están presentes en la base de datos vnStat, pero no fueron " +"configuradas anteriormente." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "Más alto" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "Interfaces no configuradas" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "Anual" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "vnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "Gráficos vnStat" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "Monitor de tráfico vnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" +"vnStat es un monitor de tráfico de red para Linux que mantiene un registro " +"del tráfico de red para las interfaces seleccionadas." diff --git a/applications/luci-app-vnstat2/po/fi/vnstat2.po b/applications/luci-app-vnstat2/po/fi/vnstat2.po new file mode 100644 index 0000000000..467a7c71dd --- /dev/null +++ b/applications/luci-app-vnstat2/po/fi/vnstat2.po @@ -0,0 +1,134 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-02 06:41+0000\n" +"Last-Translator: Petri Asikainen <uniluodossa@gmail.com>\n" +"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/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.1-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "Peruuta" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Määritys" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "Poista" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "Kuvaajat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "Sovitin" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "Sovittimet" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "Valvo sovittimia" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/fr/vnstat2.po b/applications/luci-app-vnstat2/po/fr/vnstat2.po new file mode 100644 index 0000000000..03318e414a --- /dev/null +++ b/applications/luci-app-vnstat2/po/fr/vnstat2.po @@ -0,0 +1,144 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-04-28 13:41+0000\n" +"Last-Translator: viking76 <liaudetgael@gmail.com>\n" +"Language-Team: French <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/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.0.2\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "5 minutes" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "Annuler" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Configuration" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "Journalier" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "Effacer" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "Supprimer l’interface <em>%h</em>" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "Supprimer…" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "Graphique" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "Horaire" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "Interface" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "Interfaces" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "Chargement des graphiques…" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "Surveiller les interfaces" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "Mensuel" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" +"Aucune interface surveillée n'a été trouvée. Allez dans la configuration " +"pour activer la surveillance d'une ou plusieurs interfaces." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "Aucune interface non configurée trouvée dans la base de données." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "Résumé" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" +"L'interface sera définitivement supprimée de la base de données. Ça ne peut " +"pas être annulé." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" +"Les interfaces sélectionnées sont automatiquement ajoutées à la base de " +"données vnStat au démarrage." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" +"Ces interfaces sont présentes dans la base de données vnStat, mais ne sont " +"pas configurées ci-dessus." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "Top" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "Interfaces non configurées" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "Annuel" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "VnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "Graphiques VnStat" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "Surveillance du trafic VnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" +"VnStat est un outil de surveillance du réseau pour Linux qui garde un " +"journal du trafic du ou des interface(s) sélectionnée(s)." diff --git a/applications/luci-app-vnstat2/po/he/vnstat2.po b/applications/luci-app-vnstat2/po/he/vnstat2.po new file mode 100644 index 0000000000..677adfbbf4 --- /dev/null +++ b/applications/luci-app-vnstat2/po/he/vnstat2.po @@ -0,0 +1,128 @@ +msgid "" +msgstr "" +"Language: he\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/hi/vnstat2.po b/applications/luci-app-vnstat2/po/hi/vnstat2.po new file mode 100644 index 0000000000..176775f84f --- /dev/null +++ b/applications/luci-app-vnstat2/po/hi/vnstat2.po @@ -0,0 +1,128 @@ +msgid "" +msgstr "" +"Language: hi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/hu/vnstat2.po b/applications/luci-app-vnstat2/po/hu/vnstat2.po new file mode 100644 index 0000000000..283f64bfe8 --- /dev/null +++ b/applications/luci-app-vnstat2/po/hu/vnstat2.po @@ -0,0 +1,144 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-03-31 13:27+0000\n" +"Last-Translator: Tamas Szanto <taszanto@gmail.com>\n" +"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/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.0-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "5 perc" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "Mégse" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Beállítás" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "Napi" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "Törlés" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "A(z) <em>%h</em> csatoló törlése" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "Törlés…" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "Grafikonok" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "Óránként" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "Csatoló" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "Csatolók" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "Grafikonok betöltése…" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "Csatolók megfigyelése" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "Havi" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" +"Nem találhatók megfigyelt csatolók. Menjen a beállításokhoz egy vagy több " +"csatoló megfigyelésének engedélyezéséhez." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "Nem találhatók beállítatlan csatolók az adatbázisban." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "Összegzés" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" +"A csatoló véglegesen el lesz távolítva az adatbázisból. Ezt nem lehet " +"visszavonni." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" +"A kiválasztott csatolók automatikusan hozzá lesznek adva indításkor a vnStat " +"adatbázishoz." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" +"Ezek a csatolók jelen vannak a vnStat adatbázisban, de nincsenek beállítva " +"fent." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "Legtöbb" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "Beállítatlan csatolók" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "Évente" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "vnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "vnStat grafikonok" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "vnStat forgalom-megfigyelő" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" +"A vnStat egy hálózatiforgalom-megfigyelő a Linuxhoz, amely megtartja a " +"kiválasztott csatolók hálózati forgalmának naplóját." diff --git a/applications/luci-app-vnstat2/po/it/vnstat2.po b/applications/luci-app-vnstat2/po/it/vnstat2.po new file mode 100644 index 0000000000..8a85316a62 --- /dev/null +++ b/applications/luci-app-vnstat2/po/it/vnstat2.po @@ -0,0 +1,134 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-03-05 08:07+0000\n" +"Last-Translator: TuxAlex0 <alex.skatingcassano@gmail.com>\n" +"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/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.0-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "Annulla" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Configurazione" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "Elimina" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "Interfaccia" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "Interfacce" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/ja/vnstat2.po b/applications/luci-app-vnstat2/po/ja/vnstat2.po new file mode 100644 index 0000000000..cf58f9053d --- /dev/null +++ b/applications/luci-app-vnstat2/po/ja/vnstat2.po @@ -0,0 +1,134 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-27 14:41+0000\n" +"Last-Translator: INAGAKI Hiroshi <musashino.open@gmail.com>\n" +"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/ja/>\n" +"Language: ja\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.2-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "5 分" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "キャンセル" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "設定" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "1日" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "削除" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "インターフェース <em>%h</em> を削除" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "削除…" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "LuCI アプリ vnstat2 へのアクセスを許可" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "グラフ" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "1時間" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "インターフェース" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "インターフェース" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "グラフを読み込み中…" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "監視するインターフェース" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "1か月" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "監視対象のインターフェースが見つかりませんでした。 設定に移動して、1つ以上のインターフェースの監視を有効にします。" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "データベースに未構成のインターフェースが見つかりません。" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "要約" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "インターフェースはデータベースから完全に削除されます。 これは、元に戻すことはできません。" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "選択したインターフェースは、始動時に vnStat データベースに自動的に追加されます。" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "これらのインターフェースは vnStat データベースに存在しますが、上記では構成されていません。" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "トップ" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "未構成のインターフェース" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "1年" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "vnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "vnStat グラフ" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "vnStat トラフィック・モニター" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "vnStat は、選択したインターフェースのネットワーク・トラフィックのログを保持する Linux のネットワーク・トラフィックモニターです。" diff --git a/applications/luci-app-vnstat2/po/ko/vnstat2.po b/applications/luci-app-vnstat2/po/ko/vnstat2.po new file mode 100644 index 0000000000..c0fa171111 --- /dev/null +++ b/applications/luci-app-vnstat2/po/ko/vnstat2.po @@ -0,0 +1,134 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-07-28 17:55+0000\n" +"Last-Translator: TheNoFace <fprhqkrtk303@naver.com>\n" +"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/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.2-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "취소" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "설정" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "인터페이스" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/mr/vnstat2.po b/applications/luci-app-vnstat2/po/mr/vnstat2.po new file mode 100644 index 0000000000..d655a7c55a --- /dev/null +++ b/applications/luci-app-vnstat2/po/mr/vnstat2.po @@ -0,0 +1,138 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-02-12 11:01+0000\n" +"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n" +"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/mr/>\n" +"Language: mr\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 3.11-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "5 मिनिटे" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "रद्द करा" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "कॉन्फिगरेशन" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "दररोज" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "हटवा" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "इंटरफेस <em>%h </em> हटवा" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "हटवा…" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "आलेख" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "ताशी" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "इंटरफेस" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "इंटरफेसेस" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "आलेख लोड करीत आहे…" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "इंटरफेसचे निरीक्षण करा" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "मासिक" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" +"कोणतेही परीक्षण केलेले इंटरफेस आढळले नाहीत. एक किंवा अधिक इंटरफेससाठी देखरेख सक्षम " +"करण्यासाठी कॉन्फिगरेशनवर जा." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "डेटाबेसमध्ये कोणतेही कॉन्फिगर केलेले इंटरफेस आढळले नाहीत." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "सारांश" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "इंटरफेस डेटाबेसमधून कायमचा काढून टाकला जाईल. हे पूर्ववत केले जाऊ शकत नाही." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "निवडलेले इंटरफेस स्वयंचलितपणे स्टार्टअपनंतर vnStat डेटाबेसमध्ये समाविष्ट केले जातात." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "हे इंटरफेस vnStat डेटाबेसमध्ये उपलब्ध आहेत, परंतु वर कॉन्फिगर केलेले नाहीत." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "शीर्ष" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "कॉन्फिगर न केलेले इंटरफेस" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "वार्षिक" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "vnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "vnStat आलेख" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "vnStat वाहतूक निरीक्षण" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" +"लिनक्सचे vnStat नेटवर्क ट्रॅफिक मॉनिटर आहे जे निवडलेल्या इंटरफेससाठी नेटवर्क ट्रॅफिकचा लॉग " +"ठेवते ." diff --git a/applications/luci-app-vnstat2/po/ms/vnstat2.po b/applications/luci-app-vnstat2/po/ms/vnstat2.po new file mode 100644 index 0000000000..3ecd6dda9b --- /dev/null +++ b/applications/luci-app-vnstat2/po/ms/vnstat2.po @@ -0,0 +1,128 @@ +msgid "" +msgstr "" +"Language: ms\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/nb_NO/vnstat2.po b/applications/luci-app-vnstat2/po/nb_NO/vnstat2.po new file mode 100644 index 0000000000..2d8580857e --- /dev/null +++ b/applications/luci-app-vnstat2/po/nb_NO/vnstat2.po @@ -0,0 +1,128 @@ +msgid "" +msgstr "" +"Language: no\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/pl/vnstat2.po b/applications/luci-app-vnstat2/po/pl/vnstat2.po new file mode 100644 index 0000000000..5fdadfee03 --- /dev/null +++ b/applications/luci-app-vnstat2/po/pl/vnstat2.po @@ -0,0 +1,144 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-05-02 15:56+0000\n" +"Last-Translator: Marcin Net <marcin.net@linux.pl>\n" +"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/pl/>\n" +"Language: pl\n" +"Content-Type: text/plain; charset=UTF-8\n" +"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.1-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "5 minut" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "Anuluj" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Konfiguracja" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "Codziennie" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "Usuń" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "Usuń interfejs <em>%h</em>" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "Usuwanie…" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "Udziel dostępu LuCI do aplikacji vnstat2" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "Wykresy" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "Co godzinę" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "Interfejs" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "Interfejsy" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "Ładowanie wykresów…" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "Monitoruj interfejsy" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "Co miesiąc" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" +"Nie znaleziono monitorowanych interfejsów. Przejdź do konfiguracji, aby " +"włączyć monitorowanie jednego lub więcej interfejsów." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "W bazie danych nie znaleziono nieskonfigurowanych interfejsów." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "Podsumowanie" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" +"Interfejs zostanie trwale usunięty z bazy danych. Tego nie da się cofnąć." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" +"Wybrane interfejsy są automatycznie dodawane do bazy danych vnStat podczas " +"uruchamiania." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" +"Te interfejsy są obecne w bazie danych vnStat, ale nie zostały " +"skonfigurowane powyżej." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "Top" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "Nieskonfigurowane interfejsy" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "Rocznie" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "vnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "Wykresy vnStat" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "Monitor ruchu vnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" +"vnStat to monitor ruchu sieciowego dla systemu Linux, który prowadzi " +"dziennik ruchu sieciowego dla wybranych interfejsów." diff --git a/applications/luci-app-vnstat2/po/pt/vnstat2.po b/applications/luci-app-vnstat2/po/pt/vnstat2.po new file mode 100644 index 0000000000..1090d612b1 --- /dev/null +++ b/applications/luci-app-vnstat2/po/pt/vnstat2.po @@ -0,0 +1,144 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-05-03 18:57+0000\n" +"Last-Translator: ssantos <ssantos@web.de>\n" +"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/pt/>\n" +"Language: pt\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.1-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "5 minutos" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "Cancelar" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Configuração" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "Diário" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "Apagar" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "Apagar interface <em>%h</em>" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "Apagar…" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "Conceder acesso ao app LuCI vnstat2" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "Gráficos" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "Horário" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "Interface" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "Interfaces" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "Carregando gráficos…" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "Monitorar interfaces" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "Mensal" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" +"Não foram encontradas interfaces monitorizadas. Vá para a configuração para " +"ativar o monitoramento de uma ou mais interfaces." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "Não se encontram interfaces não configuradas na base de dados." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "Resumo" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" +"A interface será permanentemente removida da base de dados. Isto não pode " +"ser desfeito." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" +"As interfaces selecionadas são automaticamente adicionadas à base de dados " +"vnStat no momento da inicialização." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" +"Estas interfaces estão presentes na base de dados vnStat, mas não estão " +"configuradas acima." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "Início" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "Interfaces não configuradas" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "Anual" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "vnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "Gráficos vnStat" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "Monitor de Tráfego vnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" +"O vnStat é um monitor de tráfego de rede para Linux que mantém um registo de " +"tráfego de rede para a(s) interface(s) selecionada(s)." diff --git a/applications/luci-app-vnstat2/po/pt_BR/vnstat2.po b/applications/luci-app-vnstat2/po/pt_BR/vnstat2.po new file mode 100644 index 0000000000..ab69355684 --- /dev/null +++ b/applications/luci-app-vnstat2/po/pt_BR/vnstat2.po @@ -0,0 +1,144 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-05-02 15:56+0000\n" +"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" +"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsvnstat2/pt_BR/>\n" +"Language: pt_BR\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.1-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "5 Minutos" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "Cancelar" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Configuração" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "Diário" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "Apagar" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "Exclua a interface <em>%h</em>" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "Excluir…" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "Conceder acesso ao aplicativo LuCI vnstat2" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "Gráficos" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "Por hora" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "Interface" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "Interfaces" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "Carregando gráficos…" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "Monitorar interfaces" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "Mensal" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" +"Não foram encontradas interfaces monitoradas. Vá para a configuração para " +"ativar o monitoramento de uma ou mais interfaces." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "Não há interfaces não configuradas encontradas no banco de dados." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "Resumo" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" +"A interface será removida do banco de dados permanentemente. Isso não pode " +"ser desfeito." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" +"As interfaces selecionadas são automaticamente adicionadas ao banco de dados " +"vnStat durante a inicialização." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" +"Essas interfaces estão presentes no banco de dados vnStat, mas não estão " +"configuradas acima." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "Topo" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "Interfaces não configuradas" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "Anual" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "vnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "Gráficos vnStat" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "Monitor de Tráfego vnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" +"O VnStat é um monitor de tráfego de rede para o Linux que mantém um registro " +"de tráfego de rede para as interfaces selecionadas." diff --git a/applications/luci-app-vnstat2/po/ro/vnstat2.po b/applications/luci-app-vnstat2/po/ro/vnstat2.po new file mode 100644 index 0000000000..6693aabf5d --- /dev/null +++ b/applications/luci-app-vnstat2/po/ro/vnstat2.po @@ -0,0 +1,135 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-04-13 14:11+0000\n" +"Last-Translator: Danut Vornicu <ovisadang@yahoo.com>\n" +"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/ro/>\n" +"Language: ro\n" +"Content-Type: text/plain; charset=UTF-8\n" +"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.0-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "Renunțare" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Configurare" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "Grafice" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "Interfață" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/ru/vnstat2.po b/applications/luci-app-vnstat2/po/ru/vnstat2.po new file mode 100644 index 0000000000..fdd55973ed --- /dev/null +++ b/applications/luci-app-vnstat2/po/ru/vnstat2.po @@ -0,0 +1,144 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-07-04 17:41+0000\n" +"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n" +"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/ru/>\n" +"Language: ru\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.2-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "По 5 минут" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "Отмена" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Конфигурация" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "По дням" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "Удалить" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "Удалить интерфейс <em>%h</em>" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "Удалить…" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "Предоставить доступ LuCI к приложению vnstat2" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "Графики" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "По часам" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "Интерфейс" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "Интерфейсы" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "Загрузка графиков…" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "Мониторить интерфейсы" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "По месяцам" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" +"Не найдено ни одного наблюдаемого интерфейса. Перейдите к конфигурации, " +"чтобы включить мониторинг для одного или нескольких интерфейсов." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "В базе данных не найдено несконфигурированных интерфейсов." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "Сводка" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" +"Интерфейс будет навсегда удален из базы данных. Это не может быть отменено." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" +"Выбранные интерфейсы автоматически добавляются в базу данных vnStat при " +"запуске." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" +"Эти интерфейсы присутствуют в базе данных vnStat, но не сконфигурированы " +"выше." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "Максимум" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "Несконфигурированные интерфейсы" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "По годам" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "vnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "Графики vnStat" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "Монитор трафика vnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" +"vnStat — это монитор сетевого трафика для Linux, который ведёт журнал " +"сетевого трафика для выбранного(ых) интерфейса(ов)." diff --git a/applications/luci-app-vnstat2/po/sk/vnstat2.po b/applications/luci-app-vnstat2/po/sk/vnstat2.po new file mode 100644 index 0000000000..a5509bb1c6 --- /dev/null +++ b/applications/luci-app-vnstat2/po/sk/vnstat2.po @@ -0,0 +1,134 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-04-04 17:35+0000\n" +"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n" +"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/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.0-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "Zrušiť" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Konfigurácia" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "Odstrániť" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "Rozhranie" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "Rozhrania" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/sv/vnstat2.po b/applications/luci-app-vnstat2/po/sv/vnstat2.po new file mode 100644 index 0000000000..f708b515bf --- /dev/null +++ b/applications/luci-app-vnstat2/po/sv/vnstat2.po @@ -0,0 +1,128 @@ +msgid "" +msgstr "" +"Language: sv\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/templates/vnstat2.pot b/applications/luci-app-vnstat2/po/templates/vnstat2.pot new file mode 100644 index 0000000000..79588df2ef --- /dev/null +++ b/applications/luci-app-vnstat2/po/templates/vnstat2.pot @@ -0,0 +1,125 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/tr/vnstat2.po b/applications/luci-app-vnstat2/po/tr/vnstat2.po new file mode 100644 index 0000000000..a78f3f619e --- /dev/null +++ b/applications/luci-app-vnstat2/po/tr/vnstat2.po @@ -0,0 +1,134 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-07-22 02:42+0000\n" +"Last-Translator: tentena <thetentena@gmail.com>\n" +"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/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.2-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "İptal" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/uk/vnstat2.po b/applications/luci-app-vnstat2/po/uk/vnstat2.po new file mode 100644 index 0000000000..357606b3f7 --- /dev/null +++ b/applications/luci-app-vnstat2/po/uk/vnstat2.po @@ -0,0 +1,137 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-03-11 01:51+0000\n" +"Last-Translator: Olexandr Nesterenko <olexn@ukr.net>\n" +"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsvnstat2/uk/>\n" +"Language: uk\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.0-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "Скасувати" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "Конфігурація" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "Видалити" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "Видалити інтерфейс <em>%h</em>" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "Видалити…" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "Графіки" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "Інтерфейс" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "Інтерфейси" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "Завантаження графіків…" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "Спостерігати за інтерфейсами" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" +"Не знайдено жодного інтерфейсу для спостерігання. Перейдіть до конфігурації, " +"аби увімкнути спостерігання для одного чи декількох інтерфейсів." + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "Підсумок" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/vi/vnstat2.po b/applications/luci-app-vnstat2/po/vi/vnstat2.po new file mode 100644 index 0000000000..823ca80681 --- /dev/null +++ b/applications/luci-app-vnstat2/po/vi/vnstat2.po @@ -0,0 +1,128 @@ +msgid "" +msgstr "" +"Language: vi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/zh_Hans/vnstat2.po b/applications/luci-app-vnstat2/po/zh_Hans/vnstat2.po new file mode 100644 index 0000000000..383230bc0a --- /dev/null +++ b/applications/luci-app-vnstat2/po/zh_Hans/vnstat2.po @@ -0,0 +1,134 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-09-08 01:50+0000\n" +"Last-Translator: PassWall-OpenWrt <chanwang@yandex.com>\n" +"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsvnstat2/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.3-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "5 分钟" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "取消" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "配置" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "按日" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "删除" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "接口" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "接口" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "按年" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "" diff --git a/applications/luci-app-vnstat2/po/zh_Hant/vnstat2.po b/applications/luci-app-vnstat2/po/zh_Hant/vnstat2.po new file mode 100644 index 0000000000..c453424fe0 --- /dev/null +++ b/applications/luci-app-vnstat2/po/zh_Hant/vnstat2.po @@ -0,0 +1,134 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-06-28 19:19+0000\n" +"Last-Translator: Hulen <shift0106@gmail.com>\n" +"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsvnstat2/zh_Hant/>\n" +"Language: zh_Hant\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.2-dev\n" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:57 +msgid "5 Minute" +msgstr "5 分鐘" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:21 +msgid "Cancel" +msgstr "取消" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:27 +msgid "Configuration" +msgstr "設定" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:59 +msgid "Daily" +msgstr "每天" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:26 +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:82 +msgid "Delete" +msgstr "刪除" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:15 +msgid "Delete interface <em>%h</em>" +msgstr "刪除介面 <em>%h</em>" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:95 +msgid "Delete…" +msgstr "刪除…" + +#: applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json:3 +msgid "Grant access to LuCI app vnstat2" +msgstr "" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:18 +msgid "Graphs" +msgstr "圖表" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:58 +msgid "Hourly" +msgstr "每小時" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:81 +msgid "Interface" +msgstr "介面" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:45 +msgid "Interfaces" +msgstr "介面" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:15 +msgid "Loading graphs…" +msgstr "載入圖表…" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "Monitor interfaces" +msgstr "監測介面" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:60 +msgid "Monthly" +msgstr "每月" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:62 +msgid "" +"No monitored interfaces have been found. Go to the configuration to enable " +"monitoring for one or more interfaces." +msgstr "發現未監控的介面。請到設定啟用對一或多個介面的監控。" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:99 +msgid "No unconfigured interfaces found in database." +msgstr "資料庫中沒有未設定的介面。" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:55 +msgid "Summary" +msgstr "摘要" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:16 +msgid "" +"The interface will be removed from the database permanently. This cannot be " +"undone." +msgstr "此介面會從資料庫永久移除。這個動作不能恢復。" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:49 +msgid "" +"The selected interfaces are automatically added to the vnStat database upon " +"startup." +msgstr "選取的介面會在啟動時自動加到 vnStat 資料庫。" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:104 +msgid "" +"These interfaces are present in the vnStat database, but are not configured " +"above." +msgstr "這些介面已存在 vnStat 資料庫中,但沒有在上列設定。" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:56 +msgid "Top" +msgstr "" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:102 +msgid "Unconfigured interfaces" +msgstr "未設定的介面" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:61 +msgid "Yearly" +msgstr "每年" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "vnStat" +msgstr "vnStat" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/graphs.js:53 +msgid "vnStat Graphs" +msgstr "vnStat 圖表" + +#: applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json:3 +msgid "vnStat Traffic Monitor" +msgstr "vnStat 流量監控器" + +#: applications/luci-app-vnstat2/htdocs/luci-static/resources/view/vnstat2/config.js:43 +msgid "" +"vnStat is a network traffic monitor for Linux that keeps a log of network " +"traffic for the selected interface(s)." +msgstr "vnStat 是 Linux 的網路流量監控器,會保留選取介面的網路流量紀錄。" diff --git a/applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json b/applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json new file mode 100644 index 0000000000..4aa9dd2aa0 --- /dev/null +++ b/applications/luci-app-vnstat2/root/usr/share/luci/menu.d/luci-app-vnstat2.json @@ -0,0 +1,34 @@ +{ + "admin/status/vnstat2": { + "title": "vnStat Traffic Monitor", + "order": 90, + "action": { + "type": "firstchild" + }, + "depends": { + "acl": [ "luci-app-vnstat2" ], + "fs": { + "/usr/bin/vnstat": "executable", + "/usr/bin/vnstati": "executable" + } + } + }, + + "admin/status/vnstat2/graphs": { + "title": "Graphs", + "order": 1, + "action": { + "type": "view", + "path": "vnstat2/graphs" + } + }, + + "admin/status/vnstat2/config": { + "title": "Configuration", + "order": 2, + "action": { + "type": "view", + "path": "vnstat2/config" + } + } +} diff --git a/applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json b/applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json new file mode 100644 index 0000000000..7acf74bd59 --- /dev/null +++ b/applications/luci-app-vnstat2/root/usr/share/rpcd/acl.d/luci-app-vnstat2.json @@ -0,0 +1,20 @@ +{ + "luci-app-vnstat2": { + "description": "Grant access to LuCI app vnstat2", + "read": { + "cgi-io": [ "exec" ], + "file": { + "/usr/bin/vnstat --json f 1": [ "exec" ], + "/usr/bin/vnstati -[5dhmsty] -i * -o -": [ "exec" ] + }, + "uci": [ "vnstat" ] + }, + "write": { + "file": { + "/usr/bin/vnstat": [ "exec" ] + }, + "uci": [ "vnstat" ] + } + } +} + |