--- /dev/null
+#
+# Copyright (C) 2006-2016 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=libmodbus
+PKG_VERSION:=3.1.6
+PKG_RELEASE:=1
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_SOURCE_URL:=http://libmodbus.org/releases
+PKG_HASH:=d7d9fa94a16edb094e5fdf5d87ae17a0dc3f3e3d687fead81835d9572cf87c16
+
+PKG_MAINTAINER:=Michael Heimpold <mhei@heimpold.de>
+
+PKG_LICENSE:=LGPL-2.1-or-later
+PKG_LICENSE_FILES:=COPYING.LESSER
+
+PKG_FIXUP:=autoreconf
+PKG_INSTALL:=1
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/libmodbus
+ SECTION:=libs
+ CATEGORY:=Libraries
+ URL:=http://www.libmodbus.org
+ TITLE:=libmodbus
+endef
+
+define Package/libmodbus/description
+ A Modbus library for Linux, Mac OS X, FreeBSD, QNX and Win32.
+endef
+
+CONFIGURE_ARGS += --without-documentation --disable-tests
+TARGET_CFLAGS += $(FPIC)
+
+define Build/InstallDev
+ $(INSTALL_DIR) $(1)/usr/include
+ $(CP) $(PKG_INSTALL_DIR)/usr/include/modbus $(1)/usr/include/
+ $(INSTALL_DIR) $(1)/usr/lib
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmodbus.{so*,la} $(1)/usr/lib/
+ $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libmodbus.pc $(1)/usr/lib/pkgconfig/
+endef
+
+define Package/libmodbus/install
+ $(INSTALL_DIR) $(1)/usr/lib
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libmodbus.so.* $(1)/usr/lib/
+endef
+
+$(eval $(call BuildPackage,libmodbus))
--- /dev/null
+From f1eb4bc7ccb09cd8d19ab641ee37637f8c34d16d Mon Sep 17 00:00:00 2001
+From: i-ky <gl.ivanovsky@gmail.com>
+Date: Tue, 10 Jul 2018 15:58:45 +0300
+Subject: [PATCH] Fixed MODBUS_GET_* macros in case of negative values
+
+In case resulting value should be negative it is incorrect to use '+' operator to construct it from pieces, because highest bytes will result in negative number after bitwise shift while others will stay positive. Replacing addition with '|' should solve the issue.
+---
+ src/modbus.h | 10 +++++-----
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/src/modbus.h b/src/modbus.h
+index f6e9a5f..c63f5ce 100644
+--- a/src/modbus.h
++++ b/src/modbus.h
+@@ -245,12 +245,12 @@ MODBUS_API int modbus_reply_exception(modbus_t *ctx, const uint8_t *req,
+ #define MODBUS_GET_HIGH_BYTE(data) (((data) >> 8) & 0xFF)
+ #define MODBUS_GET_LOW_BYTE(data) ((data) & 0xFF)
+ #define MODBUS_GET_INT64_FROM_INT16(tab_int16, index) \
+- (((int64_t)tab_int16[(index) ] << 48) + \
+- ((int64_t)tab_int16[(index) + 1] << 32) + \
+- ((int64_t)tab_int16[(index) + 2] << 16) + \
++ (((int64_t)tab_int16[(index) ] << 48) | \
++ ((int64_t)tab_int16[(index) + 1] << 32) | \
++ ((int64_t)tab_int16[(index) + 2] << 16) | \
+ (int64_t)tab_int16[(index) + 3])
+-#define MODBUS_GET_INT32_FROM_INT16(tab_int16, index) ((tab_int16[(index)] << 16) + tab_int16[(index) + 1])
+-#define MODBUS_GET_INT16_FROM_INT8(tab_int8, index) ((tab_int8[(index)] << 8) + tab_int8[(index) + 1])
++#define MODBUS_GET_INT32_FROM_INT16(tab_int16, index) ((tab_int16[(index)] << 16) | tab_int16[(index) + 1])
++#define MODBUS_GET_INT16_FROM_INT8(tab_int8, index) ((tab_int8[(index)] << 8) | tab_int8[(index) + 1])
+ #define MODBUS_SET_INT16_TO_INT8(tab_int8, index, value) \
+ do { \
+ tab_int8[(index)] = (value) >> 8; \
+--
+2.17.1
+
--- /dev/null
+#
+# Copyright (C) 2009-2014 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=liboping
+PKG_VERSION:=1.10.0
+PKG_RELEASE:=2
+PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
+PKG_LICENSE:=LGPL-2.1-or-later
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
+PKG_SOURCE_URL:=https://noping.cc/files
+PKG_HASH:=eb38aa93f93e8ab282d97e2582fbaea88b3f889a08cbc9dbf20059c3779d5cd8
+
+PKG_FIXUP:=autoreconf
+
+PKG_BUILD_PARALLEL:=1
+PKG_INSTALL:=1
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/liboping/Default
+ URL:=https://noping.cc
+endef
+
+define Package/liboping
+$(call Package/liboping/Default)
+ SECTION:=libs
+ CATEGORY:=Libraries
+ TITLE:=C library to generate ICMP echo requests.
+endef
+
+define Package/oping
+$(call Package/liboping/Default)
+ SECTION:=net
+ CATEGORY:=Network
+ TITLE:=Send ICMP echo request to network hosts
+ DEPENDS+= +liboping
+endef
+
+define Package/noping
+$(call Package/liboping/Default)
+ SECTION:=net
+ CATEGORY:=Network
+ TITLE:=Ncurses application to send ICMP echo request to network hosts
+ DEPENDS+= +liboping +libncurses
+endef
+
+TARGET_CFLAGS += $(FPIC)
+
+CONFIGURE_ARGS += \
+ --without-perl-bindings \
+ --enable-shared \
+ --enable-static
+
+define Build/InstallDev
+ $(INSTALL_DIR) $(1)/usr/include
+ $(CP) $(PKG_INSTALL_DIR)/usr/include/oping.h $(1)/usr/include/
+ $(INSTALL_DIR) $(1)/usr/lib
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/liboping.{a,so*} $(1)/usr/lib/
+endef
+
+define Package/liboping/install
+ $(INSTALL_DIR) $(1)/usr/lib
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/liboping.so.* $(1)/usr/lib/
+endef
+
+define Package/oping/install
+ $(INSTALL_DIR) $(1)/usr/bin
+ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/oping $(1)/usr/bin/
+endef
+
+define Package/noping/install
+ $(INSTALL_DIR) $(1)/usr/bin
+ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/noping $(1)/usr/bin/
+endef
+
+$(eval $(call BuildPackage,liboping))
+$(eval $(call BuildPackage,oping))
+$(eval $(call BuildPackage,noping))
--- /dev/null
+--- a/src/Makefile.am
++++ b/src/Makefile.am
+@@ -3,7 +3,7 @@ AUTOMAKE_OPTIONS = foreign no-dependenci
+ SUBDIRS = mans
+
+ if COMPILER_IS_GCC
+-AM_CFLAGS = -Wall -Werror
++AM_CFLAGS = -Wall
+ endif
+
+ include_HEADERS = oping.h
--- /dev/null
+#
+# 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 Statistics Application
+LUCI_DEPENDS:= \
+ +luci-lib-iptparser \
+ +collectd +rrdtool1 +collectd-mod-rrdtool +collectd-mod-iwinfo \
+ +collectd-mod-cpu +collectd-mod-memory \
+ +collectd-mod-interface +collectd-mod-load +collectd-mod-network
+
+define Package/luci-app-statistics/conffiles
+/etc/config/luci_statistics
+endef
+
+include $(TOPDIR)/package/luci/luci.mk
+
+# call BuildPackage - OpenWrt buildroot signature
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Copyright 2012 Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.controller.luci_statistics.luci_statistics", package.seeall)
+
+function index()
+
+ require("nixio.fs")
+ require("luci.util")
+ require("luci.statistics.datatree")
+
+ -- override entry(): check for existence <plugin>.so where <plugin> is derived from the called path
+ function _entry( path, ... )
+ local file = path[5] or path[4]
+ if nixio.fs.access( "/usr/lib/collectd/" .. file .. ".so" ) then
+ entry( path, ... )
+ end
+ end
+
+ local labels = {
+ s_output = _("Output plugins"),
+ s_general = _("General plugins"),
+ s_network = _("Network plugins"),
+
+ apcups = _("APC UPS"),
+ conntrack = _("Conntrack"),
+ contextswitch = _("Context Switches"),
+ cpu = _("Processor"),
+ cpufreq = _("CPU Frequency"),
+ csv = _("CSV Output"),
+ curl = _("cUrl"),
+ df = _("Disk Space Usage"),
+ disk = _("Disk Usage"),
+ dns = _("DNS"),
+ email = _("Email"),
+ entropy = _("Entropy"),
+ exec = _("Exec"),
+ interface = _("Interfaces"),
+ iptables = _("Firewall"),
+ irq = _("Interrupts"),
+ iwinfo = _("Wireless"),
+ load = _("System Load"),
+ memory = _("Memory"),
+ netlink = _("Netlink"),
+ network = _("Network"),
+ nut = _("UPS"),
+ olsrd = _("OLSRd"),
+ openvpn = _("OpenVPN"),
+ ping = _("Ping"),
+ processes = _("Processes"),
+ rrdtool = _("RRDTool"),
+ sensors = _("Sensors"),
+ splash_leases = _("Splash Leases"),
+ tcpconns = _("TCP Connections"),
+ thermal = _("Thermal"),
+ unixsock = _("UnixSock"),
+ uptime = _("Uptime")
+ }
+
+ -- our collectd menu
+ local collectd_menu = {
+ output = { "csv", "network", "rrdtool", "unixsock" },
+ general = { "apcups", "contextswitch", "cpu", "cpufreq", "df",
+ "disk", "email", "entropy", "exec", "irq", "load", "memory",
+ "nut", "processes", "sensors", "thermal", "uptime" },
+ network = { "conntrack", "curl", "dns", "interface", "iptables",
+ "netlink", "olsrd", "openvpn", "ping",
+ "splash_leases", "tcpconns", "iwinfo" }
+ }
+
+ -- create toplevel menu nodes
+ local st = entry({"admin", "statistics"}, template("admin_statistics/index"), _("Statistics"), 80)
+ st.index = true
+
+ entry({"admin", "statistics", "collectd"}, cbi("luci_statistics/collectd"), _("Setup"), 20).subindex = true
+
+
+ -- populate collectd plugin menu
+ local index = 1
+ for section, plugins in luci.util.kspairs( collectd_menu ) do
+ local e = entry(
+ { "admin", "statistics", "collectd", section },
+ firstchild(), labels["s_"..section], index * 10
+ )
+
+ e.index = true
+
+ for j, plugin in luci.util.vspairs( plugins ) do
+ _entry(
+ { "admin", "statistics", "collectd", section, plugin },
+ cbi("luci_statistics/" .. plugin ),
+ labels[plugin] or plugin, j * 10
+ )
+ end
+
+ index = index + 1
+ end
+
+ -- output views
+ local page = entry( { "admin", "statistics", "graph" }, template("admin_statistics/index"), _("Graphs"), 10)
+ page.setuser = "nobody"
+ page.setgroup = "nogroup"
+
+ local vars = luci.http.formvalue(nil, true)
+ local span = vars.timespan or nil
+ local host = vars.host or nil
+
+ -- get rrd data tree
+ local tree = luci.statistics.datatree.Instance(host)
+
+ local _, plugin, idx
+ for _, plugin, idx in luci.util.vspairs( tree:plugins() ) do
+
+ -- get plugin instances
+ local instances = tree:plugin_instances( plugin )
+
+ -- load plugin menu entry from the description
+ local plugin_name = "luci.statistics.rrdtool.definitions." .. plugin
+ local stat, def = pcall( require, plugin_name )
+ if stat and def and type(def.item) == "function" then
+ entry(
+ { "admin", "statistics", "graph", plugin },
+ call("statistics_render"), def.item(), idx
+ ).query = { timespan = span , host = host }
+ end
+
+ -- if more then one instance is found then generate submenu
+ if #instances > 1 then
+ local _, inst, idx2
+ for _, inst, idx2 in luci.util.vspairs(instances) do
+ -- instance menu entry
+ entry(
+ { "admin", "statistics", "graph", plugin, inst },
+ call("statistics_render"), inst, idx2
+ ).query = { timespan = span , host = host }
+ end
+ end
+ end
+end
+
+function statistics_render()
+
+ require("luci.statistics.rrdtool")
+ require("luci.template")
+ require("luci.model.uci")
+
+ local vars = luci.http.formvalue()
+ local req = luci.dispatcher.context.request
+ local path = luci.dispatcher.context.path
+ local uci = luci.model.uci.cursor()
+ local spans = luci.util.split( uci:get( "luci_statistics", "collectd_rrdtool", "RRATimespans" ), "%s+", nil, true )
+ local span = vars.timespan or uci:get( "luci_statistics", "rrdtool", "default_timespan" ) or spans[1]
+ local host = vars.host or uci:get( "luci_statistics", "collectd", "Hostname" ) or luci.sys.hostname()
+ local opts = { host = vars.host }
+ local graph = luci.statistics.rrdtool.Graph( luci.util.parse_units( span ), opts )
+ local hosts = graph.tree:host_instances()
+
+ local is_index = false
+ local i, p, inst, idx
+
+ -- deliver image
+ if vars.img then
+ local l12 = require "luci.ltn12"
+ local png = io.open(graph.opts.imgpath .. "/" .. vars.img:gsub("%.+", "."), "r")
+ if png then
+ luci.http.prepare_content("image/png")
+ l12.pump.all(l12.source.file(png), luci.http.write)
+ end
+ return
+ end
+
+ local plugin, instances
+ local images = { }
+
+ -- find requested plugin and instance
+ for i, p in ipairs( luci.dispatcher.context.path ) do
+ if luci.dispatcher.context.path[i] == "graph" then
+ plugin = luci.dispatcher.context.path[i+1]
+ instances = { luci.dispatcher.context.path[i+2] }
+ end
+ end
+
+ -- no instance requested, find all instances
+ if #instances == 0 then
+ --instances = { graph.tree:plugin_instances( plugin )[1] }
+ instances = graph.tree:plugin_instances( plugin )
+ is_index = (#instances > 1)
+
+ -- index instance requested
+ elseif instances[1] == "-" then
+ instances[1] = ""
+ is_index = true
+ end
+
+ -- render graphs
+ for i, inst in luci.util.vspairs( instances ) do
+ for i, img in luci.util.vspairs( graph:render( plugin, inst, is_index ) ) do
+ table.insert( images, graph:strippngpath( img ) )
+ images[images[#images]] = inst
+ end
+ end
+
+ luci.template.render( "public_statistics/graph", {
+ images = images,
+ plugin = plugin,
+ timespans = spans,
+ current_timespan = span,
+ hosts = hosts,
+ current_host = host,
+ is_index = is_index
+ } )
+end
--- /dev/null
+-- Copyright 2015 Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("APCUPS Plugin Configuration"),
+ translate(
+ "The APCUPS plugin collects statistics about the APC UPS."
+ ))
+
+-- collectd_apcups config section
+s = m:section( NamedSection, "collectd_apcups", "luci_statistics" )
+
+-- collectd_apcups.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+-- collectd_apcups.host (Host)
+host = s:option( Value, "Host", translate("Monitor host"), translate ("Add multiple hosts separated by space."))
+host.default = "localhost"
+host:depends( "enable", 1 )
+
+-- collectd_apcups.port (Port)
+port = s:option( Value, "Port", translate("Port for apcupsd communication") )
+port.isinteger = true
+port.default = 3551
+port:depends( "enable", 1 )
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+local sys = require("luci.sys")
+
+
+m = Map("luci_statistics",
+ translate("Collectd Settings"),
+ translate(
+ "Collectd is a small daemon for collecting data from " ..
+ "various sources through different plugins. On this page " ..
+ "you can change general settings for the collectd daemon."
+ ))
+
+-- general config section
+s = m:section( NamedSection, "collectd", "luci_statistics" )
+
+-- general.hostname (Hostname)
+hostname = s:option( Value, "Hostname", translate("Hostname") )
+hostname.default = sys.hostname()
+hostname.optional = true
+
+-- general.basedir (BaseDir)
+basedir = s:option( Value, "BaseDir", translate("Base Directory") )
+basedir.default = "/var/run/collectd"
+
+-- general.include (Include)
+include = s:option( Value, "Include", translate("Directory for sub-configurations") )
+include.default = "/etc/collectd/conf.d/*.conf"
+
+-- general.plugindir (PluginDir)
+plugindir = s:option( Value, "PluginDir", translate("Directory for collectd plugins") )
+plugindir.default = "/usr/lib/collectd/"
+
+-- general.pidfile (PIDFile)
+pidfile = s:option( Value, "PIDFile", translate("Used PID file") )
+pidfile.default = "/var/run/collectd.pid"
+
+-- general.typesdb (TypesDB)
+typesdb = s:option( Value, "TypesDB", translate("Datasets definition file") )
+typesdb.default = "/etc/collectd/types.db"
+
+-- general.interval (Interval)
+interval = s:option( Value, "Interval", translate("Data collection interval"), translate("Seconds") )
+interval.default = 60
+interval.isnumber = true
+
+-- general.readthreads (ReadThreads)
+readthreads = s:option( Value, "ReadThreads", translate("Number of threads for data collection") )
+readthreads.default = 5
+readthreads.isnumber = true
+
+-- general.fqdnlookup (FQDNLookup)
+fqdnlookup = s:option( Flag, "FQDNLookup", translate("Try to lookup fully qualified hostname") )
+fqdnlookup.enabled = "true"
+fqdnlookup.disabled = "false"
+fqdnlookup.default = "false"
+fqdnlookup.optional = true
+fqdnlookup:depends( "Hostname", "" )
+
+
+return m
--- /dev/null
+-- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("Conntrack Plugin Configuration"),
+ translate("The conntrack plugin collects statistics about the number of tracked connections."))
+
+s = m:section( NamedSection, "collectd_conntrack", "luci_statistics" )
+
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+return m
--- /dev/null
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("CPU Context Switches Plugin Configuration"),
+ translate("This plugin collects statistics about the processor context switches."))
+
+-- collectd_contextswitch config section
+s = m:section( NamedSection, "collectd_contextswitch", "luci_statistics" )
+
+-- collectd_contextswitch.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("CPU Plugin Configuration"),
+ translate("The cpu plugin collects basic statistics about the processor usage."))
+
+-- collectd_cpu config section
+s = m:section( NamedSection, "collectd_cpu", "luci_statistics" )
+
+-- collectd_cpu.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+return m
--- /dev/null
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("CPU Frequency Plugin Configuration"),
+ translate("This plugin collects statistics about the processor frequency scaling."))
+
+-- collectd_cpufreq config section
+s = m:section( NamedSection, "collectd_cpufreq", "luci_statistics" )
+
+-- collectd_cpufreq.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+-- collectd_cpufreq.extraitems
+extraitems = s:option( Flag, "ExtraItems", translate("Extra items"), translate("More details about frequency usage and transitions"))
+extraitems.default = "0"
+extraitems.optional = true
+extraitems:depends( "enable", 1 )
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("CSV Plugin Configuration"),
+ translate(
+ "The csv plugin stores collected data in csv file format " ..
+ "for further processing by external programs."
+ ))
+
+-- collectd_csv config section
+s = m:section( NamedSection, "collectd_csv", "luci_statistics" )
+
+-- collectd_csv.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+-- collectd_csv.datadir (DataDir)
+datadir = s:option( Value, "DataDir", translate("Storage directory for the csv files") )
+datadir.default = "127.0.0.1"
+datadir:depends( "enable", 1 )
+
+-- collectd_csv.storerates (StoreRates)
+storerates = s:option( Flag, "StoreRates", translate("Store data values as rates instead of absolute values") )
+storerates.default = 0
+storerates:depends( "enable", 1 )
+
+return m
+
--- /dev/null
+-- Copyright 2018 Chizhong Jin <pjincz@gmail.com>
+-- Licensed to the public under the BSD 3-clause license
+
+m = Map("luci_statistics",
+ translate("cUrl Plugin Configuration"))
+
+s = m:section(NamedSection, "collectd_curl")
+s_enable = s:option(Flag, "enable", translate("Enable this plugin"))
+s_enable.default = 0
+
+page = m:section(TypedSection, "collectd_curl_page")
+page.addremove = true
+page.anonymous = true
+page.template = "cbi/tblsection"
+page.sortable = true
+
+page_enable = page:option(Flag, "enable", translate("Enable"))
+page_enable.default = 1
+
+page_name = page:option(Value, "name", translate("Name"))
+
+page_addr = page:option(Value, "url", translate("URL"))
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("DF Plugin Configuration"),
+ translate(
+ "The df plugin collects statistics about the disk space " ..
+ "usage on different devices, mount points or filesystem types."
+ ))
+
+-- collectd_df config section
+s = m:section( NamedSection, "collectd_df", "luci_statistics" )
+
+-- collectd_df.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+-- collectd_df.devices (Device)
+devices = s:option( Value, "Devices", translate("Monitor devices") )
+devices.default = "/dev/mtdblock/4"
+devices.optional = true
+devices:depends( "enable", 1 )
+
+-- collectd_df.mountpoints (MountPoint)
+mountpoints = s:option( Value, "MountPoints", translate("Monitor mount points") )
+mountpoints.default = "/overlay"
+mountpoints.optional = true
+mountpoints:depends( "enable", 1 )
+
+-- collectd_df.fstypes (FSType)
+fstypes = s:option( Value, "FSTypes", translate("Monitor filesystem types") )
+fstypes.default = "tmpfs"
+fstypes.optional = true
+fstypes:depends( "enable", 1 )
+
+-- collectd_df.ignoreselected (IgnoreSelected)
+ignoreselected = s:option( Flag, "IgnoreSelected", translate("Monitor all except specified") )
+ignoreselected.default = 0
+ignoreselected:depends( "enable", 1 )
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("Disk Plugin Configuration"),
+ translate(
+ "The disk plugin collects detailed usage statistics " ..
+ "for selected partitions or whole disks."
+ ))
+
+-- collectd_disk config section
+s = m:section( NamedSection, "collectd_disk", "luci_statistics" )
+
+-- collectd_disk.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+-- collectd_disk.disks (Disk)
+devices = s:option( Value, "Disks", translate("Monitor disks and partitions") )
+devices.default = "hda1 hdb"
+devices.rmempty = true
+devices:depends( "enable", 1 )
+
+-- collectd_disk.ignoreselected (IgnoreSelected)
+ignoreselected = s:option( Flag, "IgnoreSelected", translate("Monitor all except specified") )
+ignoreselected.default = 0
+ignoreselected:depends( "enable", 1 )
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+local sys = require("luci.sys")
+
+
+m = Map("luci_statistics",
+ translate("DNS Plugin Configuration"),
+ translate(
+ "The dns plugin collects detailed statistics about dns " ..
+ "related traffic on selected interfaces."
+ ))
+
+-- collectd_dns config section
+s = m:section( NamedSection, "collectd_dns", "luci_statistics" )
+
+-- collectd_dns.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+-- collectd_dns.interfaces (Interface)
+interfaces = s:option( MultiValue, "Interfaces", translate("Monitor interfaces") )
+interfaces.widget = "select"
+interfaces.size = 5
+interfaces:depends( "enable", 1 )
+interfaces:value("any")
+for k, v in pairs(sys.net.devices()) do
+ interfaces:value(v)
+end
+
+-- collectd_dns.ignoresources (IgnoreSource)
+ignoresources = s:option( Value, "IgnoreSources", translate("Ignore source addresses") )
+ignoresources.default = "127.0.0.1"
+ignoresources:depends( "enable", 1 )
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("E-Mail Plugin Configuration"),
+ translate(
+ "The email plugin creates a unix socket which can be used " ..
+ "to transmit email-statistics to a running collectd daemon. " ..
+ "This plugin is primarily intended to be used in conjunction " ..
+ "with Mail::SpamAssasin::Plugin::Collectd but can be used in " ..
+ "other ways as well."
+ ))
+
+-- collectd_email config section
+s = m:section( NamedSection, "collectd_email", "luci_statistics" )
+
+-- collectd_email.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+-- collectd_email.socketfile (SocketFile)
+socketfile = s:option( Value, "SocketFile", translate("Socket file") )
+socketfile.default = "/var/run/collect-email.sock"
+socketfile:depends( "enable", 1 )
+
+-- collectd_email.socketgroup (SocketGroup)
+socketgroup = s:option( Value, "SocketGroup", translate("Socket group") )
+socketgroup.default = "nobody"
+socketgroup.rmempty = true
+socketgroup.optional = true
+socketgroup:depends( "enable", 1 )
+
+-- collectd_email.socketperms (SocketPerms)
+socketperms = s:option( Value, "SocketPerms", translate("Socket permissions") )
+socketperms.default = "0770"
+socketperms.rmempty = true
+socketperms.optional = true
+socketperms:depends( "enable", 1 )
+
+-- collectd_email.maxconns (MaxConns)
+maxconns = s:option( Value, "MaxConns", translate("Maximum allowed connections") )
+maxconns.default = 5
+maxconns.isinteger = true
+maxconns.rmempty = true
+maxconns.optional = true
+maxconns:depends( "enable", 1 )
+
+return m
--- /dev/null
+-- Copyright 2015 Hannu Nyman <hannu.nyman@iki.fi>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("Entropy Plugin Configuration"),
+ translate("The entropy plugin collects statistics about the available entropy."))
+
+s = m:section( NamedSection, "collectd_entropy", "luci_statistics" )
+
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+return m
+
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("Exec Plugin Configuration"),
+ translate(
+ "The exec plugin starts external commands to read values " ..
+ "from or to notify external processes when certain threshold " ..
+ "values have been reached."
+ ))
+
+-- collectd_exec config section
+s = m:section( NamedSection, "collectd_exec", "luci_statistics" )
+
+-- collectd_exec.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+
+-- collectd_exec_input config section (Exec directives)
+exec = m:section( TypedSection, "collectd_exec_input",
+ translate("Add command for reading values"),
+ translate(
+ "Here you can define external commands which will be " ..
+ "started by collectd in order to read certain values. " ..
+ "The values will be read from stdout."
+ ))
+exec.addremove = true
+exec.anonymous = true
+
+-- collectd_exec_input.cmdline
+exec_cmdline = exec:option( Value, "cmdline", translate("Script") )
+exec_cmdline.default = "/usr/bin/stat-dhcpusers"
+
+-- collectd_exec_input.cmdline
+exec_cmduser = exec:option( Value, "cmduser", translate("User") )
+exec_cmduser.default = "nobody"
+exec_cmduser.rmempty = true
+exec_cmduser.optional = true
+
+-- collectd_exec_input.cmdline
+exec_cmdgroup = exec:option( Value, "cmdgroup", translate("Group") )
+exec_cmdgroup.default = "nogroup"
+exec_cmdgroup.rmempty = true
+exec_cmdgroup.optional = true
+
+
+-- collectd_exec_notify config section (NotifyExec directives)
+notify = m:section( TypedSection, "collectd_exec_notify",
+ translate("Add notification command"),
+ translate(
+ "Here you can define external commands which will be " ..
+ "started by collectd when certain threshold values have " ..
+ "been reached. The values leading to invocation will be " ..
+ "fed to the the called programs stdin."
+ ))
+notify.addremove = true
+notify.anonymous = true
+
+-- collectd_notify_input.cmdline
+notify_cmdline = notify:option( Value, "cmdline", translate("Script") )
+notify_cmdline.default = "/usr/bin/stat-dhcpusers"
+
+-- collectd_notify_input.cmdline
+notify_cmduser = notify:option( Value, "cmduser", translate("User") )
+notify_cmduser.default = "nobody"
+notify_cmduser.rmempty = true
+notify_cmduser.optional = true
+
+-- collectd_notify_input.cmdline
+notify_cmdgroup = notify:option( Value, "cmdgroup", translate("Group") )
+notify_cmdgroup.default = "nogroup"
+notify_cmdgroup.rmempty = true
+notify_cmdgroup.optional = true
+
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+local sys = require("luci.sys")
+
+
+m = Map("luci_statistics",
+ translate("Interface Plugin Configuration"),
+ translate(
+ "The interface plugin collects traffic statistics on " ..
+ "selected interfaces."
+ ))
+
+-- collectd_interface config section
+s = m:section( NamedSection, "collectd_interface", "luci_statistics" )
+
+-- collectd_interface.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+-- collectd_interface.interfaces (Interface)
+interfaces = s:option( MultiValue, "Interfaces", translate("Monitor interfaces") )
+interfaces.widget = "select"
+interfaces.size = 5
+interfaces:depends( "enable", 1 )
+for k, v in pairs(sys.net.devices()) do
+ interfaces:value(v)
+end
+
+-- collectd_interface.ignoreselected (IgnoreSelected)
+ignoreselected = s:option( Flag, "IgnoreSelected", translate("Monitor all except specified") )
+ignoreselected.default = 0
+ignoreselected:depends( "enable", 1 )
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+local ip = require("luci.sys.iptparser").IptParser()
+
+local chains = { }
+local targets = { }
+
+for i, rule in ipairs( ip:find() ) do
+ if rule.chain and rule.target then
+ chains[rule.chain] = true
+ targets[rule.target] = true
+ end
+end
+
+
+m = Map("luci_statistics",
+ translate("Iptables Plugin Configuration"),
+ translate(
+ "The iptables plugin will monitor selected firewall rules and " ..
+ "collect information about processed bytes and packets per rule."
+ ))
+
+-- collectd_iptables config section
+s = m:section( NamedSection, "collectd_iptables", "luci_statistics" )
+
+-- collectd_iptables.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+
+-- collectd_iptables_match config section (Chain directives)
+rule = m:section( TypedSection, "collectd_iptables_match",
+ translate("Add matching rule"),
+ translate(
+ "Here you can define various criteria by which the monitored " ..
+ "iptables rules are selected."
+ ))
+rule.addremove = true
+rule.anonymous = true
+
+
+-- collectd_iptables_match.name
+rule_table = rule:option( Value, "name",
+ translate("Name of the rule"), translate("max. 16 chars") )
+
+-- collectd_iptables_match.table
+rule_table = rule:option( ListValue, "table", translate("Table") )
+rule_table.default = "filter"
+rule_table.rmempty = true
+rule_table.optional = true
+rule_table:value("")
+rule_table:value("filter")
+rule_table:value("nat")
+rule_table:value("mangle")
+
+
+-- collectd_iptables_match.chain
+rule_chain = rule:option( ListValue, "chain", translate("Chain") )
+rule_chain.rmempty = true
+rule_chain.optional = true
+rule_chain:value("")
+
+for chain, void in pairs( chains ) do
+ rule_chain:value( chain )
+end
+
+
+-- collectd_iptables_match.target
+rule_target = rule:option( ListValue, "target", translate("Action (target)") )
+rule_target.rmempty = true
+rule_target.optional = true
+rule_target:value("")
+
+for target, void in pairs( targets ) do
+ rule_target:value( target )
+end
+
+
+-- collectd_iptables_match.protocol
+rule_protocol = rule:option( ListValue, "protocol", translate("Network protocol") )
+rule_protocol.rmempty = true
+rule_protocol.optional = true
+rule_protocol:value("")
+rule_protocol:value("tcp")
+rule_protocol:value("udp")
+rule_protocol:value("icmp")
+
+-- collectd_iptables_match.source
+rule_source = rule:option( Value, "source", translate("Source ip range") )
+rule_source.default = "0.0.0.0/0"
+rule_source.rmempty = true
+rule_source.optional = true
+
+-- collectd_iptables_match.destination
+rule_destination = rule:option( Value, "destination", translate("Destination ip range") )
+rule_destination.default = "0.0.0.0/0"
+rule_destination.rmempty = true
+rule_destination.optional = true
+
+-- collectd_iptables_match.inputif
+rule_inputif = rule:option( Value, "inputif",
+ translate("Incoming interface"), translate("e.g. br-lan") )
+rule_inputif.rmempty = true
+rule_inputif.optional = true
+
+-- collectd_iptables_match.outputif
+rule_outputif = rule:option( Value, "outputif",
+ translate("Outgoing interface"), translate("e.g. br-ff") )
+rule_outputif.rmempty = true
+rule_outputif.optional = true
+
+-- collectd_iptables_match.options
+rule_options = rule:option( Value, "options",
+ translate("Options"), translate("e.g. reject-with tcp-reset") )
+rule_options.rmempty = true
+rule_options.optional = true
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("IRQ Plugin Configuration"),
+ translate(
+ "The irq plugin will monitor the rate of issues per second for " ..
+ "each selected interrupt. If no interrupt is selected then all " ..
+ "interrupts are monitored."
+ ))
+
+-- collectd_irq config section
+s = m:section( NamedSection, "collectd_irq", "luci_statistics" )
+
+-- collectd_irq.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+-- collectd_irq.irqs (Irq)
+irqs = s:option( Value, "Irqs", translate("Monitor interrupts") )
+irqs.optional = true
+irqs:depends( "enable", 1 )
+
+-- collectd_irq.ignoreselected (IgnoreSelected)
+ignoreselected = s:option( Flag, "IgnoreSelected", translate("Monitor all except specified") )
+ignoreselected.default = 0
+ignoreselected.optional = "true"
+ignoreselected:depends( "enable", 1 )
+
+return m
--- /dev/null
+-- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+local m, s, o
+
+m = Map("luci_statistics",
+ translate("Wireless iwinfo Plugin Configuration"),
+ translate("The iwinfo plugin collects statistics about wireless signal strength, noise and quality."))
+
+s = m:section(NamedSection, "collectd_iwinfo", "luci_statistics")
+
+o = s:option(Flag, "enable", translate("Enable this plugin"))
+o.default = 0
+
+o = s:option(Value, "Interfaces", translate("Monitor interfaces"),
+ translate("Leave unselected to automatically determine interfaces to monitor."))
+o.template = "cbi/network_ifacelist"
+o.widget = "checkbox"
+o.nocreate = true
+o:depends("enable", 1)
+
+o = s:option(Flag, "IgnoreSelected", translate("Monitor all except specified"))
+o.default = 0
+o:depends("enable", 1)
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("Load Plugin Configuration"),
+ translate(
+ "The load plugin collects statistics about the general system load."
+ ))
+
+-- collectd_wireless config section
+s = m:section( NamedSection, "collectd_load", "luci_statistics" )
+
+-- collectd_wireless.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+return m
--- /dev/null
+-- Copyright 2011 Manuel Munz <freifunk at somakoma dot de>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("Memory Plugin Configuration"),
+ translate("The memory plugin collects statistics about the memory usage."))
+
+s = m:section( NamedSection, "collectd_memory", "luci_statistics" )
+
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+local sys = require("luci.sys")
+
+local devices = sys.net.devices()
+
+
+m = Map("luci_statistics",
+ translate("Netlink Plugin Configuration"),
+ translate(
+ "The netlink plugin collects extended information like " ..
+ "qdisc-, class- and filter-statistics for selected interfaces."
+ ))
+
+-- collectd_netlink config section
+s = m:section( NamedSection, "collectd_netlink", "luci_statistics" )
+
+-- collectd_netlink.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+-- collectd_netlink.interfaces (Interface)
+interfaces = s:option( MultiValue, "Interfaces", translate("Basic monitoring") )
+interfaces.widget = "select"
+interfaces.optional = true
+interfaces.size = #devices + 1
+interfaces:depends( "enable", 1 )
+interfaces:value("")
+for i, v in ipairs(devices) do
+ interfaces:value(v)
+end
+
+-- collectd_netlink.verboseinterfaces (VerboseInterface)
+verboseinterfaces = s:option( MultiValue, "VerboseInterfaces", translate("Verbose monitoring") )
+verboseinterfaces.widget = "select"
+verboseinterfaces.optional = true
+verboseinterfaces.size = #devices + 1
+verboseinterfaces:depends( "enable", 1 )
+verboseinterfaces:value("")
+for i, v in ipairs(devices) do
+ verboseinterfaces:value(v)
+end
+
+-- collectd_netlink.qdiscs (QDisc)
+qdiscs = s:option( MultiValue, "QDiscs", translate("Qdisc monitoring") )
+qdiscs.widget = "select"
+qdiscs.optional = true
+qdiscs.size = #devices + 1
+qdiscs:depends( "enable", 1 )
+qdiscs:value("")
+for i, v in ipairs(devices) do
+ qdiscs:value(v)
+end
+
+-- collectd_netlink.classes (Class)
+classes = s:option( MultiValue, "Classes", translate("Shaping class monitoring") )
+classes.widget = "select"
+classes.optional = true
+classes.size = #devices + 1
+classes:depends( "enable", 1 )
+classes:value("")
+for i, v in ipairs(devices) do
+ classes:value(v)
+end
+
+-- collectd_netlink.filters (Filter)
+filters = s:option( MultiValue, "Filters", translate("Filter class monitoring") )
+filters.widget = "select"
+filters.optional = true
+filters.size = #devices + 1
+filters:depends( "enable", 1 )
+filters:value("")
+for i, v in ipairs(devices) do
+ filters:value(v)
+end
+
+-- collectd_netlink.ignoreselected (IgnoreSelected)
+ignoreselected = s:option( Flag, "IgnoreSelected", translate("Monitor all except specified") )
+ignoreselected.default = 0
+ignoreselected:depends( "enable", 1 )
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("Network Plugin Configuration"),
+ translate(
+ "The network plugin provides network based communication between " ..
+ "different collectd instances. Collectd can operate both in client " ..
+ "and server mode. In client mode locally collected data is " ..
+ "transferred to a collectd server instance, in server mode the " ..
+ "local instance receives data from other hosts."
+ ))
+
+-- collectd_network config section
+s = m:section( NamedSection, "collectd_network", "luci_statistics" )
+
+-- collectd_network.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+
+-- collectd_network_listen config section (Listen)
+listen = m:section( TypedSection, "collectd_network_listen",
+ translate("Listener interfaces"),
+ translate(
+ "This section defines on which interfaces collectd will wait " ..
+ "for incoming connections."
+ ))
+listen.addremove = true
+listen.anonymous = true
+
+-- collectd_network_listen.host
+listen_host = listen:option( Value, "host", translate("Listen host") )
+listen_host.default = "0.0.0.0"
+
+-- collectd_network_listen.port
+listen_port = listen:option( Value, "port", translate("Listen port") )
+listen_port.default = 25826
+listen_port.isinteger = true
+listen_port.optional = true
+
+
+-- collectd_network_server config section (Server)
+server = m:section( TypedSection, "collectd_network_server",
+ translate("server interfaces"),
+ translate(
+ "This section defines to which servers the locally collected " ..
+ "data is sent to."
+ ))
+server.addremove = true
+server.anonymous = true
+
+-- collectd_network_server.host
+server_host = server:option( Value, "host", translate("Server host") )
+server_host.default = "0.0.0.0"
+
+-- collectd_network_server.port
+server_port = server:option( Value, "port", translate("Server port") )
+server_port.default = 25826
+server_port.isinteger = true
+server_port.optional = true
+
+-- collectd_network.timetolive (TimeToLive)
+ttl = s:option( Value, "TimeToLive", translate("TTL for network packets") )
+ttl.default = 128
+ttl.isinteger = true
+ttl.optional = true
+ttl:depends( "enable", 1 )
+
+-- collectd_network.forward (Forward)
+forward = s:option( Flag, "Forward", translate("Forwarding between listen and server addresses") )
+forward.default = 0
+forward.optional = true
+forward:depends( "enable", 1 )
+
+-- collectd_network.cacheflush (CacheFlush)
+cacheflush = s:option( Value, "CacheFlush",
+ translate("Cache flush interval"), translate("Seconds") )
+cacheflush.default = 86400
+cacheflush.isinteger = true
+cacheflush.optional = true
+cacheflush:depends( "enable", 1 )
+
+
+return m
--- /dev/null
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("UPS Plugin Configuration"),
+ translate("The NUT plugin reads information about Uninterruptible Power Supplies."))
+
+s = m:section(NamedSection, "collectd_nut", "luci_statistics" )
+
+enable = s:option(Flag, "enable", translate("Enable this plugin"))
+enable.default = 0
+
+host = s:option(Value, "UPS", translate("UPS"), translate("UPS name in NUT ups@host format"))
+host.placeholder = "myupsname"
+host.datatype = "string"
+host.rmempty = true
+
+return m
--- /dev/null
+-- Copyright 2011 Manuel Munz <freifunk at somakoma dot de>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("OLSRd Plugin Configuration"),
+ translate("The OLSRd plugin reads information about meshed networks from the txtinfo plugin of OLSRd."))
+
+s = m:section(NamedSection, "collectd_olsrd", "luci_statistics" )
+
+enable = s:option(Flag, "enable", translate("Enable this plugin"))
+enable.default = 0
+
+host = s:option(Value, "Host", translate("Host"), translate("IP or hostname where to get the txtinfo output from"))
+host.placeholder = "127.0.0.1"
+host.datatype = "host(1)"
+host.rmempty = true
+
+port = s:option(Value, "Port", translate("Port"))
+port.placeholder = "2006"
+port.datatype = "range(0,65535)"
+port.rmempty = true
+port.cast = "string"
+
+cl = s:option(ListValue, "CollectLinks", translate("CollectLinks"),
+ translate("Specifies what information to collect about links."))
+cl:value("No")
+cl:value("Summary")
+cl:value("Detail")
+cl.default = "Detail"
+
+cr = s:option(ListValue, "CollectRoutes", translate("CollectRoutes"),
+ translate("Specifies what information to collect about routes."))
+cr:value("No")
+cr:value("Summary")
+cr:value("Detail")
+cr.default = "Summary"
+
+ct = s:option(ListValue, "CollectTopology", translate("CollectTopology"),
+ translate("Specifies what information to collect about the global topology."))
+ct:value("No")
+ct:value("Summary")
+ct:value("Detail")
+ct.default = "Summary"
+
+return m
--- /dev/null
+-- Copyright 2015 Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+local m, s, o
+
+m = Map("luci_statistics",
+ translate("OpenVPN Plugin Configuration"),
+ translate("The OpenVPN plugin gathers information about the current vpn connection status."))
+
+s = m:section( NamedSection, "collectd_openvpn", "luci_statistics" )
+
+
+o = s:option( Flag, "enable", translate("Enable this plugin") )
+o.default = "0"
+
+
+o = s:option(Flag, "CollectIndividualUsers", translate("Generate a separate graph for each logged user"))
+o.default = "0"
+o.rmempty = true
+o:depends("enable", 1)
+
+
+o = s:option(Flag, "CollectUserCount", translate("Aggregate number of connected users"))
+o.default = "0"
+o.rmempty = true
+o:depends("enable", 1)
+
+
+o = s:option(Flag, "CollectCompression", translate("Gather compression statistics"))
+o.default = "0"
+o.rmempty = true
+o:depends("enable", 1)
+
+
+o = s:option(Flag, "ImprovedNamingSchema", translate("Use improved naming schema"))
+o.default = "0"
+o.rmempty = true
+o:depends("enable", 1)
+
+
+o = s:option(DynamicList, "StatusFile", translate("OpenVPN status files"))
+o.rmempty = true
+o:depends("enable", 1)
+
+local status_files = nixio.fs.glob("/var/run/openvpn.*.status")
+if status_files then
+ local status_file
+ for status_file in status_files do
+ o:value(status_file)
+ end
+end
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("Ping Plugin Configuration"),
+ translate(
+ "The ping plugin will send icmp echo replies to selected " ..
+ "hosts and measure the roundtrip time for each host."
+ ))
+
+-- collectd_ping config section
+s = m:section( NamedSection, "collectd_ping", "luci_statistics" )
+
+-- collectd_ping.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+-- collectd_ping.hosts (Host)
+hosts = s:option( Value, "Hosts", translate("Monitor hosts"), translate ("Add multiple hosts separated by space."))
+hosts.default = "127.0.0.1"
+hosts:depends( "enable", 1 )
+
+-- collectd_ping.ttl (TTL)
+ttl = s:option( Value, "TTL", translate("TTL for ping packets") )
+ttl.isinteger = true
+ttl.default = 128
+ttl:depends( "enable", 1 )
+
+-- collectd_ping.interval (Interval)
+interval = s:option( Value, "Interval", translate("Interval for pings"), translate ("Seconds") )
+interval.isinteger = true
+interval.default = 30
+interval:depends( "enable", 1 )
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("Processes Plugin Configuration"),
+ translate(
+ "The processes plugin collects information like cpu time, " ..
+ "page faults and memory usage of selected processes."
+ ))
+
+-- collectd_processes config section
+s = m:section( NamedSection, "collectd_processes", "luci_statistics" )
+
+-- collectd_processes.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+-- collectd_processes.processes (Process)
+processes = s:option( Value, "Processes", translate("Monitor processes"),
+ translate("Processes to monitor separated by space") )
+processes:depends( "enable", 1 )
+processes.default = "uhttpd dropbear dnsmasq"
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("RRDTool Plugin Configuration"),
+ translate(
+ "The rrdtool plugin stores the collected data in rrd database " ..
+ "files, the foundation of the diagrams.<br /><br />" ..
+ "<strong>Warning: Setting the wrong values will result in a very " ..
+ "high memory consumption in the temporary directory. " ..
+ "This can render the device unusable!</strong>"
+ ))
+
+-- collectd_rrdtool config section
+s = m:section( NamedSection, "collectd_rrdtool", "luci_statistics" )
+
+-- collectd_rrdtool.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 1
+
+-- collectd_rrdtool.datadir (DataDir)
+datadir = s:option( Value, "DataDir",
+ translate("Storage directory"),
+ translate("Note: as pages are rendered by user 'nobody', the *.rrd files, " ..
+ "the storage directory and all its parent directories need " ..
+ "to be world readable."
+ ))
+datadir.default = "/tmp"
+datadir.rmempty = true
+datadir.optional = true
+datadir:depends( "enable", 1 )
+
+-- collectd_rrdtool.stepsize (StepSize)
+stepsize = s:option( Value, "StepSize",
+ translate("RRD step interval"), translate("Seconds") )
+stepsize.default = 30
+stepsize.isinteger = true
+stepsize.rmempty = true
+stepsize.optional = true
+stepsize:depends( "enable", 1 )
+
+-- collectd_rrdtool.heartbeat (HeartBeat)
+heartbeat = s:option( Value, "HeartBeat",
+ translate("RRD heart beat interval"), translate("Seconds") )
+heartbeat.default = 60
+heartbeat.isinteger = true
+heartbeat.rmempty = true
+heartbeat.optional = true
+heartbeat:depends( "enable", 1 )
+
+-- collectd_rrdtool.rrasingle (RRASingle)
+rrasingle = s:option( Flag, "RRASingle",
+ translate("Only create average RRAs"), translate("reduces rrd size") )
+rrasingle.default = true
+rrasingle:depends( "enable", 1 )
+
+-- collectd_rrdtool.rramax (RRAMax)
+rramax = s:option( Flag, "RRAMax",
+ translate("Show max values instead of averages"),
+ translate("Max values for a period can be used instead of averages when not using 'only average RRAs'") )
+rramax.default = false
+rramax.rmempty = true
+rramax:depends( "RRASingle", 0 )
+
+-- collectd_rrdtool.rratimespans (RRATimespan)
+rratimespans = s:option( Value, "RRATimespans",
+ translate("Stored timespans"), translate("seconds; multiple separated by space") )
+rratimespans.default = "600 86400 604800 2678400 31622400"
+rratimespans.rmempty = true
+rratimespans.optional = true
+rratimespans:depends( "enable", 1 )
+
+-- collectd_rrdtool.rrarows (RRARows)
+rrarows = s:option( Value, "RRARows", translate("Rows per RRA") )
+rrarows.isinteger = true
+rrarows.default = 100
+rrarows.rmempty = true
+rrarows.optional = true
+rrarows:depends( "enable", 1 )
+
+-- collectd_rrdtool.xff (XFF)
+xff = s:option( Value, "XFF", translate("RRD XFiles Factor") )
+xff.default = 0.1
+xff.isnumber = true
+xff.rmempty = true
+xff.optional = true
+xff:depends( "enable", 1 )
+
+-- collectd_rrdtool.cachetimeout (CacheTimeout)
+cachetimeout = s:option( Value, "CacheTimeout",
+ translate("Cache collected data for"), translate("Seconds") )
+cachetimeout.isinteger = true
+cachetimeout.default = 100
+cachetimeout.rmempty = true
+cachetimeout.optional = true
+cachetimeout:depends( "enable", 1 )
+
+-- collectd_rrdtool.cacheflush (CacheFlush)
+cacheflush = s:option( Value, "CacheFlush",
+ translate("Flush cache after"), translate("Seconds") )
+cacheflush.isinteger = true
+cacheflush.default = 100
+cacheflush.rmempty = true
+cacheflush.optional = true
+cacheflush:depends( "enable", 1 )
+
+return m
--- /dev/null
+-- Copyright 2015 Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+local m, s, o
+local sensor_types = {
+ ["12v"] = "voltage",
+ ["2.0v"] = "voltage",
+ ["2.5v"] = "voltage",
+ ["3.3v"] = "voltage",
+ ["5.0v"] = "voltage",
+ ["5v"] = "voltage",
+ ["ain1"] = "voltage",
+ ["ain2"] = "voltage",
+ ["cpu_temp"] = "temperature",
+ ["fan1"] = "fanspeed",
+ ["fan2"] = "fanspeed",
+ ["fan3"] = "fanspeed",
+ ["fan4"] = "fanspeed",
+ ["fan5"] = "fanspeed",
+ ["fan6"] = "fanspeed",
+ ["fan7"] = "fanspeed",
+ ["in0"] = "voltage",
+ ["in10"] = "voltage",
+ ["in2"] = "voltage",
+ ["in3"] = "voltage",
+ ["in4"] = "voltage",
+ ["in5"] = "voltage",
+ ["in6"] = "voltage",
+ ["in7"] = "voltage",
+ ["in8"] = "voltage",
+ ["in9"] = "voltage",
+ ["power1"] = "power",
+ ["remote_temp"] = "temperature",
+ ["temp1"] = "temperature",
+ ["temp2"] = "temperature",
+ ["temp3"] = "temperature",
+ ["temp4"] = "temperature",
+ ["temp5"] = "temperature",
+ ["temp6"] = "temperature",
+ ["temp7"] = "temperature",
+ ["temp"] = "temperature",
+ ["vccp1"] = "voltage",
+ ["vccp2"] = "voltage",
+ ["vdd"] = "voltage",
+ ["vid1"] = "voltage",
+ ["vid2"] = "voltage",
+ ["vid3"] = "voltage",
+ ["vid4"] = "voltage",
+ ["vid5"] = "voltage",
+ ["vid"] = "voltage",
+ ["vin1"] = "voltage",
+ ["vin2"] = "voltage",
+ ["vin3"] = "voltage",
+ ["vin4"] = "voltage",
+ ["volt12"] = "voltage",
+ ["volt5"] = "voltage",
+ ["voltbatt"] = "voltage",
+ ["vrm"] = "voltage"
+
+}
+
+
+m = Map("luci_statistics",
+ translate("Sensors Plugin Configuration"),
+ translate("The sensors plugin uses the Linux Sensors framework to gather environmental statistics."))
+
+s = m:section( NamedSection, "collectd_sensors", "luci_statistics" )
+
+
+o = s:option( Flag, "enable", translate("Enable this plugin") )
+o.default = 0
+
+
+o = s:option(Flag, "__all", translate("Monitor all sensors"))
+o:depends("enable", 1)
+o.default = 1
+o.write = function() end
+o.cfgvalue = function(self, sid)
+ local v = self.map:get(sid, "Sensor")
+ if v == nil or (type(v) == "table" and #v == 0) or (type(v) == "string" and #v == 0) then
+ return "1"
+ end
+end
+
+
+o = s:option(MultiValue, "Sensor", translate("Sensor list"), translate("Hold Ctrl to select multiple items or to deselect entries."))
+o:depends({enable = 1, __all = "" })
+o.widget = "select"
+o.rmempty = true
+o.size = 0
+
+local sensorcli = io.popen("/usr/sbin/sensors -u -A")
+if sensorcli then
+ local bus, sensor
+
+ while true do
+ local ln = sensorcli:read("*ln")
+ if not ln then
+ break
+ elseif ln:match("^[%w-]+$") then
+ bus = ln
+ elseif ln:match("^[%w-]+:$") then
+ sensor = ln:sub(0, -2):lower()
+ if bus and sensor_types[sensor] then
+ o:value("%s/%s-%s" %{ bus, sensor_types[sensor], sensor })
+ o.size = o.size + 1
+ end
+ elseif ln == "" then
+ bus = nil
+ sensor = nil
+ end
+ end
+
+ sensorcli:close()
+end
+
+
+o = s:option( Flag, "IgnoreSelected", translate("Monitor all except specified") )
+o.default = 0
+o.rmempty = true
+o:depends({ enable = 1, __all = "" })
+
+return m
--- /dev/null
+-- Copyright 2013 Freifunk Augsburg / Michael Wendland <michael@michiwend.com>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("Splash Leases Plugin Configuration"),
+ translate("The splash leases plugin uses libuci to collect statistics about splash leases."))
+
+s = m:section( NamedSection, "collectd_splash_leases", "luci_statistics" )
+
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 1
+
+return m
+
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("TCPConns Plugin Configuration"),
+ translate(
+ "The tcpconns plugin collects information about open tcp " ..
+ "connections on selected ports."
+ ))
+
+-- collectd_tcpconns config section
+s = m:section( NamedSection, "collectd_tcpconns", "luci_statistics" )
+
+-- collectd_tcpconns.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+-- collectd_tcpconns.listeningports (ListeningPorts)
+listeningports = s:option( Flag, "ListeningPorts", translate("Monitor all local listen ports") )
+listeningports.default = 1
+listeningports:depends( "enable", 1 )
+
+-- collectd_tcpconns.localports (LocalPort)
+localports = s:option( Value, "LocalPorts", translate("Monitor local ports") )
+localports.optional = true
+localports:depends( "enable", 1 )
+
+-- collectd_tcpconns.remoteports (RemotePort)
+remoteports = s:option( Value, "RemotePorts", translate("Monitor remote ports") )
+remoteports.optional = true
+remoteports:depends( "enable", 1 )
+
+return m
--- /dev/null
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("Thermal Plugin Configuration"),
+ translate("The thermal plugin will monitor temperature of the system. " ..
+ "Data is typically read from /sys/class/thermal/*/temp " ..
+ "( '*' denotes the thermal device to be read, e.g. thermal_zone1 )")
+ )
+
+-- collectd_thermal config section
+s = m:section( NamedSection, "collectd_thermal", "luci_statistics" )
+
+-- collectd_thermal.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+-- collectd_thermal.tz (Device)
+tz = s:option( Value, "Device", translate("Monitor device(s) / thermal zone(s)"),
+ translate("Empty value = monitor all") )
+tz.optional = true
+tz:depends( "enable", 1 )
+
+-- collectd_thermal.ignoreselected (IgnoreSelected)
+ignoreselected = s:option( Flag, "IgnoreSelected", translate("Monitor all except specified") )
+ignoreselected.default = 0
+ignoreselected.optional = true
+ignoreselected:depends( "enable", 1 )
+
+return m
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("Unixsock Plugin Configuration"),
+ translate(
+ "The unixsock plugin creates a unix socket which can be used " ..
+ "to read collected data from a running collectd instance."
+ ))
+
+-- collectd_unixsock config section
+s = m:section( NamedSection, "collectd_unixsock", "luci_statistics" )
+
+-- collectd_unixsock.enable
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+-- collectd_unixsock.socketfile (SocketFile)
+socketfile = s:option( Value, "SocketFile" )
+socketfile.default = "/var/run/collect-query.socket"
+socketfile:depends( "enable", 1 )
+
+-- collectd_unixsock.socketgroup (SocketGroup)
+socketgroup = s:option( Value, "SocketGroup" )
+socketgroup.default = "nobody"
+socketgroup.rmempty = true
+socketgroup.optional = true
+socketgroup:depends( "enable", 1 )
+
+-- collectd_unixsock.socketperms (SocketPerms)
+socketperms = s:option( Value, "SocketPerms" )
+socketperms.default = "0770"
+socketperms.rmempty = true
+socketperms.optional = true
+socketperms:depends( "enable", 1 )
+
+return m
--- /dev/null
+-- Copyright 2013 Thomas Endt <tmo26@gmx.de>
+-- Licensed to the public under the Apache License 2.0.
+
+m = Map("luci_statistics",
+ translate("Uptime Plugin Configuration"),
+ translate("The uptime plugin collects statistics about the uptime of the system."))
+
+s = m:section( NamedSection, "collectd_uptime", "luci_statistics" )
+
+enable = s:option( Flag, "enable", translate("Enable this plugin") )
+enable.default = 0
+
+return m
+
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.datatree", package.seeall)
+
+local util = require("luci.util")
+local sys = require("luci.sys")
+local fs = require("nixio.fs")
+local uci = require("luci.model.uci").cursor()
+local sections = uci:get_all("luci_statistics")
+
+
+Instance = util.class()
+
+function Instance.__init__( self, host )
+ self._host = host or sys.hostname()
+ self._libdir = "/usr/lib/collectd"
+ self._rrddir = "/tmp/rrd"
+
+ if sections and sections.collectd then
+ self._host = host or sections.collectd.Hostname or sys.hostname()
+ self._libdir = sections.collectd.PluginDir or "/usr/lib/collectd"
+ end
+ if sections and sections.collectd_rrdtool then
+ self._rrddir = sections.collectd_rrdtool.DataDir or "/tmp/rrd"
+ end
+
+ self._libdir = self._libdir:gsub("/$","")
+ self._rrddir = self._rrddir:gsub("/$","")
+ self._plugins = { }
+
+ self:_scan()
+end
+
+function Instance._mkpath( self, plugin, pinstance )
+ local dir = self._rrddir .. "/" .. self._host
+
+ if type(plugin) == "string" and plugin:len() > 0 then
+ dir = dir .. "/" .. plugin
+
+ if type(pinstance) == "string" and pinstance:len() > 0 then
+ dir = dir .. "-" .. pinstance
+ end
+ end
+
+ return dir
+end
+
+function Instance._ls( self, ... )
+ local ditr = fs.dir(self:_mkpath(...))
+ if ditr then
+ local dirs = { }
+ while true do
+ local d = ditr()
+ if not d then break end
+ dirs[#dirs+1] = d
+ end
+ return dirs
+ end
+end
+
+function Instance._notzero( self, table )
+ for k in pairs(table) do
+ return true
+ end
+
+ return false
+end
+
+function Instance._scan( self )
+ local dirs = self:_ls()
+ if not dirs then
+ return
+ end
+
+-- for i, plugin in ipairs( dirs ) do
+-- if plugin:match("%w+.so") then
+-- self._plugins[ plugin:gsub("%.so$", "") ] = { }
+-- end
+-- end
+
+ for _, dir in ipairs(dirs) do
+ if dir ~= "." and dir ~= ".." and
+ fs.stat(self:_mkpath(dir)).type == "dir"
+ then
+ local plugin = dir:gsub("%-.+$", "")
+ if not self._plugins[plugin] then
+ self._plugins[plugin] = { }
+ end
+ end
+ end
+
+ for plugin, instances in pairs( self._plugins ) do
+
+ local dirs = self:_ls()
+
+ if type(dirs) == "table" then
+ for i, dir in ipairs(dirs) do
+ if dir:find( plugin .. "%-" ) or dir == plugin then
+ local instance = ""
+
+ if dir ~= plugin then
+ instance = dir:gsub( plugin .. "%-", "", 1 )
+ end
+
+ instances[instance] = { }
+ end
+ end
+ end
+
+ for instance, data_instances in pairs( instances ) do
+
+ dirs = self:_ls(plugin, instance)
+
+ if type(dirs) == "table" then
+ for i, file in ipairs(dirs) do
+ if file:find("%.rrd") then
+ file = file:gsub("%.rrd","")
+
+ local data_type
+ local data_instance
+
+ if file:find("%-") then
+ data_type = file:gsub( "%-.+","" )
+ data_instance = file:gsub( "[^%-]-%-", "", 1 )
+ else
+ data_type = file
+ data_instance = ""
+ end
+
+ if not data_instances[data_type] then
+ data_instances[data_type] = { data_instance }
+ else
+ table.insert( data_instances[data_type], data_instance )
+ end
+ end
+ end
+ end
+ end
+ end
+end
+
+
+function Instance.plugins( self )
+ local rv = { }
+
+ for plugin, val in pairs( self._plugins ) do
+ if self:_notzero( val ) then
+ table.insert( rv, plugin )
+ end
+ end
+
+ return rv
+end
+
+function Instance.plugin_instances( self, plugin )
+ local rv = { }
+
+ for instance, val in pairs( self._plugins[plugin] ) do
+ table.insert( rv, instance )
+ end
+
+ return rv
+end
+
+function Instance.data_types( self, plugin, instance )
+ local rv = { }
+ local p = self._plugins[plugin]
+
+ if type(p) == "table" and type(p[instance]) == "table" then
+ for type, val in pairs(p[instance]) do
+ table.insert( rv, type )
+ end
+ end
+
+ return rv
+end
+
+function Instance.data_instances( self, plugin, instance, dtype )
+ local rv = { }
+ local p = self._plugins[plugin]
+
+ if type(p) == "table" and type(p[instance]) == "table" and type(p[instance][dtype]) == "table" then
+ for i, instance in ipairs(p[instance][dtype]) do
+ table.insert( rv, instance )
+ end
+ end
+
+ return rv
+end
+
+function Instance.host_instances( self )
+ local hosts_path = fs.glob(self._rrddir..'/*')
+ local hosts = { }
+
+ if hosts_path then
+ local path
+ for path in hosts_path do
+ hosts[#hosts+1] = fs.basename(path)
+ end
+ end
+
+ return hosts
+end
+
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.i18n", package.seeall)
+
+local util = require("luci.util")
+local i18n = require("luci.i18n")
+
+
+Instance = util.class()
+
+function Instance.__init__( self, graph )
+ self.i18n = i18n
+ self.graph = graph
+end
+
+function Instance._subst( self, str, val )
+ str = str:gsub( "%%H", self.graph.opts.host or "" )
+ str = str:gsub( "%%pn", val.plugin or "" )
+ str = str:gsub( "%%pi", val.pinst or "" )
+ str = str:gsub( "%%dt", val.dtype or "" )
+ str = str:gsub( "%%di", val.dinst or "" )
+ str = str:gsub( "%%ds", val.dsrc or "" )
+
+ return str
+end
+
+function Instance.title( self, plugin, pinst, dtype, dinst, user_title )
+
+ local title = user_title or
+ "p=%s/pi=%s/dt=%s/di=%s" % {
+ plugin,
+ (pinst and #pinst > 0) and pinst or "(nil)",
+ (dtype and #dtype > 0) and dtype or "(nil)",
+ (dinst and #dinst > 0) and dinst or "(nil)"
+ }
+
+ return self:_subst( title, {
+ plugin = plugin,
+ pinst = pinst,
+ dtype = dtype,
+ dinst = dinst
+ } )
+
+end
+
+function Instance.label( self, plugin, pinst, dtype, dinst, user_label )
+
+ local label = user_label or
+ "dt=%s/di=%s" % {
+ (dtype and #dtype > 0) and dtype or "(nil)",
+ (dinst and #dinst > 0) and dinst or "(nil)"
+ }
+
+ return self:_subst( label, {
+ plugin = plugin,
+ pinst = pinst,
+ dtype = dtype,
+ dinst = dinst
+ } )
+
+end
+
+function Instance.ds( self, source )
+
+ local label = source.title or
+ "dt=%s/di=%s/ds=%s" % {
+ (source.type and #source.type > 0) and source.type or "(nil)",
+ (source.instance and #source.instance > 0) and source.instance or "(nil)",
+ (source.ds and #source.ds > 0) and source.ds or "(nil)"
+ }
+
+ return self:_subst( label, {
+ dtype = source.type,
+ dinst = source.instance,
+ dsrc = source.ds
+ } ):gsub(":", "\\:")
+
+end
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool", package.seeall)
+
+local tree = require("luci.statistics.datatree")
+local colors = require("luci.statistics.rrdtool.colors")
+local i18n = require("luci.statistics.i18n")
+local uci = require("luci.model.uci").cursor()
+local util = require("luci.util")
+local sys = require("luci.sys")
+local fs = require("nixio.fs")
+
+
+Graph = util.class()
+
+function Graph.__init__( self, timespan, opts )
+
+ opts = opts or { }
+
+ local sections = uci:get_all( "luci_statistics" )
+
+ -- options
+ opts.timespan = timespan or sections.rrdtool.default_timespan or 900
+ opts.rrasingle = opts.rrasingle or ( sections.collectd_rrdtool.RRASingle == "1" )
+ opts.rramax = opts.rramax or ( sections.collectd_rrdtool.RRAMax == "1" )
+ opts.host = opts.host or sections.collectd.Hostname or sys.hostname()
+ opts.width = opts.width or sections.rrdtool.image_width or 400
+ opts.height = opts.height or sections.rrdtool.image_height or 100
+ opts.rrdpath = opts.rrdpath or sections.collectd_rrdtool.DataDir or "/tmp/rrd"
+ opts.imgpath = opts.imgpath or sections.rrdtool.image_path or "/tmp/rrdimg"
+ opts.rrdpath = opts.rrdpath:gsub("/$","")
+ opts.imgpath = opts.imgpath:gsub("/$","")
+
+ -- helper classes
+ self.colors = colors.Instance()
+ self.tree = tree.Instance(opts.host)
+ self.i18n = i18n.Instance( self )
+
+ -- rrdtool default args
+ self.args = {
+ "-a", "PNG",
+ "-s", "NOW-" .. opts.timespan,
+ "-w", opts.width,
+ "-h", opts.height
+ }
+
+ -- store options
+ self.opts = opts
+end
+
+function Graph._mkpath( self, plugin, plugin_instance, dtype, dtype_instance )
+ local t = self.opts.host .. "/" .. plugin
+ if type(plugin_instance) == "string" and plugin_instance:len() > 0 then
+ t = t .. "-" .. plugin_instance
+ end
+ t = t .. "/" .. dtype
+ if type(dtype_instance) == "string" and dtype_instance:len() > 0 then
+ t = t .. "-" .. dtype_instance
+ end
+ return t
+end
+
+function Graph.mkrrdpath( self, ... )
+ return string.format( "%s/%s.rrd", self.opts.rrdpath, self:_mkpath( ... ):gsub("\\", "\\\\"):gsub(":", "\\:") )
+end
+
+function Graph.mkpngpath( self, ... )
+ return string.format( "%s/%s.%i.png", self.opts.imgpath, self:_mkpath( ... ), self.opts.timespan )
+end
+
+function Graph.strippngpath( self, path )
+ return path:sub( self.opts.imgpath:len() + 2 )
+end
+
+function Graph._forcelol( self, list )
+ if type(list[1]) ~= "table" then
+ return( { list } )
+ end
+ return( list )
+end
+
+function Graph._rrdtool( self, def, rrd )
+
+ -- prepare directory
+ local dir = def[1]:gsub("/[^/]+$","")
+ fs.mkdirr( dir )
+
+ -- construct commandline
+ local cmdline = { "rrdtool", "graph" }
+
+ -- copy default arguments to def stack
+ for i, opt in ipairs(self.args) do
+ table.insert( def, 1 + i, opt )
+ end
+
+ -- construct commandline from def stack
+ for i, opt in ipairs(def) do
+ opt = opt .. "" -- force string
+
+ if rrd then
+ opt = opt:gsub( "{file}", rrd )
+ end
+
+ cmdline[#cmdline+1] = util.shellquote(opt)
+ end
+
+ -- execute rrdtool
+ local rrdtool = io.popen(table.concat(cmdline, " "))
+ rrdtool:close()
+end
+
+function Graph._generic( self, opts, plugin, plugin_instance, dtype, index )
+
+ -- generated graph defs
+ local defs = { }
+
+ -- internal state variables
+ local _args = { }
+ local _sources = { }
+ local _stack_neg = { }
+ local _stack_pos = { }
+ local _longest_name = 0
+ local _has_totals = false
+
+ -- some convenient aliases
+ local _ti = table.insert
+ local _sf = string.format
+
+ -- local helper: append a string.format() formatted string to given table
+ function _tif( list, fmt, ... )
+ table.insert( list, string.format( fmt, ... ) )
+ end
+
+ -- local helper: create definitions for min, max, avg and create *_nnl (not null) variable from avg
+ function __def(source)
+
+ local inst = source.sname
+ local rrd = source.rrd:gsub(":", "\\:")
+ local ds = source.ds
+
+ if not ds or ds:len() == 0 then ds = "value" end
+
+ _tif( _args, "DEF:%s_avg_raw=%s:%s:AVERAGE", inst, rrd, ds )
+ _tif( _args, "CDEF:%s_avg=%s_avg_raw,%s", inst, inst, source.transform_rpn )
+
+ if not self.opts.rrasingle then
+ _tif( _args, "DEF:%s_min_raw=%s:%s:MIN", inst, rrd, ds )
+ _tif( _args, "CDEF:%s_min=%s_min_raw,%s", inst, inst, source.transform_rpn )
+ _tif( _args, "DEF:%s_max_raw=%s:%s:MAX", inst, rrd, ds )
+ _tif( _args, "CDEF:%s_max=%s_max_raw,%s", inst, inst, source.transform_rpn )
+ end
+
+ _tif( _args, "CDEF:%s_nnl=%s_avg,UN,0,%s_avg,IF", inst, inst, inst )
+ end
+
+ -- local helper: create cdefs depending on source options like flip and overlay
+ function __cdef(source)
+
+ local prev
+
+ -- find previous source, choose stack depending on flip state
+ if source.flip then
+ prev = _stack_neg[#_stack_neg]
+ else
+ prev = _stack_pos[#_stack_pos]
+ end
+
+ -- is first source in stack or overlay source: source_stk = source_nnl
+ if not prev or source.overlay then
+ if self.opts.rrasingle or not self.opts.rramax then
+ -- create cdef statement for cumulative stack (no NaNs) and also
+ -- for display (preserving NaN where no points should be displayed)
+ _tif( _args, "CDEF:%s_stk=%s_nnl", source.sname, source.sname )
+ _tif( _args, "CDEF:%s_plot=%s_avg", source.sname, source.sname )
+ else
+ -- create cdef statement for cumulative stack (no NaNs) and also
+ -- for display (preserving NaN where no points should be displayed)
+ _tif( _args, "CDEF:%s_stk=%s_nnl", source.sname, source.sname )
+ _tif( _args, "CDEF:%s_plot=%s_max", source.sname, source.sname )
+ end
+
+ -- is subsequent source without overlay: source_stk = source_nnl + previous_stk
+ else
+ if self.opts.rrasingle or not self.opts.rramax then
+ -- create cdef statement
+ _tif( _args, "CDEF:%s_stk=%s_nnl,%s_stk,+", source.sname, source.sname, prev )
+ _tif( _args, "CDEF:%s_plot=%s_avg,%s_stk,+", source.sname, source.sname, prev )
+ else
+ -- create cdef statement
+ _tif( _args, "CDEF:%s_stk=%s_nnl,%s_stk,+", source.sname, source.sname, prev )
+ _tif( _args, "CDEF:%s_plot=%s_max,%s_stk,+", source.sname, source.sname, prev )
+ end
+ end
+
+ -- create multiply by minus one cdef if flip is enabled
+ if source.flip then
+
+ -- create cdef statement: source_stk = source_stk * -1
+ _tif( _args, "CDEF:%s_neg=%s_plot,-1,*", source.sname, source.sname )
+
+ -- push to negative stack if overlay is disabled
+ if not source.overlay then
+ _ti( _stack_neg, source.sname )
+ end
+
+ -- no flipping, push to positive stack if overlay is disabled
+ elseif not source.overlay then
+
+ -- push to positive stack
+ _ti( _stack_pos, source.sname )
+ end
+
+ -- calculate total amount of data if requested
+ if source.total then
+ _tif( _args,
+ "CDEF:%s_avg_sample=%s_avg,UN,0,%s_avg,IF,sample_len,*",
+ source.sname, source.sname, source.sname
+ )
+
+ _tif( _args,
+ "CDEF:%s_avg_sum=PREV,UN,0,PREV,IF,%s_avg_sample,+",
+ source.sname, source.sname, source.sname
+ )
+ end
+ end
+
+ -- local helper: create cdefs required for calculating total values
+ function __cdef_totals()
+ if _has_totals then
+ _tif( _args, "CDEF:mytime=%s_avg,TIME,TIME,IF", _sources[1].sname )
+ _ti( _args, "CDEF:sample_len_raw=mytime,PREV(mytime),-" )
+ _ti( _args, "CDEF:sample_len=sample_len_raw,UN,0,sample_len_raw,IF" )
+ end
+ end
+
+ -- local helper: create line and area statements
+ function __line(source)
+
+ local line_color
+ local area_color
+ local legend
+ local var
+
+ -- find colors: try source, then opts.colors; fall back to random color
+ if type(source.color) == "string" then
+ line_color = source.color
+ area_color = self.colors:from_string( line_color )
+ elseif type(opts.colors[source.name:gsub("[^%w]","_")]) == "string" then
+ line_color = opts.colors[source.name:gsub("[^%w]","_")]
+ area_color = self.colors:from_string( line_color )
+ else
+ area_color = self.colors:random()
+ line_color = self.colors:to_string( area_color )
+ end
+
+ -- derive area background color from line color
+ area_color = self.colors:to_string( self.colors:faded( area_color ) )
+
+ -- choose source_plot or source_neg variable depending on flip state
+ if source.flip then
+ var = "neg"
+ else
+ var = "plot"
+ end
+
+ -- create legend
+ legend = _sf( "%-" .. _longest_name .. "s", source.title )
+
+ -- create area if not disabled
+ if not source.noarea then
+ _tif( _args, "AREA:%s_%s#%s", source.sname, var, area_color )
+ end
+
+ -- create line1 statement
+ _tif( _args, "LINE%d:%s_%s#%s:%s",
+ source.width or (source.noarea and 2 or 1),
+ source.sname, var, line_color, legend )
+ end
+
+ -- local helper: create gprint statements
+ function __gprint(source)
+
+ local numfmt = opts.number_format or "%6.1lf"
+ local totfmt = opts.totals_format or "%5.1lf%s"
+
+ -- don't include MIN if rrasingle is enabled
+ if not self.opts.rrasingle then
+ _tif( _args, "GPRINT:%s_min:MIN:\tMin\\: %s", source.sname, numfmt )
+ end
+
+ -- always include AVERAGE
+ _tif( _args, "GPRINT:%s_avg:AVERAGE:\tAvg\\: %s", source.sname, numfmt )
+
+ -- don't include MAX if rrasingle is enabled
+ if not self.opts.rrasingle then
+ _tif( _args, "GPRINT:%s_max:MAX:\tMax\\: %s", source.sname, numfmt )
+ end
+
+ -- include total count if requested else include LAST
+ if source.total then
+ _tif( _args, "GPRINT:%s_avg_sum:LAST:(ca. %s Total)\\l", source.sname, totfmt )
+ else
+ _tif( _args, "GPRINT:%s_avg:LAST:\tLast\\: %s\\l", source.sname, numfmt )
+ end
+ end
+
+
+ --
+ -- find all data sources
+ --
+
+ -- find data types
+ local data_types
+
+ if dtype then
+ data_types = { dtype }
+ else
+ data_types = opts.data.types or { }
+ end
+
+ if not ( dtype or opts.data.types ) then
+ if opts.data.instances then
+ for k, v in pairs(opts.data.instances) do
+ _ti( data_types, k )
+ end
+ elseif opts.data.sources then
+ for k, v in pairs(opts.data.sources) do
+ _ti( data_types, k )
+ end
+ end
+ end
+
+
+ -- iterate over data types
+ for i, dtype in ipairs(data_types) do
+
+ -- find instances
+
+ local data_instances
+
+ if not opts.per_instance then
+ if type(opts.data.instances) == "table" and type(opts.data.instances[dtype]) == "table" then
+ data_instances = opts.data.instances[dtype]
+ else
+ data_instances = self.tree:data_instances( plugin, plugin_instance, dtype )
+ end
+ end
+
+ if type(data_instances) ~= "table" or #data_instances == 0 then data_instances = { "" } end
+
+
+ -- iterate over data instances
+ for i, dinst in ipairs(data_instances) do
+
+ -- construct combined data type / instance name
+ local dname = dtype
+
+ if dinst:len() > 0 then
+ dname = dname .. "_" .. dinst
+ end
+
+
+ -- find sources
+ local data_sources = { "value" }
+
+ if type(opts.data.sources) == "table" then
+ if type(opts.data.sources[dname]) == "table" then
+ data_sources = opts.data.sources[dname]
+ elseif type(opts.data.sources[dtype]) == "table" then
+ data_sources = opts.data.sources[dtype]
+ end
+ end
+
+
+ -- iterate over data sources
+ for i, dsource in ipairs(data_sources) do
+
+ local dsname = dtype .. "_" .. dinst:gsub("[^%w]","_") .. "_" .. dsource
+ local altname = dtype .. "__" .. dsource
+
+ --assert(dtype ~= "ping", dsname .. " or " .. altname)
+
+ -- find datasource options
+ local dopts = { }
+
+ if type(opts.data.options) == "table" then
+ if type(opts.data.options[dsname]) == "table" then
+ dopts = opts.data.options[dsname]
+ elseif type(opts.data.options[altname]) == "table" then
+ dopts = opts.data.options[altname]
+ elseif type(opts.data.options[dname]) == "table" then
+ dopts = opts.data.options[dname]
+ elseif type(opts.data.options[dtype]) == "table" then
+ dopts = opts.data.options[dtype]
+ end
+ end
+
+
+ -- store values
+ _ti( _sources, {
+ rrd = dopts.rrd or self:mkrrdpath( plugin, plugin_instance, dtype, dinst ),
+ color = dopts.color or self.colors:to_string( self.colors:random() ),
+ flip = dopts.flip or false,
+ total = dopts.total or false,
+ overlay = dopts.overlay or false,
+ transform_rpn = dopts.transform_rpn or "0,+",
+ noarea = dopts.noarea or false,
+ title = dopts.title or nil,
+ weight = dopts.weight or
+ (dopts.negweight and -tonumber(dinst)) or
+ (dopts.posweight and tonumber(dinst)) or nil,
+ ds = dsource,
+ type = dtype,
+ instance = dinst,
+ index = #_sources + 1,
+ sname = ( #_sources + 1 ) .. dtype
+ } )
+
+
+ -- generate datasource title
+ _sources[#_sources].title = self.i18n:ds( _sources[#_sources] )
+
+
+ -- find longest name ...
+ if _sources[#_sources].title:len() > _longest_name then
+ _longest_name = _sources[#_sources].title:len()
+ end
+
+
+ -- has totals?
+ if _sources[#_sources].total then
+ _has_totals = true
+ end
+ end
+ end
+ end
+
+
+ --
+ -- construct diagrams
+ --
+
+ -- if per_instance is enabled then find all instances from the first datasource in diagram
+ -- if per_instance is disabled then use an empty pseudo instance and use model provided values
+ local instances = { "" }
+
+ if opts.per_instance then
+ instances = self.tree:data_instances( plugin, plugin_instance, _sources[1].type )
+ end
+
+
+ -- iterate over instances
+ for i, instance in ipairs(instances) do
+
+ -- store title and vlabel
+ _ti( _args, "-t" )
+ _ti( _args, self.i18n:title( plugin, plugin_instance, _sources[1].type, instance, opts.title ) )
+ _ti( _args, "-v" )
+ _ti( _args, self.i18n:label( plugin, plugin_instance, _sources[1].type, instance, opts.vlabel ) )
+ if opts.y_max then
+ _ti ( _args, "-u" )
+ _ti ( _args, opts.y_max )
+ end
+ if opts.y_min then
+ _ti ( _args, "-l" )
+ _ti ( _args, opts.y_min )
+ end
+ if opts.units_exponent then
+ _ti ( _args, "-X" )
+ _ti ( _args, opts.units_exponent )
+ end
+ if opts.alt_autoscale then
+ _ti ( _args, "-A" )
+ end
+ if opts.alt_autoscale_max then
+ _ti ( _args, "-M" )
+ end
+
+ -- store additional rrd options
+ if opts.rrdopts then
+ for i, o in ipairs(opts.rrdopts) do _ti( _args, o ) end
+ end
+
+ -- sort sources
+ table.sort(_sources, function(a, b)
+ local x = a.weight or a.index or 0
+ local y = b.weight or b.index or 0
+ return x < y
+ end)
+
+ -- define colors in order
+ if opts.ordercolor then
+ for i, source in ipairs(_sources) do
+ source.color = self.colors:defined(i)
+ end
+ end
+
+ -- create DEF statements for each instance
+ for i, source in ipairs(_sources) do
+ -- fixup properties for per instance mode...
+ if opts.per_instance then
+ source.instance = instance
+ source.rrd = self:mkrrdpath( plugin, plugin_instance, source.type, instance )
+ end
+
+ __def( source )
+ end
+
+ -- create CDEF required for calculating totals
+ __cdef_totals()
+
+ -- create CDEF statements for each instance in reversed order
+ for i, source in ipairs(_sources) do
+ __cdef( _sources[1 + #_sources - i] )
+ end
+
+ -- create LINE1, AREA and GPRINT statements for each instance
+ for i, source in ipairs(_sources) do
+ __line( source )
+ __gprint( source )
+ end
+
+ -- prepend image path to arg stack
+ _ti( _args, 1, self:mkpngpath( plugin, plugin_instance, index .. instance ) )
+
+ -- push arg stack to definition list
+ _ti( defs, _args )
+
+ -- reset stacks
+ _args = { }
+ _stack_pos = { }
+ _stack_neg = { }
+ end
+
+ return defs
+end
+
+function Graph.render( self, plugin, plugin_instance, is_index )
+
+ dtype_instances = dtype_instances or { "" }
+ local pngs = { }
+
+ -- check for a whole graph handler
+ local plugin_def = "luci.statistics.rrdtool.definitions." .. plugin
+ local stat, def = pcall( require, plugin_def )
+
+ if stat and def and type(def.rrdargs) == "function" then
+
+ -- temporary image matrix
+ local _images = { }
+
+ -- get diagram definitions
+ for i, opts in ipairs( self:_forcelol( def.rrdargs( self, plugin, plugin_instance, nil, is_index ) ) ) do
+ if not is_index or not opts.detail then
+ _images[i] = { }
+
+ -- get diagram definition instances
+ local diagrams = self:_generic( opts, plugin, plugin_instance, nil, i )
+
+ -- render all diagrams
+ for j, def in ipairs( diagrams ) do
+ -- remember image
+ _images[i][j] = def[1]
+
+ -- exec
+ self:_rrdtool( def )
+ end
+ end
+ end
+
+ -- remember images - XXX: fixme (will cause probs with asymmetric data)
+ for y = 1, #_images[1] do
+ for x = 1, #_images do
+ table.insert( pngs, _images[x][y] )
+ end
+ end
+ end
+
+ return pngs
+end
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.colors", package.seeall)
+
+local util = require("luci.util")
+
+
+Instance = util.class()
+
+function Instance.from_string( self, s )
+ return {
+ tonumber(s:sub(1,2), 16),
+ tonumber(s:sub(3,4), 16),
+ tonumber(s:sub(5,6), 16)
+ }
+end
+
+function Instance.to_string( self, c )
+ return string.format(
+ "%02x%02x%02x",
+ math.floor(c[1]),
+ math.floor(c[2]),
+ math.floor(c[3])
+ )
+end
+
+function Instance.defined( self, i )
+ local t = {
+ {230, 25, 75},
+ {245, 130, 48},
+ {255, 225, 25},
+ {60, 180, 75},
+ {70, 240, 240},
+ {0, 130, 200},
+ {0, 0, 128},
+ {170, 110, 40}
+ }
+ return string.format(
+ "%02x%02x%02x",
+ t[(i-1) % #t + 1][1], t[(i-1) % #t +1][2], t[(i-1) % #t + 1][3] )
+end
+
+function Instance.random( self )
+ local r = math.random(255)
+ local g = math.random(255)
+ local min = 0
+ local max = 255
+
+ if ( r + g ) < 255 then
+ min = 255 - r - g
+ else
+ max = 511 - r - g
+ end
+
+ local b = min + math.floor( math.random() * ( max - min ) )
+
+ return { r, g, b }
+end
+
+function Instance.faded( self, fg, opts )
+ opts = opts or {}
+ opts.background = opts.background or { 255, 255, 255 }
+ opts.alpha = opts.alpha or 0.25
+
+ if type(opts.background) == "string" then
+ opts.background = _string_to_color(opts.background)
+ end
+
+ local bg = opts.background
+
+ return {
+ ( opts.alpha * fg[1] ) + ( ( 1.0 - opts.alpha ) * bg[1] ),
+ ( opts.alpha * fg[2] ) + ( ( 1.0 - opts.alpha ) * bg[2] ),
+ ( opts.alpha * fg[3] ) + ( ( 1.0 - opts.alpha ) * bg[3] )
+ }
+end
--- /dev/null
+-- Copyright 2015 Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.apcups",package.seeall)
+
+function item()
+ return luci.i18n.translate("APC UPS")
+end
+
+function rrdargs( graph, plugin, plugin_instance )
+
+ local lu = require("luci.util")
+ local rv = { }
+
+ -- Types and instances supported by APC UPS
+ -- e.g. ups_types -> { 'timeleft', 'charge', 'percent', 'voltage' }
+ -- e.g. ups_inst['voltage'] -> { 'input', 'battery' }
+
+ local ups_types = graph.tree:data_types( plugin, plugin_instance )
+
+ local ups_inst = {}
+ for _, t in ipairs(ups_types) do
+ ups_inst[t] = graph.tree:data_instances( plugin, plugin_instance, t )
+ end
+
+ -- Check if hash table or array is empty or nil-filled
+
+ local function empty( t )
+ for _, v in pairs(t) do
+ if type(v) then return false end
+ end
+ return true
+ end
+
+
+ -- Append graph definition but only types/instances which are
+ -- supported and available to the plugin and UPS.
+
+ local function add_supported( t, defs )
+ local def_inst = defs['data']['instances']
+
+ if type(def_inst) == "table" then
+ for k, v in pairs( def_inst ) do
+ if lu.contains( ups_types, k) then
+ for j = #v, 1, -1 do
+ if not lu.contains( ups_inst[k], v[j] ) then
+ table.remove( v, j )
+ end
+ end
+ if #v == 0 then
+ def_inst[k] = nil -- can't assign v: immutable
+ end
+ else
+ def_inst[k] = nil -- can't assign v: immutable
+ end
+ end
+ if empty(def_inst) then return end
+ end
+ table.insert( t, defs )
+ end
+
+
+ -- Graph definitions for APC UPS measurements MUST use only 'instances':
+ -- e.g. instances = { voltage = { "input", "output" } }
+
+ local voltagesdc = {
+ title = "%H: Voltages on APC UPS - Battery",
+ vlabel = "Volts DC",
+ alt_autoscale = true,
+ number_format = "%5.1lfV",
+ data = {
+ instances = {
+ voltage = { "battery" }
+ },
+ options = {
+ voltage = { title = "Battery voltage", noarea=true }
+ }
+ }
+ }
+ add_supported( rv, voltagesdc )
+
+ local voltagesac = {
+ title = "%H: Voltages on APC UPS - AC",
+ vlabel = "Volts AC",
+ alt_autoscale = true,
+ number_format = "%5.1lfV",
+ data = {
+ instances = {
+ voltage = { "input", "output" }
+ },
+ options = {
+ voltage_output = { color = "00e000", title = "Output voltage", noarea=true, overlay=true },
+ voltage_input = { color = "ffb000", title = "Input voltage", noarea=true, overlay=true }
+ }
+ }
+ }
+ add_supported( rv, voltagesac )
+
+ local percentload = {
+ title = "%H: Load on APC UPS ",
+ vlabel = "Percent",
+ y_min = "0",
+ y_max = "100",
+ number_format = "%5.1lf%%",
+ data = {
+ instances = {
+ percent = { "load" }
+ },
+ options = {
+ percent_load = { color = "00ff00", title = "Load level" }
+ }
+ }
+ }
+ add_supported( rv, percentload )
+
+ local charge_percent = {
+ title = "%H: Battery charge on APC UPS ",
+ vlabel = "Percent",
+ y_min = "0",
+ y_max = "100",
+ number_format = "%5.1lf%%",
+ data = {
+ instances = {
+ charge = { "" }
+ },
+ options = {
+ charge = { color = "00ff0b", title = "Charge level" }
+ }
+ }
+ }
+ add_supported( rv, charge_percent )
+
+ local temperature = {
+ title = "%H: Battery temperature on APC UPS ",
+ vlabel = "\176C",
+ number_format = "%5.1lf\176C",
+ data = {
+ instances = {
+ temperature = { "" }
+ },
+ options = {
+ temperature = { color = "ffb000", title = "Battery temperature" } }
+ }
+ }
+ add_supported( rv, temperature )
+
+ local timeleft = {
+ title = "%H: Time left on APC UPS ",
+ vlabel = "Minutes",
+ number_format = "%.1lfm",
+ data = {
+ instances = {
+ timeleft = { "" }
+ },
+ options = {
+ timeleft = { color = "0000ff", title = "Time left" }
+ }
+ }
+ }
+ add_supported( rv, timeleft )
+
+ local frequency = {
+ title = "%H: Incoming line frequency on APC UPS ",
+ vlabel = "Hz",
+ number_format = "%5.0lfhz",
+ data = {
+ instances = {
+ frequency = { "input" }
+ },
+ options = {
+ frequency_input = { color = "000fff", title = "Line frequency" }
+ }
+ }
+ }
+ add_supported( rv, frequency )
+
+ return rv
+end
--- /dev/null
+-- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.conntrack",package.seeall)
+
+function item()
+ return luci.i18n.translate("Conntrack")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ return {
+ title = "%H: Conntrack entries",
+ vlabel = "Count",
+ number_format = "%5.0lf",
+ data = {
+ -- collectd 5.5+: specify "" to exclude "max" instance
+ instances = {
+ conntrack = { "" }
+ },
+ sources = {
+ conntrack = { "value" }
+ },
+ options = {
+ conntrack = {
+ color = "0000ff",
+ title = "Tracked connections"
+ }
+ }
+ }
+ }
+end
--- /dev/null
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.contextswitch",package.seeall)
+
+function item()
+ return luci.i18n.translate("Context Switches")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ return {
+ title = "%H: Context switches",
+ alt_autoscale = true,
+ vlabel = "Switches/s",
+ number_format = "%5.0lf",
+ data = {
+ types = { "contextswitch" },
+ sources = {
+ contextswitch = { "value" }
+ },
+ options = {
+ contextswitch = { color = "0000ff", title = "Context switches", noarea=true, overlay=true }
+ }
+ }
+ }
+end
+
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.cpu",package.seeall)
+
+function item()
+ return luci.i18n.translate("Processor")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ return {
+ title = "%H: Processor usage on core #%pi",
+ y_min = "0",
+ alt_autoscale_max = true,
+ vlabel = "Percent",
+ number_format = "%5.1lf%%",
+ data = {
+ instances = {
+ cpu = { "user", "nice", "system", "softirq", "interrupt" }
+ },
+
+ options = {
+ cpu_idle = { color = "ffffff", title = "Idle" },
+ cpu_nice = { color = "00e000", title = "Nice" },
+ cpu_user = { color = "0000ff", title = "User" },
+ cpu_wait = { color = "ffb000", title = "Wait" },
+ cpu_system = { color = "ff0000", title = "System" },
+ cpu_softirq = { color = "ff00ff", title = "Softirq" },
+ cpu_interrupt = { color = "a000a0", title = "Interrupt" },
+ cpu_steal = { color = "000000", title = "Steal" }
+ }
+ }
+ }
+end
--- /dev/null
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.cpufreq",package.seeall)
+
+local uci = require("luci.model.uci").cursor()
+local extraitems = uci:get("luci_statistics", "collectd_cpufreq", "ExtraItems") or nil
+
+function item()
+ return luci.i18n.translate("CPU Frequency")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ local cpufreq = {
+ title = "%H: Processor frequency - core %pi",
+ alt_autoscale = true,
+ vlabel = "Frequency (Hz)",
+ number_format = "%3.2lf%s",
+ data = {
+ types = {"cpufreq" },
+ options = {
+ cpufreq = { color = "ff0000", title = "Frequency" },
+ }
+ }
+ }
+
+ if extraitems then
+
+ local transitions = {
+ title = "%H: Frequency transitions - core %pi",
+ alt_autoscale = true,
+ vlabel = "Transitions",
+ number_format = "%3.2lf%s",
+ data = {
+ types = { "transitions" },
+ options = {
+ transitions = { color = "0000ff", title = "Transitions", noarea=true },
+ }
+ }
+ }
+
+ local percentage = {
+ title = "%H: Frequency distribution - core %pi",
+ alt_autoscale = true,
+ vlabel = "Percent",
+ number_format = "%5.2lf%%",
+ ordercolor = true,
+ data = {
+ types = { "percent" },
+ options = {
+ percent = { title = "%di kHz", negweight = true },
+ }
+ }
+ }
+
+ return { cpufreq, percentage, transitions }
+ else
+ return { cpufreq }
+ end
+end
+
--- /dev/null
+-- Copyright 2018 Chizhong Jin <pjincz@gmail.com>
+-- Licensed to the public under the BSD 3-clause license
+
+module("luci.statistics.rrdtool.definitions.curl", package.seeall)
+
+function item()
+ return luci.i18n.translate("cUrl")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ return {
+ title = "%H: cUrl Response Time for #%pi",
+ y_min = "0",
+ alt_autoscale_max = true,
+ vlabel = "Response Time",
+ number_format = "%5.1lf%Ss",
+ data = {
+ types = { "response_time" },
+ options = {
+ response_time = {
+ title = ""
+ }
+ }
+ }
+ }
+end
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.df", package.seeall)
+
+function item()
+ return luci.i18n.translate("Disk Space Usage")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ local df_complex = {
+ title = "%H: Disk space usage on %pi",
+ vlabel = "Bytes",
+ number_format = "%5.1lf%sB",
+
+ data = {
+ instances = {
+ df_complex = { "free", "used", "reserved" }
+ },
+
+ options = {
+ df_complex_free = {
+ color = "00ff00",
+ overlay = false,
+ title = "free"
+ },
+
+ df_complex_used = {
+ color = "ff0000",
+ overlay = false,
+ title = "used"
+ },
+
+ df_complex_reserved = {
+ color = "0000ff",
+ overlay = false,
+ title = "reserved"
+ }
+ }
+ }
+ }
+
+ local percent_bytes = {
+ title = "%H: Disk space usage on %pi",
+ vlabel = "Percent",
+ number_format = "%5.2lf %%",
+
+ data = {
+ instances = {
+ percent_bytes = { "free", "used", "reserved" }
+ },
+
+ options = {
+ percent_bytes_free = {
+ color = "00ff00",
+ overlay = false,
+ title = "free"
+ },
+
+ percent_bytes_used = {
+ color = "ff0000",
+ overlay = false,
+ title = "used"
+ },
+
+ percent_bytes_reserved = {
+ color = "0000ff",
+ overlay = false,
+ title = "reserved"
+ }
+ }
+ }
+ }
+
+ local types = graph.tree:data_types( plugin, plugin_instance )
+
+ local p = {}
+ for _, t in ipairs(types) do
+ if t == "percent_bytes" then
+ p[#p+1] = percent_bytes
+ end
+
+ if t == "df_complex" then
+ p[#p+1] = df_complex
+ end
+ end
+
+ return p
+end
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.disk", package.seeall)
+
+function item()
+ return luci.i18n.translate("Disk Usage")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ return {
+ {
+ title = "%H: Disk I/O operations on %pi",
+ vlabel = "Operations/s",
+ number_format = "%5.1lf%sOp/s",
+
+ data = {
+ types = { "disk_ops" },
+ sources = {
+ disk_ops = { "read", "write" },
+ },
+
+ options = {
+ disk_ops__read = {
+ title = "Reads",
+ color = "00ff00",
+ flip = false
+ },
+
+ disk_ops__write = {
+ title = "Writes",
+ color = "ff0000",
+ flip = true
+ }
+ }
+ }
+ },
+
+ {
+ title = "%H: Disk I/O bandwidth on %pi",
+ vlabel = "Bytes/s",
+ number_format = "%5.1lf%sB/s",
+
+ detail = true,
+
+ data = {
+ types = { "disk_octets" },
+ sources = {
+ disk_octets = { "read", "write" }
+ },
+ options = {
+ disk_octets__read = {
+ title = "Read",
+ color = "00ff00",
+ flip = false
+ },
+ disk_octets__write = {
+ title = "Write",
+ color = "ff0000",
+ flip = true
+ }
+ }
+ }
+ }
+ }
+end
--- /dev/null
+-- Copyright 2011 Manuel Munz <freifunk at somakoma dot de>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.dns", package.seeall)
+
+function item()
+ return luci.i18n.translate("DNS")
+end
+
+function rrdargs( graph, plugin, plugin_instance )
+
+ local traffic = {
+ title = "%H: DNS traffic", vlabel = "Bit/s",
+
+ data = {
+ sources = {
+ dns_octets = { "queries", "responses" }
+ },
+
+ options = {
+ dns_octets__responses = {
+ total = true,
+ color = "00ff00",
+ title = "Responses"
+ },
+
+ dns_octets__queries = {
+ total = true,
+ color = "0000ff",
+ title = "Queries"
+ }
+ }
+ }
+ }
+
+ local opcode_query = {
+ title = "%H: DNS Opcode Query", vlabel = "Queries/s",
+ data = {
+ instances = { dns_opcode = { "Query" } },
+ options = {
+ dns_opcode_Query_value = {
+ total = true,
+ color = "0000ff",
+ title = "Queries/s"
+ },
+ }
+ }
+ }
+
+ local qtype = {
+ title = "%H: DNS QType", vlabel = "Queries/s",
+ data = {
+ sources = { dns_qtype = { "" } },
+ options = {
+ dns_qtype_AAAA_ = { title = "AAAA", noarea = true, total = true },
+ dns_qtype_A_ = { title = "A", noarea = true, total = true },
+ dns_qtype_A6_ = { title = "A6", noarea = true, total = true },
+ dns_qtype_TXT_ = { title = "TXT", noarea = true, total = true },
+ dns_qtype_MX_ = { title = "MX", noarea = true, total = true },
+ dns_qtype_NS_ = { title = "NS", noarea = true, total = true },
+ dns_qtype_ANY_ = { title = "ANY", noarea = true, total = true },
+ dns_qtype_CNAME_= { title = "CNAME", noarea = true, total = true },
+ dns_qtype_SOA_ = { title = "SOA", noarea = true, total = true },
+ dns_qtype_SRV_ = { title = "SRV", noarea = true, total = true },
+ dns_qtype_PTR_ = { title = "PTR", noarea = true, total = true },
+ dns_qtype_RP_ = { title = "RP", noarea = true, total = true },
+ dns_qtype_MAILB_= { title = "MAILB", noarea = true, total = true },
+ dns_qtype_IXFR_ = { title = "IXFR", noarea = true, total = true },
+ dns_qtype_HINFO_= { title = "HINFO", noarea = true, total = true },
+ },
+ }
+ }
+
+ return { traffic, opcode_query, qtype }
+end
--- /dev/null
+-- Copyright 2015 Hannu Nyman <hannu.nyman@iki.fi>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.entropy", package.seeall)
+
+function item()
+ return luci.i18n.translate("Entropy")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ return {
+ title = "%H: Available entropy",
+ vlabel = "bits",
+ number_format = "%4.0lf",
+ data = {
+ types = { "entropy" },
+ options = { entropy = { title = "Entropy %di" } }
+ }
+ }
+
+end
+
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.interface", package.seeall)
+
+function item()
+ return luci.i18n.translate("Interfaces")
+end
+
+function rrdargs( graph, plugin, plugin_instance )
+
+ --
+ -- traffic diagram
+ --
+ local traffic = {
+
+ -- draw this diagram for each plugin instance
+ per_instance = true,
+ title = "%H: Transfer on %pi",
+ vlabel = "Bytes/s",
+
+ -- diagram data description
+ data = {
+ -- defined sources for data types, if omitted assume a single DS named "value" (optional)
+ sources = {
+ if_octets = { "tx", "rx" }
+ },
+
+ -- special options for single data lines
+ options = {
+ if_octets__tx = {
+ total = true, -- report total amount of bytes
+ color = "00ff00", -- tx is green
+ title = "Bytes (TX)"
+ },
+
+ if_octets__rx = {
+ flip = true, -- flip rx line
+ total = true, -- report total amount of bytes
+ color = "0000ff", -- rx is blue
+ title = "Bytes (RX)"
+ }
+ }
+ }
+ }
+
+
+ --
+ -- packet diagram
+ --
+ local packets = {
+
+ -- draw this diagram for each plugin instance
+ per_instance = true,
+ title = "%H: Packets on %pi",
+ vlabel = "Packets/s",
+
+ -- diagram data description
+ data = {
+ -- data type order
+ types = { "if_packets", "if_errors" },
+
+ -- defined sources for data types
+ sources = {
+ if_packets = { "tx", "rx" },
+ if_errors = { "tx", "rx" }
+ },
+
+ -- special options for single data lines
+ options = {
+ -- processed packets (tx DS)
+ if_packets__tx = {
+ weight = 1,
+ overlay = true, -- don't summarize
+ total = true, -- report total amount of bytes
+ color = "00ff00", -- processed tx is green
+ title = "Processed (TX)"
+ },
+
+ -- processed packets (rx DS)
+ if_packets__rx = {
+ weight = 2,
+ overlay = true, -- don't summarize
+ flip = true, -- flip rx line
+ total = true, -- report total amount of bytes
+ color = "0000ff", -- processed rx is blue
+ title = "Processed (RX)"
+ },
+
+ -- packet errors (tx DS)
+ if_errors__tx = {
+ weight = 0,
+ overlay = true, -- don't summarize
+ total = true, -- report total amount of packets
+ color = "ff5500", -- tx errors are orange
+ title = "Errors (TX)"
+ },
+
+ -- packet errors (rx DS)
+ if_errors__rx = {
+ weight = 3,
+ overlay = true, -- don't summarize
+ flip = true, -- flip rx line
+ total = true, -- report total amount of packets
+ color = "ff0000", -- rx errors are red
+ title = "Errors (RX)"
+ }
+ }
+ }
+ }
+
+ return { traffic, packets }
+end
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.iptables", package.seeall)
+
+function item()
+ return luci.i18n.translate("Firewall")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ return {
+ {
+ title = "%H: Firewall: Processed bytes in %pi",
+ vlabel = "Bytes/s",
+ number_format = "%5.0lf%sB/s",
+ totals_format = "%5.0lf%sB",
+ data = {
+ types = { "ipt_bytes" },
+ options = {
+ ipt_bytes = {
+ total = true,
+ title = "%di"
+ }
+ }
+ }
+ },
+
+ {
+ title = "%H: Firewall: Processed packets in %pi",
+ vlabel = "Packets/s",
+ number_format = "%5.1lf P/s",
+ totals_format = "%5.0lf%s",
+ data = {
+ types = { "ipt_packets" },
+ options = {
+ ipt_packets = {
+ total = true,
+ title = "%di"
+ }
+ }
+ }
+ }
+ }
+end
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.irq", package.seeall)
+
+function item()
+ return luci.i18n.translate("Interrupts")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ return {
+ title = "%H: Interrupts", vlabel = "Issues/s",
+ number_format = "%5.0lf", data = {
+ types = { "irq" },
+ options = {
+ irq = { title = "IRQ %di", noarea = true }
+ }
+ }
+ }
+
+end
--- /dev/null
+-- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.iwinfo", package.seeall)
+
+function item()
+ return luci.i18n.translate("Wireless")
+end
+
+function rrdargs( graph, plugin, plugin_instance )
+
+ --
+ -- signal/noise diagram
+ --
+ local snr = {
+ title = "%H: Signal and noise on %pi",
+ vlabel = "dBm",
+ number_format = "%5.1lf dBm",
+ data = {
+ types = { "signal_noise", "signal_power" },
+ options = {
+ signal_power = {
+ title = "Signal",
+ overlay = true,
+ color = "0000ff"
+ },
+ signal_noise = {
+ title = "Noise",
+ overlay = true,
+ color = "ff0000"
+ }
+ }
+ }
+ }
+
+
+ --
+ -- signal quality diagram
+ --
+ local quality = {
+ title = "%H: Signal quality on %pi",
+ vlabel = "Quality",
+ number_format = "%3.0lf",
+ data = {
+ types = { "signal_quality" },
+ options = {
+ signal_quality = {
+ title = "Quality",
+ noarea = true,
+ color = "0000ff"
+ }
+ }
+ }
+ }
+
+
+ --
+ -- phy rate diagram
+ --
+ local bitrate = {
+ title = "%H: Average phy rate on %pi",
+ vlabel = "MBit/s",
+ number_format = "%5.1lf%sBit/s",
+ data = {
+ types = { "bitrate" },
+ options = {
+ bitrate = {
+ title = "Rate",
+ color = "00ff00"
+ }
+ }
+ }
+ }
+
+ --
+ -- associated stations
+ --
+ local stations = {
+ title = "%H: Associated stations on %pi",
+ vlabel = "Stations",
+ y_min = "0",
+ alt_autoscale_max = true,
+ number_format = "%3.0lf",
+ data = {
+ types = { "stations" },
+ options = {
+ stations = {
+ title = "Stations",
+ color = "0000ff"
+ }
+ }
+ }
+ }
+
+ return { snr, quality, bitrate, stations }
+end
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.load", package.seeall)
+
+function item()
+ return luci.i18n.translate("System Load")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ return {
+ title = "%H: Load", vlabel = "Load",
+ y_min = "0",
+ units_exponent = "0",
+ number_format = "%5.2lf", data = {
+ sources = {
+ load = { "shortterm", "midterm", "longterm" }
+ },
+
+ options = {
+ load__shortterm = { color = "ff0000", title = "1 minute", noarea = true },
+ load__midterm = { color = "ff6600", title = "5 minutes", noarea = true },
+ load__longterm = { color = "ffaa00", title = "15 minutes", noarea = true }
+ }
+ }
+ }
+end
--- /dev/null
+--[[
+
+(c) 2011 Manuel Munz <freifunk at somakoma dot de>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+]]--
+
+module("luci.statistics.rrdtool.definitions.memory",package.seeall)
+
+function item()
+ return luci.i18n.translate("Memory")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ return {
+ title = "%H: Memory usage",
+ vlabel = "MB",
+ number_format = "%5.1lf%s",
+ y_min = "0",
+ alt_autoscale_max = true,
+ data = {
+ instances = {
+ memory = { "free", "buffered", "cached", "used" }
+ },
+
+ options = {
+ memory_buffered = { color = "0000ff", title = "Buffered" },
+ memory_cached = { color = "ff00ff", title = "Cached" },
+ memory_used = { color = "ff0000", title = "Used" },
+ memory_free = { color = "00ff00", title = "Free" }
+ }
+ }
+ }
+end
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.netlink", package.seeall)
+
+function item()
+ return luci.i18n.translate("Netlink")
+end
+
+function rrdargs( graph, plugin, plugin_instance )
+
+ --
+ -- traffic diagram
+ --
+ local traffic = {
+ title = "%H: Netlink - Transfer on %pi",
+ vlabel = "Bytes/s",
+
+ -- diagram data description
+ data = {
+ -- defined sources for data types, if omitted assume a single DS named "value" (optional)
+ sources = {
+ if_octets = { "tx", "rx" }
+ },
+
+ -- special options for single data lines
+ options = {
+ if_octets__tx = {
+ title = "Bytes (TX)",
+ total = true, -- report total amount of bytes
+ color = "00ff00" -- tx is green
+ },
+
+ if_octets__rx = {
+ title = "Bytes (RX)",
+ flip = true, -- flip rx line
+ total = true, -- report total amount of bytes
+ color = "0000ff" -- rx is blue
+ }
+ }
+ }
+ }
+
+ --
+ -- packet diagram
+ --
+ local packets = {
+ title = "%H: Netlink - Packets on %pi",
+ vlabel = "Packets/s", detail = true,
+
+ -- diagram data description
+ data = {
+ -- data type order
+ types = { "if_packets", "if_dropped", "if_errors" },
+
+ -- defined sources for data types
+ sources = {
+ if_packets = { "tx", "rx" },
+ if_dropped = { "tx", "rx" },
+ if_errors = { "tx", "rx" }
+ },
+
+ -- special options for single data lines
+ options = {
+ -- processed packets (tx DS)
+ if_packets__tx = {
+ weight = 2,
+ title = "Total (TX)",
+ overlay = true, -- don't summarize
+ total = true, -- report total amount of bytes
+ color = "00ff00" -- processed tx is green
+ },
+
+ -- processed packets (rx DS)
+ if_packets__rx = {
+ weight = 3,
+ title = "Total (RX)",
+ overlay = true, -- don't summarize
+ flip = true, -- flip rx line
+ total = true, -- report total amount of bytes
+ color = "0000ff" -- processed rx is blue
+ },
+
+ -- dropped packets (tx DS)
+ if_dropped__tx = {
+ weight = 1,
+ title = "Dropped (TX)",
+ overlay = true, -- don't summarize
+ total = true, -- report total amount of bytes
+ color = "660055" -- dropped tx is ... dunno ;)
+ },
+
+ -- dropped packets (rx DS)
+ if_dropped__rx = {
+ weight = 4,
+ title = "Dropped (RX)",
+ overlay = true, -- don't summarize
+ flip = true, -- flip rx line
+ total = true, -- report total amount of bytes
+ color = "ff00ff" -- dropped rx is violett
+ },
+
+ -- packet errors (tx DS)
+ if_errors__tx = {
+ weight = 0,
+ title = "Errors (TX)",
+ overlay = true, -- don't summarize
+ total = true, -- report total amount of packets
+ color = "ff5500" -- tx errors are orange
+ },
+
+ -- packet errors (rx DS)
+ if_errors__rx = {
+ weight = 5,
+ title = "Errors (RX)",
+ overlay = true, -- don't summarize
+ flip = true, -- flip rx line
+ total = true, -- report total amount of packets
+ color = "ff0000" -- rx errors are red
+ }
+ }
+ }
+ }
+
+ --
+ -- multicast diagram
+ --
+ local multicast = {
+ title = "%H: Netlink - Multicast on %pi",
+ vlabel = "Packets/s", detail = true,
+
+ -- diagram data description
+ data = {
+ -- data type order
+ types = { "if_multicast" },
+
+ -- special options for single data lines
+ options = {
+ -- multicast packets
+ if_multicast = {
+ title = "Packets",
+ total = true, -- report total amount of packets
+ color = "0000ff" -- multicast is blue
+ }
+ }
+ }
+ }
+
+ --
+ -- collision diagram
+ --
+ local collisions = {
+ title = "%H: Netlink - Collisions on %pi",
+ vlabel = "Collisions/s", detail = true,
+
+ -- diagram data description
+ data = {
+ -- data type order
+ types = { "if_collisions" },
+
+ -- special options for single data lines
+ options = {
+ -- collision rate
+ if_collisions = {
+ title = "Collisions",
+ total = true, -- report total amount of packets
+ color = "ff0000" -- collsions are red
+ }
+ }
+ }
+ }
+
+ --
+ -- error diagram
+ --
+ local errors = {
+ title = "%H: Netlink - Errors on %pi",
+ vlabel = "Errors/s", detail = true,
+
+ -- diagram data description
+ data = {
+ -- data type order
+ types = { "if_tx_errors", "if_rx_errors" },
+
+ -- data type instances
+ instances = {
+ if_tx_errors = { "aborted", "carrier", "fifo", "heartbeat", "window" },
+ if_rx_errors = { "length", "missed", "over", "crc", "fifo", "frame" }
+ },
+
+ -- special options for single data lines
+ options = {
+ if_tx_errors_aborted_value = { total = true, color = "ffff00", title = "Aborted (TX)" },
+ if_tx_errors_carrier_value = { total = true, color = "ffcc00", title = "Carrier (TX)" },
+ if_tx_errors_fifo_value = { total = true, color = "ff9900", title = "Fifo (TX)" },
+ if_tx_errors_heartbeat_value = { total = true, color = "ff6600", title = "Heartbeat (TX)" },
+ if_tx_errors_window_value = { total = true, color = "ff3300", title = "Window (TX)" },
+
+ if_rx_errors_length_value = { flip = true, total = true, color = "ff0000", title = "Length (RX)" },
+ if_rx_errors_missed_value = { flip = true, total = true, color = "ff0033", title = "Missed (RX)" },
+ if_rx_errors_over_value = { flip = true, total = true, color = "ff0066", title = "Over (RX)" },
+ if_rx_errors_crc_value = { flip = true, total = true, color = "ff0099", title = "CRC (RX)" },
+ if_rx_errors_fifo_value = { flip = true, total = true, color = "ff00cc", title = "Fifo (RX)" },
+ if_rx_errors_frame_value = { flip = true, total = true, color = "ff00ff", title = "Frame (RX)" }
+ }
+ }
+ }
+
+ return { traffic, packets, multicast, collisions, errors }
+end
--- /dev/null
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.nut",package.seeall)
+
+function item()
+ return luci.i18n.translate("UPS")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ local voltages_ac = {
+ title = "%H: AC voltages on UPS \"%pi\"",
+ vlabel = "V",
+ number_format = "%5.1lfV",
+ data = {
+ instances = {
+ voltage = { "input", "output" }
+ },
+ options = {
+ voltage_output = { color = "00e000", title = "Output voltage", noarea=true, overlay=true },
+ voltage_input = { color = "ffb000", title = "Input voltage", noarea=true, overlay=true }
+ }
+ }
+ }
+
+ local voltages_dc = {
+ title = "%H: Battery voltage on UPS \"%pi\"",
+ vlabel = "V",
+ number_format = "%5.1lfV",
+ data = {
+ instances = {
+ voltage = { "battery" }
+ },
+ options = {
+ voltage = { color = "0000ff", title = "Battery voltage", noarea=true, overlay=true }
+ }
+ }
+ }
+
+ local currents = {
+ title = "%H: Current on UPS \"%pi\"",
+ vlabel = "A",
+ number_format = "%5.3lfA",
+ data = {
+ instances = {
+ current = { "battery", "output" }
+ },
+ options = {
+ current_output = { color = "00e000", title = "Output current", noarea=true, overlay=true },
+ current_battery = { color = "0000ff", title = "Battery current", noarea=true, overlay=true }
+ }
+ }
+ }
+
+ local percentage = {
+ title = "%H: Battery charge/load on UPS \"%pi\"",
+ vlabel = "Percent",
+ y_min = "0",
+ y_max = "100",
+ number_format = "%5.1lf%%",
+ data = {
+ instances = {
+ percent = { "charge", "load" }
+ },
+ options = {
+ percent_charge = { color = "00ff00", title = "Charge level", noarea=true, overlay=true },
+ percent_load = { color = "ff0000", title = "Load", noarea=true, overlay=true }
+ }
+ }
+ }
+
+ -- Note: This is in ISO8859-1 for rrdtool. Welcome to the 20th century.
+ local temperature = {
+ title = "%H: Battery temperature on UPS \"%pi\"",
+ vlabel = "\176C",
+ number_format = "%5.1lf\176C",
+ data = {
+ instances = {
+ temperature = "battery"
+ },
+ options = {
+ temperature_battery = { color = "ffb000", title = "Battery temperature", noarea=true }
+ }
+ }
+ }
+
+ local timeleft = {
+ title = "%H: Time left on UPS \"%pi\"",
+ vlabel = "Minutes",
+ number_format = "%.1lfm",
+ data = {
+ instances = {
+ timeleft = { "battery" }
+ },
+ options = {
+ timeleft_battery = { color = "0000ff", title = "Time left", transform_rpn = "60,/", noarea=true }
+ }
+ }
+ }
+
+ local power = {
+ title = "%H: Power on UPS \"%pi\"",
+ vlabel = "Power",
+ number_format = "%5.1lf%%",
+ data = {
+ instances = {
+ power = { "ups" }
+ },
+ options = {
+ power_ups = { color = "00ff00", title = "Power level" }
+ }
+ }
+ }
+
+ local frequencies = {
+ title = "%H: Frequencies on UPS \"%pi\"",
+ vlabel = "Hz",
+ number_format = "%5.1lfHz",
+ data = {
+ instances = {
+ frequency = { "input", "output" }
+ },
+ options = {
+ frequency_output = { color = "00e000", title = "Output frequency", noarea=true, overlay=true },
+ frequency_input = { color = "ffb000", title = "Input frequency", noarea=true, overlay=true }
+ }
+ }
+ }
+ return { voltages_ac, voltages_dc, currents, percentage, temperature, timeleft, power, frequencies }
+end
--- /dev/null
+-- Copyright 2011 Manuel Munz <freifunk at somakoma dot de>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.olsrd", package.seeall)
+
+function item()
+ return luci.i18n.translate("OLSRd")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+ local g = { }
+
+ if plugin_instance == "routes" then
+
+ g[#g+1] = {
+ -- diagram data description
+ title = "%H: Total amount of OLSR routes", vlabel = "n",
+ number_format = "%5.0lf", data = {
+ types = { "routes" },
+ options = {
+ routes = {
+ color = "ff0000",
+ title = "Total number of routes"
+ }
+ }
+ }
+ }
+
+ g[#g+1] = {
+ title = "%H: Average route ETX", vlabel = "ETX", detail = true,
+ number_format = "%5.1lf",data = {
+ instances = { "average" }, -- falls es irgendwann mal welche pro ip gibt, wie bei links, dann werden die hier excludiert
+ types = { "route_etx" },
+ options = {
+ route_etx = {
+ title = "Average route ETX"
+ }
+ }
+ }
+ }
+
+ g[#g+1] = {
+ title = "%H: Average route metric", vlabel = "metric", detail = true,
+ number_format = "%5.1lf", data = {
+ instances = { "average" }, -- falls es irgendwann mal welche pro ip gibt, wie bei links, dann werden die hier excludiert
+ types = { "route_metric" },
+ options = {
+ route_metric = {
+ title = "Average route metric"
+ }
+ }
+ }
+ }
+
+ elseif plugin_instance == "links" then
+
+ g[#g+1] = {
+ -- diagram data description
+ title = "%H: Total amount of OLSR neighbours", vlabel = "n",
+ number_format = "%5.0lf", data = {
+ instances = { "" },
+ types = { "links" },
+ options = {
+ links = {
+ color = "00ff00",
+ title = "Number of neighbours"
+ }
+ }
+ }
+ }
+
+ local instances = graph.tree:data_instances(plugin, plugin_instance, "signal_quality")
+ table.sort(instances)
+
+ -- define one diagram per host, containing the rx and lq values
+ local i
+ for i = 1, #instances, 2 do
+ local dsn1 = "signal_quality_%s_value" % instances[i]:gsub("[^%w]+", "_")
+ local dsn2 = "signal_quality_%s_value" % instances[i+1]:gsub("[^%w]+", "_")
+ local host = instances[i]:match("^[^%-]+%-([^%-]+)%-.+")
+
+ g[#g+1] = {
+ title = "%H: Signal Quality" .. " (" .. (host or "avg") ..")", vlabel = "ETX",
+ number_format = "%5.2lf", detail = true,
+ data = {
+ types = { "signal_quality" },
+
+ instances = {
+ signal_quality = { instances[i], instances[i+1] },
+ },
+
+ options = {
+ [dsn1] = {
+ color = "00ff00",
+ title = "LQ (%s)" % (host or "avg"),
+ },
+ [dsn2] = {
+ color = "0000ff",
+ title = "NLQ (%s)" % (host or "avg"),
+ flip = true
+ }
+ }
+ }
+ }
+ end
+
+ elseif plugin_instance == "topology" then
+
+ g[#g+1] = {
+ title= "%H: Total amount of OLSR links", vlabel = "n",
+ number_format = "%5.0lf", data = {
+ instances = { "" },
+ types = { "links" },
+ options = {
+ links = {
+ color = "0000ff",
+ title = "Total number of links"
+ }
+ }
+ }
+ }
+
+ g[#g+1] = {
+ title= "%H: Average signal quality", vlabel = "n",
+ number_format = "%5.2lf", detail = true,
+ data = {
+ instances = { "average" }, -- exclude possible per-ip stuff
+ types = { "signal_quality" },
+ options = {
+ signal_quality = {
+ color = "0000ff",
+ title = "Average signal quality"
+ }
+ }
+ }
+ }
+ end
+
+ return g
+end
--- /dev/null
+-- Copyright 2015 Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.openvpn", package.seeall)
+
+function item()
+ return luci.i18n.translate("OpenVPN")
+end
+
+function rrdargs( graph, plugin, plugin_instance )
+ local inst = plugin_instance:gsub("^openvpn%.(.+)%.status$", "%1")
+
+ return {
+ {
+ title = "%%H: OpenVPN \"%s\" - Traffic" % inst,
+ vlabel = "Bytes/s",
+ data = {
+ instances = {
+ if_octets = { "traffic", "overhead" }
+ },
+ sources = {
+ if_octets = { "tx", "rx" }
+ },
+ options = {
+ if_octets_traffic_tx = { weight = 0, title = "Bytes (TX)", total = true, color = "00ff00" },
+ if_octets_overhead_tx = { weight = 1, title = "Overhead (TX)", total = true, color = "ff9900" },
+ if_octets_overhead_rx = { weight = 2, title = "Overhead (RX)", total = true, flip = true, color = "ff00ff" },
+ if_octets_traffic_rx = { weight = 3, title = "Bytes (RX)", total = true, flip = true, color = "0000ff" }
+ }
+ }
+ },
+
+ {
+ title = "%%H: OpenVPN \"%s\" - Compression" % inst,
+ vlabel = "Bytes/s",
+ data = {
+ instances = {
+ compression = { "data_out", "data_in" }
+ },
+ sources = {
+ compression = { "uncompressed", "compressed" }
+ },
+ options = {
+ compression_data_out_uncompressed = { weight = 0, title = "Uncompressed (TX)", total = true, color = "00ff00" },
+ compression_data_out_compressed = { weight = 1, title = "Compressed (TX)", total = true, color = "008800" },
+ compression_data_in_compressed = { weight = 2, title = "Compressed (RX)", total = true, flip = true, color = "000088" },
+ compression_data_in_uncompressed = { weight = 3, title = "Uncompressed (RX)", total = true, flip = true, color = "0000ff" }
+ }
+ }
+ }
+ }
+end
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.ping", package.seeall)
+
+function item()
+ return luci.i18n.translate("Ping")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ return {
+ -- Ping roundtrip time
+ { title = "%H: ICMP Round Trip Time",
+ vlabel = "ms",
+ number_format = "%5.1lf ms",
+ data = {
+ sources = { ping = { "value" } },
+ options = { ping__value = {
+ noarea = true, overlay = true, title = "%di" } }
+ } },
+
+ -- Ping droprate
+ { title = "%H: ICMP Drop Rate",
+ vlabel = "%",
+ number_format = "%5.2lf %%",
+ data = {
+ types = { "ping_droprate" },
+ options = { ping_droprate = {
+ noarea = true, overlay = true, title = "%di" } }
+ } }
+ }
+end
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.processes", package.seeall)
+
+function item()
+ return luci.i18n.translate("Processes")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ if plugin_instance == "" then
+ return {
+ title = "%H: Processes",
+ vlabel = "Processes/s",
+ data = {
+ instances = {
+ ps_state = {
+ "sleeping", "running", "paging",
+ "blocked", "stopped", "zombies"
+ }
+ },
+
+ options = {
+ ps_state_sleeping = { color = "0000ff", title = "Sleeping" },
+ ps_state_running = { color = "008000", title = "Running" },
+ ps_state_paging = { color = "ffff00", title = "Paging" },
+ ps_state_blocked = { color = "ff5000", title = "Blocked" },
+ ps_state_stopped = { color = "555555", title = "Stopped" },
+ ps_state_zombies = { color = "ff0000", title = "Zombies" }
+ }
+ }
+ }
+ else
+ return {
+ {
+ title = "%H: CPU time used by %pi",
+ vlabel = "Jiffies",
+ data = {
+ sources = {
+ ps_cputime = { "syst", "user" }
+ },
+
+ options = {
+ ps_cputime__user = {
+ color = "0000ff",
+ title = "User",
+ overlay = true
+ },
+
+ ps_cputime__syst = {
+ color = "ff0000",
+ title = "System",
+ overlay = true
+ }
+ }
+ }
+ },
+
+ {
+ title = "%H: Threads and processes belonging to %pi",
+ vlabel = "Count",
+ detail = true,
+ data = {
+ sources = {
+ ps_count = { "threads", "processes" }
+ },
+
+ options = {
+ ps_count__threads = { color = "00ff00", title = "Threads" },
+ ps_count__processes = { color = "0000bb", title = "Processes" }
+ }
+ }
+ },
+
+ {
+ title = "%H: Page faults in %pi",
+ vlabel = "Page faults",
+ detail = true,
+ data = {
+ sources = {
+ ps_pagefaults = { "minflt", "majflt" }
+ },
+
+ options = {
+ ps_pagefaults__minflt = { color = "0000ff", title = "Minor" },
+ ps_pagefaults__majflt = { color = "ff0000", title = "Major" }
+ }
+ }
+ },
+
+ {
+ title = "%H: Resident segment size (RSS) of %pi",
+ vlabel = "Bytes",
+ detail = true,
+ number_format = "%5.1lf%sB",
+ data = {
+ types = { "ps_rss" },
+
+ options = {
+ ps_rss = { color = "0000ff", title = "Resident segment" }
+ }
+ }
+ },
+
+ {
+ title = "%H: Virtual memory size (VSZ) of %pi",
+ vlabel = "Bytes",
+ detail = true,
+ number_format = "%5.1lf%sB",
+ data = {
+ types = { "ps_vm" },
+
+ options = {
+ ps_vm = { color = "0000ff", title = "Virtual memory" }
+ }
+ }
+ }
+ }
+ end
+end
--- /dev/null
+-- Copyright 2015 Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.sensors", package.seeall)
+
+function item()
+ return luci.i18n.translate("Sensors")
+end
+
+function rrdargs( graph, plugin, plugin_instance )
+
+ return {
+ {
+ per_instance = true,
+ title = "%H: %pi - %di",
+ vlabel = "\176C",
+ number_format = "%4.1lf\176C",
+ data = {
+ types = { "temperature" },
+ options = {
+ temperature__value = {
+ color = "ff0000",
+ title = "Temperature"
+ }
+ }
+ }
+ }
+ }
+end
--- /dev/null
+-- Copyright 2013 Freifunk Augsburg / Michael Wendland <michael@michiwend.com>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.splash_leases", package.seeall)
+
+function item()
+ return luci.i18n.translate("Splash Leases")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ return {
+ title = "%H: Splash Leases",
+ vlabel = "Active Clients",
+ y_min = "0",
+ number_format = "%5.1lf",
+ data = {
+ sources = {
+ splash_leases = { "leased", "whitelisted", "blacklisted" }
+ },
+
+ options = {
+ splash_leases__leased = { color = "00CC00", title = "Leased", overlay = false },
+ splash_leases__whitelisted = { color = "0000FF", title = "Whitelisted", overlay = false },
+ splash_leases__blacklisted = { color = "FF0000", title = "Blacklisted", overlay = false }
+ }
+ }
+ }
+
+end
--- /dev/null
+-- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.tcpconns", package.seeall)
+
+function item()
+ return luci.i18n.translate("TCP Connections")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ return {
+ title = "%H: TCP connections to port %pi",
+ vlabel = "Connections/s",
+ number_format = "%5.0lf",
+ data = {
+ types = { "tcp_connections" },
+ instances = {
+ tcp_connections = {
+ "SYN_SENT", "SYN_RECV", "LISTEN", "ESTABLISHED",
+ "LAST_ACK", "TIME_WAIT", "CLOSING", "CLOSE_WAIT",
+ "CLOSED", "FIN_WAIT1", "FIN_WAIT2"
+ },
+ options = {
+ load__ESTABLISHED = { title = "%di", noarea = true }
+ }
+ }
+ }
+ }
+end
--- /dev/null
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.statistics.rrdtool.definitions.thermal",package.seeall)
+
+function item()
+ return luci.i18n.translate("Thermal")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ return {
+ title = "%H: Temperature of %pi",
+ alt_autoscale = true,
+ vlabel = "Celsius",
+ number_format = "%3.1lf%s",
+ data = {
+ types = { "temperature" },
+ options = {
+ temperature = { color = "ff0000", title = "Temperature", noarea=true },
+ }
+ }
+ }
+end
+
--- /dev/null
+--[[
+
+Copyright 2013 Thomas Endt <tmo26@gmx.de>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+]]--
+
+module("luci.statistics.rrdtool.definitions.uptime", package.seeall)
+
+function item()
+ return luci.i18n.translate("Uptime")
+end
+
+function rrdargs( graph, plugin, plugin_instance, dtype )
+
+ return {
+ title = "%H: Uptime", vlabel = "seconds",
+ number_format = "%5.0lf%s", data = {
+ types = { "uptime" },
+ options = {
+ uptime = { title = "Uptime %di", noarea = true }
+ }
+ }
+ }
+end
+
--- /dev/null
+<%#
+ Copyright 2008 Steven Barth <steven@midlink.org>
+ Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
+ Licensed to the public under the Apache License 2.0.
+-%>
+
+<%+header%>
+
+<h2 name="content"><%:Statistics%></h2>
+
+<p><%_The statistics package uses <a href="https://collectd.org/">Collectd</a>
+to gather data and <a href="http://oss.oetiker.ch/rrdtool/">RRDtool</a> to
+render diagram images.%></p>
+
+<p><%_You can install additional collectd-mod-* plugins to enable more statistics.%></p>
+
+<%+footer%>
--- /dev/null
+<%#
+ Copyright 2008 Steven Barth <steven@midlink.org>
+ Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
+ Licensed to the public under the Apache License 2.0.
+-%>
+
+<%+header%>
+
+<h2 name="content"><%:Statistics%></h2>
+
+<form action="" method="get">
+ <select name="host">
+ <% for i, host in ipairs(hosts) do %>
+ <option<% if host == current_host then %> selected="selected"<% end %>><%=pcdata(host)%></option>
+ <% end %>
+ </select>
+ <input class="cbi-button cbi-button-apply" type="submit" name="submit" value="<%:Display Host »%>" />
+ <select name="timespan">
+ <% for i, span in ipairs(timespans) do %>
+ <option<% if span == current_timespan then %> selected="selected"<% end %>><%=span%></option>
+ <% end %>
+ </select>
+ <input class="cbi-button cbi-button-apply" type="submit" name="submit" value="<%:Display timespan »%>" />
+</form>
+
+<br />
+<hr />
+<br />
+
+<div style="text-align: center">
+ <% for i, img in ipairs(images) do %>
+ <img src="<%=REQUEST_URI%>?img=<%=img%>&host=<%=current_host%>" />
+ <br />
+ <% end %>
+</div>
+
+<%+footer%>
+
--- /dev/null
+# statistics.pot
+# generated from ./applications/luci-statistics/luasrc/i18n/statistics.en.lua
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2014-08-07 20:11+0200\n"
+"Last-Translator: Alex <alexhenrie24@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "Acció (objectiu)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "Afegeix ordre per llegir valors"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "Afegeix regla coincident"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr "Afegeix múltiples hosts separats per espai."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "Afegeix ordre de notificació"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "Directori base"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "Monitoreig bàsic"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "Configuració del connector de CPU"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "Sortida CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "Configuració del connector CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr "Emmagatzema en memòria cau les dades recollides de"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr "Interval de neteja de memòria cau"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "Cadena"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Configuració Collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd és un petit dimoni per recollir dades de diverses fonts a través "
+"dels connectors. En aquesta pàgina podeu canviar la configuració general del "
+"dimoni Collectd."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr "Conntrack"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr "Configuració del connector Conntrack"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "Configuració del connector DF"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "Configuració del connector DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Interval de recol·lecció de dades"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "Fitxer de definició de dades"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "Rang d'IP destí"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Directori pels connectors connectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "Directori per sub-configuracions"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "Configuració del connector de disc"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Ús d'espai en disc"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Ús de disc"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr "Mostra el host »"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "Mostra l'hora"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "Configuració del connector d'adreça electrònica"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "Adreça electrònica"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "Activa aquest connector"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Configuració del connector exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr "Monitoreig de classe filter"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Tallafocs"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr "Neteja la memòria cau després de"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr "Readreçant entre adreces que reben connexions i adreces de servidors"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Gràfics"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr "Grup"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"Ací pots definir ordres externes que s'iniciaran pel collectd per llegir "
+"certs valors. Els valors es llegiran des del stdout"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"Ací pots definir ordres externes que s'iniciaran pel collectd quan s'aribi a "
+"uns certs valors llindars. Els valors que condueixin a la invocació, "
+"alimentaran als programes stdin"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+"Ací pots definir diversos criteris pels que es seleccionaran les regles "
+"iptables monitoritzades ."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr "Host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Nom de host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "Configuració de connector IRQ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "Ignora adreces origen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "Interfície entrant"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "Configuració de connector d'interfície"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Interfícies"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Interrupcions"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Configuració del connector iptables"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "Màquina que rep connexions"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "Port que rep connexions"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr "Interfícies que reben connexions"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "Configuració de connector de càrrega"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "Connexions màximes permeses"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr "Memòria"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr "Configuració del connector de memòria"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "Monitoritza tots els ports locals que reben connexions"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "Monitoritza dispositius"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "Monitoritza els discs i les particions"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "Monitoritza els tipus de sistema de fitxers"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "Monitoritza màquines"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr "Monitoritza hosts"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "Monitoritza interrupcions"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "Monitoritza els ports locals"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "Monitoritza punts de muntatge"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "Monitoritza processos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "Monitoritza els ports remots"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "Nom de la regla"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Enllaç de xarxa"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Configuració del connector d'enllaç de xarxa"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Xarxa"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "Configuració del connector de xarxa"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Connectors de xarxa"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Protocol de xarxa"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Número de fils de recol·lecció de dades"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr "OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr "Configuració del connector OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr "Crea només RRAs mitjans"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "Opcions"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "Interfície sortint"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Connectors de sortida"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Configuració del connector ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr "Port"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Processos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "Configuració del connector de processos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "Processador"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Monitoreig Qdisc"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr "Factor RRD XFiles"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr "Interval de batec de cor RRD"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr "Interval de pas RRD"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "Configuració del connector RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr "Files per RRA"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "Segons"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "Màquina servidor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "Port del servidor"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr "Monitoreig de classe shaping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr "Fitxer d'endoll"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr "Grup d'endoll"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr "Permisos d'endoll"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "Rang d'IP origen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr "Especifica què informació es recull sobre enllaços."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr "Especifica què informació es recull sobre rutes."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr "Especifica què informació es recull sobre la topologia global."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr "Estadístiques"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "Directori d'emmagatzematge"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "Directori d'emmagatzematge dels fitxers CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr ""
+"Emmagatzema els valors de dades com a relacions en comptes de com a valors "
+"absoluts"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "Marques de temps emmagatzemades"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "Càrrega de sistema"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "Connexions TCP"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "Configuració de connector TCPConns"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "TTL pels paquets de xarxa"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "TTL per paquets ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "Taula"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+"El connector de cpu recull estadístiques bàsiques sobre l'ús del processador."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+"El connector CSV desa les dades recollides en format CSV per ser processades "
+"posteriorment per programes externs."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+"El connector DF recull dades sobre l'ús d'espai en disc de diferents "
+"dispositius, punts de muntatge i tipus de sistema de fitxers."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+"El connector de disc recull estadístiques d'ús detallades per les particions "
+"seleccionades o per tot el disc."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+"El connector DNS recull estadístiques detallades sobre el tràfic DNS a les "
+"interfícies seleccionades."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"El connector d'adreça electrònica crea un socket unix que es pot utilitzar "
+"per transmetre estadístiques d'email a un dimoni collectd. Aquest connector "
+"es fa servir en conjunció amb Mail::SpamAssassin::Plugin. Plugin::Collectd "
+"també es pot utilitzar d'altres maneres."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+"El connector exec inicia ordres externes per llegir valors des de o a "
+"processos externs quan s'arriba a certs valors de llindar."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+"El connector d'interfície recull estadístiques de tràfic a les interfícies "
+"seleccionades."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+"El connector iptables monitoritzarà les regles de tallafocs seleccionades i "
+"recollirà informacions sobre els bytes i paquests processats per regla."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+"El connector IRQ monitoritzarà la taxa de qüestions per segon per cada "
+"interrupció seleccionada. Si no se selecciona cap interrupció, es "
+"monitoritzen totes les interrupcions."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+"El connector iwinfo recull estadístiques sobre la força de senyal, soroll i "
+"qualitat sense fil."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr ""
+"El connector de càrrega recull estadístiques sobre la càrrega de sistema "
+"general."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr "El connector de memòria recull estadístiques sobre l'ús de memòria."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+"El connector d'enllaç de xarxa recull informació extensa com estadístiques "
+"de qdisc-, class- i filter- per les interfícies seleccionades."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+"El connector de xarxa proporciona comunicacions basades en xarxa entre "
+"diferents instàncies de collectd. El collectd pot operar tan en mode "
+"servidor com client. En el client mode les dades recollides localment es "
+"transferiran a la instància del servidor de collectd, en el mode servidor la "
+"instància rep dades de les altres màquines."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+"El connector de ping enviarà ICMP Echo Replies a les màquines seleccionades "
+"i mesurarà el temps d'anada i tornada en cada màquina."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+"El connector de processor recollirà informacions com el temps de cpu, errors "
+"de pàgina i ús de memòria dels processos seleccionats."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+"El connector RRDTool desa les dades recollides als fitxers de base de dades "
+"RRD, la base dels diagrames.<br /><br /><strong>Alerta: Establir els valors "
+"incorrectes comportarà un consum molt alt de memòria al directori temporal. "
+"Això pot inutilitzar el dispositiu!</strong>"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+"El connector TCPConns recull informació sobre les connexions TCP obertes en "
+"els ports seleccionats."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+"El connector unixsock crea un socket Unix que es pot fer servir per llegir "
+"dades recollides d'una instància collectd."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+"Aquesta secció defineix en quines interfícies el collectd rebrà connexions "
+"entrants."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+"Aquesta secció defineix a quins servidors s'enviaran les dades recollides "
+"localment."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr "Intenta resoldre el nom de màquina (fqdn)"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr "UPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr "Configuració del connector UPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr "Nom UPS en format NUT ups@host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "Sock Unix"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Configuració de connector Unixsock"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Fitxer PID usat"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr "Usuari"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "Monitoreig detallat"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "Wireless"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "p.e. br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "p.e. br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "p.e. reject-with tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "màx. 16 caràcters"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "redueix mida RRD"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "segons; múltiples separats per espais"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "interfícies de servidor"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2014-06-21 17:44+0200\n"
+"Last-Translator: koli <lukas.koluch@gmail.com>\n"
+"Language-Team: none\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: Pootle 2.0.6\n"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "Akce (cíl)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "Přidat příkaz pro čtení hodnot"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "Přidat pravidlo pro výběr"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr "Přidat více hostů, oddělených mezerou"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "Přidat příkaz pro upozornění"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "Základní adresář"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "Základní sledování"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "Nastavení CPU pluginu"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "CSV výstup"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "Nastavení CSV pluginu"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr "Mezipamět pro ukládání dat"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr "Interval vyprazdňování mezipaměti"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "Řetěz"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr "CollectLinks"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr "CollectRoutes"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr "CollectTopology"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Nastavení Collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd je malý daemon pro shromažďování dat z nejrůznějších zdrojů zkrz "
+"rozdílné pluginy. Na této stránce můžete změnit obecná nastavení daemonu "
+"collectd."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr "Conntrack"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr "Nastavení pluginu Conntrack"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "Nastavení pluginu DF"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "Nastavení DNS pluginu"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Interval sběru dat"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "Rozsah cílových IP adres"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Adresář s pluginy pro collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "Adresář pro pod-nastavení"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "Nastavení Disk pluginu"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Využití místa na disku"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Využití disku"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr "Zobrazit hostitele »"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "Zobrazit časové rozpětí »"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "Nastavení E-Mail pluginu"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "Email"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "Povolit tento plugin"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Nastavení pluginu Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Firewall"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr "Vyprázdnit cache po"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Grafy"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr "Skupina"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"Zde můžete nastavit externí příkazy, které budou spuštěny v tomto pořadí "
+"daemonem collectd. Ze standardního výstupu příkazů vezme collectd potřebné "
+"hodnoty."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+"Zde můžete definovat různá kritéria, podle kterých budou vybrána sledovaná "
+"pravidla iptables."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr "Hostitel"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Hostname"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr "IP nebo hostname, odkud získat txtinfo výstup"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "Nastavení IRQ pluginu"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "Ignorovat zdrojové adresy"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "Příchozí rozhraní"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "Nastavení Interface pluginu"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Rozhraní"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Přerušení"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr "Interval pro ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Nastavení Iptables pluginu"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+"Pokud nic nevyberete, rozhraní pro monitoring budou určena automaticky."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "Naslouchající hostitel"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "Naslouchající port"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr "Rozhraní naslouchajícího"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "Načíst nastavení pluginů"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "Maximální množství povolených spojení"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr "Paměť"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr "Nastavení pluginu Memory (Paměť)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr "Sledovat vše kromě vybraných"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "Monitorovat všechny naslouchající porty"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "Sledovat zařízení"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "Sledovat disky a oddíly"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "Sledovat typy souborových systémů"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "Sledovat hostitele"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr "Sledovat rozhraní"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "Sledovat přerušení"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "Sledovat místní porty"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "Sledovat přípojné body"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "Sledovat procesy"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "Sledovat vzdálené porty"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "Název pravidla"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Netlink"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Nastavení pluginu Netlink"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Síť"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "Nastavení pluginu Síť"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Síťové pluginy"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Síťový protokol"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Počet vláken pro sběr dat"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr "OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr "Nastavení pluginu OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "Možnosti"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "Odchozí rozhraní"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Výstupní pluginy"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Nastavení pluginu Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr "Port"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Procesy"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "Nastavení pluginu Procesy"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr "Sledované procesy (oddělte mezerou)"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "Procesor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Sledování Qdisc"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+#, fuzzy
+msgid "RRD XFiles Factor"
+msgstr "RRD XFiles Factor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "Nastavení pluginu RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr "Řádky na jeden RRA"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr "Skript"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "Sekundy"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "Hostitel serveru"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "Port serveru"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr "Soubor socketu"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr "Skupina socketů"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr "Oprávnění socketu"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "Rozsah zdrojových IP"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr "Určuje, jaké informace sbírat o odkazech."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr "Určuje, jaké informace sbírat o cestách"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr "Určuje, jaké informace sbírat o globální topologii"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr "Statistiky"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "Úložný adresář"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "Úložný adresář pro soubory CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr "Ukládat data jako poměrné hodnoty místo absolutních"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "Zatížení systému"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "TCP spojení"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "Nastavení pluginu TCPConns"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "TTL pro síťové pakety"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "TTL pro pakety pingu"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr "Plugin Conntrack shromažďuje statistiky o počtu sledovaných spojení."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr "Plugin CPU shromažďuje základní statistiky o vytížení procesoru."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+"Plugin CSV ukládá shromážděná data ve formátu CSV. Data mohou být později "
+"zpracována externími programy."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+"Plugin DF shromažďuje statistiky o využití diskového prostoru na různých "
+"zařízeních, přípojných bodech nebo typech souborových systémů."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+"Plugin Disk shromažďuje podrobné statistiky o využívání vybraného oddílu "
+"nebo celého disku."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+"Plugin DNS shromažďuje podrobné statistky o provozu, vztahující se k DNS, na "
+"vybraných rozhraních."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"Plugin Email vytváří unixový socket, které může být využit pro odeslání "
+"statistik o emailu běžícímu daemonu collectd. Plugin je primárně určen pro "
+"použití ve spojení s Mail::SpamAssasin::Plugin::Collectd, ale stejně dobře "
+"může být využit jinak."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+"Plugin Interface shromažďuje statistiky o provozu na vybraných rozhraních."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+"Plugin Iptables monitoruje vybraná pravidla firewallu a shromažďuje "
+"informace o zpracovaných bajtech a paketech pro každé pravidlo."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+"Plugin IRQ monitoruje množství požadavků na přerušení pro každé vybrané "
+"přerušení. Pokud není vybráno žádné přerušení, jsou monitorována všechna."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+"Plugin Iwinfo shromažďuje statistiky o síle, šumu a kvalitě bezdrátového "
+"signálu."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr "Plugin Load shromažďuje statistiky o obecné zátěži systému."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr "Plugin Memory shromažďuje statistiky o využití paměti."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+"Plugin Netlink shromažďuje rozšířené informace jako statistiky qdisk, class "
+"a filtru pro vybraná rozhraní."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+"Plugin Network poskytuje síťovou komunikaci mezi různými instancemi daemonu "
+"collectd. Collectd může pracovat v režimu klienta i serveru. V režimu "
+"klienta jsou lokálně shromažďovaná data odeslána instanci serveru, jako "
+"server naopak collectd přijímá data z ostatních hostitelů."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+"Plugin Ping bude odesílat ICMP echo odpovědi vybraným hostům a měřit "
+"zpáteční čas pro každého hosta."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+"Plugin Processes shromažďuje informace o procesorovém času, výpadcích "
+"stránky a využití paměti vybranými programy."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+"Plugin Rrdtool ukládá shromažďená data v souborech databáze RRD.<br /><br /"
+"><strong>Varování: Nastavení špatných hodnot bude mít za následek velkou "
+"spotřebu paměti v dočasném adresáří. Zařízení ze tak může stát nepoužitelným!"
+"</strong>"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+"Plugin Tcpconns shromažďuje informace o otevřených TCP spojeních na "
+"vybraných portech."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+"Plugin Unixsock vytváří unixový socket, které může být využit pro čtení dat "
+"z běžící instance collectd."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+"Tato sekce určuje, na kterých rozhraních bude collectd čekat na příchozí "
+"spojení."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr "Tato sekce určuje, na které servery budou odeslána shromážděná data."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr "UPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr "Konfigurace pluginu UPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Konfigurace pluginu Unixsock"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Použitý soubor PID (identifikátoru procesu)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr "Uživatel"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "Podrobný monitoring"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "Wireless"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr "Nastavení pluginu Wireless Iwinfo"
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "např. br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "např. br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "např. reject-with tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "max. 16 znaků"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "redukovaná velikost rrd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "sekundy, více hodnot oddělených mezerou"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "rozhraní serveru"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: \n"
+"PO-Revision-Date: 2013-01-28 22:20+0200\n"
+"Last-Translator: DAC324 <gerd_roethig@web.de>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.0.6\n"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "Aktion (Ziel)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "Kommando zum Werte einlesen hinzufügen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "Auswahlregel hinzufügen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr "Mehrere Hosts durch Leerzeichen getrennt hinzufuegen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "Benachrichtigungskommando hinzufügen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "Basisverzeichnis"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "Schnittstellen einfach überwachen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "CPU Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "CSV Ausgabe"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "CSV Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr "Zwischenspeicherzeit für gesammelte Daten"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr "Cache-Leerungsintervall"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "Kette (Chain)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr "Informationen über Links sammeln (CollectdLinks)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr "Informationen über Routen sammeln (CollectRoutes)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr "Informationen über die Netzwerktopologie sammeln (CollectTopology)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Collectd Einstellungen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd ist ein schlankes Dienstprogramm zum Sammeln von Systemdaten aus "
+"verschiedenen Quellen mittels diverser Plugins. Auf dieser Seite können "
+"generelle Einstellungen für den Collectd-Daemon vorgenommen werden."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr "Conntrack"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr "Conntrack Plugin Einstellungen"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "DF Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "DNS Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Daten-Sammelintervall"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "Dataset-Definitionen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "Ziel-IP-Bereich"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Verzeichnis für Collectd-Plugins"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "Verzeichnis für Unterkonfigurationen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "Disk Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Plattenspeicher"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Plattenauslastung"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr "Anzeigeserver"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "Zeitspanne zeigen »"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "E-Mail Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "Email"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "Plugin aktivieren"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Exec Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr "Filterklassen überwachen"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Firewall"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr "Leerungsintervall für Zwischenspeicher"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr "Weiterleitung zwischen Listen- und Server-Adressen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Diagramme"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr "Gruppe"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"Hier können externe Kommandos definiert werden, welche durch Collectd "
+"gestartet werden um Statistik-Werte einzulesen. Die Werte werden dabei vom "
+"STDOUT des aufgerufenen Programmes gelesen."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"Hier können externe Kommandos definiert werden, welche durch Collectd "
+"gestartet werden sobald konfigurierte Grenzwerte erreicht werden. Die Werte "
+"welche die Benachrichtigung ausgelöst haben werden dabei an den STDIN des "
+"aufgerufenen Programmes übergeben."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+"Hier werden die Kriterien festgelegt nach welchen die zu überwachenden "
+"Firewall-Regeln ausgewählt werden."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr "Host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Hostname"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr "IP-Adresse oder Hostname zum Abfragen der Txtinfo-Ausagabe"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "IRQ Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "Quelladressen ignorieren"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "eingehende Schnittstelle"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "Interface Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Schnittstellen"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Interrupts"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr "Intervall zwischen den Pings"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Iptables Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+"Nichts auswählen um die zu überwachende Schnittstelle automatisch zu "
+"bestimmen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "Listen-Host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "Listen-Port"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr "Listen-Schnittstelle"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "Load Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "Maximale Anzahl erlaubter Verbindungen"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr "Memory"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr "Memory-Plugin-Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr "Alle bis auf Angegebene überwachen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "Alle durch lokale Dienste genutzten Ports überwachen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "Geräte überwachen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "Geräte und Partitionen überwachen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "Datesystemtypen überwachen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "Hosts überwachen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr "Schnittstellen überwachen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "Interrups überwachen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "lokale Ports überwachen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "Mount-Punkte überwachen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "Überwachte Prozesse"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "entfernte Ports überwachen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "Name der Regel"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Netlink"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Netlink Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Netzwerk"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "Network Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Netzwerkplugins"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Netzwerkprotokoll"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Anzahl paralleler Sammelprozesse"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr "OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr "OLSRd-Plugin-Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr "Nur 'average' RRAs erzeugen"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "Optionen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "ausgehende Schnittstelle"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Ausgabeplugins"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Ping Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr "Port"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Prozesse"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "Prozess Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr "Zu überwachende Prozesse (getrennt durch Leerzeichen)"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "Prozessor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Queue Discipline überwachen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr "RRD XFiles Faktor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr "RRD Heartbeatintervall"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr "RRD Schrittintervall"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "RRDTool Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr "Spalten pro RRA"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr "Skript"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "Sekunden"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "Server-Host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "Server-Port"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr "Shapingklassen überwachen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr "Socket-Datei"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr "Socket-Nutzergruppe"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr "Socket-Berechtigungen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "Quell-IP-Bereich"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr "Bestimmt die zu sammelnden Per-Link-Informationen."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr "Bestimmt die zu sammelnden Per-Route-Informationen."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr "Bestimmt die zu sammelnden Informationen der globalen Topologie."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr "Statistiken"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "Speicherverzeichnis"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "Speicherverzeichnis für die CSV-Dateien"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr "Werte nicht absolut sondern als Raten speichern"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "gespeicherte Zeitspannen"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "Systemlast"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "TCP-Verbindungen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "TCPConns Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "TTL für Netzwerkpakete"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "TTL für Ping Pakete"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "Tabelle"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+"Das NUT-Plugin liest Informationen über Unterbrechungsfreie Stromversorgungen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+"Das OLSRd-Plugin liest Informationen über Meshnetzwerke aus der OLSR-Txtinfo-"
+"Erweiterung."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+"Das Conntrack-Plugin sammelt Daten über die Anzahl der verfolgten "
+"Verbindungen."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+"Das CPU-Plugin sammelt grundlegende Statistiken über die Prozessorauslastung."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+"Das CSV-Plugin speichert die gesammelten Daten im CSV-Format, geeignet für "
+"die Weiterverarbeitung durch externe Programme."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+"Das DF-Plugin sammelt Statistiken über den Speicherverbrauch auf "
+"verschiedenen Geräten, Mount-Punkten oder Dateisystemtypen."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+"Das Disk-Plugin sammelt detaillierte Statistiken über die Auslastung auf "
+"ausgewählten Festplatten und Partitionen."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+"Das DNS-Plugin sammelt detaillierte Statistiken über DNS-bezogenen Verkehr "
+"auf ausgewählten Schnittstellen."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"Das E-Mail Plugin erstellt einen Unix-Socket welcher benutzt werden kann um "
+"E-Mail-Statistiken an den laufenden Collectd-Daemon zu übermitteln. Dieses "
+"Plugin ist primär für die Verwendung zusammen mit Mail::SpamAssasin::Plugin::"
+"Collectd gedacht, kann aber auch anderweitig verwendet werden."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+"Das Exec-Plugin startet externe Kommandos um Werte einzulesen oder um "
+"Benachrichtigungen auszulösen falls bestimmte Grenzwerte erreicht werden."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+"Das Interface-Plugin sammelt allgemeine Verkehrsstatistiken auf ausgewählten "
+"Schnittstellen."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+"Das Iptables-Plugin überwacht ausgewählte Firewall-Regeln und sammelt Werte "
+"über die Anzahl der verarbeiteten Pakete und Bytes."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+"Das IRQ-Plugin überwacht die Anzahl der Aufrufe pro Sekunde für jeden "
+"ausgewählten Interrupt. Wird kein Interrupt ausgewählt überwacht das Plugin "
+"alle im System vorhandenen Interrupts."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+"Das iwinfo-Plugin sammelt Statistiken über die WLAN-Signalstärke, den "
+"Rauschpegel und die Signalqualität."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr "Das Load-Plugin sammelt Informationen über die allgemeine Systemlast."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+"Das memory-Plugin sammelt Statistiken über die RAM-Auslastung des Systems."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+"Das Netlink-Plugin sammelt erweiterte QoS-Informationen wie QDisc-, Class- "
+"und Filter-Statistiken auf ausgewählten Schnittstellen."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+"Das Network-Plugin ermöglicht die netzwerkgestützte Kommunikation zwischen "
+"verschiedenen Collectd-Instanzen. Collectd kann gleichzeitig im Server- und "
+"Client-Modus betrieben werden. Im Client-Modus werden lokal gesammelte Daten "
+"an einen Collectd-Server übermittelt, im Server-Modus empfängt die lokale "
+"Instanz Daten von anderen Installationen."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+"Das Ping-Plugin sendet ICMP-Echo-Requests an ausgewählte Hosts und misst die "
+"Antwortzeiten für jede Adresse."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+"Das Prozess-Plugin sammelt Statistiken über Prozess-Zeit, Speicher-Fehler "
+"und Speicher-Verbrauch ausgewählter Prozesse"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+"Das RRDTool-Plugin speichert die gesammelten Daten in sogenannten RRD-"
+"Datenbanken, der Grundlage für die Diagramm-Bilder.<br /><br /"
+"><strong>Warnung: Falsche Werte resultieren in einem sehr hohen "
+"Speicherverbrauch im temporären Verzeichnis. Das kann das Gerät unbrauchbar "
+"machen, da Systemspeicher für den regulären Betrieb fehlt!</strong>"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+"Das TCPConns-Plugin sammelt Informationen über offene TCP-Verbindungen auf "
+"ausgewählten Ports."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+"Das Unixsock-Plugin erstellt einen Unix-Socket über welchen gesammelte Werte "
+"aus der laufenden Collectd-Instanz ausgelesen werden können."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+"Diese Sektion legt fest auf welchen Schnittstellen Collectd auf eingehende "
+"Verbindungen wartet."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+"Diese Sektion legt fest zu welchen Collectd-Servern die lokal gesammelten "
+"Daten gesendet werden."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr "automatisch vollen Hostnamen herausfinden"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr "USV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr "Einstellungen des USV-Plugins"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr "Name der USV in NUT im Format usv@host "
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Unixsock Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Pfad zu PID-Datei"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr "Nutzer"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "Schnittstellen detailliert überwachen"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "Drahtlos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr "Wireless-iwinfo Plugin Konfiguration"
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "z.B. br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "z.B. br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "z.B. reject-with tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "max. 16 Buchstaben"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "reduziert die RRD Größe"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "mehrere mit Leerzeichen trennen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "Server-Schnittstellen"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2012-03-18 15:32+0200\n"
+"Last-Translator: Vasilis <acinonyx@openwrt.gr>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.0.4\n"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+#, fuzzy
+msgid "Base Directory"
+msgstr "Κατάλογος βάσης"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "Έξοδος CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Ρυθμίσεις Collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Το Collectd είναι ένας μικρός δαίμονας για τη συλλογή δεδομένων από διάφορες "
+"πηγές μέσω διάφορων προσθέτων. Σε αυτή τη σελίδα μπορείτε να αλλάξετε τις "
+"γενικές ρυθμίσεις του δαίμονα collectd."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr "Conntrack"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Περίοδος συλλογής δεδομένων"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "Αρχείο ορισμού συνόλων δεδομένων"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Κατάλογος για πρόσθετα collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+#, fuzzy
+msgid "Directory for sub-configurations"
+msgstr "Κατάλογος υπο-ρυθμίσεων"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Χρήση Χώρου στον δίσκο"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Χρήση Δίσκου"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "Εμφάνιση χρονικού εύρους »"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "Ηλ. Ταχυδρομείο"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Τείχος προστασίας"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Γραφήματα"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Όνομα υπολογιστή"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Διεπαφές"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Διακοπές"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr "Μνήμη"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "Όνομα κανόνα"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Netlink"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Δίκτυο"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Πρόσθετα δικτύου"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Αριθμός νημάτων για τη συλλογή δεδομένων"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr "OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Πρόσθετα εξόδου"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Διεργασίες"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "Επεξεργαστής"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "Δευτερόλεπτα"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr "Στατιστικά"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "Φόρτος Συστήματος"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "Συνδέσεις TCP"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "Πίνακας"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Αρχείο PID σε χρήση"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "Ασύρματο"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "π.χ. br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "π.χ. br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr ""
--- /dev/null
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-05-19 19:35+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "Action (target)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "Add command for reading values"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "Add matching rule"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "Add notification command"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "Base Directory"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "Basic monitoring"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "CPU Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "CSV Output"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "CSV Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr "Cache collected data for"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr "Cache flush interval"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "Chain"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Collectd Settings"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "DF Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "DNS Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Data collection interval"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "Datasets definition file"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "Destination ip range"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Directory for collectd plugins"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "Directory for sub-configurations"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "Disk Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Disk Space Usage"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Disk Usage"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "Display timespan »"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "E-Mail Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "Email"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "Enable this plugin"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Exec Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr "Filter class monitoring"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Firewall"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr "Flush cache after"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr "Forwarding between listen and server addresses"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Graphs"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Hostname"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "IRQ Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "Ignore source addresses"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "Incoming interface"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "Interface Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Interfaces"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Interrupts"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Iptables Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "Listen host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "Listen port"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr "Listener interfaces"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "Load Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "Maximum allowed connections"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "Monitor all local listen ports"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "Monitor devices"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "Monitor disks and partitions"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "Monitor filesystem types"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "Monitor hosts"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "Monitor interrupts"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "Monitor local ports"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "Monitor mount points"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "Monitor processes"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "Monitor remote ports"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "Name of the rule"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Netlink"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Netlink Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Network"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "Network Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Network plugins"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Network protocol"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Number of threads for data collection"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr "Only create average RRAs"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "Options"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "Outgoing interface"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Output plugins"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Ping Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Processes"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "Processes Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "Processor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Qdisc monitoring"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr "RRD XFiles Factor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr "RRD heart beat interval"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr "RRD step interval"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "RRDTool Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr "Rows per RRA"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "Seconds"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "Server host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "Server port"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr "Shaping class monitoring"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "Source ip range"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "Storage directory"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "Storage directory for the csv files"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr "Store data values as rates instead of absolute values"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "Stored timespans"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "System Load"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "TCP Connections"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "TCPConns Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "TTL for network packets"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "TTL for ping packets"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "Table"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr "The cpu plugin collects basic statistics about the processor usage."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+"The interface plugin collects traffic statistics on selected interfaces."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr "The load plugin collects statistics about the general system load."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+"This section defines to which servers the locally collected data is sent to."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr "Try to lookup fully qualified hostname"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Unixsock Plugin Configuration"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Used PID file"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "Verbose monitoring"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "Wireless"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "e.g. br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "e.g. br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "e.g. reject-with tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "max. 16 chars"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "reduces rrd size"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "seconds; multiple separated by space"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "server interfaces"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:41+0200\n"
+"PO-Revision-Date: 2019-05-28 16:08-0300\n"
+"Last-Translator: José Vicente <josevteg@gmail.com>\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.3\n"
+"Language-Team: \n"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr "APC UPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr "Configuración del complemento APCUPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "Acción (objetivo)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "Añadir comando para leer valores"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "Añadir regla de coincidencia"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr "Añadir múltiples hosts separados por espacio."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "Añadir comando de notificación"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr "Agregar número de usuarios conectados"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "Directorio Base"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "Monitorización básica"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr "Configuración del complemento de conmutadores de contexto de CPU"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr "Frecuencia de CPU"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr "Configuración del complemento de frecuencia de la CPU"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "Configuración del plugin de CPU"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "Salida CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "Configuración del plugin de CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr "Almacenar datos recogidos para"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr "Intervalo de limpieza del caché"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "Cadena"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr "Enlaces"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr "Rutas"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr "CollectTopology"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Configuración de Collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd es un demonio para la recolección de datos desde varias fuentes a "
+"través de la utilización de diferentes plugins. Aquí puede cambiar la "
+"configuración general del demonio que maneja collectd."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr "Seguimiento"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr "Configuración del seguimiento"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr "Conmutadores de contexto"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "Configuración del plugin DF"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "Configuración del plugin DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Intervalo de recolección de datos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "Archivo de definición de conjunto de datos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "Rango IP de destino"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Directorio para los plugins de collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "Directorio para las sub-configuraciones"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "Configuración del plugin Disco"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Espacio en disco ocupado"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Disco ocupado"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr "Mostrar Host »"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "Mostrar lapso de tiempo »"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "Configuración del plugin email"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "Correo electrónico"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr "Valor vacío = monitorear todo"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr "Habilitar"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "Habilitar este plugin"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr "Entropy"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr "Configuración del complemento de Entropy"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Configuración del plugin Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr "Monitorización del filtro de clases"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Firewall"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr "Vaciar caché tras"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr "Reenviar entre las direcciones de escucha y servidor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr "Recopilar estadísticas de compresión"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr "Complementos generales"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr "Genera un gráfico separado para cada usuario registrado"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Gráficas"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr "Grupo"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"Aquí puede definir los comandos externos que iniciará collectd para leer "
+"ciertos valores. Los valores se leen desde la salida estándar (stdout)."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"Aquí puede definir los comandos externos que iniciará collectd cuando se "
+"alcancen ciertos valores umbral."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+"Aquí puede definir varios criterios de selección de reglas de iptables "
+"monitorizadas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+"Mantenga presionada la tecla Ctrl para seleccionar varios elementos o para "
+"deseleccionar entradas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr "Host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Nombre de máquina"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr "IP o nombre de máquina desde la que obtener la salida de txtinfo"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "Configuración del plugin IRQ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "Ignorar direcciones de origen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "Interfaz de entrada"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "Configuración del interfaz de plugins"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Interfaces"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Interrupciones"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr "Intervalo entre pings"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Configuración del plugin Iptables"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr "No marcar para determinar automáticamente que interfaces monitorizar."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "Máquina de escucha"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "Puerto de escucha"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr "Interfaces para escuchar"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "Configuración del plugin de carga"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+"Los valores máximos para un período se pueden usar en lugar de los promedios "
+"cuando no se usa 'only average RRAs'"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "Máximo número de conexiones"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr "Memoria"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr "Configuración del plugin Memoria"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr "Monitorizar todos menos los especificados"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "Monitorizar todos los puertos de escucha locales"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr "Monitorear todos los sensores"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr "Dispositivo(s) de monitoreo / zona(s) térmica(es)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "Dispositivos a monitonizar"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "Monitorizar discos y particiones"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "Monitorizar tipos de sistema de archivos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr "Monitor de host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "Monitorizar máquinas"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr "Monitorizar interfaces"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "Monitorizar interrupciones"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "Monitorizar puertos locales"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "Monitorizar puntos de montaje"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "Monitorizar procesos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "Monitorizar puertos remotos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr "Nombre"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "Nombre de la regla"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Enlace de red"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Configuración del plugin \"enlace de red\""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Red"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "Configuración del plugin \"Red\""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Plugins de red"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Protocolo de red"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+"Nota: como las páginas son representadas por el usuario 'nobody', los "
+"archivos *.rrd, el directorio de almacenamiento y todos sus directorios "
+"principales deben ser legibles en todo el mundo."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Número de hilos para recolección de datos"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr "OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr "Configuración del plugin \"OLSRd\""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr "Crear sólo RRAs medias"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr "Configuración del complemento \"OpenVPN\""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr "Archivos de estado de OpenVPN"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "Opciones"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "Interfaz de salida"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Plugins de salida"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Configuración del plugin \"Ping\""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr "Puerto"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr "Puerto para comunicación apcupsd."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Procesos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "Configuración del plugin \"Procesos\""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr "Procesos a monitorizar (separados por espacios)"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "Procesador"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Monitorización Qdisc"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr "Factor XFiles RRD"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr "Intervalo de pulso RRD"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr "Intervalo de paso RRD"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "Herramienta RRD"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "Configuración del plugin \"Herramienta RRD\""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr "Filas por RRA"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr "Script"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "Segundos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr "Lista de sensores"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr "Sensors"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr "Configuración del plugin \"Sensors\""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "Host servidor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "Puerto servidor"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr "Configuración"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr "Monitorización de la clase shaping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr "Mostrar valores máximos en lugar de promedios"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr "Fichero de sockets"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr "Grupo socket"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr "Permisos para socket"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "Rango de direcciones IP origen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr "Especifica qué información recolectar sobre enlaces."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr "Especifica qué información recolectar sobre rutas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr "Especifica qué información recolectar sobre la topología global."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr "Splash Leases"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr "Configuración del complemento \"Splash Leases\""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr "Estadísticas"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "Directorio de guardado"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "Directorio para guardar archivos csv"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr "Guardar datos como ratios en vez de valores absolutos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "Intervalos almacenados"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "Carga del sistema"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "Conexiones TCP"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "Configuración del plugin \"Conexiones TCP\""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "TTL para paquetes de red"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "TTL para paquetes de ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "Tabla"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr "El complemento APCUPS recopila estadísticas sobre el APC UPS."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+"El plugin NUT obtiene información sobre Sistemas de Alimentación "
+"Ininterrumpida."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+"El plugin OLSRd lee información sobre redes distribuidas desde el plugin "
+"txtinfo de OLSRd."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+"El complemento OpenVPN recopila información sobre el estado actual de la "
+"conexión vpn."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+"El plugin \"Seguimiento\" recoge estadísticas sobre el número de conexiones "
+"analizadas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+"El plugin \"CPU\" recolecta estadísticas básicas acerca del uso del "
+"procesador."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+"El plugin \"CSV\" almacena los datos recolectados en un archivo con formato "
+"csv para su procesado posterior con programas de terceros."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+"El plugin \"DF\" recolecta estadísticas acerca del uso del espacio en disco "
+"en diferentes dispositivos, puntos de montaje y tipos de sistema de archivos."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+"El plugin \"Disco\" recolecta estadísticas detallada acerca de su "
+"utilización para las particiones seleccionadas o bien el disco completo."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+"El plugin \"DNS\" recolecta estadísticas detalladas acerca del trafico DNS "
+"en las interfaces seleccionadas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"El plugin \"eMail\" crea un socket de unix (unix-socket) que puede "
+"utilizarse para transmitir estadísticas de email a un demonio collectd en "
+"ejecución. Este plugin fue desarrollado, en primer instancia, para ser "
+"utilizado en conjunto con Mail::SpamAssasin::Plugin::Collectd pero puede "
+"utilizarse de diferentes formas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+"El plugin \"Entropy\" recopila estadísticas sobre la entropía disponible."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+"El plugin \"Exec\" inicia comandos externos para leer valores o notificar a "
+"procesos externos cuando determinados valores se alcanzan."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+"El plugin \"Interface\" recoge estadísticas de tráfico en las interfaces "
+"seleccionadas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+"El plugin \"iptables\" monitoriza las reglas seleccionadas del Firewall y "
+"recoge información de bytes y paquetes procesados por cada regla."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+"El plugin \"IRQ\" monitorizará las activaciones por segundo de cada "
+"interrupción elegida. Si no se selecciona ninguna se monitorizarán todas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+"El plugin \"iwinfo\" recolecta estadísticas sobre la potencia de la señal "
+"inalámbrica, ruido y calidad."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr ""
+"El plugin \"carga\" recoge estadísticas sobre la carga general del sistema."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr "El plugin \"memoria\" recoge estadísticas sobre el uso de memoria."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+"El plugin \"netlink\" recoge informaciones extendidas como estadísticas "
+"qdisc-, clase- y filtro- para las interfaces seleccionadas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+"El plugin \"red\" proporciona comunicación entre diferentes instancias de "
+"collectd. Collectd puede operar tanto en modo cliente como en modo servidor. "
+"En modo cliente la información recogida se envía a una instancia que se "
+"encuentre en modo servidor. En modo servidor la instancia recibe datos de "
+"otras máquinas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+"El plugin \"ping\" enviará ecos ICMP a las máquinas elegifas para medir el "
+"tiempo de viaje para cada host."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+"El plugin \"procesos\" recoge información como tiempo de CPU, fallos de "
+"página y uso de memoria de los procesos elegidos."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+"El plugin \"rrdtool\" almacena datos en ficheros de bb.dd. RRD que son la "
+"base para los diagramas.<br /><br /><strong>¡Ojo: Configurar valores "
+"incorrectos puede hacer que se use mucho espacio en el directorio temporal y "
+"puede hacer que el dispositivo funcione mal!</strong>"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+"El plugin \"sensors\" usa el marco de trabajo de sensores de Linux para "
+"recopilar estadísticas ambientales."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+"El plugin \"splash leases\" usa libuci para recopilar estadísticas sobre los "
+"arrendamientos de salpicaduras."
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+"El paquete de estadísticas utiliza <a href=\"https://collectd.org/"
+"\">Collectd</a> para recopilar datos y <a href=\"http://oss.oetiker.ch/"
+"rrdtool/\">RRDtool</a> para renderizar imágenes de diagramas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+"El plugin \"tcpconns\" recoge información de conexiones TCP abiertas en los "
+"puertos seleccionados."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+"El plugin \"thermal\" controlará la temperatura del sistema. Los datos se "
+"leen normalmente desde /sys/class/thermal/*/temp ('*' indica el dispositivo "
+"térmico que se va a leer, por ejemplo, thermal_zone1)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+"El plugin \"unixsock\" crea un socket UNIX que se puede usar para leer los "
+"datos recogidos por una instancia collectd."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+"El plugin \"uptime\" recopila estadísticas sobre el tiempo de actividad del "
+"sistema."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr "Thermal"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr "Configuración del plugin Thermal"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+"Este plugin recopila estadísticas sobre los cambios de contexto del "
+"procesador."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+"Este plugin recopila estadísticas sobre la escala de frecuencia del "
+"procesador."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+"Esta sección define sobre qué interfaces collectd esperará conexiones "
+"entrantes."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+"Esta sección define a qué servidores se envían los datos recolectados "
+"localmente."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr "Intenta resolver el nombre de máquina cualificado"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr "SAI"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr "Configuración del plugin SAI"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr "Nombre del SAI en el formato de NUT sai@máquina"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "Socket UNIX"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Configuración del plugin \"UnixSock\""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr "Tiempo activo"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr "Configuración del plugin Uptime"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr "Usar un esquema de nombres mejorado"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Archivo PID utilizado"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr "Usuario"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "Monitorización detallada"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "WiFi"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr "Configuración plugin \"Wireless iwinfo\""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+"Puede instalar plugins collectd-mod-* adicionales para habilitar más "
+"estadísticas."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr "cUrl"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr "Configuración de plugin de cUrl"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "p.e. br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "p.e. br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "p.e. reject-with tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "16 caracteres máximo"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "reduce el tamaño RRD"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "segundos (varios separados por espacio)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "interfaces de servidores"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-05-19 19:36+0200\n"
+"PO-Revision-Date: 2011-11-23 22:32+0200\n"
+"Last-Translator: fredb <fblistes+luci@free.fr>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "Action (cible)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "Ajoute une commande pour lire des valeurs"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "Ajouter une règle à surveiller"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "Ajoute une commande de notification"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "Répertoire de base"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "Surveillance de base"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "Configuration du greffon sur le CPU"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "Sortie au format CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "Configuration du greffon CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr "Mettre en cache les données collectées pendant"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr "Intervalle de vidange du cache"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "Chaîne"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Paramètres Collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd est un petit démon collectant des données de sources variées à "
+"travers différents greffons. Sur ce page, vous pouvez modifier les "
+"paramètres généraux de ce démon collectd."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "Configuration du greffon DF"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "Configuration du greffon DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Période de récupération des données"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "Fichier de définition des lots de données"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "plage réseau de destination"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Répertoire pour les greffons Collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "Répertoire pour les sous-configurations"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "Configuration du greffon Disque"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Utilisation de l'espace-disque"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Espace-disque"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "Période affichée »"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "Configuration du greffon des courriels"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "Courriel"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "Activer ce greffon"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Configuration du greffon Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr "Surveillance des filtres"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Pare-feu"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr "Vidanger le cache après"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr "Transfert entre les adresses en écoute et du serveur"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Graphiques"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"Vous pouvez définir ici des commandes externes qui seront démarrées par "
+"collectd pour lire certaines valeurs. Ces valeurs seront lisibles depuis "
+"stdout."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"Vous pouvez définir ici des commandes externes qui seront démarrées par "
+"collectd quand certaines valeurs-seuil seront atteintes. Les valeurs "
+"induisant ces démarrages seront fournies aux commandes externes via stdin."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+"Vous pouvez définir ici les critères variés pour sélectionner les règles "
+"iptables à surveiller."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Nom de l'hôte"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "Configuration du greffon IRQ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "Ignorer les adresses-source"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "Interface entrante"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "Configuration du greffon des Interfaces"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Interfaces"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Interruptions"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Configuration du greffon IPtables"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "Hôte en écoute"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "Port en écoute"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr "Interfaces en écoute"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "Configuration du greffon de charge-système"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "Nb de Connexions autorisées au maximum"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "Surveiller tous les ports en écoute locaux"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "Périphériques à surveiller"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "Disques et partitions à surveiller"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "types de systèmes de fichier à surveiller"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "Hôtes à surveiller"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "Surveiller les interruptions"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "Surveiller les ports locaux"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "Points de montage à surveiller"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "Processus à surveiller"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "Surveiller les ports destinataires"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "Nom de la règle"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Configuration du greffon du lien-réseau"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Réseau"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "Configuration du greffon réseau"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Greffons liés au réseau"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Protocole réseau"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Nombre de fils pour la récupération des données"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr "Créer seulement des RRAs moyens"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "Options"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "Interface sortante"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Greffons liés aux résultats"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Configuration du greffon Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Processus"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "Configuration du greffon des processus"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "Processeur"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Surveillance Qdisc"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr "Intervalle de la pulsation RRD"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr "Intervalle d'avancement RRD"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "Configuration du greffon RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr "Lignes par RRA"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "Secondes"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "Hôte du serveur"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "Port du serveur"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr "Surveillance liées à la priorité"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "plage réseau source"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "Répertoire de stockage"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "Répertoire de stockage pour les fichiers CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr "Stocke les données sous forme de taux plutôt que de valeurs absolues"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "Durée de la période enregistrée"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "Charge-système"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "Connexions TCP"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "Configuration du plugin des connexions TCP"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "TTL des paquets-réseau"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "TTL des paquets ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "Table"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr "Le greffon sur le CPU récupère des données sur l'usage du processeur."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+"Le greffon CSV stocke les données collectées dans des fichiers au format CSV "
+"pour être traités ultérieurement par des programmes externes."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+"Le plugin DF récupère des données sur l'utilisation de l'espace-disque sur "
+"différents périphériques, points de montage ou types de systèmes de fichiers."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+"Le greffon Disque récupère des informations détaillées sur des disques ou "
+"partitions sélectionnées."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+"Le greffon DNS récupère des données détaillées à propos du trafic lié au DNS "
+"sur des interfaces sélectionnées."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"Le greffon des courriels crée une socket UNIX qui peut être utilisée pour "
+"transmettre des données sur les courriels à un démon collectd en fonction. "
+"Ce greffon est d'abord destiné à être utilisé avec Mail::SpamAssasin::"
+"Plugin::Collectd mais peut être utilisé d'autres manières également."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+"Le greffon Exec lance des commandes externes pour lire des valeurs ou "
+"notifie des processus externes quand certains seuils ont été atteints."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+"Ce greffon des interfaces collecte des statistiques de trafic sur les "
+"interfaces sélectionnées."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+"Le greffon IPtables surveillera des règles de pare-feu sélectionnées et "
+"collectera des informations sur les octets et paquets IP traités par chaque "
+"règle."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+"Le greffon IRG surveillera le taux d'apparitions par seconde de chaque "
+"interruption sélectionnée. Si aucune interruption n'est sélectionnée, toutes "
+"sont surveillées."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr ""
+"Le greffon de charge-système collecte des données sur la charge générale du "
+"système."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+"Le greffon de lien-réseau récupère sur les interfaces sélectionnées des "
+"informations avancées liées à la QOS, aux classes et au filtrage."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+"Le greffon réseau fournit des communications-réseau entre différentes "
+"instances collectd : ce programme peut fonctionner à la fois comme client et "
+"serveur. En mode client, les données collectées localement sont transférées "
+"à un serveur, en mode serveur, l'instance collectd locale reçoit des "
+"informations d'autres hôtes."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+"Le greffon ping envoie des paquets ICMP « echo reply » aux hôtes définis et "
+"mesure le temps d'aller-retour avec chacun."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+"Le greffon des processus récupère des informations comme le temps CPU, les "
+"défauts de page et l'utilisation mémoire des processus définis."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+"Le greffon RRDTool stocke les informations récupérées dans des fichiers de "
+"base de données RRD, sur lesquels s'appuient la génération de graphes.<br /"
+"><br /><strong>Attention : Un mauvais paramètrage peut entraîner une très "
+"grande consommation mémoire dans le répertoire temporaire, qui peut rendre "
+"le matériel inutilisable !</strong>"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+"Le greffon des connexions TCP récupère des informations sur les ouvertures "
+"de connexions TCP sur les ports spécifiés."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+"Cette section définit sur quelles interfaces collectd écoutera des "
+"connexions entrantes."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+"Cette section définit à quels serveurs sont envoyées les données collectées "
+"localement."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr "Tente de récupérer des noms d'hôtes complètement qualifiés"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "Socket Unix"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Configuration du greffon de socket Unix"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Fichier PID utilisé"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "Surveillance verbeuse"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "Sans-fil"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "p.ex. br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "p.ex. br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "p.ex. reject-with tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "Max. 16 caractères"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "Diminuer la taille RRD"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "En secondes ; séparer différentes valeurs par des espaces"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "Interfaces du serveur"
--- /dev/null
+# statistics.pot
+# generated from ./applications/luci-statistics/luasrc/i18n/statistics.en.lua
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2012-09-10 04:59+0200\n"
+"Last-Translator: Snoof <sagim9@gmail.com>\n"
+"Language-Team: none\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: Pootle 2.0.6\n"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "הוסף פקודה לקריאת נתונים"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2014-01-31 18:58+0200\n"
+"Last-Translator: Sixtus <gelencser12@freemail.hu>\n"
+"Language-Team: none\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: Pootle 2.0.6\n"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "Tevékenység (cél)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "Érték olvasására szolgáló parancs hozzáadása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "Szabály hozzáadása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "Értesítési parancs hozzáadása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "Alapkönyvtár"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "Általános figyelés"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "CPU bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "CSV kimenet"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "CSV bővítmény konfigurálása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr "Gyorsítótár ürítési időköz"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "Lánc"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Collectd beállítások"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"A collectd változatos forrásokból különféle bővítményeken keresztül történő "
+"adatgyűjtésre szolgáló kisméretű démon. Ezen az oldalon módosíthatja a "
+"collectd démon általános beállításait."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr "Conntrack"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr "Conntrack bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "DF bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "DNS bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Adatgyűjtési időszak"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "Adatkészlet leíró fálj"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "Cél IP tartomány"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Öszegyűjtött plug-in-ek könyvtára"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "Al-beállítások könyvtára"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "Lemez bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Felhasznált lemezterület"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Lemezhasználat"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr "Host mutatása »"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "Időszak megjelenítése »"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "E-Mail bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "E-mail"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "Bővítmény engedélyezése"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Exec bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr "Szűrő osztály figyelése"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Tűzfal"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr "Gyorsítótár ürítése ezután:"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Grafikonok"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr "Csoport"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"Itt megadhatók külső parancsok amelyek a collectd által lesznek futtatva "
+"bizonyos értékeke beolvasására. Az értékek a szabványos kimenetről lesznek "
+"beolvasva."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"Itt megadhatók külső parancsok amelyek a collectd által lesznek futtatva "
+"amikor bizonyos küszbértékek elérésre kerülnek. A hívást kiváltó értékek a "
+"meghívott programok szabványos bemenetére lesznek küldve."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+"Itt addhatók meg különböző feltételek, amelyek alapján a megfigyelt iptables "
+"szabályok kiválasztásra kerülnek."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr "Gép"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Gépnév"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+"Annak a gépnek a neve vagy IP címe ahonnan a txtinfo kimenete származik"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "IRQ bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "Forrás címek figyelmen kívül hagyása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "Bejövő interfész"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "Interfész bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Interfészek"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Megszakítások"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr "Ping-ek közötti idő"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Iptables bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+"Bejelölés nélkül a figyelendő iterfészek automatikusan kerülnek "
+"kiválasztásra."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "Terhelés bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "Megengedett kapcsolatok maximális száma"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr "Memória"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr "Memória bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "Eszközök figyelése"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "Lemezek és partíciók figyelése"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "Fájlrendszer típusok figyelése"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "Gépek figyelése"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr "Interfészek figyelése"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "Megszakítások figyelése"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "Helyi portok figyelése"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "Csatolási pontok figyelése"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "Folyamatok figyelése"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "Távoli portok figyelése"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "A szabály neve"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Netlink"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Netlink bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Hálózat"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "Hálózat bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Hálózati bővítmények"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Hálózati protokoll"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Az adatgyűjtő szálak száma"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr "OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr "OLSRd bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr "Csak átlag RRA-k létrehozása"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "Lehetőségek"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "Kimenő interfész"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Kimeneti bővítmények"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Ping bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr "Port"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Folyamatok"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "Folyamatok bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr "Figyelendő folyamatok szóközzel elválasztva"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "Processzor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Qdisc figyelés"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "RRDTool bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr "Parancsfájl"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "másodperc"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "Kiszolgáló gép"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "Kiszolgáló port"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr "Socket fájlok"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr "Socket csoport"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr "Socket jogosultságok"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "Forrás IP tartomány"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr ""
+"Azt határozza meg, hogy az kapcsolatokról milyen információkat kell gyűjteni."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr ""
+"Azt határozza meg, hogy az útvonalakról milyen információkat kell gyűjteni."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+"Azt határozza meg, hogy a globális topológiáról milyen információkat kell "
+"gyűjteni."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr "Statisztikák"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "Tárolási könyvtár"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "A csv fájlok tárolási könyvtára"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr "Az adatok arányként történő tárolása abszolút értékek helyett"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "Tárolt időszakok"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "Rendszerterhelés"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "TCP kapcsolatok"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "TCPConns bővítény beállítása"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "TTL a hálózati csomagokhoz"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "TTL a ping csomagokhoz"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "Táblázat"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr "A NUT bővítmény a szünetmentes tápokról ad információkat."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+"Az OLSRd bővítmény a összekapcsolt hálózatokról olvas információkat az OLSRd "
+"txttinfo bővítményén keresztül."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+"A conntrack bővítmény a nyomon követett kapcsolatok számáról gyűjt "
+"statisztikákat."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+"A processzor bővítmény a processzorhasználatról gyűjt alapvető "
+"statisztikákat."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+"A csv bővítmény segítségével az összegyűjtött adatok csv formátumú fájlba "
+"menthetők külső programmal történő további feldolgozás céljára."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+"A df bővítmény a lemezterület használatáról gyűjt statisztikákat különböző "
+"eszközökön, csatolási pontokon vagy fájlrendszereken."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+"A lemez bővítmény részletes használati statisztikákat készít a kiválasztott "
+"paticiókhoz vagy teljes lemezekhez."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+"A DNS bővítmény részletes adatokat gyűjt a kiválasztott interfészek DNS-hez "
+"tartozó forgalmáról."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"Az email bővítmény egy unix socket-et hoz létre amely lehetővé teszi email-"
+"statisztikáknak a továbbítását egy futó collect démonhoz. A bővítmény "
+"elsősorban a Mail::SpamAssasin::Plugin::Collectd bővítménnyel együtt történő "
+"használatra szolgál, de egyéb módokon is használható."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+"Az exec bővítmény külső parancsokat indít értékek olvasására vagy külső "
+"folyamatok értesítésére bizonyos küszöbértékek elérése esetén."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+"Az interface bővítmény forgalmi statisztikákat gyűjt a kiválasztott "
+"interfészekről."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+"Az iptables bővítmény kiválasztott tűzfal szabályok alapján információt "
+"gyűjt a szabályonként feldolgozott bájtokról és csomagokról."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr ""
+"A load bővítmény az általános rendszzer terhelésről gyűjt statisztikákat."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr "A memória bővítmény a memórahasználatról gyűjt információkat."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+"A ping bővítmény ICMP echo kéréseket küld a kiválasztott gépekre és méri az "
+"oda-vissza eltelt időt minden gép esetében."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+"A tcpconns bővítmény a kiválasztott portokon lévő TCP kapcsolatokról gyűjt "
+"információkat."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+"A unixsock bővítmény létrehoz egy unix socket-et melyen keresztül "
+"kiolvashatók az összegyűjtött adatok egy futó collectd-ből. "
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+"Ez a szakasz határozza meg, hogy a helyileg összegyűjtött adatokat melyik "
+"kiszolgálókra kell továbbítani."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "UnixSock bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Használt PID fájl"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr "Felhasználó"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "Vezeték nélküli"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr "iwinfo vezeték nélküli bővítmény beállítása"
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "pl. br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "pl. br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "pl. reject-with tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "max. 16 karakter"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "csökkenti az rrd adatbázis méretét"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "másodpercek; több szóközzel elválasztott érték is megadható"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "kiszolgáló interfész"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-05-19 19:36+0200\n"
+"PO-Revision-Date: 2014-08-05 11:41+0200\n"
+"Last-Translator: morganfw <morganfw@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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.6\n"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "Azione (destinazione)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd è un piccolo demone usato per raccogliere dati da varie fonti "
+"grazie a diversi plugin. Su questa pagina puoi cambiare le opzioni generali "
+"del demone collectd."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "Abilita questo plugin"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Firewall"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr "Gruppo"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"Qui puoi definire un comando che sarà avviato da collectd per leggere dei "
+"valori. Il valore sarà letto dallo stdout."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"Qui puoi definire un comando che sarà avviato da collectd quando un certo "
+"valore soglia sia raggiunto. Il valore in questione sarà passato al comando "
+"incovato come stdin."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Interfacce"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+"Lasciare deselezionato per determinare automaticamente l'interfaccia da "
+"monitorare."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "Tabella"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-05-19 19:36+0200\n"
+"PO-Revision-Date: 2017-01-24 15:08+0900\n"
+"Last-Translator: INAGAKI Hiroshi <musashino.open@gmail.com>\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: Poedit 1.8.11\n"
+"Language-Team: \n"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "アクション(対象)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "値読み取りコマンドの追加"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "マッチング規則の追加"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr "スペースで区切られた複数のホストを追加します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "通知コマンドの追加"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr "接続ユーザー数の総計"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "ベース・ディレクトリ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "基本モニタリング"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr "CPU 周波数"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr "CPU 周波数プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "CPU プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "CSV 出力"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "CSV プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr "収集されたデータをキャッシュする"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "チェイン"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Collectd 設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd は、様々なソースから別々のプラグインを通してデータを収集する軽量デー"
+"モンです。"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr "Conntrack"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr "Conntrack プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "DF プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "DNS プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "データの収集間隔"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "データベース定義ファイル"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "対象IPの範囲"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "collectd プラグインディレクトリ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "サブ設定ディレクトリ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "ディスクプラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "ディスクスペース使用量"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "ディスクの使用"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr "ホストを表示 »"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "時間帯表示 »"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "E-メールプラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "Eメール"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr "空の値 = 全てをモニターする"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "プラグイン設定を有効にする"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr "エントロピー"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr "エントロピー プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Exec プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "ファイアウォール"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr "一般プラグイン"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr "ログインユーザーごとの分離されたグラフを生成します。"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "グラフ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr "グループ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"ここでは、特定の値を読み込むためにcollectによって順番に開始される外部コマンド"
+"を設定することができます。値は標準出力から読み込まれます。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"ここでは、特定の閾値に到達したときにcollectによって開始される外部コマンドを設"
+"定することができます。呼び出しにつながる値は、呼び出されたプログラムの標準入"
+"力に送られます。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+"ここでは、モニターするiptable規則が選択される様々な基準を設定することができま"
+"す。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr "複数の項目を選択または解除するには、Ctrlキーを押したままにします。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr "ホスト"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "ホスト名"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "IRQ プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "無視するアクセス元アドレス"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "着信インターフェース"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "インターフェース プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "インターフェース"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "割込み"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr "ping間隔"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Iptables プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+"モニターするインターフェースを自動的に決定するには、未選択のままにします。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "待ち受けホスト"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "待ち受けポート"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr "待ち受けインターフェース"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "負荷プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+"'RRAの平均のみ' を使用しないとき、平均値の代わりに一定期間の最大値を使用でき"
+"ます。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "許可された最大接続数"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr "メモリー"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr "メモリー プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr "設定値以外の全てのインターフェースをモニターする"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "ローカルの全待ち受けポートをモニターする"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr "全てのセンサーをモニターする"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "デバイスをモニターする"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "ディスクとパーティションをモニターする"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "ファイルシステム タイプをモニターする"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "ホストをモニターする"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr "モニターするインターフェースの設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "割込みをモニターする"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "ローカルのポートをモニターする"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "マウントポイントをモニターする"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "プロセスをモニターする"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "リモートのポートをモニターする"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "ルール名"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Netlink"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Netlink プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "ネットワーク"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "ネットワークプラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "ネットワークプラグイン"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "ネットワークプロトコル"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+"注意: ページは 'nobody' ユーザーとしてレンダリングされます。*.rrd ファイルと"
+"保存先ディレクトリ、およびそのペアレントディレクトリは、worldアクセス権が "
+"\"読み取り可能\" に設定されている必要があります。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "データ収集用スレッド数"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr "OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr "OLSRd プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr "平均値のRRAsのみ作成する"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr "OpenVPN プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr "OpenVPN ステータスファイル"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "オプション"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "送信インターフェース"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "出力プラグイン"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Ping プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr "ポート"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "プロセス"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "プロセス プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr "スペースで区切られた、モニターするプロセスです。"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "プロセッサー"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Qdisc モニタリング"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr "RRD ハートビート間隔"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr "RRD stepインターバル"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "RRDTool プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr "スクリプト"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "秒"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr "センサー一覧"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr "センサー"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr "センサー プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "サーバー ホスト"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "サーバー ポート"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr "設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr "平均値の代わりに最大値を表示する"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr "ソケット ファイル"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr "ソケット グループ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr "ソケット パーミッション"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "ソースIPの範囲"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr "リンクについて、どのような情報を収集するか設定します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr "ルートについて、どのような情報を収集するか設定します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr "統計"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "保存先ディレクトリ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "CSVファイルの保存先ディレクトリ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr "データ値を絶対値の代わりにレートとして保存します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "保存する期間の範囲"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "システム負荷"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "TCP 接続"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "TCP接続プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "ネットワークパケットのTTL"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "pingパケットのTTL"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "テーブル"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr "NUT プラグインは、無停電電源装置についての情報を読み取ります。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+"OpenVPN プラグインは、現在のVPN接続ステータスについての情報を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr "Conntrack プラグインは、追跡された接続の数についての統計を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr "CPU プラグインは、プロセッサー使用についての基本的な統計を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+"CSV プラグインは、外部プログラムがさらに利用するために、収集されたデータをCSV"
+"ファイル形式で保存します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+"df プラグインは、個別のデバイスまたはマウントポイント、ファイルシステム形式の"
+"ディスク使用量についての統計を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+"ディスク プラグインは、選択されたパーティションまたはディスク全体の詳細な使用"
+"統計を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+"DNS プラグインは、選択されたインターフェースでのDNSに関連したトラフィックにつ"
+"いての詳細な統計を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"Eメール プラグインは、実行中のcollectd デーモンへの電子メール統計の送信に利用"
+"可能なUNIX ソケットを作成するプラグインです。このプラグインは、メール、"
+"SpamAssasin、プラグイン、Collectdを一緒に使うことを主に意図していますが、ほか"
+"の方法にも同様に使用することができます。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+"エントロピー プラグインは、利用可能なエントロピーについての統計を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+"Exec プラグインは、特定の閾値に到達したときに外部プロセスから値の読み込み、も"
+"しくは外部プロセスへ通知する外部コマンドを開始します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+"インターフェースプラグインは、選択したインターフェースのトラフィックの統計情"
+"報を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+"iptables プラグインは、選択されたファイアウォール規をモニターし、規則ごとの処"
+"理されたバイト数とパケット数についての情報を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+"IRQ プラグインは、選択された割り込みごとに1秒当たりの発行レートをモニターしま"
+"す。選択された割り込みが無い場合、すべての割り込みがモニターされます。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+"iwinfo プラグインは、無線信号強度、ノイズ、クオリティ情報を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr "負荷プラグインは、システム負荷の統計情報を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr "メモリー プラグインは、メモリー使用についての統計を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+"Netlink プラグインは、選択されたインターフェースの qdisc- や class- 、filter-"
+"statistics のような拡張的な情報を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+"ネットワークプラグインは、異なるcollectd間のネットワークベースの通信を提供し"
+"ます。collectdは、クライアントモードとサーバーモードの両方で動作することがで"
+"きます。クライアントモードでは、ローカルの収集データはcollectdサーバーに転送"
+"され、サーバーモードではローカルのインスタンスは他のホストからデータを受信し"
+"ます。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+"ping プラグインは、ICMP Echo Replyを選択されたホストに送信し、各ホストとの往"
+"復時間を計測します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+"プロセス プラグインは、選択されたプロセスのCPU時間やページフォルト、メモリー"
+"使用率などの情報を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+"rrdtool プラグインは、収集したデータをrrd データベースファイルに保存します。"
+"これが統計図の基礎です。<br /><br /><strong>警告: 間違った値を設定すると、一"
+"時的なディレクトリによってメモリー消費量が非常に高くなります。これはデバイス"
+"を使用不能にする可能性があります!</strong>"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+"センサー プラグインは、環境統計の収集に Linux センサーフレームワークを使用し"
+"ます。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+"statistics パッケージは、データの収集に<a href=\"https://collectd.org/"
+"\">Collectd</a>を、統計図のレンダリングに<a href=\"http://oss.oetiker.ch/"
+"rrdtool/\">RRDtool</a>を使用します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+"TCP接続プラグインは、選択されたポートにおいてオープンなTCP接続についての情報"
+"を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr "サーマル プラグインは、システムの温度をモニターします。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+"unixsock プラグインは、実行中のcollectd インスタンスから収集データの読み取り"
+"に使用可能なUNIX ソケットを作成します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr "稼働時間 プラグインは、システムの稼働時間についての統計を収集します。"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr "サーマル"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr "サーマル プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+"このプラグインは、プロセッサー周波数スケーリングについての統計を収集します。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+"このセクションでは、collectdが着信接続を待ち受けるインターフェースを設定しま"
+"す。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+"このセクションでは、ローカルに収集されたデータを送信するサーバーを設定しま"
+"す。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr "UPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr "UPS プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr "ups@host 形式のNUT内のUPS名"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Unixsock プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr "稼働時間"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr "稼働時間プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "使用するPIDファイルの保存場所"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr "ユーザー"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "詳細モニタリング"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "無線"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr "無線LAN iwinfo プラグイン設定"
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+"追加の collectd-mod-* プラグインをインストールすることで、より多くの統計を有"
+"効にできます。"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "例: br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "例: br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "例: reject-with tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "最大16文字"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "rrdファイルのサイズを小さくします。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "サーバー インターフェース"
+
+#~ msgid "Collectd"
+#~ msgstr "Collectd"
+
+#~ msgid "System plugins"
+#~ msgstr "システムプラグイン"
--- /dev/null
+# statistics.pot
+# generated from ./applications/luci-statistics/luasrc/i18n/statistics.en.lua
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr ""
--- /dev/null
+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-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "Handling (mål)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "Legg til kommando for lesing av verdier"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "Legg til matchende regel"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr "Legg til flere verter adskilt med mellomrom."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "Legg til varsling kommando"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "Hoved Katalog"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "Enkel overvåking"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "CPU plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "CSV Utdata"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "CSV plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr "Hurtigbufre innsamlede data for"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr "Intervall for tømming av hurtigbuffer"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "Lenke"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Collectd Innstillinger"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd er en liten daemon for innsamling av data fra ulike kilder gjennom "
+"ulike plugins. På denne siden kan du endre generelle innstillinger for "
+"collectd daemon."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "DF plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "DNS plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Datainnsamling intervall"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "Datasett definisjonsfil"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "Destinasjon ip område"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Katalog for collectd plugins"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "Katalog for sub-konfigurasjoner"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "Disk plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Disk Forbruk"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Disk Anvendelse"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "Vis tidsperiode »"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "E-Post plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "Epost"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "Aktiver denne plugin"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Program"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Program plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr "Filter class overvåking"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Brannmur"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr "Tømme hurtigbufferen etter"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr "Videresending mellom lyttende og server adresser"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Grafer"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"Her kan du definere eksterne kommandoer som blir startet av collectd for å "
+"lese enkelte verdier. Verdiene skal leses fra stdout."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"Her kan du definere eksterne kommandoer som blir startet av collectd når "
+"visse grenseverdier er blitt nådd. Verdiene som fører til aktivering vil bli "
+"overført til det påkallede programs stdin."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr "Her kan du definere kriterier for reglene som overvåker iptables."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Vertsnavn"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "IRQ plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "Ignorer kilde adresser"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "Innkommende grensesnitt"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "Grensesnitt plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Grensesnitt"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Avbrudd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr "Intervall ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Iptable plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "Lyttende vert"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "Lyttende port"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr "Lyttende grensesnitt"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "Belastning plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "Maksimum tillatte tilkoblinger"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "Overvåk alle lokale lyttende porter"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "Overvåk enheter"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "Overvåk disker og partisjoner"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "Overvåk filsystem typer"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "Overvåk verter"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "Overvåk avbrudd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "Overvåk lokale porter"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "Overvåk monterings punkter"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "Overvåk prosesser"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "Overvåk eksterne porter"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "Navnet på regelen"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Nettlink"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Netlink plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Nettverk"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "Nettverks plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Nettverks plugin"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Nettverks protokoll"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Antall tråder for datainnsamling"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr "Lag kun gjennomsnittlige RRAs"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "Alternativer"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "Utgående grensesnitt"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Utdata Plugin"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Ping plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Prosesser"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "Prosess plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "Prosessor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Qdisc overvåking"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr "RRD XFiles Faktor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr "RRD \"heartbeat\" intervall"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr "RRD steg intervall"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "RRDTool plugin konfigursjon"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr "Rader per RRA"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "Sekunder"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "Server vert"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "Server port"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr "Shaping class overvåking"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "Kilde ip område"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr "Statistikk"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "Lagrings katalog"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "Katalog for lagring av CSV filer"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr "Lagre dataverdier som rater i stedet for absolutte verdier"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "Lagrede tidsperioder"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "System Belastning"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "TCP Forbindelser"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "TCPConns plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "TTL for nettverkspakker"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "TTL for ping pakker"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "Tabell"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr "CPU plugin samler grunnleggende statistikk om prosessor bruk."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+"CSV plugin lagrer de innsamlede dataene i CSV format for videre bearbeiding "
+"av eksterne programmer."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+"DF plugin samler statistikk om disker på forskjellige enheter, monterings "
+"punkter eller filsystem typer."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+"Disk plugin samler detaljert brukerstatistikk for utvalgte partisjoner og "
+"hele disker."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+"DNS pluging samler detaljert statistikk om DNS relatert trafikk på utvalgte "
+"grensesnitt."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"E-Post plugin skaper en unix socket som kan brukes til å sende e-post "
+"statistikk til en kjørende collectd daemon. Denne plugin er primært ment å "
+"bli brukt i forbindelse med Mail::SpamAssasin::Plugin::Collectd men kan også "
+"brukes på andre måter."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+"Program plugin starter eksterne kommandoer for å lese verdier fra de, eller "
+"for å varsle eksterne prosesser når visse grenseverdier er blitt nådd."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr "Grensesnitt plugin samler trafikk statistikk på utvalgte grensesnitt."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+"Iptables plugin vil overvåke utvalgte brannmurregler og samle informasjon om "
+"bearbeidet data per regel."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+"IRQ plugin vil overvåke hastigheten på forespørsler per sekund for hver "
+"valgte avbrudd. Hvis ingen avbrudd er valgt vil alle avbrudd bli overvåket."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr "Belastning plugin samler statistikk systemets belastning."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+"Netlink plugin samler utvidet informasjon som qdisc-, klasse- og filter-"
+"statistikk for utvalgte grensesnitt."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+"Nettverk plugin gir nettverk basert kommunikasjon mellom ulike collectd "
+"forekomster. Collectd kan operere i både klient og server modus. I "
+"klientmodus blir lokalt innsamlede data overført til en collectd server. I "
+"server modus mottar enheten data fra andre klienter."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+"Ping plugin sender icmp echo svar til utvalgte verter og måle tiden en "
+"rundtur tar for hver vert."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+"Prosess plugin samler informasjon som f.eks. CPU tid, sidefeil og minnebruk "
+"for utvalgte prosesser."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+"RRDTool plugin lagrer innsamlede data i rrd databasefiler som er grunnlaget "
+"for diagrammene.<br /><br /><strong>Advarsel: Innsetting av feile verdier "
+"vil kunne resultere i et svært høyt minneforbruk i den midlertidige "
+"katalogen (temp). Dette kan gjøre enheten ubrukelig!</strong>"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+"Tcpconns plugin samler informasjon om åpne TCP tilkoblinger på utvalgte "
+"porter."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+"Unixsock plugin skaper en unix socket som kan brukes til å lese innsamlet "
+"data fra collectd prosess."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+"Denne seksjonen definerer hvilke grensesnitt collectd vil lytte på for "
+"innkommende tilkoblinger."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+"Denne seksjonen definerer hvilke servere de lokalt innsamlede data blir "
+"sendt til."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr "Prøv å søk etter fullstendig vertsnavn"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Unixsock plugin konfigurasjon"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Brukt PID fil"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "Detaljert overvåking"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "Trådløs"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "f.eks. br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "f.eks. br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "f.eks. forkast med tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "maks. 16 tegn"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "reduserer RRD størrelse"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "sekunder; flere adskilt med mellomrom"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "Server grensesnitt"
--- /dev/null
+# statistics.pot
+# generated from ./applications/luci-statistics/luasrc/i18n/statistics.en.lua
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2014-07-02 19:52+0200\n"
+"Last-Translator: obsy <cezary@eko.one.pl>\n"
+"Language-Team: none\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.6\n"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "Akcja (cel)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "Dodaj polecenie do odczytywania wartości"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "Dodaj pasującą regułę"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr "Dodaj wiele hostów rozdzielonych spacjami."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "Dodaj komendę powiadamiającą"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "Główny katalog"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "Podstawowy monitoring"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "Konfiguracja CPU"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "Wyjście CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "Konfiguracja CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr "Ciasteczka zbierane dla"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr "Odstępy czyszczenia cache"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "Łańcuch"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr "CollectLinks"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr "CollectRoutes"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr "CollectTopology"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Ustawienia Collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd to mały deomon do zbieranie danych z różnych źródeł za pomocą "
+"różnych wtyczek. Na tej stronie można zmienić ogólne ustawienia demona "
+"collectd."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr "Conntrack"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr "Konfiguracja wtyczki Conntrack"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "Konfiguracja wtyczki DF"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "Konfiguracja wtyczki DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Odstępy zbierania danych"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "Zdefiniowany plik ustawień"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "Zakres docelowych adresów IP"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Katalog wtyczek collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "Katalog podkonfiguracji"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "Konfiguracja wtyczki dysk"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Zużycie przestrzeni dyskowej"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Użycie dysku"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr "Wyświetl Host >"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "Przedział czasu wyświetlania »"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "Konfiguracja wtyczki E-mail"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "E-mail"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "Włącz tę wtyczkę"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Konfiguracja wtyczki Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr "Monitorowanie filtra klas"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Firewall"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr "Opróżnić cache po"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr "Przekazać przez słuchacza na adres serwera"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Wykresy"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr "Grupa"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"Tutaj można zdefiniować zewnętrzne komendy, które będą włączane przez "
+"collectd, by odczytać konkretne wartości. Będą one odczytywane z stdout."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"Tutaj można zdefiniować zewnętrzne komendy, które będą włączane przez "
+"collectd, kiedy zostaną osiągnięte konkretne wartości progowe. Wartości "
+"powodujące włączenie będą wysyłane do programów przez stdin."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+"Tutaj można zdefiniować różne kryteria według których wybierane są "
+"monitorowane reguły iptables."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr "Host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Nazwa hosta"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr "Numer IP lub nazwa hosta jako wyjście txtinfo"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "Konfiguracja wtyczki IRQ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "Ignoruj adresy źródłowe"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "Interfejs przychodzący"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "Konfiguracja wtyczki Interfejs"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Interfejsy"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Przerwania"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr "Odstępy dla pingów"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Konfiguracja wtyczki iptables"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+"Pozostaw niezaznaczone do automatycznego określenia interfejsu do "
+"monitorowania."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "Nasłuchuj host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "Nasłuchuj port"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr "Interfejsy nasłuchującego"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "Konfiguracja wtyczki Obciążenie"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "Maksymalna ilość połączeń"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr "Pamięć"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr "Konfiguracja wtyczki Pamięć"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr "Monitoruj wszystko oprócz podanych"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "Monitoruj wszystkie lokalne otwarte porty"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "Monitoruj urządzenia"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "Monitoruj dyski i partycje"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "Monitoruj system plików"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "Monitoruj hosty"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr "Monitoruj interfejsy"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "Monitoruj przerwania"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "Monitoruj porty lokalne"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "Monitoruj punkty zamontowania"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "Monitoruj procesy"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "Monitoruj porty zdalne"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "Nazwa tej reguły"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Netlink"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Konfiguracja wtyczki Netlink"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Sieć"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "Konfiguracja wtyczki Sieć"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Wtyczki sieciowe"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Protokoły sieciowe"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Liczba wątków do zbierania danych"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr "OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr "Konfiguracja wtyczki OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr "Twórz tylko średnie archiwa RRA"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "Opcje"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "Interfejs wychodzący"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Pluginy wyjścia"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Konfiguracja wtyczki Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr "Port"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Procesy"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "Konfiguracja wtyczki Procesy"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr "Monitorowane procesy oddzielone spacją"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "Procesor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Monitorowanie Qdisc"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr "RRD XFiles Factor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr "RRD heart beat interval"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr "RRD Krok interval"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "Konfiguracja wtyczki RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr "Wierszy w archiwum RRA"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr "Skrypt"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "Sekundy"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "Host serwer"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "Port serwera"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr "Shaping Klasa Monitoring"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr "Plik Gniazdo"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr "Gniazdo Grupy"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr "Uprawnienia Gniazda"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "Zakres źródłowych adresów ip"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr "Określa jakie informacje zbierać o linkach."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr "Określa jakie informacje zbierać o trasach."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr "Określa jakie informacje zbierać o globalnej topologii."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr "Statystyki"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "Katalog przechowywania"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "Katalog przechowywania plików csv"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr ""
+"Przechowuj wartości danych jako wskaźniki zamiast wartości bezwzględnych"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "Przechowywane okresy czasu"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "Obciążenie systemu"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "Połączenia TCP"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "Konfiguracja wtyczki Połączenia TCP"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "TTL dla pakietów sieciowych"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "TTL dla pakietów ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "Tabela"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr "Wtyczka Nut Informuje o Nie przerywalnym Zasilaniu"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+"Wtyczka OLSRd odczytuje informacje o sieciach mesh z wtyczki txtinfo dla "
+"OLSRd."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr "Wtyczka Conntrack zbiera statystyki o liczbie śledzonych połączeń."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr "Wtyczka CPU zbiera podstawowe statystyki o użyciu procesora"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+"Wtyczka CSV gromadzi zebrane dane w formacie plików csv do dalszej obróbki "
+"przez zewnętrzne programy."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+"Wtyczka \"df\" zbiera statystyki dotyczące wykorzystania miejsca na różnych "
+"urządzenia, dyskach i systemach plików."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+"Wtyczka \"disk\" zbiera szczegółowe informacje z poszczególnych partycji lub "
+"całych dysków."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+"Wtyczka \"dns\" zbiera statystyki odnośnie ruchu DNS dla wybranych "
+"interfejsów."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"Wtyczka Email Tworzy gniazdo w unix do transmisji statystyki-poczty do "
+"demona collectd. This plugin is primarily intended to be used in conjunction "
+"with Mail::SpamAssasin::Plugin::Collectd but can be used in other ways as "
+"well."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+"Wtyczka Exec startuje zewnętzną komendę do czytnika values z lub do procesu "
+"zewnętrznego powiadomienia gdy wartość została zmieniona"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr "Wtyczka \"interface\" zbiera statystyki z wybranych interfejsów."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+"Wtyczka \"iptables\" monitoruje wybrane reguły firewalla i zbiera statystyki "
+"o procesach, bajtach i pakietach przypadających na daną regułę."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+"Wtyczka \"irq\" monitoruje liczbę przerwań na sekundę dla każdego wybranego "
+"przerwania. Jeśli nie wybrano żadnego przerwania, monitoruje wszystkie."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+"Wtyczka \"iwinfo\" zbiera statystyki o sygnale, zakłóceniach i jakości sieci "
+"WiFi."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr "Wtyczka \"load\" zbiera statystyki o ogólnych obciążeniu systemu."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr "Wtyczka \"memory\" zbiera statystyki dotyczące wykorzystania pamięci."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+"Wtyczki netlink zbiera rozszerzone informacje statystyk z qdisc-, klasa- i "
+"filter- dla wybranych interfejsów."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+"Wtyczka zapewnia podstawową komunikacje między różnymi instancjami collectd. "
+"Collectd może pracować zarówno w trybie klienta i serwera. W trybie klienta "
+"lokalnie zebrane dane przenosi się do instancji serwera collectd, w trybie "
+"serwera lokalnego instancja odbiera dane z innych komputerów."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+"Wtyczka \"ping\" wysyła komunikaty icmp i nasłuchuje odpowiedzi z wybranych "
+"hostów oraz mierzy czasy odpowiedzi zwrotnych dla każdego z nich."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+"Wtyczki processes zbiera informacje o czasie procesora, błędach strony i "
+"pamięci wybranych procesów."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+"Wtyczki rrdtool przechowuje zebrane dane w plikach RRD, które są "
+"wykorzystywane do tworzenia diagramów. <br /> <br /> <strong> Ostrzeżenie:. "
+"Ustawianie błędnej wartości może spowodować bardzo wysokie zużycie pamięci w "
+"katalogu tymczasowym. Może to sprawić, że urządzenie nie będzie nadawało się "
+"do użytku! </strong>"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+"Wtyczka \"tcpconns\" zbiera informacje o otwartych połączeniach tcp dla "
+"wybranych portów."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+"Wtyczka unixsock tworzy socket unix, który może być używany do odczytu "
+"danych zebranych z bieżącej instancji collectd."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+"Sekcja ta definiuje interfejsy na którym collectd będzie czekać na "
+"połączenia przychodzące."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr "Ta sekcja określa do jakich serwerów zebrane dane zostaną wysłane."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr "Spróbuj znaleźć pełną nazwę hosta"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr "UPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr "Plugin Konfiguracji UPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr "Format nazwa UPS w NUT ups@host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Konfiguracja wtyczki UnixSock"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Używany plik PID"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr "Użytkownik"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "Pełny monitoring"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "WiFi"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr "Konfiguracja bezprzewodowego pluginu iwinfo"
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "np. br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "np. br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "np. reject-with tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "max. 16 znaków"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "zmniejsza rozmiar RRD"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "sekundy; wielokrotnie oddzielone spacją"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "interfejsy serwera"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:41+0200\n"
+"PO-Revision-Date: 2018-09-20 19:33-0300\n"
+"Last-Translator: Luiz Angelo Daros de Luca <luizluca@gmail.com>\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: Poedit 2.1.1\n"
+"Language-Team: \n"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr "Nobreak APC"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr "Configuração do Módulo APCUPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "Ação (destino)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "Adicionar comando para leitura de valores"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "Adicionar regra"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr "Adicione múltiplos equipamentos separados por espaço."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "Adicionar o comando de notificação"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr "Numero agregado de usuários conectados"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "Diretório Base"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "Monitoramento básico"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr "Configuração do Módulo de Troca de Contexto da CPU"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr "Frequência da CPU"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr "Configuração do Plugin da Frequência da CPU"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "Configuração do plugin CPU"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "Saida CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "Configuração do plugin CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr "Cache dos dados coletados"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr "Intervalo de limpeza do cache"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "Cadeia"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr "Coleção de Links"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr "Coleção de Rotas"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr "Coleção de Topologias"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Configurações do Coletadas"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd é um pequeno daemon que coleta dados de várias fontes através de "
+"diferentes plugins. Nesta página você pode alterar as configurações gerais "
+"do daemon collectd."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr "Conntrack"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr "Configuração do Plugin do Conntrack"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr "Trocas de Contexto"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "Configuração do plugin DF"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "Configuração do plugin DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Intervalo da coleta de dados"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "Arquivo com a definição de dados"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "Faixa IP de destino"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Diretório para os plugins do collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "Diretório para sub-configurações"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "Configuração do plugin Disco"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Utilização de espaço em disco"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Utilização do Disco"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr "Mostrar Host"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "Mostrar intervalo »"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "Configuração do plugin E-Mail"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "Email"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr "Valor vazio = monitore todos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "Habilitar este plugin"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr "Entropia"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr "Configuração do Plugin de Entropia"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Configuração do plugin Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr "Monitoramento das Classes de Filtros"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Firewall"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr "Limpar cache após"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr ""
+"Encaminhamento entre o endereço de escuta e os endereços dos servidores"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr "Obter estatísticas sobre a compressão"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr "Plugins Gerais"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr "Gerar um gráfico separado para cada usuário conectado"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Gráficos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr "Grupo"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"Aqui você pode definir comandos externos que serão iniciados pelo collectd a "
+"fim de ler determinados valores. Os valores serão lidos a partir do stdout."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"Aqui você pode definir os comandos externos que serão iniciados pelo "
+"collectd quando determinados valores limite forem atingidos. Os valores "
+"passados ao comando serão enviados para o stdin."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+"Aqui você pode definir diversos critérios para as regras iptables "
+"selecionadas serem monitoradas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+"Segure o Ctrl para selecionar múltiplos itens ou para retirar entradas. "
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr "Equipamento"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Hostname"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr "Endereço IP ou nome do equipamento de onde obter a saída do txtinfo"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "Configuração do plugin IRQ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "Ignorar endereços de origem"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "Interface de entrada"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "Configuração do plugin Interface"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Interfaces"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Interrupções"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr "Intervalo para pings"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Configuração do plugin Iptables"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+"Deixe não selecionado para determinar automaticamente a interface a ser "
+"monitorada"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "Endereço de escuta do Host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "Porta de escuta"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr "Escutar na(s) interface(s)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "Configuração do plugin carga"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+"Valores máximos para um período podem ser usados em vez de médias quando não "
+"estiver usando 'somente RRAs de médias'"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "Máximo de conexões permitidas"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr "Memória"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr "Configuração do Plugin da Memória"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr "Monitore tudo exceto se especificado"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "Monitorar todas as portas locais"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr "Monitorar todas os sensores"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr "Dispositivo(s) de monitoramento / zona(s) térmica(s)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "Monitorar dispositivos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "Monitoras discos e partições"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "Monitorar tipos de sistemas de arquivos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr "Equipamento Monitor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "Monitorar os equipamentos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr "Monitorar interfaces"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "Monitorar interrupções"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "Monitorar as portas locais"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "Monitorar pontos de montagem"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "Monitorar processos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "Monitorar portas remotas"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "Nome da regra"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Netlink"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Configuração do plugin Netlink"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Rede"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "Configuração do plugin Rede"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Plugins de rede"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Protocolo de rede"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+"Nota: como as páginas são renderizadas pelo usuário 'nobody', os arquivos * ."
+"rrd, o diretório de armazenamento e todos os seus diretórios superiores "
+"precisam ser legíveis a todos."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Número de threads para o coletor de dados"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr "OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr "Configuração do Plugin OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr "Somente criar RRAs de média"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr "Configuração do Plugin do OpenVPN"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr "Arquivos de estado do OpenVPN"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "Opções"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "Interface de saída"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Plugins de saída"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Configuração do plugin Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr "Porta"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr "Porta para comunicação do apcupsd"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Processos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "Configuração do plugin Processos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr "Processos para monitorar, separado por espaços"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "Processador"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Monitoramento do Qdisc"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr "Fator RRD XFiles"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr "Intervalo entre duas atualizações"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr "Intervalo de atualização"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "Configuração do plugin RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr "Linhas por RRA"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr "Script"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "Segundos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr "Lista de sensores"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr "Sensores"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr "Configuração do Plugin de Sensores"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "Endereço do servidor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "Porta do servidor"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr "Configuração"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr "Monitoramento das Classes de Shaping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr "Mostrar valores máximos em vez de médias"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr "Arquivo do socket"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr "Grupo do socket"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr "Permissões do socket"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "Faixa de IP de origem"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr "Especifica quais informações serão coletadas sobre os enlaces."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr "Especifica quais informações serão coletadas sobre as rotas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr "Especifica quais informações serão coletadas sobre a topologia global."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr "Concessões do Splash"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr "Configuração do Plugin das Concessões do Splash"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr "Estatística"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "Diretório de armazenamento"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "Diretório para armazenamento dos arquivos csv"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr "Armazenar os valores dos dados como taxas em vez de valores absolutos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "Intervalos armazenados"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "Carga do Sistema"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "Conexões TCP"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "Configuração do plugin TCPConns"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "TTL para os pacotes de rede"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "TTL para os pacotes do ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "Tabela"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr "O módulo APCUPS coleta estatísticas sobre o nobreak APC."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr "O plugin NUT lê informações sobre Fontes de alimentação ininterruptas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+"O plugin OLSRd lê informações sobre redes em malha (mesh) a partir do plugin "
+"txtinfo do OLSRd."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+"O plugin OpenVPN reúne informações sobre o status atual da conexão VPN."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+"O plugin do conntrack coleta estatísticas sobre o número de conexões "
+"rastreadas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+"O plugin cpu coleta as estatísticas básicas sobre o uso do processador."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+"O plugin csv armazena os dados coletados em um arquivo no formato csv para "
+"um futuro processamento por outros programas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+"O plugin df coleta estatísticas sobre a utilização de espaço em disco em "
+"diferentes dispositivos, pontos de montagem ou tipos de sistemas de arquivos."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+"O plugin disco coleta estatísticas de uso detalhadas das partições "
+"selecionadas ou discos inteiros."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+"O plugin dns coleta estatísticas detalhadas sobre o tráfego do dns nas "
+"interfaces selecionadas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"O plugin de email cria um socket unix que pode ser usado para transmitir "
+"estatísticas de email para o collectd. Este plugin é essencialmente "
+"destinado a ser utilizado em conjunto com o plugin Mail::SpamAssasin::"
+"Plugin::Collectd mas pode ser utilizado de outras maneiras também."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr "O plugin de entropia coleta estatísticas sobre a entropia disponível."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+"O plugin exec inicia comandos externos para leitura de valores ou notificar "
+"processos externos quando um determinado valor limite for atingido."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+"O plugin interface plugin coleta estatísticas sobre o tráfego das interfaces "
+"selecionadas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+"O plugin iptables irá monitorar as regras de firewall selecionadas e coletar "
+"informações sobre pacotes e bytes processados pela regra."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+"O plugin irq irá monitorar a taxa de ocorrências por segundo de cada "
+"interrupção selecionada. Se nenhuma interrupção for selecionada então todas "
+"as interrupções serão monitoradas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+"O plugin iwinfo coleta estatísticas sobre a força, ruído e qualidade do "
+"sinal da rede sem fio."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr "O plugin de carga coleta estatísticas gerais sobre a carga do sistema."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr "O plugin de memória coleta estatísticas sobre o uso da memória."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+"O plugin Netlink coleta informações detalhadas como qdisc-, classe- e "
+"estatísticas de filtro das interfaces selecionadas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+"O plugin rede fornece informações de rede baseadas na comunicação entre as "
+"diferentes instâncias do collectd. O Collectd pode operar tanto no modo "
+"cliente quanto no modo servidor. No modo cliente os dados coletados "
+"localmente são transferidos para um servidor collectd. No modo de servidor, "
+"o servidor local recebe os dados de outros servidores."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+"O plugin ping irá enviar pacotes ICMP to tipo echo aos equipamentos "
+"selecionados e medir o tempo de resposta para cada equipamento."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+"O plugin de processos coleta informações como o tempo da cpu, falha de "
+"página e uso de memória dos processos selecionados."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+"O plugin rrdtool armazena os dados coletados no arquivo de banco de dados "
+"rrd.<br /><br /><strong>Aviso: A má configuração desses valores, resultará "
+"em um valor muito elevado no consumo de memória no diretório temporário. "
+"Isso pode tornar o equipamento inutilizável!</strong>"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+"O plugin de sensores usa a estrutura de sensores do Linux para coletar "
+"estatísticas ambientais."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+"O plug-in de concessões splash usa o libuci para coletar estatísticas sobre "
+"concessões de splash."
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+"O pacote de estatísticas usa <a href=\"https://collectd.org/\"> Collectd </"
+"a> para coletar dados e <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</"
+"a> para desenhar os gráficos."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+"O plugin tcpconns coleta informações sobre as conexões TCP abertas das "
+"portas selecionadas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+"O plugin térmico monitorará a temperatura do sistema. Os dados são "
+"tipicamente lidos de /sys/class/thermal/*/temp ('*' indica o dispositivo "
+"térmico a ser lido, ex:, thermal_zone1)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+"O plugin unixsock cria um socket unix, que pode ser usado para ler os dados "
+"coletados a partir de uma collectd em execução."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+"O plugin de tempo de atividade coleta estatísticas sobre o tempo de "
+"atividade do sistema."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr "Térmico"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr "Configuração do Plugin Térmico"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+"Este módulo coleta estatísticas sobre as trocas de contexto do processador."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+"Este plugin coleta as estatísticas sobre o escalonamento da frequência do "
+"processador."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+"Esta seção define em quais interfaces o collectd irá aguardar para receber "
+"conexões."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+"Esta seção define para qual servidor os dados coletados localmente serão "
+"enviados."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr "Tentar encontrar o nome completo do equipamento (FQDN)"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr "UPS (no-breaks)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr "Plugin de configuração UPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr "Nome do UPS no NUT em formato ups@equipamento"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Configuração do plugin Unixsock"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr "Tempo de atividade"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr "Configuração do Plugin de Tempo de Atividade"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr "Use um esquema de nomeação melhorado"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Arquivo PID usado"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr "usuário"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "Monitoramento no modo detalhado"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "Rede Sem Fio (Wireless)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr "Configuração do Plugin iwinfo da Rede Sem Fio (Wireless)"
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+"Você pode instalar plugins adicionais (collectd-mod-*) para habilitar mais "
+"estatísticas."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "ex: br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "ex: br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "ex: rejeitar-com tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "máx. 16 caracteres"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "reduzir o tamanho do rrd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "segundos; vários valores, separar com espaço"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "interfaces do servidor"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-05-26 19:03+0200\n"
+"PO-Revision-Date: 2013-06-01 00:10+0200\n"
+"Last-Translator: joao.f.vieira <joao.f.vieira@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\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-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "Ação (destino)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "Adicionar comando para leitura de valores"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "Adicionar regra"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr "Adicionar hosts múltiplos separados por espaço."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "Adicionar o comando de notificação"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "Diretório Base"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "Monitoramento básico"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "Configuração do plugin CPU"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "Formato CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "Configuração do plugin CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr "Cache dos dados coletados"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr "Intervalo de limpeza do cache"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "Cadeia"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Configurações do Collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd é um pequeno daemon que coleta dados de várias fontes através de "
+"diferentes plugins. Nesta página você pode alterar as configurações gerais "
+"do daemon collectd."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "Configuração do plugin DF"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "Configuração do plugin DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Intervalo da coleta de dados"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "Arquivo com a definição de dados"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "IP de destino"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Diretório para os plugins do collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "Diretório para sub-configurações"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "Configuração do plugin Disco"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Utilização de espaço em disco"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Utilização do Disco"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr "Mostrar Host »"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "Mostrar intervalo »"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "Configuração do plugin E-Mail"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "Email"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "Habilitar este plugin"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Configuração do plugin Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr "Monitoramento das Classes de Filtros"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Firewall"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr "Limpar cache após"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr "Transmissão entre o endereço de escuta e dos servidores"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Gráficos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr "grupo"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"Aqui pode definir comandos externos que serão iniciados pelo collectd a fim "
+"de ler determinados valores. Os valores serão lidos a partir do stdout."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"Aqui pode definir os comandos externos que serão iniciados pelo collectd "
+"quando determinados valores limite forem atingidos. Os valores passados ao "
+"comando serão enviados para o stdin."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+"Aqui você pode definir diversos critérios para as regras iptables "
+"selecionadas serem monitoradas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Hostname"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "Configuração do plugin IRQ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "Ignorar endereços de origem"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "Interface de entrada"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "Configuração do plugin Interface"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Interfaces"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Interrupções"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr "Intervalo dos pings"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Configuração do plugin Iptables"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+"Deixar desmarcada para determinar automaticamente as interfaces a "
+"monitorizar."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "Endereço de escuta do Host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "Porta de escuta"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr "Escutar na(s) interface(s)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "Configuração do plugin carga"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "Máximo de conexões permitidas"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr "Memória"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr "Configuração do Plugin de Memória"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr "Monitorizar tudo excepto os especificados"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "Monitorar todas as portas locais"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "Monitorar dispositivos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "Monitoras discos e partições"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "Monitorar tipos de sistemas de arquivos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "Monitorar os hosts"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr "Monitorizar interfaces"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "Monitorar interrupções"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "Monitorar as portas locais"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "Monitorar pontos de montagem"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "Monitorar processos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "Monitorar portas remotas"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "Nome da regra"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Netlink"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Configuração do plugin Netlink"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Rede"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "Configuração do plugin Rede"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Plugins de rede"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Protocolo de rede"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Número de threads para o coletor de dados"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr "Somente criar RRAs de média"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "Opções"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "Interface de saída"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Plugins de saída"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Configuração do plugin Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr "Porta"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Processos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "Configuração do plugin Processos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "Processador"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Monitoramento do Qdisc"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr "Arquivos RRD XFiles Factor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr "Intervalo entre duas atualizações"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr "Intervalo de atualização"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "Configuração do plugin RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr "Linhas por RRA"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "Segundos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "IP/Hostname do servidor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "Porta do servidor"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr "Monitoramento das Classes de Shaping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "IP de origem"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "Diretório de armazenamento"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "Diretório para armazenamento dos arquivos csv"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr "Armazenar os valores dos dados como taxas em vez de valores absolutos"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "Intervalos armazenados"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "Carga do Sistema"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "Conexões TCP"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "Configuração do plugin TCPConns"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "TTL para os pacotes de rede"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "TTL para os pacotes do ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "Tabela"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+"O plugin cpu coleta as estatísticas básicas sobre o uso do processador."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+"O plugin csv armazena os dados coletados em um arquivo no formato csv para "
+"um futuro processamento por outros programas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+"O plugin df coleta estatísticas sobre a utilização de espaço em disco em "
+"diferentes dispositivos, pontos de montagem ou tipos de sistemas de arquivos."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+"O plugin disco coleta estatísticas de uso detalhadas das partições "
+"selecionadas ou discos inteiros."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+"O plugin dns coleta estatísticas detalhadas sobre o tráfego do dns nas "
+"interfaces selecionadas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"O plugin de email cria um socket unix que pode ser usado para transmitir "
+"estatísticas de email o daemon collectd. Este plugin é essencialmente "
+"destinado a ser utilizado em conjunto com o plugin Mail::SpamAssasin::"
+"Plugin::Collectd mas pode ser utilizado de outras maneiras também."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+"O plugin exec inicia comandos externos para leitura de valores ou notificar "
+"processos externos quando um determinado valor limite for atingido."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+"O plugin interface plugin coleta estatísticas sobre o tráfego das interfaces "
+"selecionadas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+"O plugin iptables irá monitorar as regras de firewall selecionadas e coletar "
+"informações sobre pacotes e bytes processados pela regra."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+"O plugin irq irá monitorar a taxa de erros por segundo de cada interrupção "
+"selecionada. Se nenhuma interrupção for selecionada então todas as "
+"interrupções serão monitoradas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr "O plugin carga coleta estatísticas gerais sobre a carga do sistema."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+"O plugin Netlink coleta informações detalhadas como qdisc-, classe- e filtro "
+"de estatísticas das interfaces selecionadas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+"O plugin rede fornece informações de rede baseadas na comunicação entre as "
+"diferentes instâncias do collectd. O Collectd pode operar tanto no modo "
+"cliente quanto no modo servidor. No modo cliente os dados coletados "
+"localmente são transferidos para um servidor collectd, no modo de servidor a "
+"instância local recebe dados de outros hosts."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+"O plugin ping irá enviar pacotes ICMP to tipo echo aos hosts selecionados e "
+"medir o tempo de resposta para cada host."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+"O plugin processo coleta informações como o tempo da cpu, página falhas e "
+"uso de memória dos processos selecionados."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+"O plugin rrdtool armazena os dados coletados no arquivo de banco de dados "
+"rrd.<br /><br /><strong>Aviso: A má configuração desses valores, resultará "
+"em um valor muito elevado no consumo de memória no diretório temporário. "
+"Isso pode tornar o equipamento inutilizável!</strong>"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+"O plugin tcpconns coleta informações sobre as conexões TCP abertas das "
+"portas selecionadas."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+"O plugin unixsock cria um socket unix, que pode ser usado para ler os dados "
+"coletados a partir de uma instância do collectd."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+"Esta seção define em quais interfaces o collectd irá aguardar para receber "
+"conexões."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+"Esta seção define para qual servidor os dados coletados localmente serão "
+"enviados."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr "Tentar encontrar o nome do host completo (FQDN)"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Configuração do plugin Unixsock"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Arquivo PID usado"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "Monitoramento no modo verbose"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "Wireless"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "ex. br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "ex. br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "ex. rejeitar-com tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "max. 16 caract."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "reduzir o tamanho do rrd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "segundos; vários valores, separar com espaço"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "Interfaces do servidor"
--- /dev/null
+# statistics.pot
+# generated from ./applications/luci-statistics/luasrc/i18n/statistics.en.lua
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2011-10-07 17:27+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-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "Directorul de baza"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "Configurarea pluginului CPU"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "Afisarea CSV"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "Configurarea pluginului CVS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Setarile Collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd e un serviciu mic pentru colectarea de date din diferite surse prin "
+"diferite pluginuri. In aceasta pagina poti schimba setarile generale pentru "
+"Collectd."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Intervalul de colectare date"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "Fisierul de definitii dataseturi"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Directorul pentru pluginurile collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "Directorul pentru sub-configuratii"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Utilizarea spatiului pe disc"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Utilizarea discului"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "Email"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Firewall"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Grafice"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Numele de host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Interfete"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Intreruperi"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr "Interval pentru ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Legatura de retea"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Retea"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Pluginuri de retea"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Numarul de threaduri pentru colectarea datelor"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Pluginuri de iesire"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Procese"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "Procesor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "Secunde"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "Incarcarea de sistem"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "Conexiuni TCP"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+"Pluginul pentru CPU colecteaza statistici de baza despre utilizarea "
+"procesorului."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr "Incearca sa rezolvi numele de domeniu complet"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Fisierul pentru PID folosit"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "Wireless"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr ""
+
+#~ msgid "Collectd"
+#~ msgstr "Collectd"
+
+#~ msgid "System plugins"
+#~ msgstr "Pluginuri de sistem"
--- /dev/null
+msgid ""
+msgstr ""
+"Content-Type: text/plain; charset=UTF-8\n"
+"Project-Id-Version: LuCI: statistics\n"
+"POT-Creation-Date: 2017-10-17 22:00+0300\n"
+"PO-Revision-Date: 2018-11-21 22:44+0300\n"
+"Language-Team: http://cyber-place.ru\n"
+"MIME-Version: 1.0\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 2.2\n"
+"Last-Translator: Anton Kikin <a.kikin@tano-systems.com>\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-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr "APC ИБП"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr "Настройка плагина «APCUPS»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "Действие (цель)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "Добавить команду для чтения значений"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "Добавить правило выборки"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr "Добавить несколько хостов, разделённых пробелом"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "Добавить команду уведомления"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr "Общее число подключенных пользователей"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "Основная папка приложения"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "Основная статистика"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr "Настройка плагина переключений контекста CPU"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr "Частота CPU"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr "Настройка плагина частоты CPU"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "Настройка плагина «CPU»"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "CSV вывод"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "Настройка плагина «CSV»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr "Кэшировать собранную статистику в течении"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr "Интервал сброса кэша"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "Цепочка"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr "Сбор информации о соединениях (CollectLinks)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr "Сбор информации о маршрутах (CollectRoutes)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr "Сбор информации о топологии (CollectTopology)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Настройки сollectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd — это сервис для сбора данных из разных источников при помощи "
+"плагинов. На этой странице вы можете изменить настройки collectd."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr "Отслеживание подключений (Conntrack)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr "Настройка плагина «Conntrack»"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr "Переключения контекста"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "Настройка плагина «DF»"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "Настройка плагина «DNS»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Интервал сбора данных"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "Файл с определением набора данных"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "Диапазон IP-адресов назначения"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Папка с плагинами collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "Папка с config файлом"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "Настройка плагина «Disk»"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Использовано места на диске"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Использование диска"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr "Показать хост »"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "Показать за промежуток »"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "Настройка плагина «E-Mail»"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "E-mail"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr "Если пусто = отслеживать все"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr "Включить"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "Включить этот плагин"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr "Энтропия"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr "Настройка плагина «Энтропия»"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Настройка плагина «Exec»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr "Мониторинг класса фильтров"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Межсетевой экран"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr "Сбросить кэш после"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr "Перенаправление между локальным адресом и адресом сервера"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr "Сбор статистики сжатия"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr "Основные плагины"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr "Создать отдельный график для каждого авторизованного пользователя"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Графики"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr "Группа"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"Здесь вы можете определить внешние команды, которые будут выполнены для "
+"чтения определенных значений. Значения будут считаны со стандартного вывода."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"Здесь вы можете определить внешние команды, которые будут выполнены, когда "
+"значения достигнут определенного порога. Значения будут переданы на "
+"стандартный ввод вызванным программам."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+"Здесь вы можете указать различные критерии, по которым будут выбраны правила "
+"для сбора статистики."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+"Удерживая нажатой клавишу Ctrl, выберите несколько элементов или отмените "
+"выбор записей."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr "Хост"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Имя хоста"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr "IP-адрес или имя хоста, с которых получать текстовый вывод"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "Настройка плагина «IRQ»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "Игнорировать исходящие адреса"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "Входящий интерфейс"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "Настройка плагина «Интерфейсы»"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Интерфейсы"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Прерывания"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr "Интервал для ping-запросов"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Настройка плагина «Iptables»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+"Оставьте невыбранным для автоматического определения интерфейсов для "
+"мониторинга."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "Хост для входящих соединений"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "Порт для входящих соединений"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr "Прослушивать интерфейсы"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "Настройка плагина «Загрузка системы»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+"Максимальные значения для периода могут использоваться вместо средних "
+"значений, когда не используется опция «Создавать только средние RRA»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "Максимум разрешенных соединений"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr "Оперативная память (RAM)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr "Настройка плагина «Оперативная память (RAM)»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr "Собирать статистику со всех кроме указанных"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "Собирать статистику со всех портов для входящих соединений"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr "Мониторить все сенсоры"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr "Мониторить устройство(а) / зону(ы) нагрева"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "Мониторить устройства"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "Мониторить диски и разделы"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "Монитоить типы файловых систем"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr "Мониторить хост"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "Мониторить хосты"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr "Мониторить интерфейсы"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "Мониторить прерывания"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "Мониторить локальные порты"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "Мониторить точки монтирования"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "Мониторить процессы"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "Мониторить удаленные порты"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr "Имя"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "Имя правила"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Netlink"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Настройка плагина «Netlink»"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Сеть"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "Настройка плагина «Сеть»"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Сетевые плагины"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Сетевой протокол"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+"Внимание: все операции осуществляются под пользователем «nobody», "
+"соответственно все файлы *.rrd и папки будут доступны любому пользователю."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Количество потоков сбора данных"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr "OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr "Настройка плагина «OLSRd»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr "Создавать только средние RRA"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr "Настройка плагина «OpenVPN»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr "Файлы состояния службы OpenVPN"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "Опции"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "Исходящий интерфейс"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Плагины вывода"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Пинг-запрос"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Настройка плагина «Пинг-запрос»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr "Порт"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr "Порт для связи со службой apcupsd"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Процессы"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "Настройка плагина «Процессы»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr "Процессы для мониторинга (разделённые пробелом)"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "CPU"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Мониторинг Qdisc"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr ""
+"Часть интервала консолидации, которая может состоять из неопределенных "
+"значений (*UNKNOWN*), если консолидированное значение может быть определено "
+"(известно)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr "Максимальное количество секунд между двумя обновлениями (HeartBeat)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr "Базовый интервал между данными в RRD (StepSize)"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "Настройка плагина «RRDTool»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr "Количество «поколений» данных в архиве RRA"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr "Скрипт"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "Секунд(ы)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr "Список сенсоров"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr "Сенсоры"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr "Настройка плагина «Сенсоры»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "Хост сервера"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "Порт сервера"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr "Настройка"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr "Мониторинг классов Shaping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr "Показывать максимальные значения, а не средние"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr "Файл сокета"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr "Группа сокета"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr "Права доступа сокета"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "Диапазон IP-адресов источника"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr "Указывает, какую информацию собирать о соединениях."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr "Указывает, какую информацию собирать о маршрутах."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr "Указывает, какую информацию собирать о глобальной топологии."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr "Splash Leases"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr "Настройка плагина «Splash Leases»"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr "Статистика"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "Папка с данными"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "Папка для CSV-файлов"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr "Хранить данные в виде коэффициентов вместо абсолютных значений"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "Сохраняемые промежутки времени"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "Загрузка системы"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "TCPConns"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "Настройка плагина «TCPConns»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "TTL для сетевых пакетов"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "TTL для ping-пакетов"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "Таблица"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr "Плагин «APCUPS» собирает статистику об ИБП APC."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+"Плагин «NUT» считывает информацию об источниках бесперебойного питания."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+"Плагин «OLSRd» считывает информацию о узловых сетях с плагина txtinfo OLSRd."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+"Плагин «OpenVPN» собирает информацию о текущем состоянии VPN подключения."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+"Плагин «Conntrack» собирает статистику о количестве отслеживаемых соединений."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr "Плагин «CPU» собирает статистику об использовании процессора."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+"Плагин «CSV» позволяет сохранить статистику в формате CSV для последующей "
+"обработки."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+"Плагин «DF» собирает статистику о доступном пространстве на различных "
+"устройствах, точках монтирования или файловых системах."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+"Плагин «Disk» собирает подробную статистику по выбранным разделам или дискам."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+"Плагин «DNS» собирает подробную статистику о DNS трафике на выбранных "
+"интерфейсах."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"Плагин «E-mail» создает Unix-сокет, который может быть использован для "
+"передачи статистики по e-mail работающему сервису collectd. В основном, этот "
+"плагин предназначен для использования вместе с Mail::SpamAssasin::Plugin::"
+"Collectd."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr "Плагин «Энтропия» собирает статистику о доступной энтропии."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+"Плагин «Exec» выполняет внешнюю команду в случае, когда определенные "
+"значения достигают заданного порога."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+"Плагин «Интерфейсы» собирает статистику на выбранных сетевых интерфейсах."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+"Плагин «Iptables» собирает статистику с определенных правил межсетевого "
+"экрана."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+"Плагин «IRQ» собирает статистику по выбранным прерываниям. Если ни одно "
+"прерывание не выбрано, сбор статистики будет проводиться по всем прерываниям."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+"Плагин «Wi-Fi» собирает статистику о качестве и шуме беспроводного сигнала."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr "Плагин «Загрузка системы» собирает статистику о загрузке системы."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+"Плагин «Оперативная память (RAM)» собирает статистику об использовании "
+"памяти."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+"Плагин «Netlink» собирает расширенную статистику с выбранных интерфейсах."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+"Плагин «Сеть» предоставляет возможность сетевого обмена данными между "
+"разными сервисами collectd. Collectd может работать в режиме сервера или "
+"клиента. В режиме клиента, локальная статистика передается collectd-серверу, "
+"в режиме сервера collectd собирает статистику с удаленных хостов."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+"Плагин «Пинг-запрос» посылает ICMP-запросы выбранным хостам и измеряет время "
+"отклика."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+"Плагин «Процессы» собирает информацию, такую как время CPU, ошибки страниц и "
+"использование памяти выбранных процессов."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+"Плагин «RRDTool» сохраняет статистику в формате RRD для последующего "
+"построения диаграмм.<br /><br /><strong>Внимание: установка неверных "
+"параметров может привезти к высокому потреблению памяти устройства. Это "
+"может привести к зависанию устройства!</strong>"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+"Плагин «Сенсоры» использует сенсоры Linux, чтобы собрать статистику "
+"состояния устройства."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr "Плагин «Splash» использует libuci для сбора статистики работы splash."
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+"Приложение статистики использует <a href=\"https://collectd.org/\">collectd</"
+"a> для сбора данных и <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> "
+"для представления их в виде графиков."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+"Плагин «TCPConns» собирает информацию об открытых TCP соединениях на "
+"выбранных портах."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+"Плагин «Thermal» собирает информацию с температурных сенсоров. Данные будут "
+"считываются из /sys/class/thermal/*/temp ( '*' обозначает сенсор "
+"устройства , как-то thermal_zone1 )"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+"Плагин «UnixSock» создает Unix-сокет, который может быть использован для "
+"получения статистики от работающего сервиса collectd."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr "Плагин «Uptime» собирает статистику о времени работы системы."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr "Thermal"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr "Настройка плагина «Thermal»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr "Данный плагин собирает статистику о переключение контекста процессора."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr "Этот плагин собирает статистику о частоте процессора масштабирования."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+"Строка задает интерфейсы, на которых collectd будет обрабатывать входящие "
+"соединения."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+"Строка задает сервера, на которые будет передаваться локальная статистика."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr "Пытаться определять полное имя хоста"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr "ИБП"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr "Настройка плагина «UPS»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr "Имя ИБП в формате NUT ups@host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Настройка плагина «UnixSock»"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr "Время работы"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr "Настройка плагина «Uptime»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr "Использовать улучшенную схему наименования"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Используемый PID-файл"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr "Пользователь"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "Расширенная статистика"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "Wi-Fi"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr "Настройка плагина «Wi-Fi»"
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+"Вы можете установить плагины collectd-mod-* для включения дополнительной "
+"статистики."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr "Настройка плагина «cUrl»"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "напр. br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "напр. br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "напр. reject-with tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "не более 16 символов"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "позволяет уменьшить размер RRD"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "секунд; значения разделенные пробелом"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "Интерфейсы сервера"
--- /dev/null
+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-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr ""
--- /dev/null
+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-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "Lägg till kommando för läsning av värden"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "Lägg till en matchande regel"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr "Lägg till flertalet värdar separerade av mellanslag."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "Lägg till aviseringskommando"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "Basmapp"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "Standardövervakning"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "CSV-utmatning"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "Kedja"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Inställningar för Collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd är en liten demon för insamling av data från olika källor via olika "
+"insticksprogam. På den här sidan så kan du ändra generella inställningar för "
+"collectd-demonen."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "Konfiguration av insticksprogrammet DF"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "Konfiguration av insticksprogrammet DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Intervall för insamling av data"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Mapp för collectd's insticksprogram"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "Mapp för under-konfigurationer"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "Konfiguration av insticksprogrammet Disk"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Användning av diskutrymme"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Användning av disk"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr "Visa värd »"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "Visa tidsspann »"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "Konfiguration av insticksprogrammet E-post"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "E-post"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "Aktivera det här insticksprogrammet"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr "Entropi"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr "Konfiguration av insticksprogrammet Entropi"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Konfiguration av insticksprogrammet Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Brandvägg"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr "Vidarebefordring mellan lyssning och server-adressen"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr "Generall insticksprogram"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr "Generera en separat graf för varje loggade användare"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Grafer"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr "Grupp"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+"Håll ner Ctrl för att välja flera poster eller för att inte välja poster."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr "Värd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Värdnamn"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "Konfiguration av insticksprogrammet IRQ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "Ignorera källadresser"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "Inkommande gränssnitt"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "Konfiguration av insticksprogrammets gränssnitt"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Gränssnitt"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Avbrott"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr "Intervaller för pingningar"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Konfiguration av insticksprogrammet Iptabels"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "Värd för lyssning"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "Lyssningsport"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "Konfiguration av insticksprogrammet Load"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "Maximalt tillåtna anslutningar"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr "Minne"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr "Konfiguration av insticksprogrammet Memory"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr "Övervaka alla förutom specificerat"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "Övervaka alla lokala lyssningsportar"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr "Övervaka alla sensorer"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "Övervaka enheter"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "Övervaka hårddiskar och partitioner"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "Övervaka filsystemtyper"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "Övervaka värdar"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr "Övervaka gränssnitt"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "Övervaka avbrott"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "Övervaka lokala portar"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "Övervaka monteringspunkter"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "Övervaka processer"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "Övervaka fjärrportar"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "Regelns namn"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Nätlänk"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Nätverk"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Insticksprogram för nätverket"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Nätverksprotokoll"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Antalet trådar för insamling av data"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr "OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr "Statusfiler för OpenVPN"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "Alternativ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "Utgående gränssnitt"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Insticksprogram för utmatning"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Pinga"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr "Port"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Processer"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "Processor"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Övervakning av Qdisc"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr "Rader per RRA"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr "Skript"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "Sekunder"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr "Sensorer"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "Värd-server"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "Server-port"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr "Installera"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr "Socketfil"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr "Socketgrupp"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr "Tillstånd för socket"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr "Anger vilken information som ska samlas in om länkar."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr "Anger vilken information som ska samlas in om rutter"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr "Anger vilken information som ska samlas in om den globala topologin."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr "Statistik"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "Lagringsmapp"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "Lagringsmapp för csv-filerna"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "Lagrade tidsspann"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "Belastning av systemet"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "TCP-anslutningar"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "TTL för nätverkspaket"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "TTL för ping-paket"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "Tabell"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr "Försök att kolla upp fullständigt kvalificerade värdnamn"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr "UPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr "Konfiguration av insticksprogrammet UPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr "UPS-namnet i NUT ups@värd-format"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Konfiguration av insticksprogrammet UnixSock"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr "Upptid"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr "Konfiguration av insticksprogrammet Upptid"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Använd PID-fil"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr "Användare"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "Detaljerad övervakning"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "Trådlöst"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+"Du kan installera ytterligare collectd-mod* insticksprogram för att aktivera "
+"mer statistik."
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "t.ex br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "t.ex br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "t.ex reject-with tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "maxmialt 16 tecken"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "reducerar storlek på rrd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "sekunder; flertalet åtskillda med mellanrum"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "gränssnitt för servern"
--- /dev/null
+msgid ""
+msgstr "Content-Type: text/plain; charset=UTF-8"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: \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-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr ""
--- /dev/null
+# statistics.pot
+# generated from ./applications/luci-statistics/luasrc/i18n/statistics.en.lua
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2013-03-12 23:50+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-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Інтерфейси"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Мережа"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Мережевий протокол"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr "Користувач"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr ""
--- /dev/null
+# statistics.pot
+# generated from ./applications/luci-statistics/luasrc/i18n/statistics.en.lua
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-08-16 06:58+0200\n"
+"PO-Revision-Date: 2009-08-16 05:50+0200\n"
+"Last-Translator: Hong Phuc Dang <dhppat@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Pootle 1.1.0\n"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "Action (target)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "Thêm lệnh cho giá trị đang đọc"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "Thêm matching rule"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "Thêm lệnh thông báo"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "Thư mục Cơ sở"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "Monitoring căn bản"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "Cấu hình Plugin CPU"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "CSV Output"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "Cấu hình CSV plugin"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr "Cache collected data cho"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr "Cache flush interval"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "Chain"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Những cài đặt collectd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd là một daemon nhỏ để thu thập dữ liệu từ nhiều nguồn thông qua các "
+"plugins khác nhau. Trên trang này, bạn có thể thay đổi cài đặt tổng quát cho "
+"cai collectd daemon. "
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "Cấu hình DF plugin"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "Cấu hình DNS plugin"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "Khoảng thu thập dữ liệu"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "Tập tin định nghĩa cơ sở dữ liệu"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "Điểm đến ip range"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Danh mục cho collectd plugins"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "Danh mục cho sub-configurations"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "Cấu hình disk plugin"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "Khoảng trống trên đĩa"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "Disk Usage"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "Display timespan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "Cấu hình e-mail plugin"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "Email"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "Kích hoạt plugin này"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Cấu hình Exec Plugin"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr "Filter class monitoring"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "Firewall"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr "Flush cache sau khi"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr "chuyển tiếp giữa listen và địa chỉ server"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "Graphs"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"Ở đây bạn có thể định nghĩa các lệnh bên ngoài mà sẽ khởi động bằng collectd "
+"để đọc những giá trị nhất định. Những giá trị sẽ được đọc từ stdout"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"Ở đây bạn có thể định nghĩa các lệnh bên ngoài cái mà bắt đầu bằng collectd "
+"khi những giá trị threshold nhất định được tiếp cận. Những giá trị dẫn tới "
+"invocation sẽ được feed tới một chương trình gọi là stdin"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr ""
+"Ở đây bạn có thể định nghĩa những tiêu chuẩn khác nhau để monitor iptables "
+"rules được chọn."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "Tên host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "Cấu hình IRQ Plugin "
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "Lờ đi những địa chỉ nguồn"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "Giao diện đang tới"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "Cấu hình giao diện plugin"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Giao diện"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "Cắt ngang"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "cấu hình Iptables Plugin "
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "Listen host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "Listen port"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr "Giao diện listener"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "Tải cấu hình plugin"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "Tối đã kết nối cho phép"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "Monitor tất cả local listen port"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "Monitor devices"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "Kiểm soát đĩa và phân vùng"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "Kiểm soát loại filesystem"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "Monitor hosts"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "Monitor interrupts"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "Monitor cổng địa phương"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "Monitor mount points"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "Monitor processes"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "Monitor remote ports"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "Tên của rule"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Netlink"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Cấu hình Netlink Plugin "
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Network"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "Cấu hình network plugin"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Network plugins"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Network protocol"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "Số lượng các chủ đề để thu thập dữ liệu"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr "Chỉ tạo trung bình RRAs"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "Tùy chọn"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "Giao diện ra ngoài"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Output plugins"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Cấu hình Ping plugin"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "Quá trình xử lý"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "Cấu hình processes plugin"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "Bộ xử lý"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Qdisc monitoring"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr "Yếu tố RRD XFiles"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr "RRD heart beat interval"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr "RRD step interval"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "Cấu hình RRDTool Plugin "
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr "Rows per RRA"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "Giây"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "Server host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "Server port"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr "Shaping class monitoring"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "Nguồn ip range"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "Thư mục lưu trữ"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "Thư mục lưu trữ cho nhưng tập tin csv"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr "Những giá trị dữ liệu lưu trữ như một tỉ lệ thay vì giá trị tuyệt đối"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "Lưu timspans"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "System Load"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "Kết nối TCP"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "Cấu hình TCPConns Plugin "
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "TTL cho gói mạng"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "TTl cho gói ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "Table"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr "CPU plugin thu thập số liệu thống kê cơ bản về sử dụng bộ việc xử lý"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr ""
+"CSV plugin stores thu thập dữ liệu trong tập tin định dạng csv để tiến hành "
+"xử lý bằng các chương trình bên ngoài."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr ""
+"df plugin thu thập số liệu thông kế về khoảng trống trên đĩa trên những "
+"thiết bị khác, mount points hoặc những loại filesystem."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr ""
+"Disk plugin thu thập số liệu thống kê chi tiết về cách sử dụng cho những "
+"phân vùng lựa chọn hoặc toàn bộ đĩa."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr ""
+" dns plugin thu thập những thông kê chi tiết về dns liên quan đến lưu thông "
+"trên những giao diện được chọn. "
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"Email plugin tạo ra một unix socket mà có thể dùng để truyền thông kê e-mail "
+"tới một collectd daemon đang chạy. Cái plugin này chủ yếu được dùng với "
+"Mail::SpamAssasin::Plugin::Collectd nhưng cũng có thể dùng trong những cách "
+"khác."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+"Exec plugin bắt đầu những lệnh bên ngoài để đọc những giá trị từ hoặc tới "
+"những quá trình xử lý thông báo bên ngoài khi giá trị của một threshold nhất "
+"định được tiếp cận "
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr ""
+"Giao diện plugin thu thập những thống kê lưu thông trên những giao diện được "
+"chọn"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr ""
+"iptables plugin sẽ monitor những cái firewall rules được chọn và thu thập "
+"thông tin về bytes xử lý và gói trên rule. "
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+"irq plugin sẽ monitor tỉ lệ vấn đề trên giây cho những interrupt được chọn. "
+"Nếu không có interrupt được chọn thi tất cả các interrupt sẽ được monitor. "
+"for each selected interrupt. If no interrupt is selected then all interrupts "
+"are monitored."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr "Plugin tải thu thập thông kê về tổng quát system load"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr ""
+"Netlink plugin thu thập những thông tin mở rộng như qdisc-, class- and "
+"filter-statistics cho những giao diện được chọn"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+"Network plugin cung cấp network dựa trên giao tiếp giữa những collectd "
+"instances khác nhau. Collectd có thể vận hành trên cả 2 chế độ client và "
+"server. Trong kiểu chế độ client tập hợp ngày tháng địa phương được chuyển "
+"tới một collectd server instance, trong chế độ server, instance địa phương "
+"nhận dữ liệu từ những host khác."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr ""
+"ping plugin sẽ gửi icmp echo trả lời tới những host được chọn và đo thời "
+"gian vận hành qua lại cho từng host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr ""
+"Processes plugin thu thập thông tin như cpu time, page faults và memory "
+"usage của từng processes được chọn. "
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+"The rrdtool plugin lưu những dữ liệu thu thập trong rrd database files, cơ "
+"sở của biểu đồ.<br /><br /><strong> Cảnh báo: Đặt sai giá trị sẽ tiêu hao bộ "
+"nhớ rất nhiều trong một thư mục tạm thời. Điều này có thể làm thiết bị không "
+"sử dụng được</strong>"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr ""
+"Tcpconns plugin thu thập thông tin về open tcp kết nối trên những cổng được "
+"chọn."
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr ""
+"Unixsock plugin tạo một unix socket mà có thể dùng để đọc dữ liệu thu thập "
+"từ một collectd instance đang vận hành. "
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr ""
+"Section này định nghĩa trên giao diện collectd sẽ đợi những kết nối đang tới"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr "Section này định nghĩa servers thu thập dữ liệu địa phương để gửi đi"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr "Thử tra cứu những tên host đủ điều kiện"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Cấu hình Unixsock Plugin "
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "Tập tin PID đã sử dụng"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "Verbose monitoring"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "Mạng không dây"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr ""
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "e.g. br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "e.g. br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "e.g. reject-with tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "max. 16 chars"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "Giảm rrd size"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "giây; nhiều phân tách bởi khoảng trống"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "giao diện server"
--- /dev/null
+#
+# Yangfl <mmyangfl@gmail.com>, 2017-2019, 2019.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2019-02-11 22:41+0800\n"
+"Last-Translator: Yangfl <mmyangfl@gmail.com>\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"
+"Language-Team: <debian-l10n-chinese@lists.debian.org>\n"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr "APC UPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr "APCUPS 插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "动作(目标)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "添加命令读取数据"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "新增匹配规则"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr "使用空格分隔多个主机"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "新增通知命令"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr "连接用户总数"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "基本目录"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "基本监控"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr "CPU 上下文切换插件配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr "CPU 频率"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr "CPU 频率插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "CPU 插件配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "CSV 输出"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "CSV 插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr "收集缓存数据"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr "缓存清空间隙"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "链"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr "收集链接"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr "收集路由"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr "收集拓扑"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Collectd 设置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd 是一个通过不同插件用于收集各种源数据的小型守护程序。在此页面中,您可"
+"以更改 Collectd 守护进程常规设置。"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr "Conntrack"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr "Conntrack 插件配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr "上下文切换"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "DF 插件配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "DNS 插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "数据收集间隙"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "数据集定义文件"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "目标 IP 区间"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Collectd 插件目录"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "子配置目录"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "磁盘插件配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "磁盘空间使用情况"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "磁盘使用情况"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr "显示主机"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "显示时间段"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "E-Mail 插件配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "电子邮件"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr "留空 = 监控所有"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr "启用"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "启用该插件"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr "熵"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr "熵插件配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Exec 插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr "Filter 类监测"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "防火墙"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr "清空缓存时间"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr "转发监听服务器和应用服务器之间数据"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr "收集压缩统计信息"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr "通用插件"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr "为每个登录用户生成单独的图表"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "图表"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr "组"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"在这里,您可以定义外部命令,Collectd 将启动命令来获取某些值,将获取的值从标准"
+"输出端口输出。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"在这里,您可以定义外部命令,当 Collectd 达到一定阈值时,将启动命令。阀值将会"
+"作为命令的标准输入。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr "在这里,您可以定义各种监控 iptables 规则临界值。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr "按住 Ctrl 键来选择或取消选择多个项目。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr "主机"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "主机名"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr "获取 txtinfo 输出的 IP 地址或主机名"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "IRQ 插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "忽略源地址"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "入接口"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "接口插件配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "接口"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "中断"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr "ping 间隙"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Iptables 插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr "自动保留对未选中接口的监控。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "监听主机"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "监听端口"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr "监听接口"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "负载插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr "在不使用“仅平均 RRA”的情况下,可以使用一段时间的最大值而不是平均值"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "最大允许连接数"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr "内存"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr "内存插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr "监测所有(特别注明除外)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "监测所有本地监听端口"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr "监控所有传感器"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr "监控设备/温感区域"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "监测设备"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "监测磁盘和分区"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "监测文件系统类型"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr "监测主机"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "监测主机"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr "监测接口"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "监测中断"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "监测本地端口"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "监测挂载点"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "监测进程"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "监测远程端口"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr "名称"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "规则名"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Netlink"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Netlink 插件配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "网络"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "网络插件配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Network 插件"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Network 协议"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+"注意:由于页面是以 'nobody' 身份生成的,因此 *.rrd 文件以及包含此文件的所有父"
+"目录必须全局可读。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "收集程序使用线程数"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr "OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr "OLSRd 插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr "仅创建平均 RRAs"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr "OpenVPN 插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr "OpenVPN 状态文件"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "选项"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "出接口"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Output 插件"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Ping 插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr "端口"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr "apcupsd 通信端口"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "进程"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "进程插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr "监控的进程,用空格隔开"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "处理器"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Qdisc 监测"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr "RRD XFiles 因子"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr "RRD 心跳间隙"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr "RRD 区间间隙"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "RRDTool 插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr "行/RRA"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr "脚本"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "秒"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr "传感器列表"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr "传感器"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr "传感器插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "服务器主机"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "服务器端口"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr "设置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr "整形类监控"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr "显示最大值而不是平均值"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr "套接字文件"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr "套接字组"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr "套接字权限"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "源 IP 区间"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr "收集指定链接相关信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr "收集指定路由相关信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr "收集指定拓扑相关信息。"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr "Splash Leases"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr "Splash Leases 插件配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr "统计"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "存储目录"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "csv 存储目录"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr "存储数据值变化量而不是绝对值"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "存储时间跨度"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "系统负载"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "TCP 连接数"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "TCPConns 插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "网络包 TTL"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "ping 包 TTL"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "表"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr "APCUPS 插件收集 APC UPS 的统计信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr "NUT 插件读取 UPS 信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr "OLSRd 插件通过 txtinfo 获取 meshed 网络信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr "OpenVPN 插件可以获取 VPN 连接当前状态。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr "conntrack 插件获取连接数信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr "cpu 插件获取处理器相关信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr "csv 插件用于存储数据,以方便其他程序处理数据。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr "df 插件收集磁盘空间使用情况、挂载点及文件系统相关信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr "磁盘插件收集磁盘分区使用情况及相关信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr "dns 插件收集 dns 数据流相关信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"邮件插件创建一个 unix 套接字用于为 Collectd 守护进程发送统计信息到电子邮件系"
+"统。这个插件主要目的是结合使用 Mail::SpamAssasin::Pulgin::Collectd,但可以用"
+"在其他方面。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr "熵插件收集可用熵的统计信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+"exec 插件用于当某些监控值已到达阈值时,启动外部命令读值或通知外部程序。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr "接口插件用于收集选定接口的流量统计信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr "iptables 插件将监测选定防火墙规则和收集关于每个规则处理的数据包信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+"irq 插件用于监控选定中断的每秒钟产生的中断数。如果没有中断被选中,则表示对所"
+"有中断进行监测。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr "iwinfo 插件收集无线信号强度、噪声和质量的统计信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr "负载插件收集系统负载的统计信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr "内存插件收集关于内存使用情况的统计信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr "netlink 插件为选定接口收集如 qdisc、class 和 filter 的数据。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+"network 插件提供了基于网络的不同 Collectd 实例。Collectd 可以工作在客户端和服"
+"务器两个模式。在客户端模式下收集本地信息,然后转移到一个 Collectd 服务器实例"
+"中,在服务器模式将从其他主机收集信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr "ping 插件将发送 icmp echo replies 到选定主机来测量每台主机的响应时间。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr "进程插件收集选定进程的 cpu 时间、页面错误和内存使用信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+"rrdtool 插件将收集数据以图表的形式储存在 RRD 数据库文件中。<br /><br /"
+"><strong>警告:错误的参数设置,将导致非常高的临时内存消耗。这可能会使设备无法"
+"使用!</strong>"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr "传感器插件使用 Linux Sensors 框架来收集环境统计信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr "splash leases 插件使用 libuci 来收集 splash leases 的统计信息。"
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+"Statistics 软件包使用 <a href=\"https://collectd.org/\">Collectd</a> 来收集数"
+"据,并用 <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> 生成统计图"
+"表。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr "tcpconns 插件收集选定端口的 TCP 连接信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+"温感插件将会监控系统温度。数据主要取自 /sys/class/thermal/*/temp ('*' 表示温"
+"感设备的名字,比如 thermal_zone1) 。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr "unixsock 插件创建一个 unix 套接字可用于读取 Collectd 实例的收集信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr "运行时间插件收集系统启动时间的统计信息。"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr "温感"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr "温感插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr "此插件收集处理器上下文切换的统计信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr "此插件收集处理器频率调整的统计信息。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr "定义 Collectd 将等待传入连接的接口。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr "定义本地收集数据被发送到哪台 Collected 服务器。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr "尝试解析主机全域名"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr "UPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr "UPS 插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr "UPS 名使用 NUT(Network UPS Tools)格式:ups@host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Unixsock 插件配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr "运行时间"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr "运行时间插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr "使用更高级的命名规则"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "正在使用的 PID 文件"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr "用户"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "详细监测"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "无线"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr "无线 iwinfo 插件配置"
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr "您可以安装更多的 collectd-mod-* 插件以获得更多的统计数据。"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr "cUrl"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr "cUrl 插件配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "例如:br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "例如:br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "例如:eject-with tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "最长 16 个字符"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "减少 rrd 大小"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "秒数;多个使用空格分隔"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "服务器接口"
--- /dev/null
+#
+# Yangfl <mmyangfl@gmail.com>, 2017-2019.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2019-01-03 21:39+0800\n"
+"Last-Translator: Yangfl <mmyangfl@gmail.com>\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 3.30.1\n"
+"Language-Team: <debian-l10n-chinese@lists.debian.org>\n"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7
+msgid "APC UPS"
+msgstr "APC UPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5
+msgid "APCUPS Plugin Configuration"
+msgstr "APCUPS 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70
+msgid "Action (target)"
+msgstr "動作(目標)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:22
+msgid "Add command for reading values"
+msgstr "新增指令讀取資料"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34
+msgid "Add matching rule"
+msgstr "新增匹配規則"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Add multiple hosts separated by space."
+msgstr "使用空格分隔多個主機"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50
+msgid "Add notification command"
+msgstr "新增通知指令"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23
+msgid "Aggregate number of connected users"
+msgstr "連線使用者總數"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24
+msgid "Base Directory"
+msgstr "基本目錄"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:24
+msgid "Basic monitoring"
+msgstr "基本監控"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4
+msgid "CPU Context Switches Plugin Configuration"
+msgstr "CPU Context Switches 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6
+msgid "CPU Frequency"
+msgstr "CPU 頻率"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4
+msgid "CPU Frequency Plugin Configuration"
+msgstr "CPU 頻率外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5
+msgid "CPU Plugin Configuration"
+msgstr "CPU 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:31
+msgid "CSV Output"
+msgstr "CSV 輸出"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:5
+msgid "CSV Plugin Configuration"
+msgstr "CSV 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+msgid "Cache collected data for"
+msgstr "收集快取資料"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+msgid "Cache flush interval"
+msgstr "快取清空間隙"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59
+msgid "Chain"
+msgstr "鏈"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:24
+msgid "CollectLinks"
+msgstr "收集連結"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:31
+msgid "CollectRoutes"
+msgstr "收集路由"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38
+msgid "CollectTopology"
+msgstr "收集拓撲"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8
+msgid "Collectd Settings"
+msgstr "Collectd 設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:9
+msgid ""
+"Collectd is a small daemon for collecting data from various sources through "
+"different plugins. On this page you can change general settings for the "
+"collectd daemon."
+msgstr ""
+"Collectd 是一個通過不同外掛用於收集各種源資料的小型守護程式。在此頁面中,您可"
+"以更改 Collectd 守護程序常規設定。"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7
+msgid "Conntrack"
+msgstr "Conntrack"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5
+msgid "Conntrack Plugin Configuration"
+msgstr "Conntrack 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6
+msgid "Context Switches"
+msgstr "上下文切換"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5
+msgid "DF Plugin Configuration"
+msgstr "DF 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7
+msgid "DNS"
+msgstr "DNS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:8
+msgid "DNS Plugin Configuration"
+msgstr "DNS 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+msgid "Data collection interval"
+msgstr "資料收集間隙"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:40
+msgid "Datasets definition file"
+msgstr "資料集定義檔案"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96
+msgid "Destination ip range"
+msgstr "目標 IP 區間"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:32
+msgid "Directory for collectd plugins"
+msgstr "Collectd 外掛目錄"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:28
+msgid "Directory for sub-configurations"
+msgstr "子配置目錄"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5
+msgid "Disk Plugin Configuration"
+msgstr "Disk 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7
+msgid "Disk Space Usage"
+msgstr "磁碟空間使用情況"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7
+msgid "Disk Usage"
+msgstr "磁碟使用情況"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17
+msgid "Display Host »"
+msgstr "顯示主機"
+
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23
+msgid "Display timespan »"
+msgstr "顯示時間段"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:5
+msgid "E-Mail Plugin Configuration"
+msgstr "E-Mail 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:36
+msgid "Email"
+msgstr "電子郵件"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19
+msgid "Empty value = monitor all"
+msgstr "留空 = 監控所有"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17
+msgid "Enable"
+msgstr "啟用"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10
+msgid "Enable this plugin"
+msgstr "啟用該外掛"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7
+msgid "Entropy"
+msgstr "熵"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5
+msgid "Entropy Plugin Configuration"
+msgstr "熵值外掛配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38
+msgid "Exec"
+msgstr "Exec"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:5
+msgid "Exec Plugin Configuration"
+msgstr "Exec 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:68
+msgid "Filter class monitoring"
+msgstr "Filter 類監測"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7
+msgid "Firewall"
+msgstr "防火牆"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Flush cache after"
+msgstr "清空快取後"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71
+msgid "Forwarding between listen and server addresses"
+msgstr "轉發監聽伺服器和應用伺服器之間資料"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29
+msgid "Gather compression statistics"
+msgstr "收集壓縮統計資訊"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23
+msgid "General plugins"
+msgstr "通用外掛"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17
+msgid "Generate a separate graph for each logged user"
+msgstr "為每個記錄的使用者生成一個單獨的圖表"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101
+msgid "Graphs"
+msgstr "圖表"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:42
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:71
+msgid "Group"
+msgstr "組"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:23
+msgid ""
+"Here you can define external commands which will be started by collectd in "
+"order to read certain values. The values will be read from stdout."
+msgstr ""
+"在這裡,您可以定義外部指令,Collectd 將啟動指令來獲取某些值,將獲取的值從標準"
+"輸出埠輸出。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:51
+msgid ""
+"Here you can define external commands which will be started by collectd when "
+"certain threshold values have been reached. The values leading to invocation "
+"will be fed to the the called programs stdin."
+msgstr ""
+"在這裡,您可以定義外部指令,當 Collectd 達到一定閾值時,將啟動指令。閥值將會"
+"作為指令的標準輸入。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35
+msgid ""
+"Here you can define various criteria by which the monitored iptables rules "
+"are selected."
+msgstr "在這裡,您可以定義各種監控 iptables 規則臨界值。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Hold Ctrl to select multiple items or to deselect entries."
+msgstr "按住 Ctrl 鍵來選擇或取消選擇多個專案。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "Host"
+msgstr "主機"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19
+msgid "Hostname"
+msgstr "主機名"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13
+msgid "IP or hostname where to get the txtinfo output from"
+msgstr "獲取 txtinfo 輸出的 IP 位址或主機名"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:5
+msgid "IRQ Plugin Configuration"
+msgstr "IRQ 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:32
+msgid "Ignore source addresses"
+msgstr "忽略源位址"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "Incoming interface"
+msgstr "入介面"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8
+msgid "Interface Plugin Configuration"
+msgstr "Interface 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7
+msgid "Interfaces"
+msgstr "Interfaces"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7
+msgid "Interrupts"
+msgstr "中斷"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+msgid "Interval for pings"
+msgstr "ping 間隙"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18
+msgid "Iptables Plugin Configuration"
+msgstr "Iptables 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:16
+msgid "Leave unselected to automatically determine interfaces to monitor."
+msgstr "自動保留對未選中介面的監控。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:33
+msgid "Listen host"
+msgstr "監聽主機"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:37
+msgid "Listen port"
+msgstr "監聽埠"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:24
+msgid "Listener interfaces"
+msgstr "監聽介面"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5
+msgid "Load Plugin Configuration"
+msgstr "Load 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60
+msgid ""
+"Max values for a period can be used instead of averages when not using 'only "
+"average RRAs'"
+msgstr "在不使用“僅平均 RRA”的情況下,可以使用一段時間的最大值而不是平均值"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41
+msgid "Maximum allowed connections"
+msgstr "最大允許連線數"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15
+msgid "Memory"
+msgstr "記憶體"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5
+msgid "Memory Plugin Configuration"
+msgstr "記憶體外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:37
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:31
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24
+msgid "Monitor all except specified"
+msgstr "監測所有(除特別註明外)"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19
+msgid "Monitor all local listen ports"
+msgstr "監測所有本地監聽埠"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74
+msgid "Monitor all sensors"
+msgstr "監控所有感測器"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18
+msgid "Monitor device(s) / thermal zone(s)"
+msgstr "監控裝置/溫感區域"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19
+msgid "Monitor devices"
+msgstr "監測裝置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:19
+msgid "Monitor disks and partitions"
+msgstr "監測磁碟和分割槽"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:31
+msgid "Monitor filesystem types"
+msgstr "監測檔案系統型別"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18
+msgid "Monitor host"
+msgstr "監測主機"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19
+msgid "Monitor hosts"
+msgstr "監測主機"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:22
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:15
+msgid "Monitor interfaces"
+msgstr "監測介面"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:20
+msgid "Monitor interrupts"
+msgstr "監測中斷"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:24
+msgid "Monitor local ports"
+msgstr "監測本地埠"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:25
+msgid "Monitor mount points"
+msgstr "監測掛載點"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:19
+msgid "Monitor processes"
+msgstr "監測程序"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:29
+msgid "Monitor remote ports"
+msgstr "監測遠端埠"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20
+msgid "Name"
+msgstr "名稱"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "Name of the rule"
+msgstr "規則名"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7
+msgid "Netlink"
+msgstr "Netlink"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:10
+msgid "Netlink Plugin Configuration"
+msgstr "Netlink 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46
+msgid "Network"
+msgstr "Network"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5
+msgid "Network Plugin Configuration"
+msgstr "Network 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24
+msgid "Network plugins"
+msgstr "Network 外掛"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81
+msgid "Network protocol"
+msgstr "Network 協議"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:24
+msgid ""
+"Note: as pages are rendered by user 'nobody', the *.rrd files, the storage "
+"directory and all its parent directories need to be world readable."
+msgstr ""
+"注意:由於頁面是以 'nobody' 身份生成的,因此 *.rrd 檔案以及包含此檔案的所有父"
+"目錄必須全域性可讀。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49
+msgid "Number of threads for data collection"
+msgstr "收集程式使用執行緒數"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7
+msgid "OLSRd"
+msgstr "OLSRd"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:5
+msgid "OLSRd Plugin Configuration"
+msgstr "OLSRd 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "Only create average RRAs"
+msgstr "僅建立平均 RRAs"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7
+msgid "OpenVPN"
+msgstr "OpenVPN"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7
+msgid "OpenVPN Plugin Configuration"
+msgstr "OpenVPN 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41
+msgid "OpenVPN status files"
+msgstr "OpenVPN 狀態檔案"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "Options"
+msgstr "選項"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "Outgoing interface"
+msgstr "出介面"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:22
+msgid "Output plugins"
+msgstr "Output 外掛"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7
+msgid "Ping"
+msgstr "Ping"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:5
+msgid "Ping Plugin Configuration"
+msgstr "Ping 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:18
+msgid "Port"
+msgstr "埠"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23
+msgid "Port for apcupsd communication"
+msgstr "apcupsd 通訊埠"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7
+msgid "Processes"
+msgstr "程序"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:5
+msgid "Processes Plugin Configuration"
+msgstr "程序外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20
+msgid "Processes to monitor separated by space"
+msgstr "過程監控,用空格隔開"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7
+msgid "Processor"
+msgstr "處理器"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:46
+msgid "Qdisc monitoring"
+msgstr "Qdisc 監測"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:82
+msgid "RRD XFiles Factor"
+msgstr "RRD XFiles 因子"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+msgid "RRD heart beat interval"
+msgstr "RRD 心跳間隙"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+msgid "RRD step interval"
+msgstr "RRD 區間間隙"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:52
+msgid "RRDTool"
+msgstr "RRDTool"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:5
+msgid "RRDTool Plugin Configuration"
+msgstr "RRDTool 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:74
+msgid "Rows per RRA"
+msgstr "行/RRA"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61
+msgid "Script"
+msgstr "指令碼"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:30
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:35
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:44
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:91
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100
+msgid "Seconds"
+msgstr "秒"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86
+msgid "Sensor list"
+msgstr "感測器列表"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7
+msgid "Sensors"
+msgstr "感測器"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64
+msgid "Sensors Plugin Configuration"
+msgstr "Sensors 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54
+msgid "Server host"
+msgstr "伺服器主機"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58
+msgid "Server port"
+msgstr "伺服器埠"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76
+msgid "Setup"
+msgstr "設定"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57
+msgid "Shaping class monitoring"
+msgstr "整形類監控"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59
+msgid "Show max values instead of averages"
+msgstr "顯示最大值而不是平均值"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22
+msgid "Socket file"
+msgstr "套接字檔案"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:27
+msgid "Socket group"
+msgstr "套接字組"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:34
+msgid "Socket permissions"
+msgstr "套接字許可權"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90
+msgid "Source ip range"
+msgstr "源 IP 區間"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:25
+msgid "Specifies what information to collect about links."
+msgstr "收集指定連結相關資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:32
+msgid "Specifies what information to collect about routes."
+msgstr "收集指定路由相關資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:39
+msgid "Specifies what information to collect about the global topology."
+msgstr "收集指定拓撲相關資訊。"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7
+msgid "Splash Leases"
+msgstr "Splash Leases"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5
+msgid "Splash Leases Plugin Configuration"
+msgstr "Splash Leases 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9
+#: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:9
+msgid "Statistics"
+msgstr "統計"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:23
+msgid "Storage directory"
+msgstr "儲存目錄"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:19
+msgid "Storage directory for the csv files"
+msgstr "csv 儲存目錄"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:24
+msgid "Store data values as rates instead of absolute values"
+msgstr "儲存資料值變化量而不是絕對值"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "Stored timespans"
+msgstr "儲存時間跨度"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7
+msgid "System Load"
+msgstr "系統載入"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7
+msgid "TCP Connections"
+msgstr "TCP 連線數"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:5
+msgid "TCPConns Plugin Configuration"
+msgstr "TCPConns 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:64
+msgid "TTL for network packets"
+msgstr "網路包 TTL"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:24
+msgid "TTL for ping packets"
+msgstr "ping 包 TTL"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48
+msgid "Table"
+msgstr "表"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:6
+msgid "The APCUPS plugin collects statistics about the APC UPS."
+msgstr "APCUPS 外掛收集 APC UPS 的統計資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:5
+msgid "The NUT plugin reads information about Uninterruptible Power Supplies."
+msgstr "NUT 外掛讀取 UPS 資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:6
+msgid ""
+"The OLSRd plugin reads information about meshed networks from the txtinfo "
+"plugin of OLSRd."
+msgstr "OLSRd 外掛通過 txtinfo 獲取 meshed 網路資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8
+msgid ""
+"The OpenVPN plugin gathers information about the current vpn connection "
+"status."
+msgstr "OpenVPN 外掛可以獲取 VPN 連線當前狀態"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6
+msgid ""
+"The conntrack plugin collects statistics about the number of tracked "
+"connections."
+msgstr "conntrack 外掛獲取連線數資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:6
+msgid "The cpu plugin collects basic statistics about the processor usage."
+msgstr "cpu 外掛獲取處理器相關資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:6
+msgid ""
+"The csv plugin stores collected data in csv file format for further "
+"processing by external programs."
+msgstr "csv外掛用於儲存資料,以方便其他程式處理資料。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6
+msgid ""
+"The df plugin collects statistics about the disk space usage on different "
+"devices, mount points or filesystem types."
+msgstr "df 外掛收集磁碟空間使用情況、掛載點及檔案系統相關資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:6
+msgid ""
+"The disk plugin collects detailed usage statistics for selected partitions "
+"or whole disks."
+msgstr "disk 外掛收集磁碟分割槽使用情況及相關資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9
+msgid ""
+"The dns plugin collects detailed statistics about dns related traffic on "
+"selected interfaces."
+msgstr "dns 外掛收集 dns 資料流相關資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:6
+msgid ""
+"The email plugin creates a unix socket which can be used to transmit email-"
+"statistics to a running collectd daemon. This plugin is primarily intended "
+"to be used in conjunction with Mail::SpamAssasin::Plugin::Collectd but can "
+"be used in other ways as well."
+msgstr ""
+"郵件外掛建立一個 unix 套接字用於為 Collectd 守護程序傳送統計資訊到電子郵件系"
+"統。這個外掛主要目的是結合使用 Mail::SpamAssasin::Pulgin::Collectd,但可以用"
+"在其他方面。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6
+msgid "The entropy plugin collects statistics about the available entropy."
+msgstr "entropy 外掛收集可用熵的統計資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6
+msgid ""
+"The exec plugin starts external commands to read values from or to notify "
+"external processes when certain threshold values have been reached."
+msgstr ""
+"exec 外掛用於當某些監控值已到達閾值時,啟動外部指令讀值或通知外部程式。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9
+msgid ""
+"The interface plugin collects traffic statistics on selected interfaces."
+msgstr "Interface 外掛用於收集選定介面的資料包的統計資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19
+msgid ""
+"The iptables plugin will monitor selected firewall rules and collect "
+"information about processed bytes and packets per rule."
+msgstr "iptables 外掛將監測選定防火牆規則和收集關於每個規則處理的資料包資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6
+msgid ""
+"The irq plugin will monitor the rate of issues per second for each selected "
+"interrupt. If no interrupt is selected then all interrupts are monitored."
+msgstr ""
+"irq 外掛用於監控選定中斷的每秒鐘產生的中斷數。如果沒有中斷被選中,則表示對所"
+"有中斷進行監測。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8
+msgid ""
+"The iwinfo plugin collects statistics about wireless signal strength, noise "
+"and quality."
+msgstr "iwinfo 外掛收集無線訊號強度、噪聲和質量的統計資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6
+msgid "The load plugin collects statistics about the general system load."
+msgstr "load 外掛收集常規系統載入統計資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6
+msgid "The memory plugin collects statistics about the memory usage."
+msgstr "memory 外掛收集關於記憶體使用情況的統計資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11
+msgid ""
+"The netlink plugin collects extended information like qdisc-, class- and "
+"filter-statistics for selected interfaces."
+msgstr "netlink 外掛收集為選定介面 qdisc-、class- 和 filter- 的擴充套件資料。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6
+msgid ""
+"The network plugin provides network based communication between different "
+"collectd instances. Collectd can operate both in client and server mode. In "
+"client mode locally collected data is transferred to a collectd server "
+"instance, in server mode the local instance receives data from other hosts."
+msgstr ""
+"network 外掛提供了基於網路的不同 Collectd 例項。Collectd 可以工作在客戶端和服"
+"務器兩個模式。在客戶端模式下收集本地資訊,然後轉移到一個 Collectd 伺服器例項"
+"中,在伺服器模式將從其他主機收集資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6
+msgid ""
+"The ping plugin will send icmp echo replies to selected hosts and measure "
+"the roundtrip time for each host."
+msgstr "ping 外掛將傳送 icmp echo replies 到選定主機來測量每臺主機的響應時間。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:6
+msgid ""
+"The processes plugin collects information like cpu time, page faults and "
+"memory usage of selected processes."
+msgstr "processes 外掛收集選定程序的 cpu 時間、頁面錯誤和記憶體使用資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6
+msgid ""
+"The rrdtool plugin stores the collected data in rrd database files, the "
+"foundation of the diagrams.<br /><br /><strong>Warning: Setting the wrong "
+"values will result in a very high memory consumption in the temporary "
+"directory. This can render the device unusable!</strong>"
+msgstr ""
+"rrdtool 外掛將收集資料以圖表的形式儲存在 RRD 資料庫檔案中。<br /><br /"
+"><strong>警告:錯誤的引數設定,將導致非常高的臨時記憶體消耗。這可能會使裝置無"
+"法使用!</strong>"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65
+msgid ""
+"The sensors plugin uses the Linux Sensors framework to gather environmental "
+"statistics."
+msgstr "sensors 外掛使用 Linux Sensors 框架來收集環境統計資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6
+msgid ""
+"The splash leases plugin uses libuci to collect statistics about splash "
+"leases."
+msgstr "splash leases 外掛使用 libuci 來收集 splash leases 的統計資訊。"
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:11
+msgid ""
+"The statistics package uses <a href=\"https://collectd.org/\">Collectd</a> "
+"to gather data and <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> to "
+"render diagram images."
+msgstr ""
+"Statistics 軟體包使用 <a href=\"https://collectd.org/\">Collectd</a> 來收集數"
+"據,並用 <a href=\"http://oss.oetiker.ch/rrdtool/\">RRDtool</a> 生成統計圖"
+"表。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:6
+msgid ""
+"The tcpconns plugin collects information about open tcp connections on "
+"selected ports."
+msgstr "tcpconns 外掛收集選定埠 TCP 連線資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5
+msgid ""
+"The thermal plugin will monitor temperature of the system. Data is typically "
+"read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be "
+"read, e.g. thermal_zone1 )"
+msgstr ""
+"thermal 外掛將會監控系統溫度。資料主要取自 /sys/class/thermal/*/temp ('*' 表"
+"示溫感裝置的名字,比如 thermal_zone1) 。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6
+msgid ""
+"The unixsock plugin creates a unix socket which can be used to read "
+"collected data from a running collectd instance."
+msgstr "unixsock 外掛建立一個 unix 套接字可用於讀取 Collectd 例項的收集資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6
+msgid "The uptime plugin collects statistics about the uptime of the system."
+msgstr "uptime 外掛收集系統啟動時間的統計資訊。"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6
+msgid "Thermal"
+msgstr "溫感"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4
+msgid "Thermal Plugin Configuration"
+msgstr "溫感外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5
+msgid "This plugin collects statistics about the processor context switches."
+msgstr "此外掛收集處理器上下文切換的統計資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:5
+msgid "This plugin collects statistics about the processor frequency scaling."
+msgstr "此外掛收集處理器頻率調整的統計資訊。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:25
+msgid ""
+"This section defines on which interfaces collectd will wait for incoming "
+"connections."
+msgstr "定義 Collectd 將監聽哪個介面來傳入連線收集資料。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46
+msgid ""
+"This section defines to which servers the locally collected data is sent to."
+msgstr "定義本地收集資料被髮送到哪臺 Collected 伺服器。"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:54
+msgid "Try to lookup fully qualified hostname"
+msgstr "嘗試解析主機全域名"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6
+msgid "UPS"
+msgstr "UPS"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:4
+msgid "UPS Plugin Configuration"
+msgstr "UPS 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12
+msgid "UPS name in NUT ups@host format"
+msgstr "UPS 名使用 NUT(Network UPS Tools)格式:ups@host"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57
+msgid "UnixSock"
+msgstr "UnixSock"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:5
+msgid "Unixsock Plugin Configuration"
+msgstr "Unixsock 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15
+msgid "Uptime"
+msgstr "執行時間"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5
+msgid "Uptime Plugin Configuration"
+msgstr "執行時間外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35
+msgid "Use improved naming schema"
+msgstr "使用更高階的命名規則"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:36
+msgid "Used PID file"
+msgstr "正在使用的 PID 檔案"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:36
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:65
+msgid "User"
+msgstr "使用者"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:35
+msgid "Verbose monitoring"
+msgstr "詳細監測"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7
+msgid "Wireless"
+msgstr "無線"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7
+msgid "Wireless iwinfo Plugin Configuration"
+msgstr "無線 iwinfo 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:15
+msgid ""
+"You can install additional collectd-mod-* plugins to enable more statistics."
+msgstr "您可以安裝更多的 collectd-mod-* 外掛以獲得更多的統計資料。"
+
+#: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32
+#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7
+msgid "cUrl"
+msgstr "cUrl"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5
+msgid "cUrl Plugin Configuration"
+msgstr "cUrl 外掛配置"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109
+msgid "e.g. br-ff"
+msgstr "例如:br-ff"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103
+msgid "e.g. br-lan"
+msgstr "例如:br-lan"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115
+msgid "e.g. reject-with tcp-reset"
+msgstr "例如:eject-with tcp-reset"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45
+msgid "max. 16 chars"
+msgstr "最長 16 個字元"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:53
+msgid "reduces rrd size"
+msgstr "減少 rrd 大小"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:67
+msgid "seconds; multiple separated by space"
+msgstr "秒數;多個使用空格分隔"
+
+#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:45
+msgid "server interfaces"
+msgstr "伺服器介面"
--- /dev/null
+# general settings
+
+config statistics 'collectd'
+ option BaseDir '/var/run/collectd'
+ option Include '/etc/collectd/conf.d'
+ option PIDFile '/var/run/collectd.pid'
+ option PluginDir '/usr/lib/collectd'
+ option TypesDB '/usr/share/collectd/types.db'
+ option Interval '30'
+ option ReadThreads '2'
+
+config statistics 'rrdtool'
+ option default_timespan '1hour'
+ option image_width '600'
+ option image_path '/tmp/rrdimg'
+
+# output plugins
+
+config statistics 'collectd_rrdtool'
+ option enable '1'
+ option DataDir '/tmp/rrd'
+ option RRARows '100'
+ option RRASingle '1'
+ option RRATimespans '1hour 1day 1week 1month 1year'
+
+config statistics 'collectd_csv'
+ option enable '0'
+ option StoreRates '0'
+ option DataDir '/tmp'
+
+config statistics 'collectd_email'
+ option enable '0'
+ option SocketFile '/var/run/collectd/email.sock'
+ option SocketGroup 'nogroup'
+
+config statistics 'collectd_logfile'
+ option enable '0'
+ option LogLevel 'notice'
+ option File '/var/log/collectd.log'
+ option Timestamp '1'
+
+config statistics 'collectd_network'
+ option enable '0'
+
+config statistics 'collectd_unixsock'
+ option enable '0'
+ option SocketFile '/var/run/collectd/query.sock'
+ option SocketGroup 'nogroup'
+
+# input plugins
+
+config statistics 'collectd_apcups'
+ option enable '0'
+ option Host 'localhost'
+ option Port '3551'
+
+config statistics 'collectd_conntrack'
+ option enable '0'
+
+config statistics 'collectd_contextswitch'
+ option enable '0'
+
+config statistics 'collectd_cpu'
+ option enable '1'
+
+config statistics 'collectd_cpufreq'
+ option enable '0'
+
+config statistics 'collectd_curl'
+ option enable '0'
+
+config statistics 'collectd_df'
+ option enable '0'
+ option Devices '/dev/mtdblock/4'
+ option MountPoints '/jffs'
+ option FSTypes 'tmpfs'
+ option IgnoreSelected '0'
+
+config statistics 'collectd_disk'
+ option enable '0'
+ option Disks 'hda1 hdb'
+ option IgnoreSelected '0'
+
+config statistics 'collectd_dns'
+ option enable '0'
+ option Interfaces 'br-lan'
+ option IgnoreSources '127.0.0.1'
+
+config statistics 'collectd_entropy'
+ option enable '0'
+
+config statistics 'collectd_exec'
+ option enable '0'
+
+config statistics 'collectd_interface'
+ option enable '1'
+ option Interfaces 'br-lan'
+ option IgnoreSelected '0'
+
+config statistics 'collectd_iptables'
+ option enable '0'
+
+config collectd_iptables_match
+ option table 'nat'
+ option chain 'luci_fw_postrouting'
+ option target 'MASQUERADE'
+ option source '192.168.1.0/24'
+ option outputif 'br-ff'
+ option name 'LAN-Clients traffic'
+
+config collectd_iptables_match
+ option chain 'luci_fw_postrouting'
+ option table 'nat'
+ option target 'MASQUERADE'
+ option source '10.61.230.0/24'
+ option outputif 'br-ff'
+ option name 'WLAN-Clients traffic'
+
+config statistics 'collectd_irq'
+ option enable '0'
+ option Irqs '2 3 4 7'
+
+config statistics 'collectd_iwinfo'
+ option enable '1'
+
+config statistics 'collectd_load'
+ option enable '1'
+
+config statistics 'collectd_memory'
+ option enable '1'
+
+config statistics 'collectd_netlink'
+ option enable '0'
+ option IgnoreSelected '0'
+ option VerboseInterfaces 'br-lan'
+ option QDiscs 'br-lan'
+
+config statistics 'collectd_nut'
+ option enable '0'
+ list UPS 'myupsname'
+
+config statistics 'collectd_olsrd'
+ option enable '0'
+ option Port '2006'
+ option Host '127.0.0.1'
+
+config statistics 'collectd_ping'
+ option enable '0'
+ option TTL '127'
+ option Interval '30'
+ option Hosts '127.0.0.1'
+
+config statistics 'collectd_processes'
+ option enable '0'
+ option Processes 'uhttpd dnsmasq dropbear'
+
+config statistics 'collectd_sensors'
+ option enable '0'
+
+config statistics 'collectd_splash_leases'
+ option enable '0'
+
+config statistics 'collectd_tcpconns'
+ option enable '0'
+ option ListeningPorts '0'
+ option LocalPorts '22 80'
+
+config statistics 'collectd_thermal'
+ option enable '0'
+ option IgnoreSelected '0'
+ option Device ''
+
+config statistics 'collectd_uptime'
+ option enable '0'
+
--- /dev/null
+#!/bin/sh /etc/rc.common
+
+START=79
+USE_PROCD=1
+
+service_triggers()
+{
+ procd_add_reload_trigger "luci_statistics"
+}
+
+start_service() {
+ ### replace shipped config with symlink
+ mkdir -p /var/etc
+ if [ ! -L /etc/collectd.conf ]; then
+ test -f /etc/collectd.conf && mv /etc/collectd.conf /etc/collectd.conf.bak
+ ln -s /var/etc/collectd.conf /etc/collectd.conf
+ fi
+
+ ### create config
+ /usr/bin/stat-genconfig > /var/etc/collectd.conf
+
+ ### workaround broken permissions on /tmp
+ chmod 1777 /tmp
+}
+
+reload_service() {
+ restart "$@"
+}
+
+restart() {
+ ### regenerate config / prepare environment
+ start
+
+ ### restart collectd
+ /etc/init.d/collectd restart
+}
--- /dev/null
+#!/bin/sh
+
+# register commit handler
+uci -q batch <<-EOF >/dev/null
+ delete ucitrack.@luci_statistics[-1]
+ add ucitrack luci_statistics
+ set ucitrack.@luci_statistics[-1].init=luci_statistics
+ commit ucitrack
+EOF
+
+# symlink for busybox httpd
+[ -x /usr/sbin/httpd ] && [ ! -h /www/rrdimg ] && \
+ ln -s /tmp/rrdimg /www/rrdimg
+
+rm -f /tmp/luci-indexcache
+exit 0
--- /dev/null
+#!/usr/bin/lua
+
+--[[
+
+Luci statistics - collectd configuration generator
+(c) 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+
+]]--
+
+
+require("luci.model.uci")
+require("luci.sys.iptparser")
+require("luci.util")
+
+local ipt = luci.sys.iptparser.IptParser()
+local uci = luci.model.uci.cursor()
+local sections = uci:get_all( "luci_statistics" )
+
+
+function print(...)
+ nixio.stdout:write(...)
+ nixio.stdout:write("\n")
+end
+
+function section( plugin )
+
+ local config = sections[ "collectd_" .. plugin ] or sections["collectd"]
+
+ if type(config) == "table" and ( plugin == "collectd" or config.enable == "1" ) then
+
+ local params = ""
+
+ if type( plugins[plugin] ) == "function" then
+ params = plugins[plugin]( config )
+ else
+ params = config_generic( config, plugins[plugin][1], plugins[plugin][2], plugins[plugin][3], plugin == "collectd" )
+ end
+
+
+ if plugin ~= "collectd" then
+ print( "LoadPlugin " .. plugin )
+
+ if params:len() > 0 then
+ print( "<Plugin " .. plugin .. ">\n" .. params .. "</Plugin>\n" )
+ else
+ print( "" )
+ end
+ else
+ print( params .. "\n" )
+ end
+ end
+end
+
+function config_generic( c, singles, bools, lists, nopad )
+ local str = ""
+
+ if type(c) == "table" then
+
+ if type(singles) == "table" then
+ for i, key in ipairs( singles ) do
+ if preprocess[key] then
+ c[key] = preprocess[key](c[key])
+ end
+
+ str = str .. _string( c[key], key, nopad )
+ end
+ end
+
+ if type(bools) == "table" then
+ for i, key in ipairs( bools ) do
+ if preprocess[key] then
+ c[key] = preprocess[key](c[key])
+ end
+
+ str = str .. _bool( c[key], key, nopad )
+ end
+ end
+
+ if type(lists) == "table" then
+ str = str .. _list_expand( c, lists, nopad )
+ end
+ end
+
+ return str
+end
+
+function config_exec( c )
+ local str = ""
+
+ for s in pairs(sections) do
+ for key, type in pairs({ Exec="collectd_exec_input", NotificationExec="collectd_exec_notify" }) do
+ if sections[s][".type"] == type then
+
+ cmd = sections[s].cmdline
+
+ if cmd then
+ cmd = cmd:gsub("^%s+", ""):gsub("%s+$", "")
+ user = sections[s].cmduser or "nobody"
+ group = sections[s].cmdgroup
+
+ str = str .. "\t" .. key .. ' "' ..
+ user .. ( group and ":" .. group or "" ) .. '" "' ..
+ cmd:gsub('%s+', '" "') .. '"\n'
+ end
+ end
+ end
+ end
+
+ return str
+end
+
+function config_curl( c )
+ local str = ""
+
+ for s in pairs(sections) do
+ if sections[s][".type"] == "collectd_curl_page" then
+ str = str .. "\t<Page \"" .. sections[s].name .. "\">\n" ..
+ "\t\tURL \"" .. sections[s].url .. "\"\n" ..
+ "\t\tMeasureResponseTime true\n" ..
+ "\t</Page>\n"
+ end
+ end
+
+ return str
+end
+
+function config_iptables( c )
+ local str = ""
+
+ for s in pairs(sections) do
+ if sections[s][".type"] == "collectd_iptables_match" then
+
+ search = { }
+
+ for i, k in ipairs( {
+ "table", "chain", "target", "protocol", "source", "destination",
+ "inputif", "outputif", "options"
+ } ) do
+ v = sections[s][k]
+
+ if type(v) == "string" then
+ if k == "options" then v = luci.util.split( v, "%s+", nil, true ) end
+ search[k] = v
+ end
+ end
+
+ for i, rule in ipairs( ipt:find( search ) ) do
+
+ name = sections[s].name:gsub( "%s+", "_" )
+ if i > 1 then name = name .. "_(" .. i .. ")" end
+
+ str = str .. "\tChain " .. rule.table .. " " .. rule.chain .. " " .. rule.index .. ' "' .. name .. "\"\n"
+ end
+ end
+ end
+
+ return str
+end
+
+function config_network( c )
+ local str = ""
+
+ for s in pairs(sections) do
+ for key, type in pairs({ Listen="collectd_network_listen", Server="collectd_network_server" }) do
+ if sections[s][".type"] == type then
+
+ host = sections[s].host
+ port = sections[s].port
+
+ if host then
+ if port then
+ str = str .. "\t" .. key .. " \"" .. host .. "\" \"" .. port .. "\"\n"
+ else
+ str = str .. "\t" .. key .. " \"" .. host .. "\"\n"
+ end
+ end
+ end
+ end
+ end
+
+ return str .. _string( c["TimeToLive"], "TimeToLive" )
+ .. _string( c["CacheFlush"], "CacheFlush" )
+ .. _bool( c["Forward"], "Forward" )
+end
+
+
+function _list_expand( c, l, nopad )
+ local str = ""
+
+ for i, n in ipairs(l) do
+ if c[n] then
+ if preprocess[n] then
+ c[n] = preprocess[n](c[n])
+ end
+
+ if n:find("(%w+)ses") then
+ k = n:gsub("(%w+)ses$", "%1s")
+ else
+ k = n:gsub("(%w+)s$", "%1")
+ end
+
+ str = str .. _expand( c[n], k, nopad )
+ end
+ end
+
+ return str
+end
+
+function _expand( s, n, nopad )
+ local str = ""
+
+ if type(s) == "string" then
+ for i, v in ipairs( luci.util.split( s, "%s+", nil, true ) ) do
+ str = str .. _string( v, n, nopad )
+ end
+ elseif type(s) == "table" then
+ for i, v in ipairs(s) do
+ str = str .. _string( v, n, nopad )
+ end
+ end
+
+ return str
+end
+
+function _bool( s, n, nopad )
+
+ local str = ""
+ local pad = ""
+ if not nopad then pad = "\t" end
+
+ if s and s == "1" then
+ str = pad .. n .. " true"
+ else
+ str = pad .. n .. " false"
+ end
+
+ return str .. "\n"
+end
+
+function _string( s, n, nopad )
+
+ local str = ""
+ local pad = ""
+ if not nopad then pad = "\t" end
+
+ if s then
+ if s:find("[^%d]") or n == "Port" then
+ if not s:find("[^%w]") and n ~= "Port" then
+ str = pad .. n .. " " .. luci.util.trim(s)
+ else
+ str = pad .. n .. ' "' .. luci.util.trim(s) .. '"'
+ end
+ else
+ str = pad .. n .. " " .. luci.util.trim(s)
+ end
+
+ str = str .. "\n"
+ end
+
+ return str
+end
+
+
+plugins = {
+ apcups = {
+ { "Host", "Port" },
+ { },
+ { }
+ },
+
+ collectd = {
+ { "BaseDir", "Include", "PIDFile", "PluginDir", "TypesDB", "Interval", "ReadThreads", "Hostname" },
+ { },
+ { }
+ },
+
+ conntrack = {
+ { },
+ { },
+ { }
+ },
+
+ cpu = {
+ { },
+ { },
+ { }
+ },
+
+ cpufreq = {
+ { },
+ { },
+ { }
+ },
+
+ contextswitch = {
+ { },
+ { },
+ { }
+ },
+
+ csv = {
+ { "DataDir" },
+ { "StoreRates" },
+ { }
+ },
+
+ curl = config_curl,
+
+ df = {
+ { },
+ { "IgnoreSelected" },
+ { "Devices", "MountPoints", "FSTypes" }
+ },
+
+ disk = {
+ { },
+ { "IgnoreSelected" },
+ { "Disks" }
+ },
+
+ dns = {
+ { },
+ { },
+ { "Interfaces", "IgnoreSources" }
+ },
+
+ email = {
+ { "SocketFile", "SocketGroup", "SocketPerms", "MaxConns" },
+ { },
+ { }
+ },
+
+ entropy = {
+ { },
+ { },
+ { }
+ },
+
+ exec = config_exec,
+
+ interface = {
+ { },
+ { "IgnoreSelected" },
+ { "Interfaces" }
+ },
+
+ iptables = config_iptables,
+
+ irq = {
+ { },
+ { "IgnoreSelected" },
+ { "Irqs" }
+ },
+
+ iwinfo = {
+ { },
+ { "IgnoreSelected" },
+ { "Interfaces" }
+ },
+
+ load = {
+ { },
+ { },
+ { }
+ },
+
+ logfile = {
+ { "LogLevel", "File" },
+ { "Timestamp" },
+ { }
+ },
+
+ memory = {
+ { },
+ { },
+ { }
+ },
+
+ netlink = {
+ { },
+ { "IgnoreSelected" },
+ { "Interfaces", "VerboseInterfaces", "QDiscs", "Classes", "Filters" }
+ },
+
+ network = config_network,
+
+ nut = {
+ { },
+ { },
+ { "UPS" }
+ },
+
+ olsrd = {
+ { "Host", "Port", "CollectLinks","CollectRoutes","CollectTopology"},
+ { },
+ { }
+ },
+
+ openvpn = {
+ { },
+ { "CollectIndividualUsers", "CollectUserCount", "CollectCompression", "ImprovedNamingSchema" },
+ { "StatusFile" }
+ },
+
+ ping = {
+ { "TTL", "Interval" },
+ { },
+ { "Hosts" }
+ },
+
+ processes = {
+ { },
+ { },
+ { "Processes" }
+ },
+
+ rrdtool = {
+ { "DataDir", "StepSize", "HeartBeat", "RRARows", "XFF", "CacheFlush", "CacheTimeout" },
+ { "RRASingle" },
+ { "RRATimespans" }
+ },
+
+ sensors = {
+ { },
+ { "IgnoreSelected" },
+ { "Sensor" }
+ },
+
+ splash_leases = {
+ { },
+ { },
+ { }
+ },
+
+ tcpconns = {
+ { },
+ { "ListeningPorts" },
+ { "LocalPorts", "RemotePorts" }
+ },
+
+ thermal = {
+ { },
+ { "IgnoreSelected" },
+ { "Device" }
+ },
+
+ unixsock = {
+ { "SocketFile", "SocketGroup", "SocketPerms" },
+ { },
+ { }
+ },
+
+ uptime = {
+ { },
+ { },
+ { }
+ },
+
+ wireless = {
+ { },
+ { },
+ { }
+ },
+}
+
+preprocess = {
+ RRATimespans = function(val)
+ local rv = { }
+ for time in val:gmatch("[^%s]+") do
+ table.insert( rv, luci.util.parse_units(time) )
+ end
+ return table.concat(rv, " ")
+ end
+}
+
+
+section("collectd")
+
+section("logfile")
+
+for plugin in pairs(plugins) do
+ if (plugin ~= "collectd") and (plugin ~= "logfile") then
+ section( plugin )
+ end
+end
--- /dev/null
+#
+# Copyright (C) 2006-2016 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=collectd
+PKG_VERSION:=5.10.0
+PKG_RELEASE:=3
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
+PKG_SOURCE_URL:=https://collectd.org/files/ \
+ https://github.com/collectd/collectd/releases/download/collectd-$(PKG_VERSION)
+PKG_HASH:=a03359f563023e744c2dc743008a00a848f4cd506e072621d86b6d8313c0375b
+
+PKG_FIXUP:=autoreconf
+PKG_REMOVE_FILES:=aclocal.m4 libltdl/aclocal.m4
+PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>, Hannu Nyman <hannu.nyman@iki.fi>
+PKG_CPE_ID:=cpe:/a:collectd:collectd
+
+PKG_INSTALL:=1
+PKG_BUILD_PARALLEL:=1
+PKG_USE_MIPS16:=0
+
+COLLECTD_PLUGINS_DISABLED:= \
+ amqp \
+ ampq1 \
+ apple_sensors \
+ aquaero \
+ barometer \
+ battery \
+ ceph \
+ cgroups \
+ cpusleep \
+ curl_json \
+ curl_xml \
+ dbi \
+ dpdkevents \
+ dpdkstat \
+ drbd \
+ fhcount \
+ genericjmx \
+ gmond \
+ gps \
+ gpu_nvidia \
+ grpc \
+ hddtemp \
+ hugepages \
+ intel_pmu \
+ intel_rdt \
+ ipc \
+ ipmi \
+ ipvs \
+ java \
+ log_logstash \
+ lvm \
+ lpar \
+ madwifi \
+ mbmon \
+ mcelog \
+ md \
+ memcachec \
+ memcached \
+ mic \
+ monitorus \
+ mqtt \
+ multimeter \
+ mysql \
+ netapp \
+ nfs \
+ notify_desktop \
+ notify_email \
+ notify_nagios \
+ numa \
+ nut \
+ openldap \
+ openvz \
+ onewire \
+ oracle \
+ ovs_events \
+ ovs_stats \
+ pcie_errors \
+ perl \
+ pf \
+ pinba \
+ postgresql \
+ procevent \
+ python \
+ redis \
+ routeros \
+ rrdcached \
+ sensors \
+ serial \
+ sigrok \
+ smart \
+ snmp_agent \
+ statsd \
+ swap \
+ synproxy \
+ sysevent \
+ tape \
+ tokyotyrant \
+ turbostat \
+ uuid \
+ varnish \
+ virt \
+ vserver \
+ write_kafka \
+ write_log \
+ write_mongodb \
+ write_prometheus \
+ write_redis \
+ write_riemann \
+ write_sensu \
+ write_stackdriver \
+ write_syslog \
+ write_tsdb \
+ xencpu \
+ xmms \
+ zfs_arc \
+ zone \
+ zookeeper
+
+COLLECTD_PLUGINS_SELECTED:= \
+ apache \
+ apcups \
+ ascent \
+ bind \
+ chrony \
+ conntrack \
+ contextswitch \
+ cpu \
+ cpufreq \
+ csv \
+ curl \
+ df \
+ disk \
+ dns \
+ email \
+ entropy \
+ ethstat \
+ exec \
+ filecount \
+ fscache \
+ interface \
+ iptables \
+ irq \
+ iwinfo \
+ load \
+ logfile \
+ lua \
+ match_empty_counter \
+ match_hashed \
+ match_regex \
+ match_timediff \
+ match_value \
+ memory \
+ modbus \
+ netlink \
+ network \
+ nginx \
+ ntpd \
+ olsrd \
+ openvpn \
+ ping \
+ powerdns \
+ processes \
+ protocols \
+ rrdtool \
+ snmp \
+ syslog \
+ table \
+ tail \
+ tail_csv \
+ tcpconns \
+ teamspeak2 \
+ ted \
+ thermal \
+ threshold \
+ unixsock \
+ uptime \
+ users \
+ vmem \
+ wireless \
+ write_graphite \
+ write_http \
+
+PKG_CONFIG_DEPENDS:= \
+ $(patsubst %,CONFIG_PACKAGE_collectd-mod-%,$(subst _,-,$(COLLECTD_PLUGINS_SELECTED))) \
+
+include $(INCLUDE_DIR)/package.mk
+include $(INCLUDE_DIR)/kernel.mk
+# collectd-mod-mysql needs iconv
+include $(INCLUDE_DIR)/nls.mk
+
+define Package/collectd/Default
+ SECTION:=utils
+ CATEGORY:=Utilities
+ TITLE:=Lightweight system statistics collection daemon
+ URL:=https://collectd.org/
+endef
+
+define Package/collectd
+$(call Package/collectd/Default)
+ DEPENDS:= +libpthread \
+ +zlib \
+ +libltdl \
+ +libip4tc \
+ +jshn \
+ +PACKAGE_collectd-mod-lua:liblua
+ MENU:=1
+endef
+
+define Package/collectd/description
+ collectd is a small daemon which collects system information periodically
+ and provides mechanismns to store the values in a variety of ways.
+endef
+
+define Package/collectd/config
+ config PACKAGE_COLLECTD_ENCRYPTED_NETWORK
+ bool "Enable ability to use encrypted networking"
+ default n
+ depends on PACKAGE_collectd
+ select PACKAGE_collectd-mod-network
+endef
+
+# common configure args
+CONFIGURE_ARGS+= \
+ --disable-werror \
+ --disable-debug \
+ --enable-daemon \
+ --with-nan-emulation \
+ --with-libyajl=no \
+ --without-perl-bindings \
+ --without-libudev
+
+CONFIGURE_VARS+= \
+ CFLAGS="$$$$CFLAGS $(FPIC)" \
+ LDFLAGS="$$$$LDFLAGS -lm -lz" \
+ KERNEL_DIR="$(LINUX_DIR)"
+
+ifneq ($(CONFIG_PACKAGE_collectd-mod-lua),)
+CONFIGURE_VARS+= \
+ LDFLAGS="$$$$LDFLAGS -llua"
+endif
+
+ifneq ($(CONFIG_PACKAGE_COLLECTD_ENCRYPTED_NETWORK),)
+CONFIGURE_ARGS+= \
+ --with-libgcrypt=$(STAGING_DIR)/usr
+CONFIGURE_VARS+= \
+ GCRYPT_LIBS="-lgcrypt"
+else
+CONFIGURE_ARGS+= \
+ --without-libgcrypt
+endif
+
+CONFIGURE_PLUGIN= \
+ $(foreach m, $(1), \
+ $(if $(CONFIG_PACKAGE_collectd-mod-$(subst _,-,$(m))),--enable-$(m),--disable-$(m)) \
+ )
+
+CONFIGURE_ARGS+= \
+ $(call CONFIGURE_PLUGIN,$(COLLECTD_PLUGINS_SELECTED)) \
+ $(call CONFIGURE_PLUGIN,$(COLLECTD_PLUGINS_DISABLED)) \
+
+# exception: mod-ascent needs libxml2
+ifneq ($(CONFIG_PACKAGE_collectd-mod-ascent),)
+ CONFIGURE_VARS+= \
+ CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/include/libxml2"
+endif
+
+ifneq ($(CONFIG_BIG_ENDIAN),)
+ CONFIGURE_ARGS+= --with-fp-layout=endianflip
+else
+ CONFIGURE_ARGS+= --with-fp-layout=nothing
+endif
+
+# exception: mod-netlink needs libnetlink from iproute
+ifneq ($(CONFIG_PACKAGE_collectd-mod-netlink),)
+ CONFIGURE_ARGS+= --with-libnetlink="$(STAGING_DIR)/usr"
+endif
+
+# exception: mod-modbus needs libmodbus
+ifneq ($(CONFIG_PACKAGE_collectd-mod-modbus),)
+ CONFIGURE_ARGS+= --with-libmodbus="$(STAGING_DIR)/usr"
+endif
+
+# exception: mod-rrdtool needs rrdtool-1.0.x
+ifneq ($(CONFIG_PACKAGE_collectd-mod-rrdtool),)
+ CONFIGURE_ARGS+= --with-librrd="$(STAGING_DIR)/usr/lib/rrdtool-1.0"
+endif
+
+define Package/collectd/conffiles
+/etc/collectd.conf
+/etc/config/collectd
+endef
+
+define Package/collectd/install
+ $(INSTALL_DIR) $(1)/usr/sbin
+ $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/collectd $(1)/usr/sbin/
+
+ $(INSTALL_DIR) $(1)/usr/share/collectd
+ $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/collectd/types.db $(1)/usr/share/collectd/
+
+ $(INSTALL_DIR) $(1)/etc/init.d
+ $(INSTALL_BIN) ./files/collectd.init $(1)/etc/init.d/collectd
+
+ $(INSTALL_DIR) $(1)/etc/config
+ $(INSTALL_CONF) files/collectd.uci $(1)/etc/config/collectd
+endef
+
+# 1: plugin name
+# 2: plugin title/description
+# 3: files
+# 4: extra dependency
+define BuildPlugin
+
+ PKG_CONFIG_DEPENDS+= CONFIG_PACKAGE_collectd-mod-$(1)
+
+ define Package/collectd-mod-$(1)
+ $$(call Package/collectd/Default)
+ TITLE:=$(2) plugin
+ DEPENDS:= collectd $(4)
+ endef
+
+ define Package/collectd-mod-$(1)/install
+ $(INSTALL_DIR) $$(1)/usr/lib/collectd
+ for m in $(3); do \
+ $(CP) \
+ $(PKG_INSTALL_DIR)/usr/lib/collectd/$$$$$$$${m}.so \
+ $$(1)/usr/lib/collectd/ ; \
+ done
+ if [ -f ./files/usr/share/collectd/plugin/$(1).json ]; then \
+ $(INSTALL_DIR) $$(1)/usr/share/collectd/plugin ; \
+ $(INSTALL_DATA) ./files/usr/share/collectd/plugin/$(1).json \
+ $$(1)/usr/share/collectd/plugin/$(1).json ; \
+ fi
+ endef
+
+ $$(eval $$(call BuildPackage,collectd-mod-$(1)))
+
+endef
+
+$(eval $(call BuildPackage,collectd))
+
+#$(eval $(call BuildPlugin,NAME,DESCRIPTION,FILES,DEPENDENCIES))
+$(eval $(call BuildPlugin,apache,apache status input,apache,+PACKAGE_collectd-mod-apache:libcurl))
+$(eval $(call BuildPlugin,apcups,apcups status input,apcups,))
+$(eval $(call BuildPlugin,ascent,ascent status input,ascent,+PACKAGE_collectd-mod-ascent:libcurl +PACKAGE_collectd-mod-ascent:libxml2))
+$(eval $(call BuildPlugin,bind,BIND server/zone input,bind,+PACKAGE_collectd-mod-bind:libcurl +PACKAGE_collectd-mod-bind:libxml2))
+$(eval $(call BuildPlugin,chrony,chrony status input,chrony,))
+$(eval $(call BuildPlugin,conntrack,connection tracking table size input,conntrack,))
+$(eval $(call BuildPlugin,contextswitch,context switch input,contextswitch,))
+$(eval $(call BuildPlugin,cpu,CPU input,cpu,))
+$(eval $(call BuildPlugin,cpufreq,CPU Freq input,cpufreq,@(TARGET_x86||TARGET_x86_64||TARGET_mvebu||TARGET_ipq806x||TARGET_armvirt||TARGET_ipq40xx||TARGET_brcm2708_bcm2709))) # Only enable on targets with CPUs supporting frequency scaling
+$(eval $(call BuildPlugin,csv,CSV output,csv,))
+$(eval $(call BuildPlugin,curl,cURL input,curl,+PACKAGE_collectd-mod-curl:libcurl))
+#$(eval $(call BuildPlugin,dbi,relational database input,dbi,+PACKAGE_collectd-mod-dbi:libdbi))
+$(eval $(call BuildPlugin,df,disk space input,df,))
+$(eval $(call BuildPlugin,disk,disk usage/timing input,disk,))
+$(eval $(call BuildPlugin,dns,DNS traffic input,dns,+PACKAGE_collectd-mod-dns:libpcap))
+$(eval $(call BuildPlugin,email,email output,email,))
+$(eval $(call BuildPlugin,entropy,Entropy amount input,entropy,))
+$(eval $(call BuildPlugin,ethstat,Ethernet adapter statistics input,ethstat,))
+$(eval $(call BuildPlugin,exec,process exec input,exec,))
+$(eval $(call BuildPlugin,filecount,file count input,filecount,))
+$(eval $(call BuildPlugin,fscache,file-system based caching framework input,fscache,))
+$(eval $(call BuildPlugin,interface,network interfaces input,interface,))
+$(eval $(call BuildPlugin,iptables,iptables status input,iptables,+PACKAGE_collectd-mod-iptables:iptables +libiptc))
+$(eval $(call BuildPlugin,irq,interrupt usage input,irq,))
+$(eval $(call BuildPlugin,iwinfo,libiwinfo wireless statistics,iwinfo,+PACKAGE_collectd-mod-iwinfo:libiwinfo))
+$(eval $(call BuildPlugin,load,system load input,load,))
+$(eval $(call BuildPlugin,logfile,log files output,logfile,))
+$(eval $(call BuildPlugin,lua,lua input/output,lua,+PACKAGE_collectd-mod-lua:liblua))
+$(eval $(call BuildPlugin,match-empty-counter,empty-counter match,match_empty_counter,))
+$(eval $(call BuildPlugin,match-hashed,hashed match,match_hashed,))
+$(eval $(call BuildPlugin,match-regex,regex match,match_regex,))
+$(eval $(call BuildPlugin,match-timediff,timediff match,match_timediff,))
+$(eval $(call BuildPlugin,match-value,value match,match_value,))
+$(eval $(call BuildPlugin,memory,physical memory usage input,memory,))
+$(eval $(call BuildPlugin,modbus,read variables through libmodbus,modbus,+PACKAGE_collectd-mod-modbus:libmodbus))
+$(eval $(call BuildPlugin,netlink,netlink input,netlink,+PACKAGE_collectd-mod-netlink:libmnl))
+$(eval $(call BuildPlugin,network,network input/output,network,+PACKAGE_COLLECTD_ENCRYPTED_NETWORK:libgcrypt))
+$(eval $(call BuildPlugin,nginx,nginx status input,nginx,+PACKAGE_collectd-mod-nginx:libcurl))
+$(eval $(call BuildPlugin,ntpd,NTP daemon status input,ntpd,))
+$(eval $(call BuildPlugin,olsrd,OLSRd status input,olsrd,))
+$(eval $(call BuildPlugin,openvpn,OpenVPN traffic/compression input,openvpn,))
+$(eval $(call BuildPlugin,ping,ping status input,ping,+PACKAGE_collectd-mod-ping:liboping))
+$(eval $(call BuildPlugin,powerdns,PowerDNS server status input,powerdns,))
+$(eval $(call BuildPlugin,processes,process status input,processes,+PACKAGE_collectd-mod-processes:libmnl))
+$(eval $(call BuildPlugin,protocols,network protocols input,protocols,))
+$(eval $(call BuildPlugin,rrdtool,RRDtool output,rrdtool,+PACKAGE_collectd-mod-rrdtool:librrd1))
+$(eval $(call BuildPlugin,snmp,SNMP input,snmp,+PACKAGE_collectd-mod-snmp:libnetsnmp))
+$(eval $(call BuildPlugin,syslog,syslog output,syslog,))
+$(eval $(call BuildPlugin,tail,tail input,tail,))
+$(eval $(call BuildPlugin,tail-csv,tail CSV input,tail_csv,))
+$(eval $(call BuildPlugin,table,table-like structured file input,table,))
+$(eval $(call BuildPlugin,teamspeak2,TeamSpeak2 input,teamspeak2,))
+$(eval $(call BuildPlugin,ted,The Energy Detective input,ted,))
+$(eval $(call BuildPlugin,tcpconns,TCP connection tracking input,tcpconns,))
+$(eval $(call BuildPlugin,thermal,system temperatures input,thermal,))
+$(eval $(call BuildPlugin,threshold,Notifications and thresholds,threshold,))
+$(eval $(call BuildPlugin,unixsock,unix socket output,unixsock,))
+$(eval $(call BuildPlugin,uptime,uptime status input,uptime,))
+$(eval $(call BuildPlugin,users,user logged in status input,users,))
+$(eval $(call BuildPlugin,vmem,virtual memory usage input,vmem,))
+$(eval $(call BuildPlugin,wireless,wireless status input,wireless,))
+$(eval $(call BuildPlugin,write-graphite,Carbon/Graphite output,write_graphite,+PACKAGE_collectd-mod-write-graphite:libpthread))
+$(eval $(call BuildPlugin,write-http,HTTP POST output,write_http,+PACKAGE_collectd-mod-write-http:libcurl))
--- /dev/null
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2006-2016 OpenWrt.org
+
+START=80
+STOP=10
+
+USE_PROCD=1
+COLLECTD_CONF="/tmp/collectd.conf"
+LOG="logger -t collectd[$$] -p"
+NICEPRIO=5
+
+CONFIG_STRING=""
+
+process_exec() {
+ printf "<Plugin exec>\n" >> "$COLLECTD_CONF"
+ config_foreach process_exec_sections exec_input "Exec"
+ config_foreach process_exec_sections exec_notify "NotificationExec"
+ printf "</Plugin>\n\n" >> "$COLLECTD_CONF"
+}
+
+process_exec_sections() {
+ local cfg="$1"
+ local section="$2"
+
+ local cmdline cmduser cmdgroup
+
+ config_get cmdline "$cfg" cmdline
+ [ -z "$cmdline" ] && {
+ $LOG notice "No cmdline option in config $cfg defined"
+ return 0
+ }
+
+ config_get cmduser "$cfg" cmduser
+ [ -z "$cmduser" ] && {
+ $LOG notice "No cmduser option in config $cfg defined"
+ return 0
+ }
+
+ config_get cmdgroup "$cfg" cmdgroup
+ if [ -z "$cmdgroup" ]; then
+ printf "\\t%s \"%s\" \"%s\"\n" "${section}" "${cmduser}" "${cmdline}" >> "$COLLECTD_CONF"
+ else
+ printf "\\t%s \"%s:%s\" \"%s\"\n" "${section}" "${cmduser}" "${cmdgroup}" "${cmdline}" >> "$COLLECTD_CONF"
+ fi
+}
+
+process_curl() {
+ printf "<Plugin curl>\n" >> "$COLLECTD_CONF"
+ config_foreach process_curl_page curl_page
+ printf "</Plugin>\n\n" >> "$COLLECTD_CONF"
+}
+
+process_curl_page() {
+ local cfg="$1"
+
+ local name url
+
+ config_get name "$cfg" name
+ [ -z "$name" ] && {
+ $LOG notice "No name option in config $cfg defined"
+ return 0
+ }
+
+ config_get url "$cfg" url
+ [ -z "$url" ] && {
+ $LOG notice "No URL option in config $cfg defined"
+ return 0
+ }
+
+ printf "\\t<Page \"%s\">\n" "${name}" >> "$COLLECTD_CONF"
+ printf "\\t\\tURL \"%s\"\n" "${url}" >> "$COLLECTD_CONF"
+ printf "\\t\\tMeasureResponseTime true\n" >> "$COLLECTD_CONF"
+ printf "\\t</Page>\n" >> "$COLLECTD_CONF"
+}
+
+process_network() {
+ local cfg="$1"
+
+ local TimeToLive Forward CacheFlush
+
+ printf "<Plugin network>\n" >> "$COLLECTD_CONF"
+ config_foreach process_network_sections network_listen "listen"
+ config_foreach process_network_sections network_server "server"
+
+ config_get TimeToLive "$cfg" TimeToLive
+ [ -z "$TimeToLive" ] || {
+ printf "\\tTimeToLive %s\n" "${TimeToLive}" >> "$COLLECTD_CONF"
+ }
+
+ config_get CacheFlush "$cfg" CacheFlush
+ [ -z "$CacheFlush" ] || {
+ printf "\\tCacheFlush %s\n" "${CacheFlush}" >> "$COLLECTD_CONF"
+ }
+
+ config_get_bool Forward "$cfg" Forward
+ if [ "$value" = "0" ]; then
+ printf "\\tForward false\n" >> "$COLLECTD_CONF"
+ else
+ printf "\\tForward true\n" >> "$COLLECTD_CONF"
+ fi
+
+ printf "</Plugin>\n\n" >> "$COLLECTD_CONF"
+}
+
+process_network_sections() {
+ local cfg="$1"
+ local section="$2"
+
+ local host port output
+
+ config_get host "$cfg" host
+ [ -z "$host" ] && {
+ $LOG notice "No host option in config $cfg defined"
+ return 0
+ }
+
+ if [ "$section" = "server" ]; then
+ output="Server \"$host\""
+ else
+ output="Listen \"$host\""
+ fi
+
+ config_get port "$cfg" port
+ if [ -z "$port" ]; then
+ printf "\\t%s\n" "${output}" >> "$COLLECTD_CONF"
+ else
+ printf "\\t%s \"%s\"\n" "${output}" "${port}" >> "$COLLECTD_CONF"
+ fi
+}
+
+process_iptables() {
+ local cfg="$1"
+
+ printf "<Plugin iptables>\n" >> "$COLLECTD_CONF"
+ config_foreach process_iptables_sections iptables_match
+ printf "</Plugin>\n\n" >> "$COLLECTD_CONF"
+}
+
+process_iptables_sections() {
+ local cfg="$1"
+
+ local table chain
+
+ config_get table "$cfg" table
+ [ -z "$table" ] && {
+ $LOG notice "No table option in config $cfg defined"
+ return 0
+ }
+
+ config_get chain "$cfg" chain
+ [ -z "$chain" ] && {
+ $LOG notice "No chain option in config $cfg defined"
+ return 0
+ }
+
+ config_get index "$cfg" index
+ [ -z "$index" ] && {
+ $LOG notice "No index option in config $cfg defined"
+ return 0
+ }
+
+ config_get name "$cfg" name
+ if [ -z "$name" ]; then
+ printf "\\tChain %s %s %s\n" "${table}" "${chain}" "${index}" >> "$COLLECTD_CONF"
+ else
+ printf "\\tChain %s %s %s \"%s\"\n" "${table}" "${chain}" "${index}" "${name}">> "$COLLECTD_CONF"
+ fi
+}
+
+CONFIG_LIST=""
+add_list_option() {
+ local value="$1"
+ local option="$2"
+ local indent="$3"
+
+ CONFIG_LIST="${CONFIG_LIST}${indent}${option} \"$value\"\n"
+}
+
+process_generic() {
+ local cfg="$1"
+ local indent="$2"
+ local json="$3"
+
+ local config=""
+
+ . /usr/share/libubox/jshn.sh
+ json_init
+ json_load_file "$json"
+
+ json_select string 1>/dev/null 2>&1
+ if [ $? -eq 0 ]; then
+ json_get_keys keys
+ for key in ${keys}; do
+ json_get_var option "$key"
+ config_get value "$cfg" "$option" ""
+ [ -z "$value" ] || {
+ config="${config}${indent}${option} \"${value}\"\n"
+ }
+ done
+ json_select ..
+ fi
+
+ json_select bool 1>/dev/null 2>&1
+ if [ $? -eq 0 ]; then
+ json_get_keys keys
+ for key in ${keys}; do
+ json_get_var option "$key"
+ config_get_bool value "$cfg" "$option"
+ if [ "$value" = "0" ]; then
+ config="${config}${indent}${option} false\n"
+ fi
+
+ if [ "$value" = "1" ]; then
+ config="${config}${indent}${option} true\n"
+ fi
+ done
+ json_select ..
+ fi
+
+ json_select list 1>/dev/null 2>&1
+ if [ $? -eq 0 ]; then
+ json_get_keys keys
+ for key in ${keys}; do
+ json_get_var option "$key"
+ CONFIG_LIST=""
+ config_list_foreach "$cfg" "$option" add_list_option "$option" "$indent"
+ config="${config}${CONFIG_LIST}"
+ done
+ json_select ..
+ fi
+
+ [ -z "$config" ] || {
+ printf "%s<Plugin %s>\n" "${CONFIG_STRING}" "$cfg" >> "$COLLECTD_CONF"
+ echo -e "${config}" >> "$COLLECTD_CONF"
+ printf "%s</Plugin>\n" "${CONFIG_STRING}" >> "$COLLECTD_CONF"
+ }
+
+ printf "\n" >> "$COLLECTD_CONF"
+}
+
+process_plugins() {
+ local cfg="$1"
+
+ local enable keys key option value
+
+ config_get enable "$cfg" enable 0
+ [ "$enable" = "1" ] || return 0
+
+ [ -f "/usr/lib/collectd/$cfg.so" ] || {
+ $LOG notice "Plugin collectd-mod-$cfg not installed"
+ return 0
+ }
+
+ [ -f "/usr/share/collectd/plugin/$cfg.json" ] || {
+ $LOG notice "Configuration definition file for $cfg not found"
+ return 0
+ }
+
+ printf "LoadPlugin %s\n" "$cfg" >> "$COLLECTD_CONF"
+ case "$cfg" in
+ exec)
+ CONFIG_STRING=""
+ process_exec
+ ;;
+ curl)
+ CONFIG_STRING=""
+ process_curl
+ ;;
+ network)
+ CONFIG_STRING=""
+ process_network "$cfg"
+ ;;
+ iptables)
+ CONFIG_STRING=""
+ process_iptables
+ ;;
+ *)
+ CONFIG_STRING=""
+ process_generic "$cfg" "\\t" "/usr/share/collectd/plugin/$cfg.json"
+ ;;
+ esac
+}
+
+process_config() {
+ local alt_config_file BaseDir Include PIDFile PluginDir TypesDB
+ local Interval ReadThreads Hostname
+
+ rm -f "$COLLECTD_CONF"
+
+ [ -f /etc/config/collectd ] || {
+ $LOG notice "UCI config not found"
+ return 0
+ }
+ config_load collectd
+ config_get alt_config_file globals alt_config_file
+
+ # If "alt_config_file" specified, use that instead
+ [ -n "$alt_config_file" ] && [ -f "$alt_config_file" ] && {
+ rm -f "$COLLECTD_CONF"
+ ln -s "$alt_config_file" "$COLLECTD_CONF"
+ return 0
+ }
+
+ # GOBAL CONFIG
+ config_get BaseDir globals BaseDir "/var/run/collectd"
+ printf "BaseDir \"%s\"\n" "$BaseDir" >> "$COLLECTD_CONF"
+
+ config_get Include globals Include "/tmp/collectd.d"
+ printf "Include \"%s\"\n" "$Include" >> "$COLLECTD_CONF"
+ mkdir -p "$Include"
+
+ config_get PIDFile globals PIDFile "/var/run/collectd.pid"
+ printf "PIDFile \"%s\"\n" "$PIDFile" >> "$COLLECTD_CONF"
+
+ config_get PluginDir globals PluginDir "/usr/lib/collectd"
+ printf "PluginDir \"%s\"\n" "$PluginDir" >> "$COLLECTD_CONF"
+
+ config_get TypesDB globals TypesDB "/usr/share/collectd/types.db"
+ printf "TypesDB \"%s\"\n" "$TypesDB" >> "$COLLECTD_CONF"
+
+ config_get Interval globals Interval 30
+ printf "Interval \"%s\"\n" "$Interval" >> "$COLLECTD_CONF"
+
+ config_get ReadThreads globals ReadThreads 2
+ printf "ReadThreads \"%s\"\n" "$ReadThreads" >> "$COLLECTD_CONF"
+
+ config_get Hostname globals Hostname "$(uname -n)"
+ printf "Hostname \"%s\"\n" "$Hostname" >> "$COLLECTD_CONF"
+
+ printf "\n" >> "$COLLECTD_CONF"
+
+ # PLUGIN CONFIG
+ config_foreach process_plugins plugin
+}
+
+service_triggers()
+{
+ procd_add_reload_trigger "collectd"
+}
+
+start_service() {
+ process_config
+
+ procd_open_instance
+ procd_set_param command /usr/sbin/collectd
+ procd_append_param command -C "$COLLECTD_CONF"
+ procd_append_param command -f # don't daemonize
+ procd_set_param nice "$NICEPRIO"
+ procd_set_param stderr 1
+ procd_set_param respawn
+ procd_close_instance
+}
+
+reload_service() {
+ restart "$@"
+}
--- /dev/null
+config globals 'globals'
+ option alt_config_file "/etc/collectd.conf"
+# option BaseDir '/var/run/collectd'
+# option Include '/tmp/collectd.d'
+# option PIDFile '/var/run/collectd.pid'
+# option PluginDir '/usr/lib/collectd'
+# option TypesDB '/usr/share/collectd/types.db'
+# option Interval '30'
+# option ReadThreads '2'
+
+#config plugin 'apcups'
+# option enable '0'
+# option Host 'localhost'
+# option Port '3551'
+
+#config plugin 'conntrack'
+# option enable '0'
+
+#config plugin 'contextswitch'
+# option enable '0'
+
+#config plugin 'cpu'
+# option enable '0'
+
+#config plugin 'cpufreq'
+# option enable '0'
+
+#config plugin 'csv'
+# option enable '0'
+# option StoreRates '0'
+# option DataDir '/tmp'
+
+#config plugin 'curl'
+# option enable '0'
+
+#config curl_page
+# option name 'test'
+# option url 'http://finance.google.com/finance?q=NYSE%3AAMD%22'
+
+#config plugin 'df'
+# option enable '0'
+# list Device '/dev/mtdblock/4'
+# list MountPoint '/jffs'
+# list FSType 'tmpfs'
+# option IgnoreSelected '0'
+
+#config plugin 'disk'
+# option enable '0'
+# list Disk 'hda1'
+# list Disk 'hdb'
+# option IgnoreSelected '0'
+
+#config plugin 'dns'
+# option enable '0'
+# list Interface 'br-lan'
+# list IgnoreSource '127.0.0.1'
+
+#config plugin 'email'
+# option enable '0'
+# option SocketFile '/var/run/collectd/email.sock'
+# option SocketGroup 'nogroup'
+
+#config plugin 'entropy'
+# option enable '0'
+
+#config plugin 'exec'
+# option enable '0'
+
+#config exec_input
+# option cmdline '/usr/bin/stat-dhcpusers'
+# option cmduser 'nobody'
+# option cmdgroup 'nogroup'
+
+#config exec_notify
+# option cmdline '/usr/bin/stat-dhcpusers'
+# option cmduser 'nobody'
+# option cmdgroup 'nogroup'
+
+#config plugin 'interface'
+# option enable '1'
+# list Interface 'br-lan'
+# option IgnoreSelected '0'
+
+#config plugin 'iptables'
+# option enable '1'
+
+#config iptables_match
+# option table 'nat'
+# option chain 'zone_wan_postrouting'
+# option index '1'
+# option name 'WLAN-Clients traffic'
+
+#config plugin 'irq'
+# option enable '0'
+# list Irq '2'
+# list Irq '3'
+# list Irq '4'
+# list Irq '7'
+
+#config plugin 'iwinfo'
+# option enable '0'
+
+#config plugin 'load'
+# option enable '0'
+
+#config plugin 'lua'
+# option BasePath '/usr/share/collectd-mod-lua'
+# list Script 'script1.lua'
+# list Script 'script2.lua
+
+#config plugin 'memory'
+# option enable '0'
+
+#config plugin 'netlink'
+# option enable '0'
+# option IgnoreSelected '0'
+# list VerboseInterface 'br-lan'
+# list QDisc 'br-lan'
+
+#config plugin 'network'
+# option enable '1'
+# option TimeToLive '128'
+# option Forward '1'
+# option CacheFlush '86400'
+
+#config network_listen
+# option host '0.0.0.0'
+# option port '25826'
+
+#config network_server
+# option host '1.1.1.1'
+# option port '25826'
+
+#config plugin 'nut'
+# option enable '0'
+# option UPS 'myupsname'
+
+#config plugin 'olsrd'
+# option enable '0'
+# option Port '2006'
+# option Host '127.0.0.1'
+
+#config plugin 'openvpn'
+# option enable '0'
+# option StatusFile '/var/run/openvpn/openvpn.status'
+# option CollectIndividualUsers '1'
+# optoin CollectUserCount '1'
+# optoin CollectCompression '1'
+# option ImprovedNamingSchema '0'
+
+#config plugin 'ping'
+# option enable '0'
+# option TTL '127'
+# option Interval '30'
+# list Host '127.0.0.1'
+
+#config plugin 'processes'
+# option enable '0'
+# list Process 'uhttpd'
+# list Process 'dnsmasq'
+# list Process 'dropbear'
+
+#config plugin 'rrdtool'
+# option enable '0'
+# option DataDir '/tmp/rrd'
+# option RRARows '100'
+# option RRASingle '1'
+# list RRATimespan '3600'
+# list RRATimespan '86400'
+# list RRATimespan '604800'
+# list RRATimespan '2678400'
+# list RRATimespan '31622400'
+
+#config plugin 'sensors'
+# option enable '0'
+
+#config plugin 'tcpconns'
+# option enable '0'
+# list ListeningPort '0'
+# list LocalPort '22'
+# list LocalPort '80'
+
+#config plugin 'thermal'
+# option enable '0'
+# option IgnoreSelected '0'
+# list Device ''
+
+#config plugin 'unixsock'
+# option enable '0'
+# option SocketFile '/var/run/collectd/query.sock'
+# option SocketGroup 'nogroup'
+
+#config plugin 'uptime'
+# option enable '0'
+
+#config plugin 'vmem'
+# option enable '0'
+# option Verbose '0'
--- /dev/null
+{
+ "string": [
+ "Host",
+ "Port"
+ ]
+}
--- /dev/null
+{
+ "bool": [
+ "ValuesPercentage",
+ "ReportByCpu",
+ "ReportByState"
+ ]
+}
--- /dev/null
+{
+ "string": [
+ "DataDir"
+ ],
+ "bool": [
+ "StoreRates"
+ ]
+}
--- /dev/null
+{
+ "bool": [
+ "IgnoreSelected"
+ ],
+ "list": [
+ "Device",
+ "MountPoint",
+ "FSType"
+ ]
+}
--- /dev/null
+{
+ "bool": [
+ "IgnoreSelected"
+ ],
+ "list": [
+ "Disk"
+ ]
+}
--- /dev/null
+{
+ "list": [
+ "Interface",
+ "IgnoreSource"
+ ]
+}
--- /dev/null
+{
+ "string": [
+ "SocketFile",
+ "SocketGroup",
+ "SocketPerms",
+ "MaxConns"
+ ]
+}
--- /dev/null
+{
+ "bool": [
+ "IgnoreSelected"
+ ],
+ "list": [
+ "Interface"
+ ]
+}
--- /dev/null
+{
+ "bool": [
+ "IgnoreSelected"
+ ],
+ "list": [
+ "Irq"
+ ]
+}
--- /dev/null
+{
+ "bool": [
+ "IgnoreSelected"
+ ],
+ "list": [
+ "Interface"
+ ]
+}
--- /dev/null
+{
+ "string": [
+ "LogLevel",
+ "File"
+ ],
+ "bool": [
+ "Timestamp"
+ ]
+}
--- /dev/null
+{
+ "string": [
+ "BasePath"
+ ],
+ "list": [
+ "Script"
+ ]
+}
--- /dev/null
+{
+ "bool": [
+ "ValuesPercentage",
+ "ValuesAbsolute"
+ ]
+}
--- /dev/null
+{
+ "bool": [
+ "IgnoreSelected"
+ ],
+ "list": [
+ "Interface",
+ "VerboseInterface",
+ "QDisc",
+ "Classe",
+ "Filter"
+ ]
+}
--- /dev/null
+{
+ "string": [
+ "UPS"
+ ]
+}
--- /dev/null
+{
+ "string": [
+ "Host",
+ "Port",
+ "CollectLinks",
+ "CollectRoutes",
+ "CollectTopology"
+ ]
+}
--- /dev/null
+{
+ "string": [
+ "StatusFile"
+ ],
+ "bool": [
+ "CollectIndividualUsers",
+ "CollectUserCount",
+ "CollectCompression",
+ "ImprovedNamingSchema"
+ ]
+}
--- /dev/null
+{
+ "string": [
+ "TTL",
+ "Interval"
+ ],
+ "list": [
+ "Host"
+ ]
+}
--- /dev/null
+{
+ "list": [
+ "Process"
+ ]
+}
--- /dev/null
+{
+ "string": [
+ "DataDir",
+ "StepSize",
+ "HeartBeat",
+ "RRARows",
+ "XFF",
+ "CacheFlush",
+ "CacheTimeout"
+ ],
+ "bool": [
+ "RRASingle"
+ ],
+ "list": [
+ "RRATimespan"
+ ]
+}
--- /dev/null
+{
+ "bool": [
+ "IgnoreSelected"
+ ],
+ "list": [
+ "Sensor"
+ ]
+}
--- /dev/null
+{
+ "bool": [
+ "ListeningPorts"
+ ],
+ "list": [
+ "LocalPort",
+ "RemotePort"
+ ]
+}
--- /dev/null
+{
+ "bool": [
+ "IgnoreSelected"
+ ],
+ "list": [
+ "Device"
+ ]
+}
--- /dev/null
+{
+ "string": [
+ "SocketFile",
+ "SocketGroup",
+ "SocketPerms"
+ ]
+}
--- /dev/null
+{
+ "bool": [
+ "Verbose"
+ ]
+}
--- /dev/null
+--- /dev/null
++++ b/fake-am_path_libgcrypt.m4
+@@ -0,0 +1 @@
++AC_DEFUN([AM_PATH_LIBGCRYPT],[:])
--- /dev/null
+--- a/src/rrdtool.c
++++ b/src/rrdtool.c
+@@ -60,6 +60,7 @@ typedef struct rrd_queue_s rrd_queue_t;
+ static const char *config_keys[] = {
+ "CacheTimeout", "CacheFlush", "CreateFilesAsync", "DataDir",
+ "StepSize", "HeartBeat", "RRARows", "RRATimespan",
++ "RRASingle",
+ "XFF", "WritesPerSecond", "RandomTimeout"};
+ static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
+
+@@ -77,6 +78,8 @@ static rrdcreate_config_t rrdcreate_conf
+ /* timespans = */ NULL,
+ /* timespans_num = */ 0,
+
++ /* rrasingle = */ 0,
++
+ /* consolidation_functions = */ NULL,
+ /* consolidation_functions_num = */ 0,
+
+@@ -944,6 +947,12 @@ static int rrd_config(const char *key, c
+ /* compar = */ rrd_compare_numeric);
+
+ free(value_copy);
++ } else if (strcasecmp ("RRASingle", key) == 0) {
++ if (IS_TRUE (value))
++ {
++ rrdcreate_config.rrasingle = 1;
++ NOTICE ("rrdtool plugin: RRASingle = true: creating only AVERAGE RRAs");
++ }
+ } else if (strcasecmp("XFF", key) == 0) {
+ double tmp = atof(value);
+ if ((tmp < 0.0) || (tmp >= 1.0)) {
+--- a/src/utils/rrdcreate/rrdcreate.c
++++ b/src/utils/rrdcreate/rrdcreate.c
+@@ -180,6 +180,9 @@ static int rra_get(char ***ret, const va
+ rts_num = rra_timespans_num;
+ }
+
++ if (cfg->rrasingle)
++ rra_types_num = 1;
++
+ rra_max = rts_num * rra_types_num;
+ assert(rra_max > 0);
+
+--- a/src/utils/rrdcreate/rrdcreate.h
++++ b/src/utils/rrdcreate/rrdcreate.h
+@@ -40,6 +40,8 @@ struct rrdcreate_config_s {
+ int *timespans;
+ size_t timespans_num;
+
++ int rrasingle;
++
+ char **consolidation_functions;
+ size_t consolidation_functions_num;
+
--- /dev/null
+--- a/src/daemon/configfile.c
++++ b/src/daemon/configfile.c
+@@ -104,7 +104,7 @@ static cf_global_option_t cf_global_opti
+ {"BaseDir", NULL, 0, PKGLOCALSTATEDIR},
+ {"PIDFile", NULL, 0, PIDFILE},
+ {"Hostname", NULL, 0, NULL},
+- {"FQDNLookup", NULL, 0, "true"},
++ {"FQDNLookup", NULL, 0, "false"},
+ {"Interval", NULL, 0, NULL},
+ {"ReadThreads", NULL, 0, "5"},
+ {"WriteThreads", NULL, 0, "5"},
--- /dev/null
+--- a/src/daemon/plugin.c
++++ b/src/daemon/plugin.c
+@@ -1092,7 +1092,7 @@ static int plugin_insert_read(read_func_
+ int status;
+ llentry_t *le;
+
+- rf->rf_next_read = cdtime();
++ rf->rf_next_read = cdtime() + (cdtime_t) 1073741824; //delay first read 1s
+ rf->rf_effective_interval = rf->rf_interval;
+
+ pthread_mutex_lock(&read_lock);
--- /dev/null
+Adjust the reaction to a polling interval timestamp that references
+to a past time.
+
+Past timestamps can happen when ntpd adjusts router's time after network
+connectivity is obtained after boot. Collectd shows warnings for each plugin
+as it tries to enter new values with the same timestamp as the previous one.
+
+This patch adjusts the next polling time to be now+2 seconds for the main
+loop and for the plugin-specific read loops. That avoids the warnings, but
+does not overreact in case there are shorter polling intervals or the time
+gets adjusted for other reasons.
+
+Additionally some debug statements are added, but they are visible only
+when --enable-debug configure option is used in Makefile.
+
+
+--- a/src/daemon/collectd.c
++++ b/src/daemon/collectd.c
+@@ -274,20 +274,23 @@ static int do_loop(void) {
+ update_kstat();
+ #endif
+
++ DEBUG("do_loop before plugin_read_all: now = %.3f", CDTIME_T_TO_DOUBLE(cdtime()));
+ /* Issue all plugins */
+ plugin_read_all();
+
+ cdtime_t now = cdtime();
++ DEBUG("do_loop after plugin_read_all: now = %.3f, wait_until= %.3f", CDTIME_T_TO_DOUBLE(now), CDTIME_T_TO_DOUBLE(wait_until));
+ if (now >= wait_until) {
+- WARNING("Not sleeping because the next interval is "
++ WARNING("Sleeping only 2s because the next interval is "
+ "%.3f seconds in the past!",
+ CDTIME_T_TO_DOUBLE(now - wait_until));
+- wait_until = now + interval;
+- continue;
++ wait_until = now + DOUBLE_TO_CDTIME_T(2);
++ DEBUG("do_loop: wait_until adjusted to now+2 = %.3f", CDTIME_T_TO_DOUBLE(wait_until));
+ }
+
+ struct timespec ts_wait = CDTIME_T_TO_TIMESPEC(wait_until - now);
+ wait_until = wait_until + interval;
++ DEBUG("do_loop ends: wait_until set to %.3f", CDTIME_T_TO_DOUBLE(wait_until));
+
+ while ((loop == 0) && (nanosleep(&ts_wait, &ts_wait) != 0)) {
+ if (errno != EINTR) {
+--- a/src/daemon/plugin.c
++++ b/src/daemon/plugin.c
+@@ -585,10 +585,11 @@ static void *plugin_read_thread(void __a
+
+ /* Check, if `rf_next_read' is in the past. */
+ if (rf->rf_next_read < now) {
+- /* `rf_next_read' is in the past. Insert `now'
++ /* `rf_next_read' is in the past. Insert `now'+2s
+ * so this value doesn't trail off into the
+ * past too much. */
+- rf->rf_next_read = now;
++ rf->rf_next_read = now + DOUBLE_TO_CDTIME_T(2);
++ DEBUG("plugin_read_thread: Next read is in the past. Adjusted to now+2s");
+ }
+
+ DEBUG("plugin_read_thread: Next read of the `%s' plugin at %.3f.",
--- /dev/null
+--- a/src/olsrd.c
++++ b/src/olsrd.c
+@@ -582,7 +582,7 @@ static int olsrd_read(void) /* {{{ */
+ if (fh == NULL)
+ return -1;
+
+- fputs("\r\n", fh);
++ fputs("/all \r\n", fh);
+ fflush(fh);
+
+ while (fgets(buffer, sizeof(buffer), fh) != NULL) {
--- /dev/null
+Patch reverts upstream commit:
+https://github.com/collectd/collectd/commit/6124da7a48f28f54fc09ebeb942d1037516fe6ab
+
+The commit changed the detection path due to FreeBSD issues,
+but apparently affects also Openwrt buildroot negatively.
+
+Original explanation:
+ From 6124da7a48f28f54fc09ebeb942d1037516fe6ab Mon Sep 17 00:00:00 2001
+ Subject: [PATCH] Fix libmodbus detection on FreeBSD
+
+ We look for modbus/modbus.h in /usr/local/include/modbus
+ but we should look for modbus.h
+
+ This is only an issue on FreeBSD since /usr/local/include is not
+ in the default search path.
+
+Reversed patch to be applied:
+
+--- a/configure.ac
++++ b/configure.ac
+@@ -3389,9 +3389,9 @@ if test "x$with_libmodbus" = "xyes"; the
+ SAVE_CPPFLAGS="$CPPFLAGS"
+ CPPFLAGS="$CPPFLAGS $with_libmodbus_cflags"
+
+- AC_CHECK_HEADERS([modbus.h],
++ AC_CHECK_HEADERS([modbus/modbus.h],
+ [with_libmodbus="yes"],
+- [with_libmodbus="no (modbus.h not found)"]
++ [with_libmodbus="no (modbus/modbus.h not found)"]
+ )
+
+ CPPFLAGS="$SAVE_CPPFLAGS"
+--- a/src/modbus.c
++++ b/src/modbus.c
+@@ -26,7 +26,7 @@
+ #include "plugin.h"
+ #include "utils/common/common.h"
+
+-#include <modbus.h>
++#include <modbus/modbus.h>
+ #include <netdb.h>
+ #include <sys/socket.h>
+
--- /dev/null
+--- a/configure.ac
++++ b/configure.ac
+@@ -532,11 +532,7 @@ if test "x$ac_system" = "xLinux"; then
+ [have_cpuid_h="no (cpuid.h not found)"]
+ )
+
+- AC_CHECK_HEADERS([sys/capability.h],
+- [have_capability="yes"],
+- [have_capability="no (<sys/capability.h> not found)"]
+- )
+-
++ have_capability="no"
+ if test "x$have_capability" = "xyes"; then
+ AC_CHECK_LIB([cap], [cap_get_proc],
+ [have_capability="yes"],
--- /dev/null
+--- a/configure.ac
++++ b/configure.ac
+@@ -712,6 +712,11 @@ AC_CACHE_CHECK([whether clock_boottime a
+ ]
+ )
+
++# For the iwinfo plugin
++AC_CHECK_LIB([iwinfo], [iwinfo_backend],
++ [with_iwinfo="yes"],
++ [with_iwinfo="no (libiwinfo not found)"]
++)
+
+ #
+ # Checks for typedefs, structures, and compiler characteristics.
+@@ -6397,6 +6402,7 @@ plugin_ipc="no"
+ plugin_ipmi="no"
+ plugin_ipvs="no"
+ plugin_irq="no"
++plugin_iwinfo="no"
+ plugin_load="no"
+ plugin_log_logstash="no"
+ plugin_mcelog="no"
+@@ -6841,6 +6847,7 @@ AC_PLUGIN([ipmi], [$plugi
+ AC_PLUGIN([iptables], [$with_libiptc], [IPTables rule counters])
+ AC_PLUGIN([ipvs], [$plugin_ipvs], [IPVS connection statistics])
+ AC_PLUGIN([irq], [$plugin_irq], [IRQ statistics])
++AC_PLUGIN([iwinfo], [$with_iwinfo], [Common iwinfo wireless statistics])
+ AC_PLUGIN([java], [$with_java], [Embed the Java Virtual Machine])
+ AC_PLUGIN([load], [$plugin_load], [System load])
+ AC_PLUGIN([log_logstash], [$plugin_log_logstash], [Logstash json_event compatible logging])
+@@ -7212,6 +7219,7 @@ AC_MSG_RESULT([ libyajl . . . . . . .
+ AC_MSG_RESULT([ oracle . . . . . . . $with_oracle])
+ AC_MSG_RESULT([ protobuf-c . . . . . $have_protoc_c])
+ AC_MSG_RESULT([ protoc 3 . . . . . . $have_protoc3])
++AC_MSG_RESULT([ iwinfo . . . . . . . $with_iwinfo])
+ AC_MSG_RESULT()
+ AC_MSG_RESULT([ Features:])
+ AC_MSG_RESULT([ daemon mode . . . . . $enable_daemon])
+@@ -7274,6 +7282,7 @@ AC_MSG_RESULT([ ipmi . . . . . . . .
+ AC_MSG_RESULT([ iptables . . . . . . $enable_iptables])
+ AC_MSG_RESULT([ ipvs . . . . . . . . $enable_ipvs])
+ AC_MSG_RESULT([ irq . . . . . . . . . $enable_irq])
++AC_MSG_RESULT([ iwinfo . . . . . . . $enable_iwinfo])
+ AC_MSG_RESULT([ java . . . . . . . . $enable_java])
+ AC_MSG_RESULT([ load . . . . . . . . $enable_load])
+ AC_MSG_RESULT([ logfile . . . . . . . $enable_logfile])
+--- a/src/collectd.conf.in
++++ b/src/collectd.conf.in
+@@ -140,6 +140,7 @@
+ #@BUILD_PLUGIN_IPTABLES_TRUE@LoadPlugin iptables
+ #@BUILD_PLUGIN_IPVS_TRUE@LoadPlugin ipvs
+ #@BUILD_PLUGIN_IRQ_TRUE@LoadPlugin irq
++#@BUILD_PLUGIN_IWINFO_TRUE@LoadPlugin iwinfo
+ #@BUILD_PLUGIN_JAVA_TRUE@LoadPlugin java
+ @BUILD_PLUGIN_LOAD_TRUE@@BUILD_PLUGIN_LOAD_TRUE@LoadPlugin load
+ #@BUILD_PLUGIN_LPAR_TRUE@LoadPlugin lpar
+@@ -775,6 +776,12 @@
+ # IgnoreSelected true
+ #</Plugin>
+
++#<Plugin iwinfo>
++# Interface "ath0"
++# Interface "ra0"
++# Interface "wlan0"
++#</Plugin>
++
+ #<Plugin java>
+ # JVMArg "-verbose:jni"
+ # JVMArg "-Djava.class.path=@prefix@/share/collectd/java/collectd-api.jar"
+--- a/src/collectd.conf.pod
++++ b/src/collectd.conf.pod
+@@ -3873,6 +3873,27 @@ and all other interrupts are collected.
+
+ =back
+
++=head2 Plugin C<iwinfo>
++
++=over 4
++
++=item B<Interface> I<Interface>
++
++Select this interface. By default all detected wireless interfaces will be
++collected. For a more detailed description see B<IgnoreSelected> below.
++
++=item B<IgnoreSelected> I<true>|I<false>
++
++If no configuration if given, the B<iwinfo>-plugin will collect data from all
++detected wireless interfaces. You can use the B<Interface>-option to pick the
++interfaces you're interested in. Sometimes, however, it's easier/preferred to
++collect all interfaces I<except> a few ones. This option enables you to do
++that: By setting B<IgnoreSelected> to I<true> the effect of B<Interface> is
++inverted: All selected interfaces are ignored and all other interfaces are
++collected.
++
++=back
++
+ =head2 Plugin C<java>
+
+ The I<Java> plugin makes it possible to write extensions for collectd in Java.
+--- /dev/null
++++ b/src/iwinfo.c
+@@ -0,0 +1,150 @@
++/**
++ * collectd - src/iwinfo.c
++ * Copyright (C) 2011 Jo-Philipp Wich
++ *
++ * This program is free software; you can redistribute it and/or modify it
++ * under the terms of the GNU General Public License as published by the
++ * Free Software Foundation; only version 2 of the License is applicable.
++ *
++ * This program is distributed in the hope that it will be useful, but
++ * WITHOUT ANY WARRANTY; without even the implied warranty of
++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
++ * General Public License for more details.
++ *
++ * You should have received a copy of the GNU General Public License along
++ * with this program; if not, write to the Free Software Foundation, Inc.,
++ * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
++ **/
++
++#include "collectd.h"
++#include "plugin.h"
++#include "utils/common/common.h"
++#include "utils/ignorelist/ignorelist.h"
++
++#include <stdint.h>
++#include <iwinfo.h>
++
++#define PROCNETDEV "/proc/net/dev"
++
++static const char *config_keys[] = {
++ "Interface",
++ "IgnoreSelected"
++};
++static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
++
++static ignorelist_t *ignorelist = NULL;
++
++static int iwinfo_config(const char *key, const char *value)
++{
++ if (ignorelist == NULL)
++ ignorelist = ignorelist_create(1);
++
++ if (ignorelist == NULL)
++ return 1;
++
++ if (strcasecmp(key, "Interface") == 0)
++ ignorelist_add(ignorelist, value);
++ else if (strcasecmp(key, "IgnoreSelected") == 0)
++ ignorelist_set_invert(ignorelist, IS_TRUE(value) ? 0 : 1);
++ else
++ return -1;
++
++ return 0;
++}
++
++static void iwinfo_submit(const char *ifname, const char *type, int value)
++{
++ value_t values[1];
++ value_list_t vl = VALUE_LIST_INIT;
++
++ values[0].gauge = value;
++
++ vl.values = values;
++ vl.values_len = 1;
++
++ sstrncpy(vl.host, hostname_g, sizeof(vl.host));
++ sstrncpy(vl.plugin, "iwinfo", sizeof(vl.plugin));
++ sstrncpy(vl.plugin_instance, ifname, sizeof(vl.plugin_instance));
++ sstrncpy(vl.type, type, sizeof(vl.type));
++ /*sstrncpy(vl.type_instance, "", sizeof(vl.type_instance));*/
++
++ plugin_dispatch_values(&vl);
++}
++
++static void iwinfo_process(const char *ifname)
++{
++ int val;
++ char buf[IWINFO_BUFSIZE];
++ const struct iwinfo_ops *iw = iwinfo_backend(ifname);
++
++ /* does appear to be a wifi iface */
++ if (iw)
++ {
++ if (iw->bitrate(ifname, &val))
++ val = 0;
++ iwinfo_submit(ifname, "bitrate", val * 1000);
++
++ if (iw->signal(ifname, &val))
++ val = 0;
++ iwinfo_submit(ifname, "signal_power", val);
++
++ if (iw->noise(ifname, &val))
++ val = 0;
++ iwinfo_submit(ifname, "signal_noise", val);
++
++ if (iw->quality(ifname, &val))
++ val = 0;
++ iwinfo_submit(ifname, "signal_quality", val);
++
++ if (iw->assoclist(ifname, buf, &val))
++ val = 0;
++ iwinfo_submit(ifname, "stations",
++ val / sizeof(struct iwinfo_assoclist_entry));
++ }
++
++ iwinfo_finish();
++}
++
++static int iwinfo_read(void)
++{
++ char line[1024];
++ char ifname[128];
++ FILE *f;
++
++ f = fopen(PROCNETDEV, "r");
++ if (f == NULL)
++ {
++ char err[1024];
++ WARNING("iwinfo: Unable to open " PROCNETDEV ": %s",
++ sstrerror(errno, err, sizeof(err)));
++ return -1;
++ }
++
++ while (fgets(line, sizeof(line), f))
++ {
++ if (!strchr(line, ':'))
++ continue;
++
++ if (!sscanf(line, " %127[^:]", ifname))
++ continue;
++
++ if (ignorelist_match(ignorelist, ifname))
++ continue;
++
++ if (strstr(ifname, "mon.") || strstr(ifname, ".sta") ||
++ strstr(ifname, "tmp.") || strstr(ifname, "wifi"))
++ continue;
++
++ iwinfo_process(ifname);
++ }
++
++ fclose(f);
++
++ return 0;
++}
++
++void module_register(void)
++{
++ plugin_register_config("iwinfo", iwinfo_config, config_keys, config_keys_num);
++ plugin_register_read("iwinfo", iwinfo_read);
++}
+--- a/src/types.db
++++ b/src/types.db
+@@ -240,6 +240,7 @@ snr value:GAUGE:0:U
+ spam_check value:GAUGE:0:U
+ spam_score value:GAUGE:U:U
+ spl value:GAUGE:U:U
++stations value:GAUGE:0:256
+ swap value:GAUGE:0:1099511627776
+ swap_io value:DERIVE:0:U
+ sysevent value:GAUGE:0:1
+--- a/Makefile.am
++++ b/Makefile.am
+@@ -1165,6 +1165,14 @@ irq_la_LDFLAGS = $(PLUGIN_LDFLAGS)
+ irq_la_LIBADD = libignorelist.la
+ endif
+
++if BUILD_PLUGIN_IWINFO
++pkglib_LTLIBRARIES += iwinfo.la
++iwinfo_la_SOURCES = src/iwinfo.c
++#iwinfo_la_LDFLAGS = -module -avoid-version
++iwinfo_la_LDFLAGS = $(PLUGIN_LDFLAGS)
++iwinfo_la_LIBADD = -liwinfo libignorelist.la
++endif
++
+ if BUILD_PLUGIN_JAVA
+ pkglib_LTLIBRARIES += java.la
+ java_la_SOURCES = src/java.c
--- /dev/null
+#
+# Copyright (C) 2006-2014 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=rrdtool1
+PKG_VERSION:=1.0.50
+PKG_RELEASE:=2
+
+PKG_BUILD_DIR:=$(BUILD_DIR)/rrdtool-$(PKG_VERSION)
+PKG_SOURCE:=rrdtool-$(PKG_VERSION).tar.gz
+PKG_SOURCE_URL:= \
+ http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.0.x \
+ http://www.fastmirrors.org/rrdtool/rrdtool-1.0.x \
+ ftp://ftp.sunet.se/pub/network/monitoring/rrdtool/rrdtool-1.0.x
+PKG_HASH:=42aa7c213dedbd95d33ca84d92f4187880f7e96062c6a3fb05bfb16f77ba2a91
+PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
+
+PKG_FIXUP:=autoreconf
+PKG_CHECK_FORMAT_SECURITY:=0
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/rrdtool1/Default
+ TITLE:=Round Robin Database (RRD)
+ URL:=http://oss.oetiker.ch/rrdtool/
+endef
+
+define Package/rrdtool1/description/Default
+ RRD is the Acronym for Round Robin Database. RRD is a system to store and
+ display time-series data (i.e. network bandwidth, machine-room temperature,
+ server load average). It stores the data in a very compact way that will
+ not expand over time, and it presents useful graphs by processing the data
+ to enforce a certain data density. It can be used either via simple wrapper
+ scripts (from shell or Perl) or via frontends that poll network devices and
+ put friendly user interface on it.
+
+ This is version 1.0.x with cgilib-0.4, gd1.3 and libpng-1.0.9 linked into
+ librrd.so. The library is much smaller compared to the 1.2.x version with
+ separate dynamic linked libraries.
+endef
+
+define Package/librrd1
+$(call Package/rrdtool1/Default)
+ SECTION:=libs
+ CATEGORY:=Libraries
+ DEPENDS:=+zlib
+ TITLE+= management library
+endef
+
+define Package/librrd1/description
+$(call Package/rrdtool1/description/Default)
+ This package contains a shared library, used by other programs.
+endef
+
+define Package/rrdcgi1
+$(call Package/rrdtool1/Default)
+ SECTION:=utils
+ CATEGORY:=Utilities
+ SUBMENU:=Database
+ DEPENDS:=+librrd1
+ TITLE+= CGI graphing tool
+endef
+
+define Package/rrdcgi1/description
+$(call Package/rrdtool1/description/Default)
+ This package contains the rrdcgi tool used to create web pages containing
+ RRD graphs based on templates.
+endef
+
+define Package/rrdtool1
+$(call Package/rrdtool1/Default)
+ SECTION:=utils
+ CATEGORY:=Utilities
+ SUBMENU:=Database
+ DEPENDS:=+librrd1
+ TITLE+= management tools
+endef
+
+define Package/rrdtool1/description
+$(call Package/rrdtool1/description/Default)
+ This package contains command line tools used to manage RRDs.
+endef
+
+TARGET_CFLAGS += $(FPIC) --std=c99
+
+CONFIGURE_ARGS += \
+ $(DISABLE_NLS) \
+ --enable-shared=yes \
+ --enable-static=yes \
+ --disable-rpath \
+ --with-gnu-ld \
+ --enable-local-zlib
+
+CONFIGURE_VARS += \
+ ac_cv_path_PERL=no \
+ rd_cv_ieee_works=yes \
+ shrext_cmds=".so"
+
+define Build/Compile
+ $(MAKE) -C $(PKG_BUILD_DIR) \
+ DESTDIR="$(PKG_INSTALL_DIR)" \
+ shrext_cmds=".so" \
+ all install
+endef
+
+define Package/rrdtool1/install
+ $(INSTALL_DIR) $(1)/usr/bin
+ $(CP) $(PKG_INSTALL_DIR)/usr/bin/rrd{tool,update} $(1)/usr/bin/
+endef
+
+define Package/rrdcgi1/install
+ $(INSTALL_DIR) $(1)/usr/bin
+ $(CP) $(PKG_INSTALL_DIR)/usr/bin/rrdcgi $(1)/usr/bin/
+endef
+
+define Package/librrd1/install
+ $(INSTALL_DIR) $(1)/usr/lib
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/librrd.so.* $(1)/usr/lib/
+endef
+
+define Build/InstallDev
+ $(INSTALL_DIR) $(1)/usr/lib/rrdtool-1.0/include
+ $(CP) $(PKG_INSTALL_DIR)/usr/include/rrd.h $(1)/usr/lib/rrdtool-1.0/include/
+ $(INSTALL_DIR) $(1)/usr/lib/rrdtool-1.0/lib
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/librrd.{a,so*} $(1)/usr/lib/rrdtool-1.0/lib/
+endef
+
+$(eval $(call BuildPackage,librrd1))
+$(eval $(call BuildPackage,rrdcgi1))
+$(eval $(call BuildPackage,rrdtool1))
--- /dev/null
+diff -urN rrdtool-1.0.50/configure rrdtool-1.0.50.new/configure
+--- rrdtool-1.0.50/configure 2005-04-25 22:48:09.000000000 +0200
++++ rrdtool-1.0.50.new/configure 2009-03-09 17:25:38.000000000 +0100
+@@ -24873,17 +24873,12 @@
+ echo "${ECHO_T}and out again" >&6
+
+ echo $ECHO_N "ordering CD from http://people.ee.ethz.ch/~oetiker/wish $ac_c" 1>&6
+-sleep 1
+ echo $ECHO_N ".$ac_c" 1>&6
+-sleep 2
+ echo $ECHO_N ".$ac_c" 1>&6
+-sleep 1
+ echo $ECHO_N ".$ac_c" 1>&6
+-sleep 3
+ echo $ECHO_N ".$ac_c" 1>&6
+ echo $ECHO_N ".$ac_c" 1>&6
+ echo $ECHO_N ".$ac_c" 1>&6
+-sleep 2
+ echo "$as_me:$LINENO: result: just kidding ;-)" >&5
+ echo "${ECHO_T} just kidding ;-)" >&6
+ echo
--- /dev/null
+--- a/src/rrd_tool.c
++++ b/src/rrd_tool.c
+@@ -225,11 +225,8 @@
+ struct rusage myusage;
+ struct timeval starttime;
+ struct timeval currenttime;
+- struct timezone tz;
+
+- tz.tz_minuteswest =0;
+- tz.tz_dsttime=0;
+- gettimeofday(&starttime,&tz);
++ gettimeofday(&starttime,NULL);
+ #endif
+
+ while (fgets(aLine, sizeof(aLine)-1, stdin)){
+@@ -252,7 +249,7 @@
+
+ #if HAVE_GETRUSAGE
+ getrusage(RUSAGE_SELF,&myusage);
+- gettimeofday(¤ttime,&tz);
++ gettimeofday(¤ttime,NULL);
+ printf("OK u:%1.2f s:%1.2f r:%1.2f\n",
+ (double)myusage.ru_utime.tv_sec+
+ (double)myusage.ru_utime.tv_usec/1000000.0,
--- /dev/null
+Index: rrdtool-1.0.50/src/rrd_format.h
+===================================================================
+--- rrdtool-1.0.50.orig/src/rrd_format.h
++++ rrdtool-1.0.50/src/rrd_format.h
+@@ -20,7 +20,7 @@
+
+ #define RRD_COOKIE "RRD"
+ #define RRD_VERSION "0001"
+-#define FLOAT_COOKIE 8.642135E130
++#define FLOAT_COOKIE ((double)8.642135E130)
+
+ #if defined(WIN32)
+ #define DNAN ((double)fmod(0.0,0.0))
--- /dev/null
+--- rrdtool-1.0.50/doc/Makefile.am.orig 2013-11-16 11:44:50.940231208 -0500
++++ rrdtool-1.0.50/doc/Makefile.am 2013-11-16 11:45:09.802229483 -0500
+@@ -35,7 +35,7 @@
+ all-local: link txt man html
+
+ .pod.1 .pm.1 .pl.1:
+- pod2man --release=$(VERSION) --center=RRDtool $< > $@
++ pod2man --stderr --release=$(VERSION) --center=RRDtool $< > $@
+
+ .1.txt:
+ @NROFF@ -man -Tlp $< > $@ || echo @NROFF@ failed > $@