mirror of
https://github.com/openwrt/luci
synced 2025-01-08 12:08:04 +08:00
luci-app-vnstat: drop lua app (prefer luci-app-vnstat2)
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
This commit is contained in:
parent
65c86ed324
commit
7c582f150e
@ -1,17 +0,0 @@
|
||||
#
|
||||
# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org>
|
||||
#
|
||||
# This is free software, licensed under the Apache License, Version 2.0 .
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=LuCI Support for VnStat
|
||||
LUCI_DEPENDS:=+luci-base +luci-compat +vnstat +vnstati
|
||||
|
||||
PKG_LICENSE:=Apache-2.0
|
||||
PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
|
||||
|
||||
include ../../luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
@ -1,82 +0,0 @@
|
||||
-- Copyright 2010-2011 Jo-Philipp Wich <jow@openwrt.org>
|
||||
-- Licensed to the public under the Apache License 2.0.
|
||||
|
||||
local utl = require "luci.util"
|
||||
local sys = require "luci.sys"
|
||||
local fs = require "nixio.fs"
|
||||
local nw = require "luci.model.network"
|
||||
|
||||
local dbdir, line
|
||||
|
||||
for line in io.lines("/etc/vnstat.conf") do
|
||||
dbdir = line:match("^%s*DatabaseDir%s+[\"'](%S-)[\"']")
|
||||
if dbdir then break end
|
||||
end
|
||||
|
||||
dbdir = dbdir or "/var/lib/vnstat"
|
||||
|
||||
|
||||
m = Map("vnstat", translate("VnStat"),
|
||||
translate("VnStat is a network traffic monitor for Linux that keeps a log of network traffic for the selected interface(s)."))
|
||||
|
||||
m.submit = translate("Restart VnStat")
|
||||
m.reset = false
|
||||
|
||||
nw.init(luci.model.uci.cursor_state())
|
||||
|
||||
local ifaces = { }
|
||||
local enabled = { }
|
||||
local iface
|
||||
|
||||
if fs.access(dbdir) then
|
||||
for iface in fs.dir(dbdir) do
|
||||
if iface:sub(1,1) ~= '.' then
|
||||
ifaces[iface] = iface
|
||||
enabled[iface] = iface
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
for _, iface in ipairs(sys.net.devices()) do
|
||||
ifaces[iface] = iface
|
||||
end
|
||||
|
||||
|
||||
local s = m:section(TypedSection, "vnstat")
|
||||
s.anonymous = true
|
||||
s.addremove = false
|
||||
|
||||
mon_ifaces = s:option(Value, "interface", translate("Monitor selected interfaces"))
|
||||
mon_ifaces.template = "cbi/network_ifacelist"
|
||||
mon_ifaces.widget = "checkbox"
|
||||
mon_ifaces.cast = "table"
|
||||
mon_ifaces.noinactive = true
|
||||
mon_ifaces.nocreate = true
|
||||
|
||||
function mon_ifaces.write(self, section, val)
|
||||
local i
|
||||
local s = { }
|
||||
|
||||
if val then
|
||||
for _, i in ipairs(type(val) == "table" and val or { val }) do
|
||||
s[i] = true
|
||||
end
|
||||
end
|
||||
|
||||
for i, _ in pairs(ifaces) do
|
||||
if not s[i] then
|
||||
fs.unlink(dbdir .. "/" .. i)
|
||||
fs.unlink(dbdir .. "/." .. i)
|
||||
end
|
||||
end
|
||||
|
||||
if next(s) then
|
||||
m.uci:set_list("vnstat", section, "interface", utl.keys(s))
|
||||
else
|
||||
m.uci:delete("vnstat", section, "interface")
|
||||
end
|
||||
end
|
||||
|
||||
mon_ifaces.remove = mon_ifaces.write
|
||||
|
||||
return m
|
@ -1,102 +0,0 @@
|
||||
<%#
|
||||
Copyright 2010 Jo-Philipp Wich <jow@openwrt.org>
|
||||
Licensed to the public under the Apache License 2.0.
|
||||
-%>
|
||||
|
||||
<%-
|
||||
|
||||
local fs = require "nixio.fs"
|
||||
local sys = require "luci.sys"
|
||||
local utl = require "luci.util"
|
||||
|
||||
local param = luci.http.formvalue
|
||||
|
||||
local iface = param("iface")
|
||||
local style = param("style")
|
||||
|
||||
style = (style and #style > 0) and style or "s"
|
||||
|
||||
|
||||
--
|
||||
-- render image
|
||||
--
|
||||
if iface then
|
||||
luci.http.prepare_content("image/png")
|
||||
|
||||
local png = io.popen("vnstati -i %s -%s -o -" %{
|
||||
utl.shellquote(iface),
|
||||
utl.shellquote(style)
|
||||
})
|
||||
|
||||
luci.http.write(png:read("*a"))
|
||||
png:close()
|
||||
|
||||
return
|
||||
|
||||
--
|
||||
-- update database
|
||||
--
|
||||
else
|
||||
sys.call("vnstat -u >/dev/null 2>/dev/null")
|
||||
end
|
||||
|
||||
|
||||
--
|
||||
-- find databases
|
||||
--
|
||||
local dbdir, line
|
||||
|
||||
for line in io.lines("/etc/vnstat.conf") do
|
||||
dbdir = line:match("^%s*DatabaseDir%s+[\"'](%S-)[\"']")
|
||||
if dbdir then break end
|
||||
end
|
||||
|
||||
dbdir = dbdir or "/var/lib/vnstat"
|
||||
|
||||
-%>
|
||||
|
||||
<%+header%>
|
||||
|
||||
<h2 name="content"><%:VnStat Graphs%></h2>
|
||||
|
||||
<form action="" method="get">
|
||||
|
||||
<select name="style">
|
||||
<option value="s"<%=(style == "s") and ' selected="selected"' or ''%>><%:Summary display%></option>
|
||||
<option value="t"<%=(style == "t") and ' selected="selected"' or ''%>><%:Top 10 display%></option>
|
||||
<option value="h"<%=(style == "h") and ' selected="selected"' or ''%>><%:Hourly traffic%></option>
|
||||
<option value="d"<%=(style == "d") and ' selected="selected"' or ''%>><%:Daily traffic%></option>
|
||||
<option value="m"<%=(style == "m") and ' selected="selected"' or ''%>><%:Monthly traffic%></option>
|
||||
</select>
|
||||
|
||||
<input type="submit" value="<%:Update »%>" />
|
||||
|
||||
</form>
|
||||
|
||||
<br /><hr /><br />
|
||||
|
||||
<div style="text-align:center">
|
||||
<%
|
||||
empty = true
|
||||
ifdir = fs.dir(dbdir)
|
||||
|
||||
if ifdir then
|
||||
for iface in ifdir do
|
||||
if iface:sub(1,1) ~= "." then
|
||||
empty = false
|
||||
%>
|
||||
<img src="<%=REQUEST_URI%>?iface=<%=iface%>&style=<%=param('style')%>" alt="" />
|
||||
<br /><br />
|
||||
<%
|
||||
end
|
||||
end
|
||||
end
|
||||
%>
|
||||
|
||||
<% if empty then %>
|
||||
<p><em><%:No database has been set up yet. Go to the VnStat configuration and enable monitoring for one or more interfaces.%></em></p>
|
||||
<% end %>
|
||||
|
||||
</div>
|
||||
|
||||
<%+footer%>
|
@ -1,82 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-07-16 16:41+0000\n"
|
||||
"Last-Translator: Rex_sa <rex.sa@pm.me>\n"
|
||||
"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/ar/>\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\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 5.7-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "التكوين"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
@ -1,81 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2021-08-26 11:44+0000\n"
|
||||
"Last-Translator: Iskren Mihaylov <iskren.mihaylov91@gmail.com>\n"
|
||||
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/bg/>\n"
|
||||
"Language: bg\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.8.1-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Конфигурация"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
@ -1,81 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2021-10-08 17:53+0000\n"
|
||||
"Last-Translator: Rayhan Nabi <rayhanjanam@gmail.com>\n"
|
||||
"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/luciapplicationsvnstat/bn_BD/>\n"
|
||||
"Language: bn_BD\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.9-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "কনফিগারেশন"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
@ -1,84 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2014-06-09 07:13+0200\n"
|
||||
"Last-Translator: Alex <alexhenrie24@gmail.com>\n"
|
||||
"Language-Team: German\n"
|
||||
"Language: ca\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: Pootle 2.0.6\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Configuració"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Trànsit diari"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Gràfics"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Trànsit per hora"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Vigila les interfícies seleccionades"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Trànsit mensual"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Encara no s'ha configurat cap base de dades. Aneu a la configuració del "
|
||||
"VnStat i habilita la vigila de una o més interfícies."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Reinicia el VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Mostra de resum"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Mostra dels 10 principals"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Actualitza »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Gràfics de VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "Monitor de trànsit VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"El VnStat és un monitor de trànsit de xarxa pel Linux que manté un registre "
|
||||
"del trànsit de xarxa de les interfícies seleccionades."
|
@ -1,88 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2023-09-16 13:28+0000\n"
|
||||
"Last-Translator: David Rapaň <david@rapan.cz>\n"
|
||||
"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/cs/>\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.0.2\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Nastavení"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Denní přenos"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Udělit oprávnění k UCI pro luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Grafy"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Hodinový přenos"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Sledovat vybraná zařízení"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Měsíční přenos"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Zatím nebyla nastavena žádná databáze. Přejděte na konfiguraci VnStatu a "
|
||||
"povolnet sledování jednoho nebo více zařízení."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Restartovat VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Souhrn"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Top 10"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Aktualizovat »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Grafy VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "Sledování přenosu VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"VnStat je nástroj pro sledování přenosů dat pro Linux, který ukládá "
|
||||
"informace o síťovém provozu na vybraných zařízeních."
|
||||
|
||||
#~ msgid "The VnStat service has been restarted."
|
||||
#~ msgstr "Služba VnStat byla restartována"
|
@ -1,85 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2021-11-07 20:19+0000\n"
|
||||
"Last-Translator: drax red <drax@outlook.dk>\n"
|
||||
"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/da/>\n"
|
||||
"Language: da\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.9-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguration"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Daglig trafik"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Giv UCI-adgang til luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Grafer"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Timetrafik"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Overvåg udvalgte interfaces"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Månedlig trafik"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Der er ikke oprettet nogen database endnu. Gå til VnStat-konfigurationen og "
|
||||
"aktiver overvågning for en eller flere interfaces."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Genstart VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Oversigtsvisning"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Top 10 visning"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Opdater »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "VnStat-grafer"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "VnStat Trafikmonitor"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"VnStat er en netværkstrafikmonitor til Linux, der fører en log over "
|
||||
"netværkstrafikken for den eller de valgte interface(s)."
|
@ -1,90 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2020-07-11 21:29+0000\n"
|
||||
"Last-Translator: ssantos <ssantos@web.de>\n"
|
||||
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/de/>\n"
|
||||
"Language: de\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.2-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguration"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Täglicher Verkehr"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Gewähre UCI Zugriff auf luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Diagramme"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Stündlicher Verkehr"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Überwachte Schnittstellen"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Monatlicher Verkehr"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Es ist noch keine Datenbank eingerichtet. Navigieren Sie zur VnStat "
|
||||
"Konfiguration und aktivieren Sie die Überwachung einer oder mehrerer "
|
||||
"Schnittstellen."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "VnStat neu starten"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Übersicht"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Top 10 Anzeige"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Aktualisieren »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "VnStat Diagramme"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "VnStat Trafficüberwachung"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"VnStat ist ein Überwachungsprogramm für Netwerkverkehr unter Linux. Das "
|
||||
"Programm protokolliert das Verkehrsvolumen auf ausgewählten Schnittstellen."
|
||||
|
||||
#~ msgid "The VnStat service has been restarted."
|
||||
#~ msgstr "Der VnStat Dienst wurde neu gestartet."
|
@ -1,86 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2020-12-01 16:16+0000\n"
|
||||
"Last-Translator: Marios Koutsoukis <marioskoutsoukis2006@gmail.com>\n"
|
||||
"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/el/>\n"
|
||||
"Language: el\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.4-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Διαμόρφωση"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Ημερήσια κίνηση"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Παραχωρήστε πρόσβαση UCI στο luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Γραφικές παραστάσεις"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Ωριαία κίνηση"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Παρακολούθηση επιλεγμένων διεπαφών"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Μηνιαία κίνηση"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Δεν έχει δημιουργηθεί ακόμα βάση δεδομένων. Μεταβείτε στη διαμόρφωση του "
|
||||
"VnStat και ενεργοποιήστε την παρακολούθηση για μία ή περισσότερες διεπαφές."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Επανεκκίνηση VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Συνοπτική προβολή"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Εμφάνιση 10 κορυφαίων"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Ενημέρωση »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Γραφική παράσταση VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "Παρακολούθηση κίνησης VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"Το VnStat είναι ένα σύστημα παρακολούθησης της κίνησης δικτύου για το Linux "
|
||||
"το οποίο διατηρεί ένα αρχείο καταγραφής της κίνησης δικτύου για την/τις "
|
||||
"επιλεγμένη/ες διεπαφή/ές."
|
@ -1,89 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2020-05-02 10:21+0000\n"
|
||||
"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
|
||||
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/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-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Tráfico diario"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Conceder acceso UCI para luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Gráficos"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Tráfico por horas"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Monitorear las interfaces seleccionadas"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Tráfico mensual"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Todavía no se ha configurado ninguna base de datos. Vaya a la configuración "
|
||||
"de VnStat y active la monitorización para una o más interfaces."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Reiniciar VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Mostrar resumen"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Mostrar Top 10"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Actualizar »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Graficas de VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "Monitor de trafico de VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
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 trafico de red de la interfaz o interfaces seleccionadas."
|
||||
|
||||
#~ msgid "The VnStat service has been restarted."
|
||||
#~ msgstr "El servicio VnStat ha sido reiniciado"
|
@ -1,83 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2022-03-12 13:29+0000\n"
|
||||
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
|
||||
"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/fi/>\n"
|
||||
"Language: fi\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.12-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Kokoonpano"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Päiväkohtainen liikenne"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Kuvaajat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Tuntikohtainen liikenne"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Monitoroi valittuja sovittimia"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Kuukausikohtainen liikenne"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Tietokantaa ei ole vielä määritetty. Siirry VnStatin määritykseen ja ota "
|
||||
"käyttöön monitorointi yhdelle tai useammalle sovittimelle."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Käynnistä VnStat uudelleen"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Yhteenvetonäyttö"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Top 10 -näyttö"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Päivitä »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "VnStat-graafit"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "VnStat-liikenneseuranta"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
@ -1,88 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2023-06-11 22:11+0000\n"
|
||||
"Last-Translator: viking76 <liaudetgael@gmail.com>\n"
|
||||
"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/fr/>\n"
|
||||
"Language: fr\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.18-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Configuration"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Trafic quotidien"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Accorder l'accès UCI pour luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Graphique"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Trafic horaire"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Surveiller les interfaces sélectionnées"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Trafic mensuel"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Aucun enregistrement n'a encore été configuré. Allez dans la configuration "
|
||||
"de VnStat et activez la surveillance d'une ou plusieurs interface(s)."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Redémarrer VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Résumé"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Top 10"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Mise à jour »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Graphiques VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "Surveillance du trafic VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
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)."
|
||||
|
||||
#~ msgid "The VnStat service has been restarted."
|
||||
#~ msgstr "Le service VnStat a été redémarré."
|
@ -1,86 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-09-04 17:05+0000\n"
|
||||
"Last-Translator: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>\n"
|
||||
"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/ga/>\n"
|
||||
"Language: ga\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :("
|
||||
"n>6 && n<11) ? 3 : 4;\n"
|
||||
"X-Generator: Weblate 5.7.2-rc\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Cumraíocht"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Trácht laethúil"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Deonaigh rochtain UCI do luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Graif"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Trácht in aghaidh na huaire"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Monatóireacht a dhéanamh ar chomhéadain roghnaithe"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Trácht míosúil"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Níl aon bhunachar sonraí socraithe fós. Téigh go dtí an chumraíocht VnStat "
|
||||
"agus cumasaigh monatóireacht le haghaidh comhéadan amháin nó níos mó."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Atosaigh VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Taispeáint achoimre"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Barr 10 taispeáint"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Nuashonraigh »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Grafaicí VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "Monatóir Tráchta VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"Is monatóir tráchta líonra é VnStat do Linux a choinníonn loga tráchta "
|
||||
"líonra don chomhéadan/na comhéadain roghnaithe."
|
@ -1,81 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2020-10-17 15:26+0000\n"
|
||||
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
|
||||
"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/he/>\n"
|
||||
"Language: he\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.3.1-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "הגדרות"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
@ -1,79 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-16 20:54+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: hi\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"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
@ -1,88 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2019-11-29 19:44+0000\n"
|
||||
"Last-Translator: Balázs Úr <balazs@urbalazs.hu>\n"
|
||||
"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/hu/>\n"
|
||||
"Language: hu\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 3.10-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Beállítás"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Napi forgalom"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Grafikonok"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Óránkénti forgalom"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Kiválasztott interfészek figyelése"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Havi forgalom"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Adatbázis még nem lett beállítva. Engedélyezze egy vagy több interfész "
|
||||
"figyelését a VnStat beállításoknál."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "VnStat újraíndítása"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Összefoglaló nézet"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Top 10 nézet"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Frissítés »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "VnStat grafikonok"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "VnStat Forgalom Figyelő"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"VnStat egy hálózati forgalom figyelő alkalmazás Linux alá ami naplózza a "
|
||||
"kiválasztott interfész(ek) hálózati forgalmát."
|
||||
|
||||
#~ msgid "The VnStat service has been restarted."
|
||||
#~ msgstr "A VnStat szolgáltatás újra lett índítva."
|
@ -1,88 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-06-30 15:21+0000\n"
|
||||
"Last-Translator: moreno matassini <morenomatassini95@gmail.com>\n"
|
||||
"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/it/>\n"
|
||||
"Language: it\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 5.7-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Configurazione"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Traffico giornaliero"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Concedi accesso UCI per luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Grafici"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Traffico orario"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Monitora le interfacce selezionate"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Traffico mensile"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Non è ancora stato configurato un database. Vai nella configurazione di "
|
||||
"VnStat e abilita il monitoraggio per una o più interfacce."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Riavvia VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Riassunto"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Visualizza top 10"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Aggiorna"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Grafici VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "Monitor del traffico VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"VnStat è un monitor del traffico di rete per Linux che scrive un log per le "
|
||||
"interfacce selezionate."
|
||||
|
||||
#~ msgid "The VnStat service has been restarted."
|
||||
#~ msgstr "Il servizio VnStat è stato riavviato."
|
@ -1,84 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2020-12-10 19:29+0000\n"
|
||||
"Last-Translator: Ryota <21ryotagamer@gmail.com>\n"
|
||||
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/ja/>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.4-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "設定"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "毎日のトラフィック"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "luci-app-vnstatにUCIアクセスを許可"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "グラフ"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "1時間ごとのトラフィック"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "監視するインターフェース"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "毎月のトラフィック"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr "データベースが設定されていません。VnStat設定ページへ移動し、1つ以上のインターフェースのモニタリングを有効にしてください。"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "VnStatを再起動"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "サマリーを表示"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "トップ10を表示"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "更新 »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "VnStatグラフ"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "VnStatトラフィックモニター"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr "VnStatは選択されたインターフェースのネットワークトラフィックを監視するLinuxのトラフィックモニターです。"
|
||||
|
||||
#~ msgid "The VnStat service has been restarted."
|
||||
#~ msgstr "VnStatサービスは再起動しました。"
|
@ -1,83 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2022-03-26 19:03+0000\n"
|
||||
"Last-Translator: dikastia <dikastia@gmail.com>\n"
|
||||
"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/ko/>\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\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.12-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "설정"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "일일 트래픽"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "luci-app-vnstat에 UCI 액세스 허용"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "그래프"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "시간당 트래픽"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "선택한 인터페이스 모니터링"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "월별 트래픽"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr "데이터베이스가 설정되지 않았습니다. VnStat 설정 페이지로 이동하여 하나 "
|
||||
"이상의 인터페이스 모니터링을 활성화합니다."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "VnStat 재실행"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "요약 표시"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "상위 10개 표시"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "업데이트 »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "VnStat 그래프"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "VnStat 트래픽 모니터"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr "vnStat는 선택된 인터페이스의 네트워크 트래픽을 모니터링하는 Linux 네트워크 "
|
||||
"트래픽 모니터입니다."
|
@ -1,87 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-01-19 12:37+0000\n"
|
||||
"Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n"
|
||||
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/lt/>\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > "
|
||||
"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
|
||||
"1 : 2);\n"
|
||||
"X-Generator: Weblate 5.4-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Konfigūravimas"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Kasdieninis srautas"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Suteikti „UCI“ prieigą – „luci-app-vnstat“"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Grafikai"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Kas valandinis srautas"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Stebėti pasirinktas/-us sąsajos ir/arba sietuvus"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Kas mėnesinis srautas"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Duomenų bazė nebuvo sukurta (kol kas). Eikite į „VnStat“ konfigūracija ir "
|
||||
"įjunkite stebėjimą vienai ar daugiau sąsajų ir/ar sietuvų."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Iš naujo paleisti „VnStat“"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Santraukos/Suvestinės išvestis"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Rodyti „top“ 10-imt"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Atnaujinti »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "„VnStat“"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "„VnStat“ grafikai"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "„VnStat“ srauto stebėjimas"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"„VnStat“ yra tinklo srauto stebėtojas skirtas „Linux“, kuris laiko tinklo "
|
||||
"srauto žurnalą pasirinktų sąsajų ir/ar sietuvų."
|
@ -1,81 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2020-02-12 11:00+0000\n"
|
||||
"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n"
|
||||
"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/mr/>\n"
|
||||
"Language: mr\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 3.11-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "कॉन्फिगरेशन"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "आलेख"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
@ -1,81 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-01-22 09:21+0000\n"
|
||||
"Last-Translator: Abdul Muizz Bin Abdul Jalil <abmuizz@gmail.com>\n"
|
||||
"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/ms/>\n"
|
||||
"Language: ms\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 5.4-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Konfigurasi"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Traffik harian"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Graf"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
@ -1,83 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2021-03-27 15:30+0000\n"
|
||||
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/nb_NO/>\n"
|
||||
"Language: nb_NO\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.6-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Oppsett"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Trafikk hver dag"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Innvilg UCI-tilgang for luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Grafer"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Trafikk hver time"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Overvåk valgte grensesnitt"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Trafikk hver måned"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Ingen database har blitt satt opp ennå. Gå til VnStat konfigurasjonen og "
|
||||
"aktiver overvåking for ett eller flere grensesnitt."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Omstart VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Visning av sammendrag"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Top 10 visning"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Oppdater »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "VnStat Grafer"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "VnStat Trafikk Monitor"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"VnStat er en nettverks trafikk monitor for Linux som loggfører nettverks "
|
||||
"trafikk for de valgte grensesnitt."
|
@ -1,85 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-12-20 20:38+0000\n"
|
||||
"Last-Translator: Sander Schutten <schutten@hotmail.com>\n"
|
||||
"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/nl/>\n"
|
||||
"Language: nl\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 5.10-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Configuratie"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Dagelijks verkeer"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Verleen UCI-toegang voor luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Grafieken"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Verkeer per uur"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Bewaak geselecteerde interfaces"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Maandelijks verkeer"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Er is nog geen database aangemaakt. Ga naar de VnStat-configuratie en "
|
||||
"schakel monitoring in voor een of meer interfaces."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Herstart VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Overzichtsweergave"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Top 10-weergave"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Update »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "VnStat Grafieken"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "VnStat Verkeersmonitor"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"VnStat is een netwerkverkeersmonitor voor Linux die een logboek bijhoudt van "
|
||||
"het netwerkverkeer voor de geselecteerde interface(s)."
|
@ -1,89 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2023-11-07 22:37+0000\n"
|
||||
"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
|
||||
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/pl/>\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.2-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguracja"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Obciążenie dzienne"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Przyznaj luci-app-vnstat dostęp do UCI"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Wykresy"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Obciążenie godzinowe"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Monitoruj wybrane interfejsy"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Obciążenie miesięczne"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Nie ustawiono żadnej bazy danych. Idź do konfiguracji VnStat i włącz "
|
||||
"monitorowanie dla jednego lub więcej interfejsów."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Restartuj VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Podsumowanie"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "TOP 10"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Aktualizuj »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Wykresy VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "Monitor obciążenia VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"VnStat to aplikacja monitorująca ruch sieciowy w Linuxie, który utrzymuje "
|
||||
"loga ruchu sieciowego dla określonych interfejsów."
|
||||
|
||||
#~ msgid "The VnStat service has been restarted."
|
||||
#~ msgstr "Usługa VnStat została uruchomiona ponownie."
|
@ -1,85 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-07-20 20:09+0000\n"
|
||||
"Last-Translator: ssantos <ssantos@web.de>\n"
|
||||
"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/pt/>\n"
|
||||
"Language: pt\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 5.7-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Configuração"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Tráfego Diário"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Conceder UCI acesso ao luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Gráficos"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Tráfego por hora"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Monitorizar as interfaces selecionadas"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Tráfego mensal"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Ainda não foi configurada uma base de dados. Vá até à configuração do VnStat "
|
||||
"e ative a monitorização para uma ou mais interfaces."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Reiniciar VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Mostrar resumo"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Mostrar Top 10"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Atualizar »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Gráficos VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "Monitor de Tráfego VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
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 para Linux que mantêm um registo do tráfego "
|
||||
"para as interface (s) selecionadas."
|
@ -1,88 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2020-05-02 10:21+0000\n"
|
||||
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/luciapplicationsvnstat/pt_BR/>\n"
|
||||
"Language: pt_BR\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-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Configuração"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Tráfego diário"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Conceda acesso UCI ao luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Gráficos"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Tráfego por Hora"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Monitore as interfaces selecionadas"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Tráfego Mensal"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Nenhum banco de dados foi definido ainda. Vá para a configuração do VnStat e "
|
||||
"ative o monitoramento para uma ou mais interfaces."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Reiniciar o VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Tela de resumo"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Tela dos 10 mais"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Atualizar »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Gráficos VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "Monitor de Tráfego VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
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."
|
||||
|
||||
#~ msgid "The VnStat service has been restarted."
|
||||
#~ msgstr "O serviço VnStat foi reiniciado."
|
@ -1,89 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2021-11-14 17:22+0000\n"
|
||||
"Last-Translator: Simona Iacob <s@zp1.net>\n"
|
||||
"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/ro/>\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.9.1-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Configurație"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Trafic zilnic"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Acordă acces UCI pentru luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Grafice"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Trafic la fiecare ora"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Monitorizarea interfețelor selectate"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Trafic lunar"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Nu s-a setat încă nicio bază de date. Accesați VnStat configurare și "
|
||||
"activați monitorizarea pentru una sau mai multe interfețe."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Reporniți VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Afișare rezumat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Afișează primi 10"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Actualizare »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Grafice VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "VnStat Monitor trafic"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"VnStat este un monitor de trafic de rețea pentru Linux, care păstrează un "
|
||||
"jurnal de trafic de rețea pentru interfața selectată(e)."
|
||||
|
||||
#~ msgid "The VnStat service has been restarted."
|
||||
#~ msgstr "Serviciul VnStat a fost restartat."
|
@ -1,89 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: LuCI: vnstat\n"
|
||||
"POT-Creation-Date: 2012-08-15 11:48+0300\n"
|
||||
"PO-Revision-Date: 2020-06-07 15:48+0000\n"
|
||||
"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n"
|
||||
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/ru/>\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.1-dev\n"
|
||||
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
|
||||
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Конфигурация"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Трафик за день"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Предоставить UCI доступ для luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Графики"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Трафик за час"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Собирать статистику на выбранных интерфейсах"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Трафик за месяц"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"База данных не настроена. Выполните настройки и укажите интерфейсы для сбора "
|
||||
"статистики."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Перезапустить VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Сводная статистика"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Последние 10"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Обновить »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Графики VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "Монитор трафика VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"VnStat - монитор сетевого трафика для Linux, собирающий статистику по "
|
||||
"выбранным интерфейсам."
|
@ -1,81 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2022-09-19 10:18+0000\n"
|
||||
"Last-Translator: Jose Riha <jose1711@gmail.com>\n"
|
||||
"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/sk/>\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Konfigurácia"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Grafy"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
@ -1,86 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2021-12-06 14:03+0000\n"
|
||||
"Last-Translator: Dejan <dejan@pekidi.com>\n"
|
||||
"Language-Team: Slovenian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/sl/>\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 4.10-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguracija"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Dnevni promet"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Omogoči UCI dostop za luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Grafi"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Promet na uro"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Spremljajte izbrane vmesnike"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Mesečni promet"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Nobena baza podatkov še ni vzpostavljena. Pojdite na konfiguracijo VnStat in "
|
||||
"omogočite spremljanje za enega ali več vmesnikov."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Znova zaženite VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Prikaz povzetka"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Prikaži top 10"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Nadgradnja »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "VnStat Grafi"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "VnStat Nadzornik prometa"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"VnStat je nadzornik omrežnega prometa za Linux, ki vodi dnevnik omrežnega "
|
||||
"prometa za izbrane vmesnike."
|
@ -1,85 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2022-12-06 01:48+0000\n"
|
||||
"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n"
|
||||
"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/sv/>\n"
|
||||
"Language: sv\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.15-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguration"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Daglig traffik"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Godkänn UCI-åtkomst för luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Diagram"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Trafik per timma"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Bevaka valda gränssnitt"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Trafik per månad"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Det har inte ställts in någon databas ännu. Gå till VnStat-konfigurationen "
|
||||
"och aktivera övervakning av en eller fler gränssnitt."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Starta om VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Översiktsskärm"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Topp 10-skärm"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Uppdatera »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Grafer för VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "Trafik-bevakare för VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"VnStat är en nätverkstrafikmonitor för Linux som håller en logg över "
|
||||
"nätverkstrafik för de valda gränssnitten."
|
@ -1,70 +0,0 @@
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
@ -1,85 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2021-05-15 14:32+0000\n"
|
||||
"Last-Translator: semih <semiht@gmail.com>\n"
|
||||
"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/tr/>\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.7-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Yapılandırma"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Günlük trafik"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "luci-app-vnstat için UCI erişimi verin"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Grafikler"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Saatlik trafik"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Seçili arayüzleri izle"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Aylık trafik"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Henüz veritabanı kurulmadı. VnStat yapılandırmasına gidin ve bir veya daha "
|
||||
"fazla arayüz için izlemeyi etkinleştirin."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "VnStat'ı yeniden başlat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Özet ekranı"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "En iyi 10'u göster"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Güncelle »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "VnStat Grafikleri"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "VnStat Trafik Monitörü"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"VnStat, Linux için seçilen arabirimler için ağ trafiğinin günlüğünü tutan "
|
||||
"bir ağ trafiği izleyicisidir."
|
@ -1,86 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2021-03-12 09:02+0000\n"
|
||||
"Last-Translator: Tymofij Lytvynenko <till.svit@gmail.com>\n"
|
||||
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/uk/>\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.5.2-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Конфігурація"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Список щоденного трафіку"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Надати доступ до UCI для luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Графіки"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Список погодинного трафіку"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Моніторинг обраних інтерфейсів"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Список щомісячного трафіку"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Не була створена база даних. Перейдіть до вкладки конфігурації VnStat та "
|
||||
"увімкніть моніторинг для одного або декількох інтерфейсів."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Перезапуск VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Підсумкова таблиця"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Список Топ-10"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Оновлення »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Графіки VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "Моніторінг трафіку VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"VnStat - монітор мережного трафіку для Linux, який веде журнал мережевого "
|
||||
"трафіку для обраного інтерфейсу або декількох інтерфейсів."
|
@ -1,85 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2023-06-20 06:36+0000\n"
|
||||
"Last-Translator: Mashiro <michio.haiyaku@gmail.com>\n"
|
||||
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/vi/>\n"
|
||||
"Language: vi\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 ? 0 : 1;\n"
|
||||
"X-Generator: Weblate 4.18.1\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Cấu hình"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "lưu lượng truy cập hàng ngày"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Cấp quyền truy cập UCI cho luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Đồ thị"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Lưu lượng hàng giờ"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Giám sát các giao diện đã chọn"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Lưu lượng hàng tháng"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Không có cơ sở dữ liệu nào đã được thiết lập. Truy cập vào cấu hình VnStat "
|
||||
"và kích hoạt chức năng giám sát cho một hoặc nhiều giao diện."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Khởi động lại VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Hiện thị tóm tắt"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Hiện thị top 10"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Cập nhật »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Đồ thị VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "VnStat Giám sát Lưu lượng"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr ""
|
||||
"VnStat là một công cụ giám sát lưu lượng mạng cho Linux, giữ một nhật ký về "
|
||||
"lưu lượng mạng cho các giao diện đã chọn."
|
@ -1,85 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-09-24 00:39+0000\n"
|
||||
"Last-Translator: brodrigueznu <brodrigueznu@hotmail.com>\n"
|
||||
"Language-Team: Yucateco <https://hosted.weblate.org/projects/openwrt/"
|
||||
"luciapplicationsvnstat/yua/>\n"
|
||||
"Language: yua\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 5.8-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "Configuración"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Tráfico diario"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "Conceder acceso UCI para luci-app-vnstat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "Gráficos"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Tráfico por horas"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "Monitorear las interfaces seleccionadas"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "Tráfico mensual"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr ""
|
||||
"Todavía no se ha configurado ninguna base de datos. Vaya a la configuración "
|
||||
"de VnStat y active la monitorización para una o más interfaces."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Reiniciar VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Mostrar resumen"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Mostrar Top 10"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Actualizar »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "Graficas de VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "Monitor de trafico de VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
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 trafico de red de la interfaz o interfaces seleccionadas."
|
@ -1,84 +0,0 @@
|
||||
#
|
||||
# Yangfl <mmyangfl@gmail.com>, 2018.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2021-01-13 00:56+0000\n"
|
||||
"Last-Translator: 孤爺仔 <7312140@qq.com>\n"
|
||||
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
|
||||
"openwrt/luciapplicationsvnstat/zh_Hans/>\n"
|
||||
"Language: zh_Hans\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.4.1-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "配置"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "每日流量"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "授予UCI访问luci-app-vnstat的权限"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "图表"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "每小時流量"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "监控选择的接口"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "每月流量"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr "尚未设置数据库。前往 VnStat 进行配置,并启动监控一个或多个接口。"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "重启 VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "摘要显示"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "显示前10"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "更新 »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "流量监测"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "VnStat 图表"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "VNStat 流量监控"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr "VnStat 是一个 Linux 网络流量监控器,用于保存所选接口的网络流量日志。"
|
@ -1,84 +0,0 @@
|
||||
#
|
||||
# Yangfl <mmyangfl@gmail.com>, 2018.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2024-11-22 21:40+0000\n"
|
||||
"Last-Translator: Yuan Lau <traverslombard@outlook.com>\n"
|
||||
"Language-Team: Chinese (Traditional Han script) <https://hosted.weblate.org/"
|
||||
"projects/openwrt/luciapplicationsvnstat/zh_Hant/>\n"
|
||||
"Language: zh_Hant\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.9-dev\n"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:23
|
||||
msgid "Configuration"
|
||||
msgstr "設定"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "每日流量"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/rpcd/acl.d/luci-app-vnstat.json:3
|
||||
msgid "Grant UCI access for luci-app-vnstat"
|
||||
msgstr "授予 luci-app-vnstat 擁有 UCI 存取的權限"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:14
|
||||
msgid "Graphs"
|
||||
msgstr "圖表"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "每小時流量"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49
|
||||
msgid "Monitor selected interfaces"
|
||||
msgstr "監視已選擇的介面"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69
|
||||
msgid "Monthly traffic"
|
||||
msgstr "每月流量"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:97
|
||||
msgid ""
|
||||
"No database has been set up yet. Go to the VnStat configuration and enable "
|
||||
"monitoring for one or more interfaces."
|
||||
msgstr "尚未設定任何資料庫;請在 vnStat 中設定並啟用對一個或多個介面的監視。"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "重新啟動 vnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "概要顯示"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "顯示最高流量的 10 天"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "更新 »"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:19
|
||||
msgid "VnStat"
|
||||
msgstr "vnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:60
|
||||
msgid "VnStat Graphs"
|
||||
msgstr "vnStat 圖表"
|
||||
|
||||
#: applications/luci-app-vnstat/root/usr/share/luci/menu.d/luci-app-vnstat.json:3
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "vnStat 流量監視"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:20
|
||||
msgid ""
|
||||
"VnStat is a network traffic monitor for Linux that keeps a log of network "
|
||||
"traffic for the selected interface(s)."
|
||||
msgstr "vnStat 是一個在 Linux 上工作的網路流量監視器,它會記錄已選擇介面的網路流量日誌。"
|
@ -1,31 +0,0 @@
|
||||
{
|
||||
"admin/status/vnstat": {
|
||||
"title": "VnStat Traffic Monitor",
|
||||
"order": 90,
|
||||
"action": {
|
||||
"type": "firstchild"
|
||||
},
|
||||
"depends": {
|
||||
"acl": [ "luci-app-vnstat" ]
|
||||
}
|
||||
},
|
||||
|
||||
"admin/status/vnstat/graphs": {
|
||||
"title": "Graphs",
|
||||
"order": 1,
|
||||
"action": {
|
||||
"type": "template",
|
||||
"path": "vnstat"
|
||||
}
|
||||
},
|
||||
|
||||
"admin/status/vnstat/config": {
|
||||
"title": "Configuration",
|
||||
"order": 2,
|
||||
"action": {
|
||||
"type": "cbi",
|
||||
"path": "vnstat",
|
||||
"post": { "cbi.submit": true }
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
{
|
||||
"luci-app-vnstat": {
|
||||
"description": "Grant UCI access for luci-app-vnstat",
|
||||
"read": {
|
||||
"uci": [ "vnstat" ]
|
||||
},
|
||||
"write": {
|
||||
"uci": [ "vnstat" ]
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user