mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-13 02:51:50 +00:00
Remove vnstat interface
This commit is contained in:
parent
08002a4bb2
commit
22d85573be
31 changed files with 0 additions and 2286 deletions
|
@ -1,15 +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:=+vnstat +vnstati
|
||||
|
||||
#include ../luci/luci.mk
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
|
@ -1,11 +0,0 @@
|
|||
module("luci.controller.vnstat", package.seeall)
|
||||
|
||||
function index()
|
||||
entry({"admin", "status", "vnstat"}, alias("admin", "status", "vnstat", "graphs"), _("VnStat Traffic Monitor"), 90)
|
||||
entry({"admin", "status", "vnstat", "graphs"}, template("vnstat"), _("Graphs"), 1)
|
||||
entry({"admin", "status", "vnstat", "config"}, cbi("vnstat"), _("Configuration"), 2)
|
||||
|
||||
entry({"mini", "network", "vnstat"}, alias("mini", "network", "vnstat", "graphs"), _("VnStat Traffic Monitor"), 90)
|
||||
entry({"mini", "network", "vnstat", "graphs"}, template("vnstat"), _("Graphs"), 1)
|
||||
entry({"mini", "network", "vnstat", "config"}, cbi("vnstat"), _("Configuration"), 2)
|
||||
end
|
|
@ -1,48 +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"
|
||||
|
||||
|
||||
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 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
|
||||
|
||||
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,83 +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
|
||||
|
||||
-%>
|
||||
|
||||
<%+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">
|
||||
<%
|
||||
for _, iface in ipairs(sys.net.devices()) do
|
||||
if iface ~= "lo" and not iface:match("^sit.*") and not iface:match("^if.*") and not iface:match("^teql.*") and not iface:match("^tun.*") then
|
||||
empty = false
|
||||
%>
|
||||
<img src="<%=REQUEST_URI%>?iface=<%=iface%>&style=<%=param('style')%>" alt="" />
|
||||
<br /><br />
|
||||
<%
|
||||
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,83 +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/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr "Configuració"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Trànsit diari"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,82 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr "Konfigurace"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Denní přenos"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,86 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2010-11-16 21:06+0100\n"
|
||||
"Last-Translator: Jo-Philipp Wich <jow@openwrt.org>\n"
|
||||
"Language-Team: German\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/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguration"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Täglicher Verkehr"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,77 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-16 20:54+0100\n"
|
||||
"Last-Translator: <jow@openwrt.org>\n"
|
||||
"Language-Team: German\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/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,77 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-16 20:54+0100\n"
|
||||
"Last-Translator: <jow@openwrt.org>\n"
|
||||
"Language-Team: German\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/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,87 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"PO-Revision-Date: 2019-04-01 23:59-0300\n"
|
||||
"Last-Translator: José Vicente <josevteg@gmail.com>\n"
|
||||
"Language-Team: German\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: Poedit 2.2.1\n"
|
||||
"POT-Creation-Date: \n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
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/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
msgid "Graphs"
|
||||
msgstr "Gráficas"
|
||||
|
||||
#: 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 habilite 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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,86 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2011-11-23 22:33+0200\n"
|
||||
"Last-Translator: fredb <fblistes+luci@free.fr>\n"
|
||||
"Language-Team: German\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: Pootle 2.0.4\n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr "Configuration"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Trafic quotidien"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
msgid "Graphs"
|
||||
msgstr "Graphes"
|
||||
|
||||
#: 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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,76 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\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/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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 ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\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/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr "Beállítások"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Napi forgalom"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,86 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2011-05-17 22:00+0200\n"
|
||||
"Last-Translator: coatto87 <coatto87@gmail.com>\n"
|
||||
"Language-Team: German\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: Pootle 2.0.4\n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr "Configurazione"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Traffico giornaliero"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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 "Top 10 display"
|
||||
|
||||
#: 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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,86 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2011-08-19 06:15+0200\n"
|
||||
"Last-Translator: Kentaro <kentaro.matsuyama@gmail.com>\n"
|
||||
"Language-Team: German\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: Pootle 2.0.4\n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr "設定"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "1日周期のトラフィック"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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 "1月周期のトラフィック"
|
||||
|
||||
#: 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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,77 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-16 20:54+0100\n"
|
||||
"Last-Translator: <jow@openwrt.org>\n"
|
||||
"Language-Team: German\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/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,76 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Last-Translator: Lars Hardy <lars.hardy@gmail.com>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr "Konfigurasjon"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Trafikk hver dag"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,87 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2011-09-20 12:21+0200\n"
|
||||
"Last-Translator: Michał <wispwind@gmail.com>\n"
|
||||
"Language-Team: German\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: Pootle 2.0.4\n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguracja"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Obciążenie dzienne"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,86 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2011-10-11 21:02+0200\n"
|
||||
"Last-Translator: Luiz Angelo <luizluca@gmail.com>\n"
|
||||
"Language-Team: German\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: Pootle 2.0.4\n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
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/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
msgid "Graphs"
|
||||
msgstr "Gráficos"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:67
|
||||
msgid "Hourly traffic"
|
||||
msgstr "Tráfego horário"
|
||||
|
||||
#: 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 ""
|
||||
"Ainda nenhum banco de dados foi definido. Vá para a configuração do VnStat "
|
||||
"ehabilite o monitoramento para um 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 "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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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 ""
|
||||
"VnStat é um monitor de tráfego de rede para Linux que mantém um registro do "
|
||||
"tráfego para a(s) interface(s) selecionada(s)."
|
||||
|
||||
#~ msgid "The VnStat service has been restarted."
|
||||
#~ msgstr "O serviço VnStat foi reiniciado."
|
|
@ -1,83 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2013-05-31 16:25+0200\n"
|
||||
"Last-Translator: joao.f.vieira <joao.f.vieira@gmail.com>\n"
|
||||
"Language-Team: German\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: Pootle 2.0.6\n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
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/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,87 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2011-10-07 16:01+0200\n"
|
||||
"Last-Translator: Daniel <daniel.petre@pitesti.rcs-rds.ro>\n"
|
||||
"Language-Team: none\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: Pootle 2.0.4\n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr "Configurare"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Trafic zilnic"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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 "Monitorizeaza interfetele 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 a fost setata nici o baza de date. La configurarea VnStat se poate activa "
|
||||
"monitoriza pentru una sau mai multe interfete."
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22
|
||||
msgid "Restart VnStat"
|
||||
msgstr "Restarteaza VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65
|
||||
msgid "Summary display"
|
||||
msgstr "Afiseaza sumarul"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66
|
||||
msgid "Top 10 display"
|
||||
msgstr "Afiseaza top 10"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:72
|
||||
msgid "Update »"
|
||||
msgstr "Updateaza »"
|
||||
|
||||
#: 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 "Graficele VnStat"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
msgid "VnStat Traffic Monitor"
|
||||
msgstr "Monitorul de 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 este un monitor de retea ce pastreaza detalii legate de traficul pe "
|
||||
"interfetele selectate."
|
||||
|
||||
#~ msgid "The VnStat service has been restarted."
|
||||
#~ msgstr "Serviciul VnStat a fost restartat."
|
|
@ -1,87 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: LuCI: vnstat\n"
|
||||
"POT-Creation-Date: 2012-08-15 11:48+0300\n"
|
||||
"PO-Revision-Date: 2018-01-13 15:01+0300\n"
|
||||
"Language-Team: http://cyber-place.ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.8.7.1\n"
|
||||
"Last-Translator: Vladimir aka sunny <picfun@ya.ru>\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"
|
||||
"Language: ru\n"
|
||||
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
|
||||
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr "Настройка config файла"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Трафик за день"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,76 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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 ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr "Konfiguration"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Daglig traffik"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
msgid "Graphs"
|
||||
msgstr "Grafer"
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: 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 "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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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 ""
|
|
@ -1,69 +0,0 @@
|
|||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,76 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\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"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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: 2013-08-13 15:33+0200\n"
|
||||
"Last-Translator: zubr_139 <zubr139@ukr.net>\n"
|
||||
"Language-Team: none\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: Pootle 2.0.6\n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr "Конфігурація"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "Список щоденного трафіку"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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
|
||||
#, fuzzy
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,77 +0,0 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2010-11-16 20:55+0100\n"
|
||||
"Last-Translator: <jow@openwrt.org>\n"
|
||||
"Language-Team: German\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/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,82 +0,0 @@
|
|||
#
|
||||
# Yangfl <mmyangfl@gmail.com>, 2018.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2018-08-07 20:49+0800\n"
|
||||
"Last-Translator: Yangfl <mmyangfl@gmail.com>\n"
|
||||
"Language-Team: <debian-l10n-chinese@lists.debian.org>\n"
|
||||
"Language: zh_CN\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: Gtranslator 2.91.7\n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr "配置"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "每日流量"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,82 +0,0 @@
|
|||
#
|
||||
# Yangfl <mmyangfl@gmail.com>, 2018.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"PO-Revision-Date: 2018-08-07 20:49+0800\n"
|
||||
"Last-Translator: Yangfl <mmyangfl@gmail.com>\n"
|
||||
"Language-Team: <debian-l10n-chinese@lists.debian.org>\n"
|
||||
"Language: zh_TW\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: Gtranslator 2.91.7\n"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10
|
||||
msgid "Configuration"
|
||||
msgstr "設定"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/view/vnstat.htm:68
|
||||
msgid "Daily traffic"
|
||||
msgstr "每日流量"
|
||||
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:5
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:9
|
||||
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/luasrc/controller/vnstat.lua:4
|
||||
#: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:8
|
||||
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,11 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
uci -q batch <<-EOF >/dev/null
|
||||
delete ucitrack.@vnstat[-1]
|
||||
add ucitrack vnstat
|
||||
set ucitrack.@vnstat[-1].init=vnstat
|
||||
commit ucitrack
|
||||
EOF
|
||||
|
||||
rm -f /tmp/luci-indexcache
|
||||
exit 0
|
Loading…
Reference in a new issue