include $(TOPDIR)/rules.mk
LUCI_TITLE:=LuCI Support for Coova Chilli
-LUCI_DEPENDS:=+luci-base +luci-compat @BROKEN
+LUCI_DEPENDS:=+luci-base +coova-chilli
PKG_LICENSE:=Apache-2.0
PKG_MAINTAINER:=Steven Barth <steven@midlink.org>, \
- Jo-Philipp Wich <jo@mein.io>
+ Jo-Philipp Wich <jo@mein.io>, \
+ Paul Donald <newtwen+github@gmail.com>
include ../../luci.mk
--- /dev/null
+'use strict';
+'require form';
+'require network';
+'require rpc';
+'require tools.widgets as widgets';
+
+return L.view.extend({
+
+ callNetworkDevices: rpc.declare({
+ object: 'luci-rpc',
+ method: 'getNetworkDevices',
+ expect: { '': {} }
+ }),
+
+ addLocalDeviceIPs: function(o, devices) {
+ L.sortedKeys(devices, 'name').forEach(function(dev) {
+ var ip4addrs = devices[dev].ipaddrs;
+ var ip6addrs = devices[dev].ip6addrs;
+
+ // if (!L.isObject(devices[dev].flags) || devices[dev].flags.loopback)
+ // return;
+
+ if (Array.isArray(ip4addrs)) {
+ ip4addrs.forEach(function(addr) {
+ if (!L.isObject(addr) || !addr.address)
+ return;
+
+ o.value(addr.address, E([], [
+ addr.address, ' (', E('strong', {}, [dev]), ')'
+ ]));
+ });
+ }
+
+ if (Array.isArray(ip6addrs)) {
+ ip6addrs.forEach(function(addr) {
+ if (!L.isObject(addr) || !addr.address)
+ return;
+
+ o.value(addr.address, E([], [
+ addr.address, ' (', E('strong', {}, [dev]), ')'
+ ]));
+ });
+ }
+ });
+
+ return o;
+ },
+
+ load: function() {
+ return Promise.all([
+ this.callNetworkDevices(),
+ ]);
+ },
+
+ render: function(returned_promises) {
+ var m, s, o, to, so, ss;
+ var net_devices = returned_promises[0];
+
+ m = new form.Map('coovachilli', _('Coova Chilli'),
+ _('Coova Chilli') + ' ' + _('access controller for WLAN.'));
+
+ s = m.section(form.TypedSection, 'chilli', _('Settings'));
+ s.anonymous = true;
+
+ s.tab('general', _('General'));
+ s.tab('uam', _('UAM and MAC Authentication'));
+ s.tab('network', _('Network Configuration'));
+ s.tab('radius', _('RADIUS'));
+
+ // General
+ o = s.taboption('general', form.SectionValue, '__gen__', form.TypedSection, 'chilli', null);
+ ss = o.subsection;
+ ss.anonymous = true;
+
+ so = ss.option(form.Flag, 'disabled', _('Enabled') );
+ so.enabled = '0';
+ so.disabled = '1';
+
+ // analogue of dhcpif in init script:
+ // so = ss.option(form.Value, 'network', _('Network') );
+ // so.optional = true;
+
+ ss.option(form.Flag, 'debug', _('Debug') );
+
+ so = ss.option(form.Value, 'interval', _('Re-read interval'), _('Re-read configuration file at this interval') );
+ so.placeholder = '3600';
+
+ so = ss.option(form.Value, 'logfacility', _('Syslog facility') );
+ so.value('KERN');
+ so.value('USER');
+ so.value('MAIL');
+ so.value('DAEMON');
+ so.value('AUTH');
+ so.value('LPR');
+ so.value('NEWS');
+ so.value('UUCP');
+ so.value('CRON');
+ so.value('LOCAL0');
+ so.value('LOCAL1');
+ so.value('LOCAL2');
+ so.value('LOCAL3');
+ so.value('LOCAL4');
+ so.value('LOCAL5');
+ so.value('LOCAL6');
+ so.value('LOCAL7');
+
+ so = ss.option(form.Value, 'statedir', _('State directory') );
+ so.optional = true;
+ so.placeholder = './';
+
+ // UAM
+ o = s.taboption('uam', form.SectionValue, '__uam__', form.TypedSection, 'chilli', null,
+ _('Universal access method'));
+ ss = o.subsection;
+ ss.anonymous = true;
+
+ so = ss.option(form.Value, 'uamserver', _('Server'), _('URL of web server to use for authenticating clients') );
+ so.placeholder = 'https://radius.coova.org/hotspotlogin';
+
+ so = ss.option(form.Value, 'uamsecret', _('Secret') );
+ so.password = true;
+
+ ss.option(form.Flag, 'uamanydns', _('Any DNS'), _('Allow unauthenticated users access to any DNS') );
+ ss.option(form.Flag, 'nouamsuccess', _('Ignore Success'), _('Do not return to UAM server on login success, just redirect to original URL') );
+ ss.option(form.Flag, 'nouamwispr', _('No WISPr'), _('Do not do any WISPr XML, assume the back-end is doing this instead') );
+ ss.option(form.Flag, 'nowispr1', _('No WISPr 1 XML'), _('Do not offer WISPr 1.0 XML') );
+ ss.option(form.Flag, 'nowispr2', _('No WISPr 2 XML'), _('Do not offer WISPr 2.0 XML') );
+ ss.option(form.Flag, 'chillixml', _('Chilli XML'), _('Return the so-called Chilli XML along with WISPr XML.') );
+ so = ss.option(form.Flag, 'uamanyip', _('Any IP'), _('Allow client to use any IP Address') );
+ so.optional = true;
+ so = ss.option(form.Flag, 'dnsparanoia', _('Strict DNS'), _('Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX records') );
+ so.optional = true;
+ so = ss.option(form.Flag, 'usestatusfile', _('Use status file') );
+ so.optional = true;
+
+ so = ss.option(form.Value, 'uamhomepage', _('Homepage'), _('URL of homepage to redirect unauthenticated users to') );
+ so.optional = true;
+ so.placeholder = 'http://192.168.182.1/welcome.html';
+
+ so = ss.option(form.Value, 'uamlisten', _('Listen') );
+ so.optional = true;
+ so.placeholder = '192.168.182.1';
+
+ so = ss.option(form.Value, 'uamport', _('Port'), _('TCP port to bind to for authenticating clients') );
+ so.optional = true;
+ so.placeholder = '3990';
+
+ so = ss.option(form.Value, 'uamiport', _('iport'), _('TCP port to bind to for only serving embedded content') );
+ so.optional = true;
+ so.placeholder = '3990';
+
+ so = ss.option(form.DynamicList, 'uamdomain', _('Domain suffixes') );
+ so.optional = true;
+ so.placeholder = '.chillispot.org,.coova.org';
+
+ so = ss.option(form.Value, 'uamlogoutip', _('Logout IP') );
+ so.optional = true;
+ so.placeholder = '192.168.0.1';
+ so.datatype = 'ipaddr';
+
+ so = ss.option(form.DynamicList, 'uamallowed', _('Allowed') );
+ so.placeholder = 'www.coova.org,10.11.12.0/24,coova.org:80,icmp:coova.org';
+ so.optional = true;
+
+ so = ss.option(form.Value, 'wisprlogin', _('WISPr Login'), _('A specific URL to be given in WISPr XML LoginURL') );
+ so.optional = true;
+
+ so = ss.option(form.Value, 'defsessiontimeout', _('Default session timeout'), _('0 means unlimited') );
+ so.optional = true;
+ so.placeholder = '0';
+ so.datatype = 'uinteger';
+
+ so = ss.option(form.Value, 'defidletimeout', _('Default idle timeout'), _('0 means unlimited') );
+ so.optional = true;
+ so.placeholder = '0';
+ so.datatype = 'uinteger';
+
+ so = ss.option(form.Value, 'definteriminterval', _('Default interim interval'), _('0 means unlimited') );
+ so.optional = true;
+ so.placeholder = '0';
+ so.datatype = 'uinteger';
+
+ so = ss.option(form.Value, 'defbandwidthmaxdown', _('Max download bandwidth'), _('Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down.') );
+ so.optional = true;
+ so.placeholder = '1000000000';
+ so.datatype = 'uinteger';
+
+ so = ss.option(form.Value, 'defbandwidthmaxup', _('Max upload bandwidth'), _('Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up.') );
+ so.optional = true;
+ so.placeholder = '1000000000';
+ so.datatype = 'uinteger';
+
+ so = ss.option(form.Value, 'ssid', _('SSID'), _('passed on to the UAM server in the initial redirect URL') );
+ so.optional = true;
+ so = ss.option(form.Value, 'vlan', _('VLAN'), _('passed on to the UAM server in the initial redirect URL') );
+ so.optional = true;
+ so = ss.option(form.Value, 'nasip', _('NAS IP'), _('Unique IP address of the NAS (nas-ip-address)') );
+ so.optional = true;
+ so.datatype = 'ipaddr';
+
+ so = ss.option(form.Value, 'nasmac', _('NAS MAC'), _('Unique MAC address of the NAS (called-station-id)') );
+ so.optional = true;
+ so.datatype = 'macaddr';
+
+ so = ss.option(form.Value, 'wwwdir', _('www directory'), _('Directory where embedded local web content is placed') );
+ so.optional = true;
+ so = ss.option(form.Value, 'wwwbin', _('www binary'), _('Executable to run as a CGI type program') );
+ so.optional = true;
+
+ so = ss.option(form.Value, 'uamui', _('UI'), _('Program in inetd style to handle all uam requests') );
+ so.optional = true;
+
+ so = ss.option(form.Value, 'localusers', _('Local users') );
+ so.optional = true;
+ so = ss.option(form.Value, 'postauthproxy', _('Post authentication proxy') );
+ so.optional = true;
+ so.datatype = 'ipaddr';
+
+ so = ss.option(form.Value, 'postauthproxyport', _('Post authentication proxy') + ' ' + _('port') );
+ so.optional = true;
+ so.datatype = 'port';
+
+ so = ss.option(form.Value, 'locationname', _('Location Name') );
+ so.optional = true;
+
+ /// MAC auth
+ o = s.taboption('uam', form.SectionValue, '__macauth__', form.TypedSection, 'chilli', null,
+ _('Special options for MAC authentication'));
+ ss = o.subsection;
+ ss.anonymous = true;
+
+ so = ss.option(form.Flag, 'macauth', _('MAC authentication'), _('ChilliSpot will try to authenticate all users based on their mac address alone') );
+ so = ss.option(form.Flag, 'strictmacauth', _('Strict MAC authentication'), _('Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)') );
+ so = ss.option(form.Flag, 'macauthdeny', _('Deny MAC authentication'), _('Deny access (even UAM) to MAC addresses given Access-Reject') );
+ so = ss.option(form.Flag, 'macreauth', _('MAC re-authentication'), _('Re-Authenticate based on MAC address for every initial URL redirection') );
+ so = ss.option(form.Flag, 'macallowlocal', _('Allow Local MAC') );
+ so = ss.option(form.DynamicList, 'macallowed', _('Allowed MACs') );
+ so.placeholder = 'AB-CD-EF-AB-CD-EF';
+ // TODO: split and join
+
+ so = ss.option(form.Value, 'macpasswd', _('MAC password'), _('Password used when performing MAC authentication') );
+ so.optional = true;
+ so.password = true;
+
+ so = ss.option(form.Value, 'macsuffix', _('MAC suffix') );
+ so.optional = true;
+ so.placeholder = 'AB-CD-EF';
+
+ // Network
+
+ /// TUN
+ o = s.taboption('network', form.SectionValue, '__tun__', form.TypedSection, 'chilli', null,
+ _('Options for TUN'));
+ ss = o.subsection;
+ ss.anonymous = true;
+
+ // Linux only:
+ // so = ss.option(form.Flag, 'usetap', _('Use TAP') );
+ so = ss.option(form.Flag, 'ipv6', _('Use IPv6') );
+ so = ss.option(form.Flag, 'ipv6only', _('Use IPv6') + ' ' + _('only') );
+ so = ss.option(form.Value, 'ipv6mode', _('IPv6 mode') );
+ so.value('6and4');
+ so.value('6to4');
+ so.value('4to6');
+
+ so = ss.option(widgets.DeviceSelect, 'tundev', _('TUN device') );
+ so.optional = true;
+
+ so = ss.option(form.Value, 'tcpwin', _('TCP Window') );
+ so.optional = true;
+ so.placeholder = '0';
+ so.datatype = 'max(9200)';
+
+ so = ss.option(form.Value, 'tcpmss', _('TCP MSS') );
+ so.optional = true;
+ so.placeholder = '1280';
+ so.datatype = 'max(9200)';
+
+ so = ss.option(form.Value, 'maxclients', _('Max clients') );
+ so.optional = true;
+ so.placeholder = '512';
+ so.datatype = 'uinteger';
+
+ so = ss.option(form.Value, 'txqlen', _('TX Q length') );
+ so.optional = true;
+
+ so = ss.option(form.Value, 'net', _('Net'), _('Network address of the uplink interface') );
+
+ so.placeholder = '192.168.182.0/24';
+ so.datatype = 'cidr';
+
+ so = ss.option(form.Value, 'dynip', _('Dynamic IP'), _('Specifies a pool of dynamic IP addresses. If this option is omitted the network address specified by the Net option is used') );
+ so.optional = true;
+ so.placeholder = '192.168.182.0/24';
+ so.datatype = 'cidr';
+
+ so = ss.option(form.Value, 'statip', _('Static IP'), _('Specifies a pool of static IP addresses. With static address allocation the IP address of the client can be specified by the RADIUS server.') );
+ so.optional = true;
+ so.placeholder = '192.168.182.0/24';
+
+ so = ss.option(form.Value, 'dns1', _('DNS Primary') );
+ so.optional = true;
+ so.placeholder = '172.16.0.5';
+ so.datatype = 'ipaddr';
+
+ so = ss.option(form.Value, 'dns2', _('DNS Auxiliary') );
+ so.optional = true;
+ so.placeholder = '172.16.0.6';
+ so.datatype = 'ipaddr';
+
+ so = ss.option(form.Value, 'domain', _('Domain') );
+ so.optional = true;
+ so.placeholder = 'key.chillispot.org';
+ so.datatype = 'hostname';
+
+ so = ss.option(form.Value, 'ipup', _('IP up script'), _('Executed after the TUN/TAP network interface has been brought up') );
+ so.optional = true;
+ so.placeholder = '/etc/chilli/up.sh';
+
+ so = ss.option(form.Value, 'ipdown', _('IP down script'), _('Executed after the TUN/TAP network interface has been taken down') );
+ so.optional = true;
+ so.placeholder = '/etc/chilli/down.sh';
+
+ so = ss.option(form.Value, 'conup', _('Connection up script'), _('Executed after a session is authorized') );
+ so.optional = true;
+ so.placeholder = '/etc/chilli/connup.sh';
+
+ so = ss.option(form.Value, 'condown', _('Connection down script'), _('Executed after a session has moved from authorized state to unauthorized') );
+ so.optional = true;
+ so.placeholder = '/etc/chilli/conndown.sh';
+
+ /// DHCP
+ o = s.taboption('network', form.SectionValue, '__tun__', form.TypedSection, 'chilli', null,
+ _('Special options for DHCP'));
+ ss = o.subsection;
+ ss.anonymous = true;
+
+ so = ss.option(widgets.DeviceSelect, 'dhcpif', _('DHCP interface') );
+
+ // so = ss.option(form.Value, 'dhcpmac', _('DHCP MAC') );
+ // so.optional = true;
+ // so.placeholder = '00:00:5E:00:02:00';
+ // so.datatype = 'macaddr';
+
+ so = ss.option(form.Value, 'lease', _('Lease time'), _('in seconds') );
+ so.optional = true;
+ so.placeholder = '600';
+ so.datatype = 'uinteger';
+
+ so = ss.option(form.Value, 'dhcpstart', _('DHCP Start') );
+ so.optional = true;
+ so.placeholder = '10';
+ so.datatype = 'uinteger';
+
+ so = ss.option(form.Value, 'dhcpend', _('DHCP End') );
+ so.optional = true;
+ so.placeholder = '254';
+ so.datatype = 'uinteger';
+
+ so = ss.option(form.Value, 'dhcpgatewayip', _('DHCP Gateway IP') );
+ so.optional = true;
+ so.placeholder = '192.168.1.1';
+ so.datatype = 'ipaddr';
+
+ so = ss.option(form.Value, 'dhcpgatewayport', _('DHCP Gateway Port') );
+ so.optional = true;
+ so.placeholder = '67';
+ so.datatype = 'port';
+
+ so = ss.option(form.Flag, 'eapolenable', _('Enable EAPOL'), _('IEEE 802.1x authentication') );
+ so = ss.option(form.Flag, 'dhcpbroadcast', _('Broadcast Answer'), _('Always respond to DHCP to the broadcast IP, when no relay.') );
+ so = ss.option(form.Flag, 'ieee8021q', _('802.1Q'), _('Support for 802.1Q/VLAN network') );
+ so = ss.option(form.Flag, 'only8021q', _('802.1Q only'), _('Support 802.1Q VLAN tagged traffic only') );
+
+ // RADIUS
+
+ o = s.taboption('radius', form.SectionValue, '__rad__', form.TypedSection, 'chilli', null,
+ _('RADIUS configuration'));
+ ss = o.subsection;
+ ss.anonymous = true;
+
+ so = ss.option(form.Value, 'radiuslisten', _('Send IP') );
+ so.optional = true;
+ so.placeholder = '127.0.0.1';
+ this.addLocalDeviceIPs(so, net_devices);
+
+ so = ss.option(form.Value, 'radiusserver1', _('Primary server') );
+ so.placeholder = 'rad01.coova.org';
+ so.datatype = 'hostname';
+
+ so = ss.option(form.Value, 'radiusserver2', _('Auxiliary server') );
+ so.placeholder = 'rad02.coova.org';
+ so.datatype = 'hostname';
+
+ so = ss.option(form.Value, 'radiussecret', _('Secret') );
+ so.password = true;
+
+ so = ss.option(form.Value, 'radiusauthport', _('Authentication port') );
+ so.optional = true;
+ so.placeholder = '1812';
+ so.datatype = 'port';
+
+ so = ss.option(form.Value, 'radiusacctport', _('Accounting port') );
+ so.optional = true;
+ so.placeholder = '1813';
+ so.datatype = 'port';
+
+ so = ss.option(form.Value, 'radiustimeout', _('Timeout') );
+ so.optional = true;
+ so.placeholder = '10';
+ so.datatype = 'uinteger';
+
+ so = ss.option(form.Value, 'radiusretry', _('Retries') );
+ so.optional = true;
+ so.placeholder = '4';
+ so.datatype = 'uinteger';
+
+ so = ss.option(form.Value, 'radiusretrysec', _('Retry seconds') );
+ so.optional = true;
+ so.placeholder = '2';
+ so.datatype = 'uinteger';
+
+ so = ss.option(form.Value, 'radiusnasid', _('NAS ID'), _('NAS-Identifier') );
+ so.optional = true;
+ so.placeholder = 'nas01';
+ so.datatype = 'string';
+
+ so = ss.option(form.Value, 'radiuslocationid', _('WISPr Location ID') );
+ so.optional = true;
+ so.placeholder = 'isocc=us,cc=1,ac=408,network=ACMEWISP_NewarkAirport';
+
+ so = ss.option(form.Value, 'radiuslocationname', _('WISPr Location Name') );
+ so.optional = true;
+ so.placeholder = 'ACMEWISP,Gate_14_Terminal_C_of_Newark_Airport';
+
+ so = ss.option(form.Value, 'radiusnasporttype', _('NAS-Port-Type') );
+ so.optional = true;
+ so.placeholder = '19';
+ so.datatype = 'uinteger';
+
+ so = ss.option(form.Value, 'adminuser', _('Admin user') );
+ so.optional = true;
+ so = ss.option(form.Value, 'adminpassword', _('Admin password') );
+ so.optional = true;
+ so.password = true;
+
+ ss.option(form.Flag, 'radiusoriginalurl', _('Original URL'), _('Send CoovaChilli-OriginalURL in Access-Request') );
+ ss.option(form.Flag, 'swapoctets', _('Swap Octets'), _('Swap the meaning of input and output octets') );
+ ss.option(form.Flag, 'openidauth', _('Open ID Auth') );
+ ss.option(form.Flag, 'wpaguests', _('WPA guests') );
+ ss.option(form.Flag, 'acctupdate', _('Accounting update') );
+ ss.option(form.Flag, 'noradallow', _('Allow all, absent RADIUS'), _('Allow all sessions when RADIUS is not available') );
+
+ so = ss.option(form.Value, 'coaport', _('COA Port'), _('UDP port to listen to for accepting RADIUS disconnect requests') );
+ so.optional = true;
+ so.datatype = 'port';
+
+ ss.option(form.Flag, 'coanoipcheck', _('COA no IP check'), _('Do not check the source IP address of RADIUS disconnect requests') );
+
+ /// RADIUS Proxy
+ o = s.taboption('radius', form.SectionValue, '__radprox__', form.TypedSection, 'chilli', null,
+ _('Options for RADIUS proxy'));
+ ss = o.subsection;
+ ss.anonymous = true;
+
+ so = ss.option(form.Value, 'proxylisten', _('Proxy Listen') );
+ so.optional = true;
+ this.addLocalDeviceIPs(so, net_devices);
+ so.placeholder = '10.0.0.1';
+ so.datatype = 'ipaddr';
+
+ so = ss.option(form.Value, 'proxyport', _('Proxy Port'), _('UDP Port to listen to for accepting RADIUS requests') );
+ so.optional = true;
+ so.placeholder = '1645';
+ so.datatype = 'port';
+
+ so = ss.option(form.Value, 'proxyclient', _('Proxy Client'), _('IP address from which RADIUS requests are accepted') );
+ so.optional = true;
+ so.placeholder = '10.0.0.1/24';
+ so.datatype = 'cidr';
+
+ so = ss.option(form.Value, 'proxysecret', _('Proxy Secret') );
+ so.optional = true;
+ so.password = true;
+
+ ///////
+
+ return m.render();
+ }
+});
+++ /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.
-
-m = Map("coovachilli")
-
--- general
-s = m:section(TypedSection, "general")
-s.anonymous = true
-
-s:option( Flag, "debug" )
-s:option( Value, "interval" )
-s:option( Value, "pidfile" ).optional = true
-s:option( Value, "statedir" ).optional = true
-s:option( Value, "cmdsock" ).optional = true
-s:option( Value, "logfacility" ).optional = true
-
-
-return m
+++ /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.
-
-m = Map("coovachilli")
-
--- uam config
-s1 = m:section(TypedSection, "uam")
-s1.anonymous = true
-
-s1:option( Value, "uamserver" )
-s1:option( Value, "uamsecret" ).password = true
-
-s1:option( Flag, "uamanydns" )
-s1:option( Flag, "nouamsuccess" )
-s1:option( Flag, "nouamwispr" )
-s1:option( Flag, "chillixml" )
-s1:option( Flag, "uamanyip" ).optional = true
-s1:option( Flag, "dnsparanoia" ).optional = true
-s1:option( Flag, "usestatusfile" ).optional = true
-
-s1:option( Value, "uamhomepage" ).optional = true
-s1:option( Value, "uamlisten" ).optional = true
-s1:option( Value, "uamport" ).optional = true
-s1:option( Value, "uamiport" ).optional = true
-s1:option( DynamicList, "uamdomain" ).optional = true
-s1:option( Value, "uamlogoutip" ).optional = true
-s1:option( DynamicList, "uamallowed" ).optional = true
-s1:option( Value, "uamui" ).optional = true
-
-s1:option( Value, "wisprlogin" ).optional = true
-
-s1:option( Value, "defsessiontimeout" ).optional = true
-s1:option( Value, "defidletimeout" ).optional = true
-s1:option( Value, "definteriminterval" ).optional = true
-
-s1:option( Value, "ssid" ).optional = true
-s1:option( Value, "vlan" ).optional = true
-s1:option( Value, "nasip" ).optional = true
-s1:option( Value, "nasmac" ).optional = true
-s1:option( Value, "wwwdir" ).optional = true
-s1:option( Value, "wwwbin" ).optional = true
-
-s1:option( Value, "localusers" ).optional = true
-s1:option( Value, "postauthproxy" ).optional = true
-s1:option( Value, "postauthproxyport" ).optional = true
-s1:option( Value, "locationname" ).optional = true
-
-
--- mac authentication
-s2 = m:section(TypedSection, "macauth")
-s2.anonymous = true
-
-s2:option( Flag, "macauth" )
-s2:option( Flag, "macallowlocal" )
-s2:option( DynamicList, "macallowed" )
-
-pw = s2:option( Value, "macpasswd" )
-pw.optional = true
-pw.password = true
-
-s2:option( Value, "macsuffix" ).optional = true
-
-return m
+++ /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.
-
-local sys = require"luci.sys"
-local ip = require "luci.ip"
-
-m = Map("coovachilli")
-
--- tun
-s1 = m:section(TypedSection, "tun")
-s1.anonymous = true
-
-s1:option( Flag, "usetap" )
-s1:option( Value, "tundev" ).optional = true
-s1:option( Value, "txqlen" ).optional = true
-
-net = s1:option( Value, "net" )
-for _, route in ipairs(ip.routes({ family = 4, type = 1 })) do
- if route.dest:prefix() > 0 and route.dest:prefix() < 32 then
- net:value( route.dest:string() )
- end
-end
-
-s1:option( Value, "dynip" ).optional = true
-s1:option( Value, "statip" ).optional = true
-
-s1:option( Value, "dns1" ).optional = true
-s1:option( Value, "dns2" ).optional = true
-s1:option( Value, "domain" ).optional = true
-
-s1:option( Value, "ipup" ).optional = true
-s1:option( Value, "ipdown" ).optional = true
-
-s1:option( Value, "conup" ).optional = true
-s1:option( Value, "condown" ).optional = true
-
-
--- dhcp config
-s2 = m:section(TypedSection, "dhcp")
-s2.anonymous = true
-
-dif = s2:option( Value, "dhcpif" )
-for _, nif in ipairs(sys.net.devices()) do
- if nif ~= "lo" then dif:value(nif) end
-end
-
-s2:option( Value, "dhcpmac" ).optional = true
-s2:option( Value, "lease" ).optional = true
-s2:option( Value, "dhcpstart" ).optional = true
-s2:option( Value, "dhcpend" ).optional = true
-
-s2:option( Flag, "eapolenable" )
-
-
-return m
+++ /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.
-
-m = Map("coovachilli")
-
--- radius server
-s1 = m:section(TypedSection, "radius")
-s1.anonymous = true
-
-s1:option( Value, "radiusserver1" )
-s1:option( Value, "radiusserver2" )
-s1:option( Value, "radiussecret" ).password = true
-
-s1:option( Value, "radiuslisten" ).optional = true
-s1:option( Value, "radiusauthport" ).optional = true
-s1:option( Value, "radiusacctport" ).optional = true
-
-s1:option( Value, "radiusnasid" ).optional = true
-s1:option( Value, "radiusnasip" ).optional = true
-
-s1:option( Value, "radiuscalled" ).optional = true
-s1:option( Value, "radiuslocationid" ).optional = true
-s1:option( Value, "radiuslocationname" ).optional = true
-
-s1:option( Value, "radiusnasporttype" ).optional = true
-
-s1:option( Flag, "radiusoriginalurl" )
-
-s1:option( Value, "adminuser" ).optional = true
-rs = s1:option( Value, "adminpassword" )
-rs.optional = true
-rs.password = true
-
-s1:option( Flag, "swapoctets" )
-s1:option( Flag, "openidauth" )
-s1:option( Flag, "wpaguests" )
-s1:option( Flag, "acctupdate" )
-
-s1:option( Value, "coaport" ).optional = true
-s1:option( Flag, "coanoipcheck" )
-
-
--- radius proxy
-s2 = m:section(TypedSection, "proxy")
-s2.anonymous = true
-
-s2:option( Value, "proxylisten" ).optional = true
-s2:option( Value, "proxyport" ).optional = true
-s2:option( Value, "proxyclient" ).optional = true
-ps = s2:option( Value, "proxysecret" )
-ps.optional = true
-ps.password = true
-
-return m
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 5.7-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Admin password"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Admin user"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "كوفا تشيلي"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "DHCP interface"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Default idle timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Default interim interval"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Default session timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Directory where embedded local web content is placed"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Do not return to UAM server on login success, just redirect to original URL"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "منح UCI حق الوصول إلى luci - app - coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "IP up script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "NAS ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "تكوين الشبكة"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Password used when performing MAC authentication"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "اعدادات الراديس"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "State directory"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "TCP port to bind to for only serving embedded content"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "مصادقة UAM و MAC"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL of homepage to redirect unauthenticated users to"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL of web server to use for authenticating clients"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Use status file"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "WISPr Location ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "WISPr Location Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr "Do not check the source IP address of radius disconnect requests"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "UDP Port to listen to for accepting radius requests"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
+
#, fuzzy
#~ msgid "General configuration"
#~ msgstr "General configuration"
#~ msgid "Filename to put the process id"
#~ msgstr "Filename to put the process id"
-#~ msgid "State directory"
-#~ msgstr "State directory"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directory of non-volatile data"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Specifies a pool of dynamic IP addresses"
-#~ msgid "IP down script"
-#~ msgstr "IP down script"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script executed after the tun network interface has been taken down"
-#~ msgid "IP up script"
-#~ msgstr "IP up script"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr ""
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Where to stop assigning IP addresses (default 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "DHCP interface"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet interface to listen to for the downlink interface"
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Admin password"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
-#~ msgid "Admin user"
-#~ msgstr "Admin user"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Do not check disconnection requests"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr "Do not check the source IP address of radius disconnect requests"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "RADIUS disconnect port"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute"
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS location ID"
-#~ msgid "WISPr Location ID"
-#~ msgstr "WISPr Location ID"
-
#~ msgid "RADIUS location name"
#~ msgstr "RADIUS location name"
-#~ msgid "WISPr Location Name"
-#~ msgstr "WISPr Location Name"
-
-#~ msgid "NAS ID"
-#~ msgstr "NAS ID"
-
#~ msgid "Network access server identifier"
#~ msgstr "Network access server identifier"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "UDP Port to listen to for accepting radius requests"
-
#~ msgid "Proxy secret"
#~ msgstr "Proxy secret"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Return the so-called Chilli XML along with WISPr XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Default idle timeout"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Default interim interval"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Default session timeout"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Do not redirect to UAM server"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Do not do WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
-
#~ msgid "Post auth proxy"
#~ msgstr "Post auth proxy"
#~ msgid "UAM homepage"
#~ msgstr "UAM homepage"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "URL of homepage to redirect unauthenticated users to"
-
#~ msgid "UAM static content port"
#~ msgstr "UAM static content port"
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "TCP port to bind to for only serving embedded content"
-
#~ msgid "UAM listening address"
#~ msgstr "UAM listening address"
#~ msgid "UAM server"
#~ msgstr "UAM server"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL of web server to use for authenticating clients"
-
#~ msgid "UAM user interface"
#~ msgstr "UAM user interface"
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
-#~ msgid "Use status file"
-#~ msgstr "Use status file"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Web content directory"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Directory where embedded local web content is placed"
-
#~ msgid "MAC configuration"
#~ msgstr "MAC configuration"
#~ msgid "Password"
#~ msgstr "Password"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Password used when performing MAC authentication"
-
#~ msgid "Suffix"
#~ msgstr "Suffix"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.4-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Admin password"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Admin user"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "DHCP interface"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Default idle timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Default interim interval"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Default session timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Directory where embedded local web content is placed"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Do not return to UAM server on login success, just redirect to original URL"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Позволяване на UCI достъп на luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "IP up script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "NAS ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Мрежова Конфигурация"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Password used when performing MAC authentication"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "RADIUS конфигурация"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "State directory"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "TCP port to bind to for only serving embedded content"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "UAM и MAC автентификация"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL of homepage to redirect unauthenticated users to"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL of web server to use for authenticating clients"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Use status file"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "WISPr Location ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "WISPr Location Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr "Do not check the source IP address of radius disconnect requests"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "UDP Port to listen to for accepting radius requests"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
+
#, fuzzy
#~ msgid "General configuration"
#~ msgstr "General configuration"
#~ msgid "Filename to put the process id"
#~ msgstr "Filename to put the process id"
-#~ msgid "State directory"
-#~ msgstr "State directory"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directory of non-volatile data"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Specifies a pool of dynamic IP addresses"
-#~ msgid "IP down script"
-#~ msgstr "IP down script"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script executed after the tun network interface has been taken down"
-#~ msgid "IP up script"
-#~ msgstr "IP up script"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr ""
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Where to stop assigning IP addresses (default 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "DHCP interface"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet interface to listen to for the downlink interface"
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Admin password"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
-#~ msgid "Admin user"
-#~ msgstr "Admin user"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Do not check disconnection requests"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr "Do not check the source IP address of radius disconnect requests"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "RADIUS disconnect port"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute"
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS location ID"
-#~ msgid "WISPr Location ID"
-#~ msgstr "WISPr Location ID"
-
#~ msgid "RADIUS location name"
#~ msgstr "RADIUS location name"
-#~ msgid "WISPr Location Name"
-#~ msgstr "WISPr Location Name"
-
-#~ msgid "NAS ID"
-#~ msgstr "NAS ID"
-
#~ msgid "Network access server identifier"
#~ msgstr "Network access server identifier"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "UDP Port to listen to for accepting radius requests"
-
#~ msgid "Proxy secret"
#~ msgstr "Proxy secret"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Return the so-called Chilli XML along with WISPr XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Default idle timeout"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Default interim interval"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Default session timeout"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Do not redirect to UAM server"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Do not do WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
-
#~ msgid "Post auth proxy"
#~ msgstr "Post auth proxy"
#~ msgid "UAM homepage"
#~ msgstr "UAM homepage"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "URL of homepage to redirect unauthenticated users to"
-
#~ msgid "UAM static content port"
#~ msgstr "UAM static content port"
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "TCP port to bind to for only serving embedded content"
-
#~ msgid "UAM listening address"
#~ msgstr "UAM listening address"
#~ msgid "UAM server"
#~ msgstr "UAM server"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL of web server to use for authenticating clients"
-
#~ msgid "UAM user interface"
#~ msgstr "UAM user interface"
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
-#~ msgid "Use status file"
-#~ msgstr "Use status file"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Web content directory"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Directory where embedded local web content is placed"
-
#~ msgid "MAC configuration"
#~ msgstr "MAC configuration"
#~ msgid "Password"
#~ msgstr "Password"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Password used when performing MAC authentication"
-
#~ msgid "Suffix"
#~ msgstr "Suffix"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Admin password"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Admin user"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "কোভাচিলি"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "DHCP interface"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Default idle timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Default interim interval"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Default session timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Directory where embedded local web content is placed"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Do not return to UAM server on login success, just redirect to original URL"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "luci-app-coovachilli এর জন্য UCI অ্যাক্সেস প্রদান করুন"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "IP up script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "NAS ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "নেটওয়ার্ক কনফিগারেশন"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Password used when performing MAC authentication"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "RADIUS কনফিগারেশন"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "State directory"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "TCP port to bind to for only serving embedded content"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "UAM এবং MAC অথেনটিকেশন"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL of homepage to redirect unauthenticated users to"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL of web server to use for authenticating clients"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Use status file"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "WISPr Location ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "WISPr Location Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr "Do not check the source IP address of radius disconnect requests"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "UDP Port to listen to for accepting radius requests"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
+
#, fuzzy
#~ msgid "General configuration"
#~ msgstr "General configuration"
#~ msgid "Filename to put the process id"
#~ msgstr "Filename to put the process id"
-#~ msgid "State directory"
-#~ msgstr "State directory"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directory of non-volatile data"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Specifies a pool of dynamic IP addresses"
-#~ msgid "IP down script"
-#~ msgstr "IP down script"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script executed after the tun network interface has been taken down"
-#~ msgid "IP up script"
-#~ msgstr "IP up script"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr ""
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Where to stop assigning IP addresses (default 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "DHCP interface"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet interface to listen to for the downlink interface"
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Admin password"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
-#~ msgid "Admin user"
-#~ msgstr "Admin user"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Do not check disconnection requests"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr "Do not check the source IP address of radius disconnect requests"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "RADIUS disconnect port"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute"
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS location ID"
-#~ msgid "WISPr Location ID"
-#~ msgstr "WISPr Location ID"
-
#~ msgid "RADIUS location name"
#~ msgstr "RADIUS location name"
-#~ msgid "WISPr Location Name"
-#~ msgstr "WISPr Location Name"
-
-#~ msgid "NAS ID"
-#~ msgstr "NAS ID"
-
#~ msgid "Network access server identifier"
#~ msgstr "Network access server identifier"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "UDP Port to listen to for accepting radius requests"
-
#~ msgid "Proxy secret"
#~ msgstr "Proxy secret"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Return the so-called Chilli XML along with WISPr XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Default idle timeout"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Default interim interval"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Default session timeout"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Do not redirect to UAM server"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Do not do WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
-
#~ msgid "Post auth proxy"
#~ msgstr "Post auth proxy"
#~ msgid "UAM homepage"
#~ msgstr "UAM homepage"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "URL of homepage to redirect unauthenticated users to"
-
#~ msgid "UAM static content port"
#~ msgstr "UAM static content port"
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "TCP port to bind to for only serving embedded content"
-
#~ msgid "UAM listening address"
#~ msgstr "UAM listening address"
#~ msgid "UAM server"
#~ msgstr "UAM server"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL of web server to use for authenticating clients"
-
#~ msgid "UAM user interface"
#~ msgstr "UAM user interface"
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
-#~ msgid "Use status file"
-#~ msgstr "Use status file"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Web content directory"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Directory where embedded local web content is placed"
-
#~ msgid "MAC configuration"
#~ msgstr "MAC configuration"
#~ msgid "Password"
#~ msgstr "Password"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Password used when performing MAC authentication"
-
#~ msgid "Suffix"
#~ msgstr "Suffix"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.6\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Contrasenya d'administració"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Usuari administrador"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "Interfície DHCP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Temps d'espera d'inactivitat màxim per defecte"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Interval provisional predeterminat"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Temps d'espera màxim de sessió per defecte"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Directori on se situa el contingut web local empotrat"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "No facis cap XML WISPr, assumeix que el back-end ho està fent"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"No retornis al servidor UAM amb quan s'iniciï la sessió amb èxit, readreça "
+"només a la URL original"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr ""
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "Scripts de baixada IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "Script de pujada IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "NAS ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Configuració de xarxa"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Contrasenya utilitzada quan es realitza autenticació MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Configuració RADIUS"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "Directori d'estat"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "Port TCP on escoltar per servir només contingut empotrat"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "Autenticació UAM i MAC"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL de la pàgina d'inici per readreçar usuari no autenticats"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL del servidor URL a utilitzar per clients autenticats"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Utilitza fitxer d'estat"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "ID de localització WISPr"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "Nom de localització WISPr"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr ""
+#~ "No comprovis l'origen de l'adreça IP de les peticions de desconnexió "
+#~ "RADIUS"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "Port UDP a rebre connexions per acceptar peticions RADIUS"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "Port UDP per acceptar peticions de desconnexió RADIUS"
+
#~ msgid "General configuration"
#~ msgstr "Configuració general"
#~ msgid "Filename to put the process id"
#~ msgstr "Nom de fitxer on posar la ID de procés"
-#~ msgid "State directory"
-#~ msgstr "Directori d'estat"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directori de dades no volàtils"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Especifica una bateria d'adreces IP dinàmiques"
-#~ msgid "IP down script"
-#~ msgstr "Scripts de baixada IP"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr ""
#~ "Script executat després que s'hagi abaixat la interfície de xarxa tun"
-#~ msgid "IP up script"
-#~ msgstr "Script de pujada IP"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr ""
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Quan deixar d'assignar adreces IP (per defecte 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "Interfície DHCP"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr ""
#~ "Interfície Ethernet per escoltar les connexions a la interfície de baixada"
#~ "Permet l'actualització dels paràmetres de sessió amb atributs RADIUS "
#~ "enviats per Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Contrasenya d'administració"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Contrasenya per utilitzar per autenticació d'usuari administrador per "
#~ "agafar configurcions Chilli i establir una sessió \"system\" de dispositiu"
-#~ msgid "Admin user"
-#~ msgstr "Usuari administrador"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "No comprovis les peticions de desconnexió"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr ""
-#~ "No comprovis l'origen de l'adreça IP de les peticions de desconnexió "
-#~ "RADIUS"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "Port de desconnexió RADIUS"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "Port UDP per acceptar peticions de desconnexió RADIUS"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Valor per utilitzar a l'atribut RADIUS adreça NAS-IP"
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr ""
#~ "Valor d'adreça MAC per utilitzar a l'atribiut RADIUS Called-Station-ID"
#~ msgid "RADIUS location ID"
#~ msgstr "ID de localització RADIUS"
-#~ msgid "WISPr Location ID"
-#~ msgstr "ID de localització WISPr"
-
#~ msgid "RADIUS location name"
#~ msgstr "Nom de localització RADIUS"
-#~ msgid "WISPr Location Name"
-#~ msgstr "Nom de localització WISPr"
-
-#~ msgid "NAS ID"
-#~ msgstr "NAS ID"
-
#~ msgid "Network access server identifier"
#~ msgstr "Identificació de servidor d'accés de xarxa"
#~ msgid "Proxy port"
#~ msgstr "Port proxy"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "Port UDP a rebre connexions per acceptar peticions RADIUS"
-
#~ msgid "Proxy secret"
#~ msgstr "Secret de proxy"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Retorna l'XML Chilli juntament amb l'XML WISPr"
-#~ msgid "Default idle timeout"
-#~ msgstr "Temps d'espera d'inactivitat màxim per defecte"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ "Temps d'espera d'inactivitat màxim per defecte excepte si s'estableix pel "
#~ "RADIUS (per defecte 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Interval provisional predeterminat"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Interval provisional predeterminat per accounting RADIUS excepte si "
#~ "s'estableix pel RADIUS (per defecte 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Temps d'espera màxim de sessió per defecte"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "No readrecis al servidor UAM"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "No retornis al servidor UAM amb quan s'iniciï la sessió amb èxit, "
-#~ "readreça només a la URL original"
-
#~ msgid "Do not do WISPr"
#~ msgstr "No facis WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "No facis cap XML WISPr, assumeix que el back-end ho està fent"
-
#~ msgid "Post auth proxy"
#~ msgstr "Proxy post autenticació"
#~ msgid "UAM homepage"
#~ msgstr "Pàgina d'inici UAM"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "URL de la pàgina d'inici per readreçar usuari no autenticats"
-
#~ msgid "UAM static content port"
#~ msgstr "Port de contingut estàtic UAM"
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "Port TCP on escoltar per servir només contingut empotrat"
-
#~ msgid "UAM listening address"
#~ msgstr "Adreça per on escoltar UAM"
#~ msgid "UAM server"
#~ msgstr "Servidor UAM"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL del servidor URL a utilitzar per clients autenticats"
-
#~ msgid "UAM user interface"
#~ msgstr "Interfície d'usuari UAM"
#~ "Un programa de l'stil init.d per gestionar el contingut local al servidor "
#~ "web uamuiport"
-#~ msgid "Use status file"
-#~ msgstr "Utilitza fitxer d'estat"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Directori de contingut web"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Directori on se situa el contingut web local empotrat"
-
#~ msgid "MAC configuration"
#~ msgstr "Configuració MAC"
#~ msgid "Password"
#~ msgstr "Contrasenya"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Contrasenya utilitzada quan es realitza autenticació MAC"
-
#~ msgid "Suffix"
#~ msgstr "Sufix"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.6-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Administrátorské heslo"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Administrátorský uživatel"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "DHCP rozhraní"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Výchozí časový limit nečinnosti"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Výchozí časový limit sezení"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Adresář, ve kterém je umístěn místní webový obsah."
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Při úspěšném přihlášení nevracet na UAM server, pouze přesměrovat na původní "
+"URL"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Povolit UCI přístup pro luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down skript"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "IP up skript"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Nastavení sítě"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Nastavení RADIUS"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "UAM a MAC ověřování"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL domovské stránky, na kterou budou přesměrováni neověření uživatelé"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL web serveru, sloužícího k ověřování klientů"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Použít stavový soubor"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr ""
+#~ "Neověřovat zdrojovou IP adresu požadavku na odpojení protokolu RADIUS"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "UDP port, určený pro naslouchání požadavkům protokolu RADIUS"
+
#~ msgid "General configuration"
#~ msgstr "Obecná konfigurace"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Urči rozsah, z něhož se budou přidělovat dynamické IP adresy"
-#~ msgid "IP down script"
-#~ msgstr "IP down skript"
-
-#~ msgid "IP up script"
-#~ msgstr "IP up skript"
-
#~ msgid "Network address of the uplink interface (CIDR notation)"
#~ msgstr "Síťová adresa uplink rozhraní (CIDR notace)"
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Kde přestat přidělovat IP adresy (standardně 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "DHCP rozhraní"
-
#~ msgid "Where to start assigning IP addresses (default 10)"
#~ msgstr "Odkud začít přidělovat IP adresy"
#~ msgid "Enable IEEE 802.1x authentication and listen for EAP requests"
#~ msgstr "Povolit IEEE 802.1x autentizaci a naslouchat požadavkům EAP"
-#~ msgid "Admin password"
-#~ msgstr "Administrátorské heslo"
-
-#~ msgid "Admin user"
-#~ msgstr "Administrátorský uživatel"
-
#~ msgid "Do not check disconnection requests"
#~ msgstr "Neověřovat požadavky na odpojení"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr ""
-#~ "Neověřovat zdrojovou IP adresu požadavku na odpojení protokolu RADIUS"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP"
-
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "Allow OpenID authentication"
#~ msgstr "Povolit autentizaci pomocí OpenID"
#~ msgid "Proxy port"
#~ msgstr "Port Proxy"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "UDP port, určený pro naslouchání požadavkům protokolu RADIUS"
-
#~ msgid "UAM configuration"
#~ msgstr "Konfigurace UAM"
#~ msgid "Use Chilli XML"
#~ msgstr "Použít Chilli XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Výchozí časový limit nečinnosti"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ "Výchozí časový limit nečinnosti, pokud nebyl nastaven pomocí RADIUS "
#~ "(standardně 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Výchozí časový limit sezení"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Nepřesměrovávat na UAM server"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Při úspěšném přihlášení nevracet na UAM server, pouze přesměrovat na "
-#~ "původní URL"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Neprovádět WISPr"
#~ msgid "UAM homepage"
#~ msgstr "Domovská stránka UAM"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr ""
-#~ "URL domovské stránky, na kterou budou přesměrováni neověření uživatelé"
-
#~ msgid "IP address to listen to for authentication of clients"
#~ msgstr "IP adresa, na které naslouchat za účelem ověřování klientů"
#~ msgid "UAM server"
#~ msgstr "UAM server"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL web serveru, sloužícího k ověřování klientů"
-
#~ msgid "UAM user interface"
#~ msgstr "Uživatelské rozhraní UAM"
-#~ msgid "Use status file"
-#~ msgstr "Použít stavový soubor"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Adresář s webovým obsahem"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Adresář, ve kterém je umístěn místní webový obsah."
-
#~ msgid "MAC configuration"
#~ msgstr "Nastavení MAC"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Admin password"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Admin user"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "DHCP interface"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Default idle timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Default interim interval"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Default session timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Directory where embedded local web content is placed"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Do not return to UAM server on login success, just redirect to original URL"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Giv UCI-adgang til luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "IP up script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "NAS ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Netværkskonfiguration"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Password used when performing MAC authentication"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "RADIUS-konfiguration"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "State directory"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "TCP port to bind to for only serving embedded content"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "UAM- og MAC-godkendelse"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL of homepage to redirect unauthenticated users to"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL of web server to use for authenticating clients"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Use status file"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "WISPr Location ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "WISPr Location Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr "Do not check the source IP address of radius disconnect requests"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "UDP Port to listen to for accepting radius requests"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
+
#, fuzzy
#~ msgid "General configuration"
#~ msgstr "General configuration"
#~ msgid "Filename to put the process id"
#~ msgstr "Filename to put the process id"
-#~ msgid "State directory"
-#~ msgstr "State directory"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directory of non-volatile data"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Specifies a pool of dynamic IP addresses"
-#~ msgid "IP down script"
-#~ msgstr "IP down script"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script executed after the tun network interface has been taken down"
-#~ msgid "IP up script"
-#~ msgstr "IP up script"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr ""
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Where to stop assigning IP addresses (default 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "DHCP interface"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet interface to listen to for the downlink interface"
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Admin password"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
-#~ msgid "Admin user"
-#~ msgstr "Admin user"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Do not check disconnection requests"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr "Do not check the source IP address of radius disconnect requests"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "RADIUS disconnect port"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute"
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS location ID"
-#~ msgid "WISPr Location ID"
-#~ msgstr "WISPr Location ID"
-
#~ msgid "RADIUS location name"
#~ msgstr "RADIUS location name"
-#~ msgid "WISPr Location Name"
-#~ msgstr "WISPr Location Name"
-
-#~ msgid "NAS ID"
-#~ msgstr "NAS ID"
-
#~ msgid "Network access server identifier"
#~ msgstr "Network access server identifier"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "UDP Port to listen to for accepting radius requests"
-
#~ msgid "Proxy secret"
#~ msgstr "Proxy secret"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Return the so-called Chilli XML along with WISPr XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Default idle timeout"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Default interim interval"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Default session timeout"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Do not redirect to UAM server"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Do not do WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
-
#~ msgid "Post auth proxy"
#~ msgstr "Post auth proxy"
#~ msgid "UAM homepage"
#~ msgstr "UAM homepage"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "URL of homepage to redirect unauthenticated users to"
-
#~ msgid "UAM static content port"
#~ msgstr "UAM static content port"
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "TCP port to bind to for only serving embedded content"
-
#~ msgid "UAM listening address"
#~ msgstr "UAM listening address"
#~ msgid "UAM server"
#~ msgstr "UAM server"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL of web server to use for authenticating clients"
-
#~ msgid "UAM user interface"
#~ msgstr "UAM user interface"
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
-#~ msgid "Use status file"
-#~ msgstr "Use status file"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Web content directory"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Directory where embedded local web content is placed"
-
#~ msgid "MAC configuration"
#~ msgstr "MAC configuration"
#~ msgid "Password"
#~ msgstr "Password"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Password used when performing MAC authentication"
-
#~ msgid "Suffix"
#~ msgstr "Suffix"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.2-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Administratorkennwort"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+#, fuzzy
+msgid "Admin user"
+msgstr "Adminstratorenkennung"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+#, fuzzy
+msgid "DHCP interface"
+msgstr "Netzwerk/TUN Konfiguration"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+#, fuzzy
+msgid "Directory where embedded local web content is placed"
+msgstr "Netzwerk/TUN Konfiguration"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+#, fuzzy
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Netzwerk/TUN Konfiguration"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+#, fuzzy
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr "Netzwerk/TUN Konfiguration"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Gewähre UCI Zugriff auf luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down Skript"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+#, fuzzy
+msgid "IP up script"
+msgstr "Netzwerk/TUN Konfiguration"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+#, fuzzy
+msgid "NAS ID"
+msgstr "Netzwerk/TUN Konfiguration"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+#, fuzzy
+msgid "NAS IP"
+msgstr "Netzwerk/TUN Konfiguration"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+#, fuzzy
+msgid "NAS MAC"
+msgstr "Netzwerk/TUN Konfiguration"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Netzwerk-Konfiguration"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+#, fuzzy
+msgid "Password used when performing MAC authentication"
+msgstr "Netzwerk/TUN Konfiguration"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "RADIUS Konfiguration"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+#, fuzzy
+msgid "State directory"
+msgstr "Statisches Verzeichniss"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+#, fuzzy
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "Domain Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "UAM- und MAC-Authentifizierung"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+#, fuzzy
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "Domain Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+#, fuzzy
+msgid "URL of web server to use for authenticating clients"
+msgstr "Domain Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+#, fuzzy
+msgid "WISPr Location ID"
+msgstr "Netzwerk/TUN Konfiguration"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+#, fuzzy
+msgid "WISPr Location Name"
+msgstr "Netzwerk/TUN Konfiguration"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#, fuzzy
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr "Prüft nicht die Quell-IP einer RADIUS Verbindungstrennungsanfrage."
+
+#, fuzzy
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "Netzwerk/TUN Konfiguration"
+
#~ msgid "General configuration"
#~ msgstr "Allgemeine Einstellungen"
#~ msgid "Filename to put the process id"
#~ msgstr ""
-#~ "Name der Datei, in der die <abbr title=\"Prozessindentifikationsnummer"
-#~ "\">Pid</abbr> gespeichert wird"
-
-#, fuzzy
-#~ msgid "State directory"
-#~ msgstr "Statisches Verzeichniss"
+#~ "Name der Datei, in der die <abbr "
+#~ "title=\"Prozessindentifikationsnummer\">Pid</abbr> gespeichert wird"
#~ msgid "Directory of non-volatile data"
#~ msgstr "Verzeichniss für statische Daten"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Legt einen Bereich von dynamischen IP-Adressen fest"
-#~ msgid "IP down script"
-#~ msgstr "IP down Skript"
-
#, fuzzy
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr ""
#~ "Script, das nach einer Umwandlung von einer autorisierten zu einer "
#~ "unautorisierten Sitzung ausgeführt wird"
-#, fuzzy
-#~ msgid "IP up script"
-#~ msgstr "Netzwerk/TUN Konfiguration"
-
#, fuzzy
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Netzwerk/TUN Konfiguration"
-#, fuzzy
-#~ msgid "DHCP interface"
-#~ msgstr "Netzwerk/TUN Konfiguration"
-
#, fuzzy
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Netzwerk/TUN Konfiguration"
#~ "Erlaubt das Aktuallisieren der Sitzungsparameter mit RADIUS-attributen, "
#~ "die im der Konten-Antwort enthalten sind"
-#~ msgid "Admin password"
-#~ msgstr "Administratorkennwort"
-
#, fuzzy
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "Kennwort zur Administratoren-Authentifizierung um die chilli- "
#~ "konfigurationen aufzunehmen und eine Systemsitzung fürs Gerät zu erstellen"
-#, fuzzy
-#~ msgid "Admin user"
-#~ msgstr "Adminstratorenkennung"
-
#, fuzzy
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ msgid "Do not check disconnection requests"
#~ msgstr "Ignoriere die Verbindungstrennungsanfragen"
-#, fuzzy
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr "Prüft nicht die Quell-IP einer RADIUS Verbindungstrennungsanfrage."
-
#, fuzzy
#~ msgid "RADIUS disconnect port"
#~ msgstr "Port für die Verbindungstrennung"
-#, fuzzy
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "Netzwerk/TUN Konfiguration"
-
-#, fuzzy
-#~ msgid "NAS IP"
-#~ msgstr "Netzwerk/TUN Konfiguration"
-
#, fuzzy
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Netzwerk/TUN Konfiguration"
-#, fuzzy
-#~ msgid "NAS MAC"
-#~ msgstr "Netzwerk/TUN Konfiguration"
-
#, fuzzy
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "Netzwerk/TUN Konfiguration"
#~ msgid "RADIUS location ID"
#~ msgstr "Netzwerk/TUN Konfiguration"
-#, fuzzy
-#~ msgid "WISPr Location ID"
-#~ msgstr "Netzwerk/TUN Konfiguration"
-
#, fuzzy
#~ msgid "RADIUS location name"
#~ msgstr "Netzwerk/TUN Konfiguration"
-#, fuzzy
-#~ msgid "WISPr Location Name"
-#~ msgstr "Netzwerk/TUN Konfiguration"
-
-#, fuzzy
-#~ msgid "NAS ID"
-#~ msgstr "Netzwerk/TUN Konfiguration"
-
#, fuzzy
#~ msgid "Network access server identifier"
#~ msgstr "Netzwerk/TUN Konfiguration"
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Domain Name"
-#, fuzzy
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr "Netzwerk/TUN Konfiguration"
-
#, fuzzy
#~ msgid "Do not do WISPr"
#~ msgstr "Domain Name"
-#, fuzzy
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Netzwerk/TUN Konfiguration"
-
#, fuzzy
#~ msgid "Allowed resources"
#~ msgstr "Domain Name"
#~ msgid "UAM homepage"
#~ msgstr "Domain Name"
-#, fuzzy
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "Domain Name"
-
#, fuzzy
#~ msgid "UAM static content port"
#~ msgstr "Domain Name"
-#, fuzzy
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "Domain Name"
-
#, fuzzy
#~ msgid "UAM listening address"
#~ msgstr "Domain Name"
#~ msgid "UAM server"
#~ msgstr "Domain Name"
-#, fuzzy
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "Domain Name"
-
#, fuzzy
#~ msgid "UAM user interface"
#~ msgstr "Domain Name"
#~ msgid "Web content directory"
#~ msgstr "Domain Name"
-#, fuzzy
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Netzwerk/TUN Konfiguration"
-
#, fuzzy
#~ msgid "MAC configuration"
#~ msgstr "Netzwerk/TUN Konfiguration"
#~ msgid "Password"
#~ msgstr "Netzwerk/TUN Konfiguration"
-#, fuzzy
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Netzwerk/TUN Konfiguration"
-
#, fuzzy
#~ msgid "Suffix"
#~ msgstr "Netzwerk/TUN Konfiguration"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.4-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Κωδικός πρόσβασης διαχειριστή"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "Διεπαφή DHCP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Παραχωρήστε πρόσβαση UCI στο luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Ρύθμιση Δικτύου"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Ρύθμιση RADIUS"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "Έλεγχος ταυτότητας UAM και MAC"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
#~ msgid "General configuration"
#~ msgstr "Γενική παραμετροποίηση"
#~ msgid "DHCP configuration"
#~ msgstr "Παραμετροποίηση DHCP"
-#~ msgid "DHCP interface"
-#~ msgstr "Διεπαφή DHCP"
-
#~ msgid "Enable IEEE 802.1x"
#~ msgstr "Ενεργοποίηση IEEE 802.1x"
-#~ msgid "Admin password"
-#~ msgstr "Κωδικός πρόσβασης διαχειριστή"
-
#~ msgid "Location name"
#~ msgstr "Όνομα τοποθεσίας"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.8.1-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Admin password"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Admin user"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "DHCP interface"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Default idle timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Default interim interval"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Default session timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Directory where embedded local web content is placed"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Do not return to UAM server on login success, just redirect to original URL"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Myönnä UCI-pääsy luci-app-coovachilli:lle"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "IP up script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "NAS ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Verkkomääritykset"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Password used when performing MAC authentication"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "RADIUS-määritykset"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "State directory"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "TCP port to bind to for only serving embedded content"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "UAM- ja MAC-todennus"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL of homepage to redirect unauthenticated users to"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL of web server to use for authenticating clients"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Use status file"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "WISPr Location ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "WISPr Location Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr "Do not check the source IP address of radius disconnect requests"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "UDP Port to listen to for accepting radius requests"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
+
#, fuzzy
#~ msgid "General configuration"
#~ msgstr "General configuration"
#~ msgid "Filename to put the process id"
#~ msgstr "Filename to put the process id"
-#~ msgid "State directory"
-#~ msgstr "State directory"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directory of non-volatile data"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Specifies a pool of dynamic IP addresses"
-#~ msgid "IP down script"
-#~ msgstr "IP down script"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script executed after the tun network interface has been taken down"
-#~ msgid "IP up script"
-#~ msgstr "IP up script"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr ""
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Where to stop assigning IP addresses (default 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "DHCP interface"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet interface to listen to for the downlink interface"
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Admin password"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
-#~ msgid "Admin user"
-#~ msgstr "Admin user"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Do not check disconnection requests"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr "Do not check the source IP address of radius disconnect requests"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "RADIUS disconnect port"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute"
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS location ID"
-#~ msgid "WISPr Location ID"
-#~ msgstr "WISPr Location ID"
-
#~ msgid "RADIUS location name"
#~ msgstr "RADIUS location name"
-#~ msgid "WISPr Location Name"
-#~ msgstr "WISPr Location Name"
-
-#~ msgid "NAS ID"
-#~ msgstr "NAS ID"
-
#~ msgid "Network access server identifier"
#~ msgstr "Network access server identifier"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "UDP Port to listen to for accepting radius requests"
-
#~ msgid "Proxy secret"
#~ msgstr "Proxy secret"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Return the so-called Chilli XML along with WISPr XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Default idle timeout"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Default interim interval"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Default session timeout"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Do not redirect to UAM server"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Do not do WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
-
#~ msgid "Post auth proxy"
#~ msgstr "Post auth proxy"
#~ msgid "UAM homepage"
#~ msgstr "UAM homepage"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "URL of homepage to redirect unauthenticated users to"
-
#~ msgid "UAM static content port"
#~ msgstr "UAM static content port"
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "TCP port to bind to for only serving embedded content"
-
#~ msgid "UAM listening address"
#~ msgstr "UAM listening address"
#~ msgid "UAM server"
#~ msgstr "UAM server"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL of web server to use for authenticating clients"
-
#~ msgid "UAM user interface"
#~ msgstr "UAM user interface"
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
-#~ msgid "Use status file"
-#~ msgstr "Use status file"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Web content directory"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Directory where embedded local web content is placed"
-
#~ msgid "MAC configuration"
#~ msgstr "MAC configuration"
#~ msgid "Password"
#~ msgstr "Password"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Password used when performing MAC authentication"
-
#~ msgid "Suffix"
#~ msgstr "Suffix"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.1-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Conceder acceso UCI para luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "Scripts de bajada IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "Script de subida IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Configuración de red"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Configuración de RADIUS"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "Directorio de estado"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "Autenticación UAM y MAC"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
#~ msgid "General configuration"
#~ msgstr "Configuración General"
#~ msgid "Filename to put the process id"
#~ msgstr "Nombre de archivo donde poner el ID del proceso"
-#~ msgid "State directory"
-#~ msgstr "Directorio de estado"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directorio de datos no volátiles"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Especifica un conjunto de direcciones IP Dinámicas"
-#~ msgid "IP down script"
-#~ msgstr "Scripts de bajada IP"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script ejecutado después de que la red de interfaz tun sea bajado"
-
-#~ msgid "IP up script"
-#~ msgstr "Script de subida IP"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.2-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Admin password"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Admin user"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "DHCP interface"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Default idle timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Default interim interval"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Default session timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Directory where embedded local web content is placed"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Do not return to UAM server on login success, just redirect to original URL"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Myöntää UCI pääsy luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "IP up script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "NAS ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Verkon määritys"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Password used when performing MAC authentication"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "RADIUS-määritys"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "State directory"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "TCP port to bind to for only serving embedded content"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "UAM- ja MAC-todennus"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL of homepage to redirect unauthenticated users to"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL of web server to use for authenticating clients"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Use status file"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "WISPr Location ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "WISPr Location Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr "Do not check the source IP address of radius disconnect requests"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "UDP Port to listen to for accepting radius requests"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
+
#, fuzzy
#~ msgid "General configuration"
#~ msgstr "General configuration"
#~ msgid "Filename to put the process id"
#~ msgstr "Filename to put the process id"
-#~ msgid "State directory"
-#~ msgstr "State directory"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directory of non-volatile data"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Specifies a pool of dynamic IP addresses"
-#~ msgid "IP down script"
-#~ msgstr "IP down script"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script executed after the tun network interface has been taken down"
-#~ msgid "IP up script"
-#~ msgstr "IP up script"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr ""
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Where to stop assigning IP addresses (default 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "DHCP interface"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet interface to listen to for the downlink interface"
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Admin password"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
-#~ msgid "Admin user"
-#~ msgstr "Admin user"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Do not check disconnection requests"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr "Do not check the source IP address of radius disconnect requests"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "RADIUS disconnect port"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute"
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS location ID"
-#~ msgid "WISPr Location ID"
-#~ msgstr "WISPr Location ID"
-
#~ msgid "RADIUS location name"
#~ msgstr "RADIUS location name"
-#~ msgid "WISPr Location Name"
-#~ msgstr "WISPr Location Name"
-
-#~ msgid "NAS ID"
-#~ msgstr "NAS ID"
-
#~ msgid "Network access server identifier"
#~ msgstr "Network access server identifier"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "UDP Port to listen to for accepting radius requests"
-
#~ msgid "Proxy secret"
#~ msgstr "Proxy secret"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Return the so-called Chilli XML along with WISPr XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Default idle timeout"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Default interim interval"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Default session timeout"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Do not redirect to UAM server"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Do not do WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
-
#~ msgid "Post auth proxy"
#~ msgstr "Post auth proxy"
#~ msgid "UAM homepage"
#~ msgstr "UAM homepage"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "URL of homepage to redirect unauthenticated users to"
-
#~ msgid "UAM static content port"
#~ msgstr "UAM static content port"
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "TCP port to bind to for only serving embedded content"
-
#~ msgid "UAM listening address"
#~ msgstr "UAM listening address"
#~ msgid "UAM server"
#~ msgstr "UAM server"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL of web server to use for authenticating clients"
-
#~ msgid "UAM user interface"
#~ msgstr "UAM user interface"
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
-#~ msgid "Use status file"
-#~ msgstr "Use status file"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Web content directory"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Directory where embedded local web content is placed"
-
#~ msgid "MAC configuration"
#~ msgstr "MAC configuration"
#~ msgid "Password"
#~ msgstr "Password"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Password used when performing MAC authentication"
-
#~ msgid "Suffix"
#~ msgstr "Suffix"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.9-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Accorder l’accès à l’UCI pour luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Configuration Réseau"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Configuration RADIUS"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "Authentification UAM et MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
"n>6 && n<11) ? 3 : 4;\n"
"X-Generator: Weblate 5.8-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Admin password"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Admin user"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "DHCP interface"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Default idle timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Default interim interval"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Default session timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Directory where embedded local web content is placed"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Do not return to UAM server on login success, just redirect to original URL"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Deonaigh rochtain UCI do luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "IP up script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "NAS ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Cumraíocht Líonra"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Password used when performing MAC authentication"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Cumraíocht RADIUS"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "State directory"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "TCP port to bind to for only serving embedded content"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "Fíordheimhniú UAM agus MAC"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL of homepage to redirect unauthenticated users to"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL of web server to use for authenticating clients"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Use status file"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "WISPr Location ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "WISPr Location Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr "Do not check the source IP address of radius disconnect requests"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "UDP Port to listen to for accepting radius requests"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
+
#, fuzzy
#~ msgid "General configuration"
#~ msgstr "General configuration"
#~ msgid "Filename to put the process id"
#~ msgstr "Filename to put the process id"
-#~ msgid "State directory"
-#~ msgstr "State directory"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directory of non-volatile data"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Specifies a pool of dynamic IP addresses"
-#~ msgid "IP down script"
-#~ msgstr "IP down script"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script executed after the tun network interface has been taken down"
-#~ msgid "IP up script"
-#~ msgstr "IP up script"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr ""
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Where to stop assigning IP addresses (default 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "DHCP interface"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet interface to listen to for the downlink interface"
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Admin password"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
-#~ msgid "Admin user"
-#~ msgstr "Admin user"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Do not check disconnection requests"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr "Do not check the source IP address of radius disconnect requests"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "RADIUS disconnect port"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute"
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS location ID"
-#~ msgid "WISPr Location ID"
-#~ msgstr "WISPr Location ID"
-
#~ msgid "RADIUS location name"
#~ msgstr "RADIUS location name"
-#~ msgid "WISPr Location Name"
-#~ msgstr "WISPr Location Name"
-
-#~ msgid "NAS ID"
-#~ msgstr "NAS ID"
-
#~ msgid "Network access server identifier"
#~ msgstr "Network access server identifier"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "UDP Port to listen to for accepting radius requests"
-
#~ msgid "Proxy secret"
#~ msgstr "Proxy secret"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Return the so-called Chilli XML along with WISPr XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Default idle timeout"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Default interim interval"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Default session timeout"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Do not redirect to UAM server"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Do not do WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
-
#~ msgid "Post auth proxy"
#~ msgstr "Post auth proxy"
#~ msgid "UAM homepage"
#~ msgstr "UAM homepage"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "URL of homepage to redirect unauthenticated users to"
-
#~ msgid "UAM static content port"
#~ msgstr "UAM static content port"
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "TCP port to bind to for only serving embedded content"
-
#~ msgid "UAM listening address"
#~ msgstr "UAM listening address"
#~ msgid "UAM server"
#~ msgstr "UAM server"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL of web server to use for authenticating clients"
-
#~ msgid "UAM user interface"
#~ msgstr "UAM user interface"
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
-#~ msgid "Use status file"
-#~ msgstr "Use status file"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Web content directory"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Directory where embedded local web content is placed"
-
#~ msgid "MAC configuration"
#~ msgstr "MAC configuration"
#~ msgid "Password"
#~ msgstr "Password"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Password used when performing MAC authentication"
-
#~ msgid "Suffix"
#~ msgstr "Suffix"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 4.16.2-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "קובצ׳ילי CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "הענקת גישת UCI ל־luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "תצורת רשת"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "הגדרת RADIUS"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "אימות UAM ו־MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.0.4\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Admin password"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Admin user"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr ""
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "DHCP interface"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Default idle timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Default interim interval"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Default session timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Directory where embedded local web content is placed"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Do not return to UAM server on login success, just redirect to original URL"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr ""
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "IP up script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "NAS ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr ""
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Password used when performing MAC authentication"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr ""
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "State directory"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "TCP port to bind to for only serving embedded content"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr ""
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL of homepage to redirect unauthenticated users to"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL of web server to use for authenticating clients"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Use status file"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "WISPr Location ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "WISPr Location Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr "Do not check the source IP address of radius disconnect requests"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "UDP Port to listen to for accepting radius requests"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
+
#, fuzzy
#~ msgid "General configuration"
#~ msgstr "General configuration"
#~ msgid "Filename to put the process id"
#~ msgstr "Filename to put the process id"
-#~ msgid "State directory"
-#~ msgstr "State directory"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directory of non-volatile data"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Specifies a pool of dynamic IP addresses"
-#~ msgid "IP down script"
-#~ msgstr "IP down script"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script executed after the tun network interface has been taken down"
-#~ msgid "IP up script"
-#~ msgstr "IP up script"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr ""
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Where to stop assigning IP addresses (default 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "DHCP interface"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet interface to listen to for the downlink interface"
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Admin password"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
-#~ msgid "Admin user"
-#~ msgstr "Admin user"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Do not check disconnection requests"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr "Do not check the source IP address of radius disconnect requests"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "RADIUS disconnect port"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute"
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS location ID"
-#~ msgid "WISPr Location ID"
-#~ msgstr "WISPr Location ID"
-
#~ msgid "RADIUS location name"
#~ msgstr "RADIUS location name"
-#~ msgid "WISPr Location Name"
-#~ msgstr "WISPr Location Name"
-
-#~ msgid "NAS ID"
-#~ msgstr "NAS ID"
-
#~ msgid "Network access server identifier"
#~ msgstr "Network access server identifier"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "UDP Port to listen to for accepting radius requests"
-
#~ msgid "Proxy secret"
#~ msgstr "Proxy secret"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Return the so-called Chilli XML along with WISPr XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Default idle timeout"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Default interim interval"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Default session timeout"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Do not redirect to UAM server"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Do not do WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
-
#~ msgid "Post auth proxy"
#~ msgstr "Post auth proxy"
#~ msgid "UAM homepage"
#~ msgstr "UAM homepage"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "URL of homepage to redirect unauthenticated users to"
-
#~ msgid "UAM static content port"
#~ msgstr "UAM static content port"
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "TCP port to bind to for only serving embedded content"
-
#~ msgid "UAM listening address"
#~ msgstr "UAM listening address"
#~ msgid "UAM server"
#~ msgstr "UAM server"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL of web server to use for authenticating clients"
-
#~ msgid "UAM user interface"
#~ msgstr "UAM user interface"
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
-#~ msgid "Use status file"
-#~ msgstr "Use status file"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Web content directory"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Directory where embedded local web content is placed"
-
#~ msgid "MAC configuration"
#~ msgstr "MAC configuration"
#~ msgid "Password"
#~ msgstr "Password"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Password used when performing MAC authentication"
-
#~ msgid "Suffix"
#~ msgstr "Suffix"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.10-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr ""
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Hálózati beállítás"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "RADIUS beállítás"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "UAM és MAC hitelesítés"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.8.1-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Concedere l'accesso UCI per luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Configurazione della Rete"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Configurazione RAGGIO"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "Autenticazione UAM e MAC"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
#~ msgid "General configuration"
#~ msgstr "Configurazione generale"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.4-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "luci-app-coovachilliにUCIアクセスを許可"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "ネットワーク設定"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "RADIUS 設定"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "UAM および MAC 認証"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.15.1-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Admin password"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Admin user"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "DHCP interface"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Default idle timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Default interim interval"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Default session timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Directory where embedded local web content is placed"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Do not return to UAM server on login success, just redirect to original URL"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "luci-app-coovachilli에 UCI 접근 권한 허용"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "IP up script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "NAS ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "네트워크 설정"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Password used when performing MAC authentication"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "RADIUS 설정"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "State directory"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "TCP port to bind to for only serving embedded content"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "UAM 및 MAC 인증"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL of homepage to redirect unauthenticated users to"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL of web server to use for authenticating clients"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Use status file"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "WISPr Location ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "WISPr Location Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr "Do not check the source IP address of radius disconnect requests"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "UDP Port to listen to for accepting radius requests"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
+
#, fuzzy
#~ msgid "General configuration"
#~ msgstr "General configuration"
#~ msgid "Filename to put the process id"
#~ msgstr "Filename to put the process id"
-#~ msgid "State directory"
-#~ msgstr "State directory"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directory of non-volatile data"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Specifies a pool of dynamic IP addresses"
-#~ msgid "IP down script"
-#~ msgstr "IP down script"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script executed after the tun network interface has been taken down"
-#~ msgid "IP up script"
-#~ msgstr "IP up script"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr ""
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Where to stop assigning IP addresses (default 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "DHCP interface"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet interface to listen to for the downlink interface"
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Admin password"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
-#~ msgid "Admin user"
-#~ msgstr "Admin user"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Do not check disconnection requests"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr "Do not check the source IP address of radius disconnect requests"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "RADIUS disconnect port"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute"
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS location ID"
-#~ msgid "WISPr Location ID"
-#~ msgstr "WISPr Location ID"
-
#~ msgid "RADIUS location name"
#~ msgstr "RADIUS location name"
-#~ msgid "WISPr Location Name"
-#~ msgstr "WISPr Location Name"
-
-#~ msgid "NAS ID"
-#~ msgstr "NAS ID"
-
#~ msgid "Network access server identifier"
#~ msgstr "Network access server identifier"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "UDP Port to listen to for accepting radius requests"
-
#~ msgid "Proxy secret"
#~ msgstr "Proxy secret"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Return the so-called Chilli XML along with WISPr XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Default idle timeout"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Default interim interval"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Default session timeout"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Do not redirect to UAM server"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Do not do WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
-
#~ msgid "Post auth proxy"
#~ msgstr "Post auth proxy"
#~ msgid "UAM homepage"
#~ msgstr "UAM homepage"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "URL of homepage to redirect unauthenticated users to"
-
#~ msgid "UAM static content port"
#~ msgstr "UAM static content port"
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "TCP port to bind to for only serving embedded content"
-
#~ msgid "UAM listening address"
#~ msgstr "UAM listening address"
#~ msgid "UAM server"
#~ msgstr "UAM server"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL of web server to use for authenticating clients"
-
#~ msgid "UAM user interface"
#~ msgstr "UAM user interface"
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
-#~ msgid "Use status file"
-#~ msgstr "Use status file"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Web content directory"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Directory where embedded local web content is placed"
-
#~ msgid "MAC configuration"
#~ msgstr "MAC configuration"
#~ msgid "Password"
#~ msgstr "Password"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Password used when performing MAC authentication"
-
#~ msgid "Suffix"
#~ msgstr "Suffix"
"1 : 2);\n"
"X-Generator: Weblate 5.3-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Admin password"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Admin user"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "„CoovaChilli“"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "DHCP interface"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Default idle timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Default interim interval"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Default session timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Directory where embedded local web content is placed"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Do not return to UAM server on login success, just redirect to original URL"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Suteikti „UCI“ prieigą – „luci-app-coovachilli“"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "IP up script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "NAS ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Tinklo konfigūracija"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Password used when performing MAC authentication"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "„RADIUS“ konfigūracija"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "State directory"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "TCP port to bind to for only serving embedded content"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "„UAM“ ir „MAC“ autentifikavimas"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL of homepage to redirect unauthenticated users to"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL of web server to use for authenticating clients"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Use status file"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "WISPr Location ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "WISPr Location Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr "Do not check the source IP address of radius disconnect requests"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "UDP Port to listen to for accepting radius requests"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
+
#, fuzzy
#~ msgid "General configuration"
#~ msgstr "General configuration"
#~ msgid "Filename to put the process id"
#~ msgstr "Filename to put the process id"
-#~ msgid "State directory"
-#~ msgstr "State directory"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directory of non-volatile data"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Specifies a pool of dynamic IP addresses"
-#~ msgid "IP down script"
-#~ msgstr "IP down script"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script executed after the tun network interface has been taken down"
-#~ msgid "IP up script"
-#~ msgstr "IP up script"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr ""
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Where to stop assigning IP addresses (default 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "DHCP interface"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet interface to listen to for the downlink interface"
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Admin password"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
-#~ msgid "Admin user"
-#~ msgstr "Admin user"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Do not check disconnection requests"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr "Do not check the source IP address of radius disconnect requests"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "RADIUS disconnect port"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute"
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS location ID"
-#~ msgid "WISPr Location ID"
-#~ msgstr "WISPr Location ID"
-
#~ msgid "RADIUS location name"
#~ msgstr "RADIUS location name"
-#~ msgid "WISPr Location Name"
-#~ msgstr "WISPr Location Name"
-
-#~ msgid "NAS ID"
-#~ msgstr "NAS ID"
-
#~ msgid "Network access server identifier"
#~ msgstr "Network access server identifier"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "UDP Port to listen to for accepting radius requests"
-
#~ msgid "Proxy secret"
#~ msgstr "Proxy secret"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Return the so-called Chilli XML along with WISPr XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Default idle timeout"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Default interim interval"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Default session timeout"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Do not redirect to UAM server"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Do not do WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
-
#~ msgid "Post auth proxy"
#~ msgstr "Post auth proxy"
#~ msgid "UAM homepage"
#~ msgstr "UAM homepage"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "URL of homepage to redirect unauthenticated users to"
-
#~ msgid "UAM static content port"
#~ msgstr "UAM static content port"
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "TCP port to bind to for only serving embedded content"
-
#~ msgid "UAM listening address"
#~ msgstr "UAM listening address"
#~ msgid "UAM server"
#~ msgstr "UAM server"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL of web server to use for authenticating clients"
-
#~ msgid "UAM user interface"
#~ msgstr "UAM user interface"
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
-#~ msgid "Use status file"
-#~ msgstr "Use status file"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Web content directory"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Directory where embedded local web content is placed"
-
#~ msgid "MAC configuration"
#~ msgstr "MAC configuration"
#~ msgid "Password"
#~ msgstr "Password"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Password used when performing MAC authentication"
-
#~ msgid "Suffix"
#~ msgstr "Suffix"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.2-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Admin password"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Admin user"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "कूवाचिल्ली"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "DHCP interface"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Default idle timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Default interim interval"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Default session timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Directory where embedded local web content is placed"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Do not return to UAM server on login success, just redirect to original URL"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "luci-app-coovachilliसाठी यूसीआय प्रवेश मंजूर करा"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "IP up script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "NAS ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "नेटवर्क कॉन्फिगरेशन"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Password used when performing MAC authentication"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "रेडियस कॉन्फिगरेशन"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "State directory"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "TCP port to bind to for only serving embedded content"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "यूएएम आणि मॅक प्रमाणीकरण"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL of homepage to redirect unauthenticated users to"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL of web server to use for authenticating clients"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Use status file"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "WISPr Location ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "WISPr Location Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr "Do not check the source IP address of radius disconnect requests"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "UDP Port to listen to for accepting radius requests"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
+
#, fuzzy
#~ msgid "General configuration"
#~ msgstr "General configuration"
#~ msgid "Filename to put the process id"
#~ msgstr "Filename to put the process id"
-#~ msgid "State directory"
-#~ msgstr "State directory"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directory of non-volatile data"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Specifies a pool of dynamic IP addresses"
-#~ msgid "IP down script"
-#~ msgstr "IP down script"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script executed after the tun network interface has been taken down"
-#~ msgid "IP up script"
-#~ msgstr "IP up script"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr ""
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Where to stop assigning IP addresses (default 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "DHCP interface"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet interface to listen to for the downlink interface"
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Admin password"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
-#~ msgid "Admin user"
-#~ msgstr "Admin user"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Do not check disconnection requests"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr "Do not check the source IP address of radius disconnect requests"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "RADIUS disconnect port"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute"
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS location ID"
-#~ msgid "WISPr Location ID"
-#~ msgstr "WISPr Location ID"
-
#~ msgid "RADIUS location name"
#~ msgstr "RADIUS location name"
-#~ msgid "WISPr Location Name"
-#~ msgstr "WISPr Location Name"
-
-#~ msgid "NAS ID"
-#~ msgstr "NAS ID"
-
#~ msgid "Network access server identifier"
#~ msgstr "Network access server identifier"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "UDP Port to listen to for accepting radius requests"
-
#~ msgid "Proxy secret"
#~ msgstr "Proxy secret"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Return the so-called Chilli XML along with WISPr XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Default idle timeout"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Default interim interval"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Default session timeout"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Do not redirect to UAM server"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Do not do WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
-
#~ msgid "Post auth proxy"
#~ msgstr "Post auth proxy"
#~ msgid "UAM homepage"
#~ msgstr "UAM homepage"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "URL of homepage to redirect unauthenticated users to"
-
#~ msgid "UAM static content port"
#~ msgstr "UAM static content port"
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "TCP port to bind to for only serving embedded content"
-
#~ msgid "UAM listening address"
#~ msgstr "UAM listening address"
#~ msgid "UAM server"
#~ msgstr "UAM server"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL of web server to use for authenticating clients"
-
#~ msgid "UAM user interface"
#~ msgstr "UAM user interface"
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
-#~ msgid "Use status file"
-#~ msgstr "Use status file"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Web content directory"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Directory where embedded local web content is placed"
-
#~ msgid "MAC configuration"
#~ msgstr "MAC configuration"
#~ msgid "Password"
#~ msgstr "Password"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Password used when performing MAC authentication"
-
#~ msgid "Suffix"
#~ msgstr "Suffix"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr ""
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr ""
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr ""
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr ""
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.18.1\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Innvilg UCI-tilgang for luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Nettverk Konfigurasjon"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "RADIUS Konfigurasjon"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "UAM og MAC Autentisering"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.18-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Admin password"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Admin user"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "DHCP interface"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Default idle timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Default interim interval"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Default session timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Directory where embedded local web content is placed"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Do not return to UAM server on login success, just redirect to original URL"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Verleen UCI toegang voor luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "IP up script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "NAS ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Netwerk configuratie"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Password used when performing MAC authentication"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "RADIUS-configuratie"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "State directory"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "TCP port to bind to for only serving embedded content"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "UAM en MAC-authenticatie"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL of homepage to redirect unauthenticated users to"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL of web server to use for authenticating clients"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Use status file"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "WISPr Location ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "WISPr Location Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr "Do not check the source IP address of radius disconnect requests"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "UDP Port to listen to for accepting radius requests"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
+
#, fuzzy
#~ msgid "General configuration"
#~ msgstr "General configuration"
#~ msgid "Filename to put the process id"
#~ msgstr "Filename to put the process id"
-#~ msgid "State directory"
-#~ msgstr "State directory"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directory of non-volatile data"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Specifies a pool of dynamic IP addresses"
-#~ msgid "IP down script"
-#~ msgstr "IP down script"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script executed after the tun network interface has been taken down"
-#~ msgid "IP up script"
-#~ msgstr "IP up script"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr ""
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Where to stop assigning IP addresses (default 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "DHCP interface"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet interface to listen to for the downlink interface"
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Admin password"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
-#~ msgid "Admin user"
-#~ msgstr "Admin user"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Do not check disconnection requests"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr "Do not check the source IP address of radius disconnect requests"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "RADIUS disconnect port"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute"
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS location ID"
-#~ msgid "WISPr Location ID"
-#~ msgstr "WISPr Location ID"
-
#~ msgid "RADIUS location name"
#~ msgstr "RADIUS location name"
-#~ msgid "WISPr Location Name"
-#~ msgstr "WISPr Location Name"
-
-#~ msgid "NAS ID"
-#~ msgstr "NAS ID"
-
#~ msgid "Network access server identifier"
#~ msgstr "Network access server identifier"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "UDP Port to listen to for accepting radius requests"
-
#~ msgid "Proxy secret"
#~ msgstr "Proxy secret"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Return the so-called Chilli XML along with WISPr XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Default idle timeout"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Default interim interval"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Default session timeout"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Do not redirect to UAM server"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Do not do WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
-
#~ msgid "Post auth proxy"
#~ msgstr "Post auth proxy"
#~ msgid "UAM homepage"
#~ msgstr "UAM homepage"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "URL of homepage to redirect unauthenticated users to"
-
#~ msgid "UAM static content port"
#~ msgstr "UAM static content port"
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "TCP port to bind to for only serving embedded content"
-
#~ msgid "UAM listening address"
#~ msgstr "UAM listening address"
#~ msgid "UAM server"
#~ msgstr "UAM server"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL of web server to use for authenticating clients"
-
#~ msgid "UAM user interface"
#~ msgstr "UAM user interface"
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
-#~ msgid "Use status file"
-#~ msgstr "Use status file"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Web content directory"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Directory where embedded local web content is placed"
-
#~ msgid "MAC configuration"
#~ msgstr "MAC configuration"
#~ msgid "Password"
#~ msgstr "Password"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Password used when performing MAC authentication"
-
#~ msgid "Suffix"
#~ msgstr "Suffix"
"|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.2-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Przyznaj luci-app-coovachilli dostęp do UCI"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Konfiguracja sieci"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Konfiguracja RADIUS"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "Uwierzytelnianie UAM oraz MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.7-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+#, fuzzy
+msgid "Admin user"
+msgstr "Configuração de rede/tun"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+#, fuzzy
+msgid "DHCP interface"
+msgstr "Configuração de rede/tun"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+#, fuzzy
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+"Usado para informar o cliente sobre o dominio a utilizar para pedidos DNS"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Conceder UCI acesso ao luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+#, fuzzy
+msgid "IP down script"
+msgstr "Script de rede/tun em baixo"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+#, fuzzy
+msgid "IP up script"
+msgstr "Script de rede/tun em cima"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+#, fuzzy
+msgid "NAS IP"
+msgstr "Configuração de rede/tun"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+#, fuzzy
+msgid "NAS MAC"
+msgstr "Configuração de rede/tun"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Configuração da rede"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Configuração RADIUS"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "Directorio de estado"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+#, fuzzy
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+"Usado para informar o cliente sobre o dominio a utilizar para pedidos DNS"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "Autenticação UAM e MAC"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+#, fuzzy
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+"Usado para informar o cliente sobre o dominio a utilizar para pedidos DNS"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+#, fuzzy
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+"Usado para informar o cliente sobre o dominio a utilizar para pedidos DNS"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
#~ msgid "General configuration"
#~ msgstr "Configuração Geral"
#~ msgid "Filename to put the process id"
#~ msgstr "Nome do ficheiro onde será guardado o PID"
-#~ msgid "State directory"
-#~ msgstr "Directorio de estado"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directorio para dados não-volateis"
#~ "Usado para informar o cliente sobre o endereço de servidor DNS a usar "
#~ "para a resolução de nomes"
-#, fuzzy
-#~ msgid "IP down script"
-#~ msgstr "Script de rede/tun em baixo"
-
#, fuzzy
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr ""
#~ "Script executado após o estado de uma sessão ser alterado de autorizado "
#~ "para não-autorizado "
-#, fuzzy
-#~ msgid "IP up script"
-#~ msgstr "Script de rede/tun em cima"
-
#, fuzzy
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgid "DHCP end number"
#~ msgstr "Configuração de rede/tun"
-#, fuzzy
-#~ msgid "DHCP interface"
-#~ msgstr "Configuração de rede/tun"
-
#, fuzzy
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Configuração de rede/tun"
#~ msgid "Use a DHCP lease of seconds (default 600)"
#~ msgstr "Configuração de rede/tun"
-#, fuzzy
-#~ msgid "Admin user"
-#~ msgstr "Configuração de rede/tun"
-
-#, fuzzy
-#~ msgid "NAS IP"
-#~ msgstr "Configuração de rede/tun"
-
#, fuzzy
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Configuração de rede/tun"
-#, fuzzy
-#~ msgid "NAS MAC"
-#~ msgstr "Configuração de rede/tun"
-
#, fuzzy
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "Configuração de rede/tun"
#~ msgid "UAM homepage"
#~ msgstr "Domínio"
-#, fuzzy
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr ""
-#~ "Usado para informar o cliente sobre o dominio a utilizar para pedidos DNS"
-
#, fuzzy
#~ msgid "UAM static content port"
#~ msgstr "Domínio"
-#, fuzzy
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr ""
-#~ "Usado para informar o cliente sobre o dominio a utilizar para pedidos DNS"
-
#, fuzzy
#~ msgid "UAM listening address"
#~ msgstr "Domínio"
#~ msgid "UAM server"
#~ msgstr "Domínio"
-#, fuzzy
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr ""
-#~ "Usado para informar o cliente sobre o dominio a utilizar para pedidos DNS"
-
#, fuzzy
#~ msgid "UAM user interface"
#~ msgstr "Domínio"
#~ msgstr ""
#~ "Usado para informar o cliente sobre o dominio a utilizar para pedidos DNS"
-#, fuzzy
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr ""
-#~ "Usado para informar o cliente sobre o dominio a utilizar para pedidos DNS"
-
#, fuzzy
#~ msgid "MAC configuration"
#~ msgstr "Configuração de rede/tun"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.1-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Senha do Administrador"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Usuário administrador"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "Interface DHCP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Estouro de tempo de ociosidade padrão"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Intervalo padrão como interino"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Estouro de tempo padrão da sessão"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Diretório onde o conteúdo web local embutido fica localizado"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+"Não faça qualquer XML do WISPr. Ao invés disto, assuma que o servidor está "
+"fazendo isto"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Não redirecione para o servidor UAM quando o login for bem sucedido. Somente "
+"redirecione para a URL original"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Conceda acesso UCI ao luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "Script de descida da rede IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "Script de subida da rede IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "ID do NAS"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "IP do NAS"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "MAC do NAS"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Configuração de rede"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Senha usada para realizar a autenticação MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Configuração de RADIUS"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "Diretório de estado"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "Porta TCP para somente servidor conteúdo embutido"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "Autenticação UAM e MAC"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL da página para onde redirecionar os usuários não autenticados"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL do servidor web usado para autenticar os clientes"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Usar o arquivo de estado"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "ID da Localização WISPr"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "Nome da localização WISPr"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr ""
+#~ "Não verifique o endereço IP de origem das requisições de desconexão do "
+#~ "radius"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "Porta UDP para aceitar requisições radius"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr ""
+#~ "Porta UDP de escuta para aceitar requisições de desconexão do radius"
+
#~ msgid "General configuration"
#~ msgstr "Configuração Geral"
#~ msgid "Filename to put the process id"
#~ msgstr "Nome do arquivo onde será armazenado o PID"
-#~ msgid "State directory"
-#~ msgstr "Diretório de estado"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Diretório para dados não-voláteis"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Especifica um conjunto de endereços IP dinâmicos"
-#~ msgid "IP down script"
-#~ msgstr "Script de descida da rede IP"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script executado após a rede da interface tun seja baixada"
-#~ msgid "IP up script"
-#~ msgstr "Script de subida da rede IP"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr "Script executado após a rede da interface TUN/TAP seja levantadas"
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Onde terminar a atribuição de endereços IP (padrão 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "Interface DHCP"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Interface Ethernet para escutar por conexões dos clientes"
#~ "Permite a atualização dos parâmetros da sessão com atributos RADIUS "
#~ "enviados na Contabilidade-Resposta"
-#~ msgid "Admin password"
-#~ msgstr "Senha do Administrador"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Senha para a autenticação do usuário administrador para pegar as "
#~ "configurações do chili e estabelecer uma sessão de dispositivo \"sistema\""
-#~ msgid "Admin user"
-#~ msgstr "Usuário administrador"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Não verifique as requisições de desconexão"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr ""
-#~ "Não verifique o endereço IP de origem das requisições de desconexão do "
-#~ "radius"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "Porta de desconexão do RADIUS"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr ""
-#~ "Porta UDP de escuta para aceitar requisições de desconexão do radius"
-
-#~ msgid "NAS IP"
-#~ msgstr "IP do NAS"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Valor para usar no atributo NAS-IP-Address do RADIUS"
-#~ msgid "NAS MAC"
-#~ msgstr "MAC do NAS"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "Endereço MAC para usar no atributo Called-Station-ID do RADIUS"
#~ msgid "RADIUS location ID"
#~ msgstr "ID da localização do RADIUS"
-#~ msgid "WISPr Location ID"
-#~ msgstr "ID da Localização WISPr"
-
#~ msgid "RADIUS location name"
#~ msgstr "Nome da localização do RADIUS"
-#~ msgid "WISPr Location Name"
-#~ msgstr "Nome da localização WISPr"
-
-#~ msgid "NAS ID"
-#~ msgstr "ID do NAS"
-
#~ msgid "Network access server identifier"
#~ msgstr "Identificador do servidor de acesso à rede"
#~ msgid "Proxy port"
#~ msgstr "Porta do Proxy"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "Porta UDP para aceitar requisições radius"
-
#~ msgid "Proxy secret"
#~ msgstr "Segredo do Proxy"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Retorna o famoso XML do Chili juntamente com o XML do WISPr"
-#~ msgid "Default idle timeout"
-#~ msgstr "Estouro de tempo de ociosidade padrão"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ "Estouro de tempo de ociosidade padrão, a não ser que seja definido pelo "
#~ "RADIUS (padrão é 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Intervalo padrão como interino"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Intervalo padrão como interino para a contabilidade do RADIUS, a não ser "
#~ "que seja definido pelo RADIUS (padrão é 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Estouro de tempo padrão da sessão"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Não redirecionar para servidor UAM"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Não redirecione para o servidor UAM quando o login for bem sucedido. "
-#~ "Somente redirecione para a URL original"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Não faça WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr ""
-#~ "Não faça qualquer XML do WISPr. Ao invés disto, assuma que o servidor "
-#~ "está fazendo isto"
-
#~ msgid "Post auth proxy"
#~ msgstr "Proxy após a autenticação"
#~ msgid "UAM homepage"
#~ msgstr "Página do UAM"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "URL da página para onde redirecionar os usuários não autenticados"
-
#~ msgid "UAM static content port"
#~ msgstr "Porta de conteúdo estático do UAM"
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "Porta TCP para somente servidor conteúdo embutido"
-
#~ msgid "UAM listening address"
#~ msgstr "Endereço de escuta do UAM"
#~ msgid "UAM server"
#~ msgstr "Servidor UAM"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL do servidor web usado para autenticar os clientes"
-
#~ msgid "UAM user interface"
#~ msgstr "Interface do usuário do UAM"
#~ "Um programa estilo init.d para tratar o conteúdo local no servidor web "
#~ "uamuiport"
-#~ msgid "Use status file"
-#~ msgstr "Usar o arquivo de estado"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Diretório de conteúdo Web"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Diretório onde o conteúdo web local embutido fica localizado"
-
#~ msgid "MAC configuration"
#~ msgstr "Configuração do MAC"
#~ msgid "Password"
#~ msgstr "Senha"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Senha usada para realizar a autenticação MAC"
-
#~ msgid "Suffix"
#~ msgstr "Sufixo"
"20)) ? 1 : 2;\n"
"X-Generator: Weblate 4.9.1-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Acordă acces la UCI pentru luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Configurare reţea"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Configurare RADIUS"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "Autentificare UAM şi MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
"X-Generator: Weblate 4.1-dev\n"
"X-Poedit-SourceCharset: UTF-8\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Пароль администратора"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Администратор"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "DHCP интерфейс"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Таймаут ожидания по умолчанию"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Таймаут сессии (значение по умолчанию)"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Директория куда будет помещен встроенный Web-контент"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Не выполнять WISPr XML, предполагая выполнение в бэкенд'е"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Не возвращаться на UAM сервер при удачном входе, перенаправить на исходный "
+"URL"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Предоставить UCI доступ для luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "Скрипт сброса IP-адреса"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "Скрипт установки IP-адреса"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "Идентификатор NAS"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "IP-адрес NAS"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "MAC адрес NAS"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Конфигурация сети"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Пароль для MAC аутентификации"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Конфигурация RADIUS"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "Директория состояния"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "Аутентификация с помощью UAM и MAC"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+"URL домашней страницы для перенаправления пользователей не прошедших "
+"аутентификацию"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL или веб-сервер для аутентификации клиентов"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Использовать статус-файл"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "Идентификатор расположения WISPr"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "Имя расположения WISPr"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr "Не проверять IP-адрес запросов разъединения radius"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "Порт UDP для запросов RADIUS"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "UDP порт для запросов разъединения RADIUS"
+
#~ msgid "General configuration"
#~ msgstr "Общие настройки"
#~ msgid "Filename to put the process id"
#~ msgstr "Имя файла, который будет содержать идентификатор процесса (PID)"
-#~ msgid "State directory"
-#~ msgstr "Директория состояния"
-
#~ msgid "TUN/TAP configuration"
#~ msgstr "TUN/TAP конфигурация"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Определяет диапазон динамических IP адресов"
-#~ msgid "IP down script"
-#~ msgstr "Скрипт сброса IP-адреса"
-
-#~ msgid "IP up script"
-#~ msgstr "Скрипт установки IP-адреса"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr "Скрипт, выполняемый после включения сетевого интерфейса TUN/TAP"
#~ msgid "DHCP end number"
#~ msgstr "Конечное значение DHCP"
-#~ msgid "DHCP interface"
-#~ msgstr "DHCP интерфейс"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet интерфейс для прослушивания downlink-интерфеса"
#~ "Разрешить обновление параметров сессии используя RADIUS атрибуты "
#~ "посланные через Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Пароль администратора"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Пароль администратора для аутентификации пользователя и применения "
#~ "настроек chilli с созданием \"системной\" сессии устройства"
-#~ msgid "Admin user"
-#~ msgstr "Администратор"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Не проверять запросы на разъединение"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr "Не проверять IP-адрес запросов разъединения radius"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "Порт разъединения RADIUS"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "UDP порт для запросов разъединения RADIUS"
-
-#~ msgid "NAS IP"
-#~ msgstr "IP-адрес NAS"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Значение RADIUS NAS-IP-Address атрибута"
-#~ msgid "NAS MAC"
-#~ msgstr "MAC адрес NAS"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "Значение MAC адреса RADIUS Called-Station-ID атрибута"
#~ msgid "RADIUS location ID"
#~ msgstr "Идентификатор расположения RADIUS"
-#~ msgid "WISPr Location ID"
-#~ msgstr "Идентификатор расположения WISPr"
-
#~ msgid "RADIUS location name"
#~ msgstr "Имя расположения RADIUS"
-#~ msgid "WISPr Location Name"
-#~ msgstr "Имя расположения WISPr"
-
-#~ msgid "NAS ID"
-#~ msgstr "Идентификатор NAS"
-
#~ msgid "Network access server identifier"
#~ msgstr "Идентификатор сервера доступа к сети (NAS)"
#~ msgid "Proxy port"
#~ msgstr "Порт прокси"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "Порт UDP для запросов RADIUS"
-
#~ msgid "Proxy secret"
#~ msgstr "Секрет прокси"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Возвращать так называемый Chilli XML вместе с WISPr XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Таймаут ожидания по умолчанию"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ "Таймаут ожидания по умолчанию если не установлен RADIUS'ом (0 по "
#~ "умолчанию)"
-#~ msgid "Default session timeout"
-#~ msgstr "Таймаут сессии (значение по умолчанию)"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Не перенаправлять на сервер UAM"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Не возвращаться на UAM сервер при удачном входе, перенаправить на "
-#~ "исходный URL"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Не выполнять WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Не выполнять WISPr XML, предполагая выполнение в бэкенд'е"
-
#~ msgid "Post auth proxy"
#~ msgstr "Прокси пост-аутентификации"
#~ msgid "UAM homepage"
#~ msgstr "Домашняя страница UAM"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr ""
-#~ "URL домашней страницы для перенаправления пользователей не прошедших "
-#~ "аутентификацию"
-
#~ msgid "UAM static content port"
#~ msgstr "Порт UAM статического контента"
#~ msgid "UAM server"
#~ msgstr "Сервер UAM"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL или веб-сервер для аутентификации клиентов"
-
#~ msgid "UAM user interface"
#~ msgstr "Интерфейс пользователя UAM"
-#~ msgid "Use status file"
-#~ msgstr "Использовать статус-файл"
-
#~ msgid "WISPr login url"
#~ msgstr "URL входа WISPr"
#~ msgid "Web content directory"
#~ msgstr "Директория Web-контента"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Директория куда будет помещен встроенный Web-контент"
-
#~ msgid "MAC configuration"
#~ msgstr "Настройка MAC"
#~ msgid "Password"
#~ msgstr "Пароль"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Пароль для MAC аутентификации"
-
#~ msgid "Suffix"
#~ msgstr "Суффикс"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr ""
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr ""
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr ""
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr ""
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChili"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Godkänn åtkomst för luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Nätverkskonfiguration"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "RADIUS-konfiguration"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "UAM och MAC-autensiering"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr ""
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr ""
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr ""
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr ""
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.2-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "luci-app-coovachilli için UCI erişimi verin"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Network Yapılandırması"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "RADIUS Yapılandırması"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "UAM ve MAC Kimlik Doğrulaması"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.5.2-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Надати доступ до UCI для luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Конфігурація мережі"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Конфігурація RADIUS"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "Автентифікація через UAM і MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.16-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Mật mã quản trị "
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Người quản trị "
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "Giao diện DHCP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Mặc định idle timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Mặc định interim interval"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Mặc định session timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+#, fuzzy
+msgid "Directory where embedded local web content is placed"
+msgstr "Thống nhất cấu hình phương pháp cài đặt"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+#, fuzzy
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Thống nhất cấu hình phương pháp cài đặt"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+#, fuzzy
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr "Thống nhất cấu hình phương pháp cài đặt"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Cấp quyền truy cập UCI cho luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "IP up script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "NAS ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP "
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Cấu hình Mạng"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+#, fuzzy
+msgid "Password used when performing MAC authentication"
+msgstr "Cấu hình RADIUS"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Cấu hình RADIUS"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "Dạnh bạ vùng"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+#, fuzzy
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "Thống nhất cấu hình phương pháp cài đặt"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "Xác thực UAM và MAC"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+#, fuzzy
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+"Được sử dụng để thông báo cho khách hàng về tên miền để dùng cho các tra cứu "
+"DNS"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+#, fuzzy
+msgid "URL of web server to use for authenticating clients"
+msgstr "Thống nhất cấu hình phương pháp cài đặt"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "WISPr vị trí ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "Tên vị trí WISPr"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr ""
+#~ "Không tên kiểm tra nguồn địa chỉ IP trong bán kính yêu cầu ngừng kết nối"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "Cổng UDP để listen để chấp nhận yêu cầu radius"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "Cửa UDP để nghe khi chấp nhận một yêu cầu ngừng kết nối"
+
#~ msgid "General configuration"
#~ msgstr "Cấu hình tổng quát"
#~ msgid "Filename to put the process id"
#~ msgstr "Tên tập tin để đặt làm ID xử lý"
-#~ msgid "State directory"
-#~ msgstr "Dạnh bạ vùng"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Thư mục của những dữ liệu cố định"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Chỉ định một pool of dynamic IP addresses"
-#~ msgid "IP down script"
-#~ msgstr "IP down script"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script thực hiện sau khi giao diện mạng tun bị lấy xuống"
-#~ msgid "IP up script"
-#~ msgstr "IP up script"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr "Script thực hiện sau khi giao diện mạng TUN/TAP đã được đưa lên"
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Chỗ để stop những gán IP (mặc định 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "Giao diện DHCP"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Giao diện Ethernet để listen cho những giao diện downlink "
#~ "Cho phép phiên cập nhật tham số phiên với RADIUS được gửi trong "
#~ "Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Mật mã quản trị "
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Mật mã dùng để xác thực chế độ quản trị để pick up cấu hình chilli và "
#~ "thành lập một công cụ &quot;system&quot; session"
-#~ msgid "Admin user"
-#~ msgstr "Người quản trị "
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Không kiểm tra yêu cầu ngừng kết nối"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr ""
-#~ "Không tên kiểm tra nguồn địa chỉ IP trong bán kính yêu cầu ngừng kết nối"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "Cửa ngừng kết nối RADIUS"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "Cửa UDP để nghe khi chấp nhận một yêu cầu ngừng kết nối"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP "
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Giá trị để dùng trong RADIUS NAS-IP-Address attribute"
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr ""
#~ "Giá trị địa chỉ MAC để dùng trong RADIUS Called-Station-ID attribute"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS vị tri ID"
-#~ msgid "WISPr Location ID"
-#~ msgstr "WISPr vị trí ID"
-
#~ msgid "RADIUS location name"
#~ msgstr "Tên vị trí RADIUS"
-#~ msgid "WISPr Location Name"
-#~ msgstr "Tên vị trí WISPr"
-
-#~ msgid "NAS ID"
-#~ msgstr "NAS ID"
-
#~ msgid "Network access server identifier"
#~ msgstr "Network truy cập server identifier"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "Cổng UDP để listen để chấp nhận yêu cầu radius"
-
#~ msgid "Proxy secret"
#~ msgstr "Proxy bí mật"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Trở về cái gọi là Chilli XML cùng với WISPr XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Mặc định idle timeout"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Mặc định idle timeout trừ khi đặt bởi RADIUS (mặc định tới 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Mặc định interim interval"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Mặc định interim-interval cho RADIUS accounting trừ khi đặt bởi RADIUS "
#~ "(defaults tới 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Mặc định session timeout"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Mặc định session timeout trừ khi đặt bởi RADIUS (mặc định tới 0)"
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
-#, fuzzy
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
-
#, fuzzy
#~ msgid "Do not do WISPr"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
-#, fuzzy
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
-
#, fuzzy
#~ msgid "List of resources the client can access without first authenticating"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#~ msgid "UAM homepage"
#~ msgstr "Tên miền"
-#, fuzzy
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr ""
-#~ "Được sử dụng để thông báo cho khách hàng về tên miền để dùng cho các tra "
-#~ "cứu DNS"
-
#, fuzzy
#~ msgid "UAM static content port"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
-#, fuzzy
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
-
#, fuzzy
#~ msgid "UAM listening address"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#~ msgid "UAM server"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
-#, fuzzy
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
-
#, fuzzy
#~ msgid "UAM user interface"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#~ msgid "Web content directory"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
-#, fuzzy
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
-
#, fuzzy
#~ msgid "MAC configuration"
#~ msgstr "Cấu hình RADIUS"
#~ msgid "Password"
#~ msgstr "Cấu hình RADIUS"
-#, fuzzy
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Cấu hình RADIUS"
-
#, fuzzy
#~ msgid "Suffix"
#~ msgstr "Cấu hình RADIUS"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.8-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr "Admin password"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr "Admin user"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr "DHCP interface"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr "Default idle timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr "Default interim interval"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr "Default session timeout"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr "Directory where embedded local web content is placed"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+"Do not return to UAM server on login success, just redirect to original URL"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Conceder acceso UCI para luci-app-coovachilli"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr "IP down script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr "IP up script"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr "NAS ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr "NAS IP"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr "NAS MAC"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Configuración de red"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr "Password used when performing MAC authentication"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Configuración de RADIUS"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr "State directory"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr "TCP port to bind to for only serving embedded content"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "Autenticación UAM y MAC"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr "URL of homepage to redirect unauthenticated users to"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr "URL of web server to use for authenticating clients"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr "Use status file"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr "WISPr Location ID"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr "WISPr Location Name"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+
+#~ msgid "Do not check the source IP address of radius disconnect requests"
+#~ msgstr "Do not check the source IP address of radius disconnect requests"
+
+#~ msgid "UDP Port to listen to for accepting radius requests"
+#~ msgstr "UDP Port to listen to for accepting radius requests"
+
+#~ msgid "UDP port to listen to for accepting radius disconnect requests"
+#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
+
#, fuzzy
#~ msgid "General configuration"
#~ msgstr "General configuration"
#~ msgid "Filename to put the process id"
#~ msgstr "Filename to put the process id"
-#~ msgid "State directory"
-#~ msgstr "State directory"
-
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directory of non-volatile data"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Specifies a pool of dynamic IP addresses"
-#~ msgid "IP down script"
-#~ msgstr "IP down script"
-
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script executed after the tun network interface has been taken down"
-#~ msgid "IP up script"
-#~ msgstr "IP up script"
-
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr ""
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Where to stop assigning IP addresses (default 254)"
-#~ msgid "DHCP interface"
-#~ msgstr "DHCP interface"
-
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet interface to listen to for the downlink interface"
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
-#~ msgid "Admin password"
-#~ msgstr "Admin password"
-
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
-#~ msgid "Admin user"
-#~ msgstr "Admin user"
-
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Do not check disconnection requests"
-#~ msgid "Do not check the source IP address of radius disconnect requests"
-#~ msgstr "Do not check the source IP address of radius disconnect requests"
-
#~ msgid "RADIUS disconnect port"
#~ msgstr "RADIUS disconnect port"
-#~ msgid "UDP port to listen to for accepting radius disconnect requests"
-#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
-
-#~ msgid "NAS IP"
-#~ msgstr "NAS IP"
-
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute"
-#~ msgid "NAS MAC"
-#~ msgstr "NAS MAC"
-
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS location ID"
-#~ msgid "WISPr Location ID"
-#~ msgstr "WISPr Location ID"
-
#~ msgid "RADIUS location name"
#~ msgstr "RADIUS location name"
-#~ msgid "WISPr Location Name"
-#~ msgstr "WISPr Location Name"
-
-#~ msgid "NAS ID"
-#~ msgstr "NAS ID"
-
#~ msgid "Network access server identifier"
#~ msgstr "Network access server identifier"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
-#~ msgid "UDP Port to listen to for accepting radius requests"
-#~ msgstr "UDP Port to listen to for accepting radius requests"
-
#~ msgid "Proxy secret"
#~ msgstr "Proxy secret"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Return the so-called Chilli XML along with WISPr XML"
-#~ msgid "Default idle timeout"
-#~ msgstr "Default idle timeout"
-
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
-#~ msgid "Default interim interval"
-#~ msgstr "Default interim interval"
-
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
-#~ msgid "Default session timeout"
-#~ msgstr "Default session timeout"
-
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Do not redirect to UAM server"
-#~ msgid ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-#~ msgstr ""
-#~ "Do not return to UAM server on login success, just redirect to original "
-#~ "URL"
-
#~ msgid "Do not do WISPr"
#~ msgstr "Do not do WISPr"
-#~ msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
-#~ msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
-
#~ msgid "Post auth proxy"
#~ msgstr "Post auth proxy"
#~ msgid "UAM homepage"
#~ msgstr "UAM homepage"
-#~ msgid "URL of homepage to redirect unauthenticated users to"
-#~ msgstr "URL of homepage to redirect unauthenticated users to"
-
#~ msgid "UAM static content port"
#~ msgstr "UAM static content port"
-#~ msgid "TCP port to bind to for only serving embedded content"
-#~ msgstr "TCP port to bind to for only serving embedded content"
-
#~ msgid "UAM listening address"
#~ msgstr "UAM listening address"
#~ msgid "UAM server"
#~ msgstr "UAM server"
-#~ msgid "URL of web server to use for authenticating clients"
-#~ msgstr "URL of web server to use for authenticating clients"
-
#~ msgid "UAM user interface"
#~ msgstr "UAM user interface"
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
-#~ msgid "Use status file"
-#~ msgstr "Use status file"
-
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ msgid "Web content directory"
#~ msgstr "Web content directory"
-#~ msgid "Directory where embedded local web content is placed"
-#~ msgstr "Directory where embedded local web content is placed"
-
#~ msgid "MAC configuration"
#~ msgstr "MAC configuration"
#~ msgid "Password"
#~ msgstr "Password"
-#~ msgid "Password used when performing MAC authentication"
-#~ msgstr "Password used when performing MAC authentication"
-
#~ msgid "Suffix"
#~ msgstr "Suffix"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.1-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli 网页认证"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "授予UCI访问luci-app-coovachilli的权限"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "网络配置"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "RADIUS 配置"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "UAM 和 MAC 认证"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.4.1-dev\n"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "0 means unlimited"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "802.1Q"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "802.1Q only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "A specific URL to be given in WISPr XML LoginURL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
+msgid "Accounting port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
+msgid "Accounting update"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
+msgid "Admin password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
+msgid "Admin user"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
+msgid "Allow Local MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all sessions when RADIUS is not available"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
+msgid "Allow all, absent RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Allow client to use any IP Address"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Allow unauthenticated users access to any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
+msgid "Allowed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
+msgid "Allowed MACs"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Always respond to DHCP to the broadcast IP, when no relay."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
+msgid "Any DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
+msgid "Any IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
+msgid "Authentication port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
+msgid "Auxiliary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
+msgid "Broadcast Answer"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "COA Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "COA no IP check"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Chilli XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid ""
+"ChilliSpot will try to authenticate all users based on their mac address "
+"alone"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid "Connection down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Connection up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "Coova Chilli"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli 服務"
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
+msgid "DHCP End"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
+msgid "DHCP Gateway IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
+msgid "DHCP Gateway Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
+msgid "DHCP Start"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
+msgid "DHCP interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
+msgid "DNS Auxiliary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
+msgid "DNS Primary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
+msgid "Debug"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid ""
+"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
+msgid "Default idle timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
+msgid "Default interim interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
+msgid "Default session timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
+msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "Directory where embedded local web content is placed"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
+msgid "Do not check the source IP address of RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "Do not offer WISPr 1.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "Do not offer WISPr 2.0 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid ""
+"Do not return to UAM server on login success, just redirect to original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
+msgid "Domain suffixes"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid "Dynamic IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "Enable EAPOL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "Executable to run as a CGI type program"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
+msgid ""
+"Executed after a session has moved from authorized state to unauthorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
+msgid "Executed after a session is authorized"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "Executed after the TUN/TAP network interface has been brought up"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "Executed after the TUN/TAP network interface has been taken down"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
+msgid "General"
+msgstr ""
+
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "授予 luci-app-coovachilli 擁有 UCI 存取的權限"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:16
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "Homepage"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
+msgid "IEEE 802.1x authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "IP address from which RADIUS requests are accepted"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
+msgid "IP down script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
+msgid "IP up script"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
+msgid "IPv6 mode"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
+msgid "Ignore Success"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid ""
+"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
+"records"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "Lease time"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
+msgid "Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
+msgid "Local users"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
+msgid "Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
+msgid "Logout IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
+msgid "MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "MAC password"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "MAC re-authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
+msgid "MAC suffix"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
+msgid "Max clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
+msgid "Max download bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
+msgid "Max upload bandwidth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "NAS IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "NAS MAC"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
+msgid "NAS-Identifier"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
+msgid "NAS-Port-Type"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Net"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "網路設定"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:26
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
+msgid "Network address of the uplink interface"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
+msgid "No WISPr"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
+msgid "No WISPr 1 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
+msgid "No WISPr 2 XML"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
+msgid "Open ID Auth"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
+msgid "Options for RADIUS proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
+msgid "Options for TUN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Original URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
+msgid "Password used when performing MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "Post authentication proxy"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
+msgid "Primary server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "Program in inetd style to handle all uam requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
+msgid "Proxy Client"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
+msgid "Proxy Listen"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "Proxy Port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
+msgid "Proxy Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
+msgid "RADIUS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "RADIUS 設定"
-#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:36
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
+msgid "Re-Authenticate based on MAC address for every initial URL redirection"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read configuration file at this interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
+msgid "Re-read interval"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
+msgid "Retries"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
+msgid "Retry seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
+msgid "Return the so-called Chilli XML along with WISPr XML."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+msgid "SSID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
+msgid "Secret"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
+msgid "Send CoovaChilli-OriginalURL in Access-Request"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
+msgid "Send IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "Server"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
+msgid "Settings"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
+msgid "Special options for DHCP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
+msgid "Special options for MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
+msgid ""
+"Specifies a pool of dynamic IP addresses. If this option is omitted the "
+"network address specified by the Net option is used"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid ""
+"Specifies a pool of static IP addresses. With static address allocation the "
+"IP address of the client can be specified by the RADIUS server."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
+msgid "State directory"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
+msgid "Static IP"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
+msgid "Strict DNS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
+msgid "Strict MAC authentication"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
+msgid "Support 802.1Q VLAN tagged traffic only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
+msgid "Support for 802.1Q/VLAN network"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap Octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
+msgid "Swap the meaning of input and output octets"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
+msgid "Syslog facility"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
+msgid "TCP MSS"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
+msgid "TCP Window"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
+msgid "TCP port to bind to for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "TCP port to bind to for only serving embedded content"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
+msgid "TUN device"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
+msgid "TX Q length"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
+msgid "Timeout"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "微軟 UAM 模組和 MAC 位指驗證"
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
+msgid "UDP Port to listen to for accepting RADIUS requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
+msgid "UDP port to listen to for accepting RADIUS disconnect requests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
+msgid "UI"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
+msgid "URL of homepage to redirect unauthenticated users to"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
+msgid "URL of web server to use for authenticating clients"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
+msgid "Unique IP address of the NAS (nas-ip-address)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
+msgid "Unique MAC address of the NAS (called-station-id)"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
+msgid "Universal access method"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "Use IPv6"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
+msgid "Use status file"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "VLAN"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
+msgid "WISPr Location ID"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
+msgid "WISPr Location Name"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
+msgid "WISPr Login"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
+msgid "WPA guests"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
+msgid "access controller for WLAN."
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
+msgid "in seconds"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
+msgid "iport"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
+msgid "only"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
+msgid "passed on to the UAM server in the initial redirect URL"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
+msgid "port"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
+msgid "www binary"
+msgstr ""
+
+#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
+msgid "www directory"
+msgstr ""
+++ /dev/null
-##############################################################################
-#
-# Sample CoovaChilli configuration file
-#
-##############################################################################
-
-# General settings
-config general
-
- # Enable this flag to include debug information.
- option debug 0
-
- # Re-read configuration file at this interval. Will also cause new domain
- # name lookups to be performed. Value is given in seconds.
- option interval 3600
-
- # File to store information about the process id of the program.
- # The program must have write access to this file/directory.
- option pidfile /var/run/chilli.pid
-
- # Directory to use for nonvolatile storage.
- # The program must have write access to this directory.
- # This tag is currently ignored
- #option statedir ./
-
-
-# TUN parameters
-config tun
-
- # IP network address of external packet data network
- # Used to allocate dynamic IP addresses and set up routing.
- # Normally you do not need to uncomment this tag.
- option net 192.168.182.0/24
-
- # Dynamic IP address pool
- # Used to allocate dynamic IP addresses to clients.
- # If not set it defaults to the net tag.
- # Do not uncomment this tag unless you are an experienced user!
- #option dynip 192.168.182.0/24
-
- # Static IP address pool
- # Used to allocate static IP addresses to clients.
- # Do not uncomment this tag unless you are an experienced user!
- #option statip 192.168.182.0/24
-
- # Primary DNS server.
- # Will be suggested to the client.
- # If omitted the system default will be used.
- # Normally you do not need to uncomment this tag.
- #option dns1 172.16.0.5
-
- # Secondary DNS server.
- # Will be suggested to the client.
- # If omitted the system default will be used.
- # Normally you do not need to uncomment this tag.
- #option dns2 172.16.0.6
-
- # Domain name
- # Will be suggested to the client.
- # Normally you do not need to uncomment this tag.
- option domain key.chillispot.org
-
- # Script executed after network interface has been brought up.
- # Executed with the following parameters: <devicename> <ip address> <mask>
- # Normally you do not need to uncomment this tag.
- #option ipup /etc/chilli.ipup
-
- # Script executed after network interface has been taken down.
- # Executed with the following parameters: <devicename> <ip address> <mask>
- # Normally you do not need to uncomment this tag.
- #option ipdown /etc/chilli.ipdown
-
- # Script executed after a user has been authenticated.
- # Executed with the following parameters: <devicename> <ip address>
- # <mask> <user ip address> <user mac address> <filter ID>
- # Normally you do not need to uncomment this tag.
- #option conup /etc/chilli.conup
-
- # Script executed after a user has disconnected.
- # Executed with the following parameters: <devicename> <ip address>
- # <mask> <user ip address> <user mac address> <filter ID>
- # Normally you do not need to uncomment this tag.
- #option condown /etc/chilli.condown
-
-
-# DHCP Parameters
-config dhcp
-
- # Ethernet interface to listen to.
- # This is the network interface which is connected to the access points.
- # In a typical configuration this tag should be set to eth1.
- option dhcpif eth1
-
- # Use specified MAC address.
- # An address in the range 00:00:5E:00:02:00 - 00:00:5E:FF:FF:FF falls
- # within the IANA range of addresses and is not allocated for other
- # purposes.
- # Normally you do not need to uncomment this tag.
- #option dhcpmac 00:00:5E:00:02:00
-
- # Time before DHCP lease expires
- # Normally you do not need to uncomment this tag.
- #option lease 600
-
-
-# Radius parameters
-config radius
-
- # IP address to listen to
- # Normally you do not need to uncomment this tag.
- #option radiuslisten 127.0.0.1
-
- # IP address of radius server 1
- # For most installations you need to modify this tag.
- option radiusserver1 rad01.chillispot.org
-
- # IP address of radius server 2
- # If you have only one radius server you should set radiusserver2 to the
- # same value as radiusserver1.
- # For most installations you need to modify this tag.
- option radiusserver2 rad02.chillispot.org
-
- # Radius authentication port
- # The UDP port number to use for radius authentication requests.
- # The same port number is used for both radiusserver1 and radiusserver2.
- # Normally you do not need to uncomment this tag.
- #option radiusauthport 1812
-
- # Radius accounting port
- # The UDP port number to use for radius accounting requests.
- # The same port number is used for both radiusserver1 and radiusserver2.
- # Normally you do not need to uncomment this tag.
- #option radiusacctport 1813
-
- # Radius shared secret for both servers
- # For all installations you should modify this tag.
- #option radiussecret testing123
-
- # Radius NAS-Identifier
- # Normally you do not need to uncomment this tag.
- #option radiusnasid nas01
-
- # Radius NAS-IP-Address
- # Normally you do not need to uncomment this tag.
- #option radiusnasip 127.0.0.1
-
- # Radius Called-Station-ID
- # Normally you do not need to uncomment this tag.
- #option radiuscalled 00133300
-
- # WISPr Location ID. Should be in the format: isocc=<ISO_Country_Code>,
- # cc=<E.164_Country_Code>,ac=<E.164_Area_Code>,network=<ssid/ZONE>
- # Normally you do not need to uncomment this tag.
- #option radiuslocationid isocc=us,cc=1,ac=408,network=ACMEWISP_NewarkAirport
-
- # WISPr Location Name. Should be in the format:
- # <HOTSPOT_OPERATOR_NAME>,<LOCATION>
- # Normally you do not need to uncomment this tag.
- #option radiuslocationname ACMEWISP,Gate_14_Terminal_C_of_Newark_Airport
-
-
-# Radius proxy parameters
-config proxy
-
- # IP address to listen to
- # Normally you do not need to uncomment this tag.
- #option proxylisten 10.0.0.1
-
- # UDP port to listen to.
- # If not specified a port will be selected by the system
- # Normally you do not need to uncomment this tag.
- #option proxyport 1645
-
- # Client(s) from which we accept radius requests
- # Normally you do not need to uncomment this tag.
- #option proxyclient 10.0.0.1/24
-
- # Radius proxy shared secret for all clients
- # If not specified defaults to radiussecret
- # Normally you do not need to uncomment this tag.
- #option proxysecret testing123
-
-
-# Universal access method (UAM) parameters
-config uam
-
- # URL of web server handling authentication.
- option uamserver https://radius.chillispot.org/hotspotlogin
-
- # URL of welcome homepage.
- # Unauthenticated users will be redirected to this URL. If not specified
- # users will be redirected to the uamserver instead.
- # Normally you do not need to uncomment this tag.
- #option uamhomepage http://192.168.182.1/welcome.html
-
- # Shared between chilli and authentication web server
- #option uamsecret ht2eb8ej6s4et3rg1ulp
-
- # IP address to listen to for authentication requests
- # Do not uncomment this tag unless you are an experienced user!
- #option uamlisten 192.168.182.1
-
- # TCP port to listen to for authentication requests
- # Do not uncomment this tag unless you are an experienced user!
- #option uamport 3990
-
- # Comma separated list of domain names, IP addresses or network segments
- # the client can access without first authenticating.
- # It is possible to specify this tag multiple times.
- # Normally you do not need to uncomment this tag.
- #list uamallowed www.chillispot.org
- #list uamallowed 10.11.12.0/24
-
- # If this flag is given unauthenticated users are allowed to use
- # any DNS server.
- # Normally you do not need to uncomment this tag.
- #uamanydns
-
-
-# MAC authentication
-config macauth
-
- # If this flag is given users will be authenticated only on their MAC
- # address.
- # Normally you do not need to enable this flag.
- option macauth 0
-
- # List of MAC addresses.
- # The MAC addresses specified in this list will be authenticated only on
- # their MAC address.
- # This tag is ignored if the macauth tag is given.
- # It is possible to specify this tag multiple times.
- # Normally you do not need to uncomment this tag.
- #list macallowed 00-0A-5E-AC-BE-51
- #list macallowed 00-30-1B-3C-32-E9
-
- # Password to use for MAC authentication.
- # Normally you do not need to uncomment this tag.
- #option macpasswd password
-
- # Suffix to add to MAC address in order to form the username.
- # Normally you do not need to uncomment this tag.
- #option macsuffix suffix
{
"admin/services/coovachilli": {
"title": "CoovaChilli",
- "order": 90,
"action": {
- "type": "cbi",
- "path": "coovachilli",
- "post": { "cbi.submit": true }
+ "type": "view",
+ "path": "coovachilli/coovachilli"
},
"depends": {
"acl": [ "luci-app-coovachilli" ]
}
- },
-
- "admin/services/coovachilli/network": {
- "title": "Network Configuration",
- "order": 1,
- "action": {
- "type": "cbi",
- "path": "coovachilli_network",
- "post": { "cbi.submit": true }
- }
- },
-
- "admin/services/coovachilli/radius": {
- "title": "RADIUS configuration",
- "order": 2,
- "action": {
- "type": "cbi",
- "path": "coovachilli_radius",
- "post": { "cbi.submit": true }
- }
- },
-
- "admin/services/coovachilli/auth": {
- "title": "UAM and MAC Authentication",
- "order": 3,
- "action": {
- "type": "cbi",
- "path": "coovachilli_auth",
- "post": { "cbi.submit": true }
- }
}
}
"luci-app-coovachilli": {
"description": "Grant UCI access for luci-app-coovachilli",
"read": {
- "uci": [ "coovachilli" ]
+ "uci": [ "coovachilli" ],
+ "ubus": {
+ "luci-rpc": [ "getNetworkDevices" ]
+ }
},
"write": {
"uci": [ "coovachilli" ]